.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-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 {
  margin-top: 140px;
margin-bottom: 140px;
padding-top: 5px;
padding-bottom: 5px;
}

#s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs {
  justify-content: flex-start;
}


  #s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(85, 85, 85, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(138, 202, 30, 1);
}

#s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-7a3d4979-3e1c-4583-9dc7-9cf0c6acb727 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

.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-0d18a925-2158-4ad6-b74d-7fe94e7ca95d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0d18a925-2158-4ad6-b74d-7fe94e7ca95d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d18a925-2158-4ad6-b74d-7fe94e7ca95d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d18a925-2158-4ad6-b74d-7fe94e7ca95d {
  
}
}@media (max-width: 767px){#s-0d18a925-2158-4ad6-b74d-7fe94e7ca95d {
  
}
}







#s-0d18a925-2158-4ad6-b74d-7fe94e7ca95d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d18a925-2158-4ad6-b74d-7fe94e7ca95d.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-color: rgba(234, 249, 254, 1);
}
@media (min-width: 1200px){#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d {
  
}
}@media (max-width: 767px){#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d {
  
}
}







#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d > .shg-box-overlay {
  background-color: rgba(222, 247, 250, 1);
  opacity: 0;
}#s-ae90e2d1-0dae-4562-9f17-0dfdb7d85d3d.shg-box.shg-c {
  justify-content: center;
}

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

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

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

#s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-04c41ce3-0514-4a81-bff6-342bd9c0a9a8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

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

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

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

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

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

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

.shg-default-text-content 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;
}

#s-340a79f9-8df0-4234-8f81-342a9f1c1463 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-340a79f9-8df0-4234-8f81-342a9f1c1463 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-340a79f9-8df0-4234-8f81-342a9f1c1463 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-340a79f9-8df0-4234-8f81-342a9f1c1463 {
  
}
}@media (max-width: 767px){#s-340a79f9-8df0-4234-8f81-342a9f1c1463 {
  
}
}
.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-31d06744-020a-40bf-a114-fc9f5fb67dce {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-31d06744-020a-40bf-a114-fc9f5fb67dce {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-31d06744-020a-40bf-a114-fc9f5fb67dce {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-31d06744-020a-40bf-a114-fc9f5fb67dce {
  
}
}@media (max-width: 767px){#s-31d06744-020a-40bf-a114-fc9f5fb67dce {
  
}
}
#s-31d06744-020a-40bf-a114-fc9f5fb67dce .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-68fca039-959e-4a86-8efe-87af23b85fa4 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-68fca039-959e-4a86-8efe-87af23b85fa4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-68fca039-959e-4a86-8efe-87af23b85fa4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-68fca039-959e-4a86-8efe-87af23b85fa4 {
  
}
}@media (max-width: 767px){#s-68fca039-959e-4a86-8efe-87af23b85fa4 {
  
}
}
#s-850b3836-d408-4a42-9e18-c83e1beee0d2 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-850b3836-d408-4a42-9e18-c83e1beee0d2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-850b3836-d408-4a42-9e18-c83e1beee0d2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-850b3836-d408-4a42-9e18-c83e1beee0d2 {
  
}
}@media (max-width: 767px){#s-850b3836-d408-4a42-9e18-c83e1beee0d2 {
  
}
}
@media (min-width: 0px) {
[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-850b3836-d408-4a42-9e18-c83e1beee0d2"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

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

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

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

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

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

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

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

#s-3a11f628-905d-4179-b2f6-e8b89bbe318e {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-3a11f628-905d-4179-b2f6-e8b89bbe318e:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-3a11f628-905d-4179-b2f6-e8b89bbe318e:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-3a11f628-905d-4179-b2f6-e8b89bbe318e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3a11f628-905d-4179-b2f6-e8b89bbe318e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3a11f628-905d-4179-b2f6-e8b89bbe318e {
  
}
}@media (max-width: 767px){#s-3a11f628-905d-4179-b2f6-e8b89bbe318e {
  
}
}


#s-3a11f628-905d-4179-b2f6-e8b89bbe318e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752 {
  
}
}@media (max-width: 767px){#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752 {
  
}
}


#s-d0ed3f8b-996e-4ce9-844e-1aa66ad0b752.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-feb292ac-ae98-4225-96b6-eeca384168d7 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-feb292ac-ae98-4225-96b6-eeca384168d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-feb292ac-ae98-4225-96b6-eeca384168d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-feb292ac-ae98-4225-96b6-eeca384168d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-feb292ac-ae98-4225-96b6-eeca384168d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-feb292ac-ae98-4225-96b6-eeca384168d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-02d40bdd-d462-486f-8691-c6fc83ae2717 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-02d40bdd-d462-486f-8691-c6fc83ae2717"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-44213c83-6a01-4baf-b76f-b297216d915a {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-44213c83-6a01-4baf-b76f-b297216d915a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-44213c83-6a01-4baf-b76f-b297216d915a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-44213c83-6a01-4baf-b76f-b297216d915a {
  
}
}@media (max-width: 767px){#s-44213c83-6a01-4baf-b76f-b297216d915a {
  
}
}
#s-bac6166d-d573-4503-8ea6-552010f33a88 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-bac6166d-d573-4503-8ea6-552010f33a88 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bac6166d-d573-4503-8ea6-552010f33a88 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bac6166d-d573-4503-8ea6-552010f33a88 {
  
}
}@media (max-width: 767px){#s-bac6166d-d573-4503-8ea6-552010f33a88 {
  
}
}
#s-bac6166d-d573-4503-8ea6-552010f33a88 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-308e2bbd-7e62-4b60-bbff-5107d4516a99 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-308e2bbd-7e62-4b60-bbff-5107d4516a99 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-308e2bbd-7e62-4b60-bbff-5107d4516a99 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-308e2bbd-7e62-4b60-bbff-5107d4516a99 {
  
}
}@media (max-width: 767px){#s-308e2bbd-7e62-4b60-bbff-5107d4516a99 {
  
}
}
#s-f87682db-d69f-4d30-a7af-f1170c48792a {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-f87682db-d69f-4d30-a7af-f1170c48792a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f87682db-d69f-4d30-a7af-f1170c48792a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f87682db-d69f-4d30-a7af-f1170c48792a {
  
}
}@media (max-width: 767px){#s-f87682db-d69f-4d30-a7af-f1170c48792a {
  
}
}
@media (min-width: 0px) {
[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f87682db-d69f-4d30-a7af-f1170c48792a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc {
  
}
}@media (max-width: 767px){#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc {
  
}
}


#s-6f2d4595-b50a-4439-92f4-f609b42fbbbc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-e29607da-5984-4518-b076-4a8c7daec8e8 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-e29607da-5984-4518-b076-4a8c7daec8e8:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-e29607da-5984-4518-b076-4a8c7daec8e8:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-e29607da-5984-4518-b076-4a8c7daec8e8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e29607da-5984-4518-b076-4a8c7daec8e8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e29607da-5984-4518-b076-4a8c7daec8e8 {
  
}
}@media (max-width: 767px){#s-e29607da-5984-4518-b076-4a8c7daec8e8 {
  
}
}


#s-e29607da-5984-4518-b076-4a8c7daec8e8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-d29ec0f1-e261-40a4-bf44-ec6d2cc30bd4 {
  margin-top: 145px;
margin-bottom: 145px;
}

#s-29823de0-342b-4bea-87b8-b2905fa652ed {
  min-height: 50px;
}
@media (min-width: 1200px){#s-29823de0-342b-4bea-87b8-b2905fa652ed {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-29823de0-342b-4bea-87b8-b2905fa652ed {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-29823de0-342b-4bea-87b8-b2905fa652ed {
  
}
}@media (max-width: 767px){#s-29823de0-342b-4bea-87b8-b2905fa652ed {
  
}
}







#s-29823de0-342b-4bea-87b8-b2905fa652ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29823de0-342b-4bea-87b8-b2905fa652ed.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-color: rgba(234, 249, 254, 1);
}
@media (min-width: 1200px){#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645 {
  
}
}@media (max-width: 767px){#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645 {
  
}
}







#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645 > .shg-box-overlay {
  background-color: rgba(222, 247, 250, 1);
  opacity: 0;
}#s-f0eba5f1-f02b-4e0c-a0db-8a776ce38645.shg-box.shg-c {
  justify-content: center;
}

#s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-97ed228a-d8d6-4a0a-8907-e9ff902ac2e3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-9166e0e6-ac30-402c-b2dd-caf57e28fc35 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-9166e0e6-ac30-402c-b2dd-caf57e28fc35 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9166e0e6-ac30-402c-b2dd-caf57e28fc35 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9166e0e6-ac30-402c-b2dd-caf57e28fc35 {
  
}
}@media (max-width: 767px){#s-9166e0e6-ac30-402c-b2dd-caf57e28fc35 {
  
}
}
#s-207c6bad-3b72-400d-9282-22265dcde1fd {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-207c6bad-3b72-400d-9282-22265dcde1fd {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-207c6bad-3b72-400d-9282-22265dcde1fd {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-207c6bad-3b72-400d-9282-22265dcde1fd {
  
}
}@media (max-width: 767px){#s-207c6bad-3b72-400d-9282-22265dcde1fd {
  
}
}
#s-207c6bad-3b72-400d-9282-22265dcde1fd .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-81a9ee0d-988f-4f22-ad34-065badf84f68 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-81a9ee0d-988f-4f22-ad34-065badf84f68 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-81a9ee0d-988f-4f22-ad34-065badf84f68 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-81a9ee0d-988f-4f22-ad34-065badf84f68 {
  
}
}@media (max-width: 767px){#s-81a9ee0d-988f-4f22-ad34-065badf84f68 {
  
}
}
#s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f {
  
}
}@media (max-width: 767px){#s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f {
  
}
}
@media (min-width: 0px) {
[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-bce8f614-2d4a-4c5d-b19f-6eddc459b87f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10 {
  
}
}@media (max-width: 767px){#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10 {
  
}
}


#s-e8a3d8d4-8c7d-4a21-8850-fa136531bf10.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-517292df-9c90-4550-8597-d3e62ec797b8 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-517292df-9c90-4550-8597-d3e62ec797b8:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-517292df-9c90-4550-8597-d3e62ec797b8:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-517292df-9c90-4550-8597-d3e62ec797b8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-517292df-9c90-4550-8597-d3e62ec797b8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-517292df-9c90-4550-8597-d3e62ec797b8 {
  
}
}@media (max-width: 767px){#s-517292df-9c90-4550-8597-d3e62ec797b8 {
  
}
}


#s-517292df-9c90-4550-8597-d3e62ec797b8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

.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-cf594161-1f73-4d85-b286-0fe599ae3e45 {
  
}




  #s-cf594161-1f73-4d85-b286-0fe599ae3e45 img.shogun-image {
    
    width: px;
  }


#s-cf594161-1f73-4d85-b286-0fe599ae3e45 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce7784aa-b830-463b-a03b-2acb457751ba {
  margin-top: 35px;
margin-bottom: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-7f07a812-1218-4c2f-9e14-eed1c70230fd {
  background-color: rgba(255, 255, 255, 1);
}

#s-c024b60a-bbc6-4757-9264-8c2b18b688ee {
  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-59fc1db8-6d3c-49b8-98ff-c313645fbdab {
  text-align: left;
}


.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab {
  max-width: 100%;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom,
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab {
  max-width: 100%;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom,
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab {
  max-width: 100%;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom,
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab {
  max-width: 100%;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom,
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab {
  max-width: 100%;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom,
.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59fc1db8-6d3c-49b8-98ff-c313645fbdab .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
.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-25b88d80-1ae1-407a-ba27-a258d9385ccb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-25b88d80-1ae1-407a-ba27-a258d9385ccb .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-9a2542e3-2a31-4a36-87c6-eb84ce04cba8 {
  text-align: center;
}

#s-9a2542e3-2a31-4a36-87c6-eb84ce04cba8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-9a2542e3-2a31-4a36-87c6-eb84ce04cba8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9a2542e3-2a31-4a36-87c6-eb84ce04cba8 .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-8aa4677b-138d-4ea6-a977-a9ec57b58bcd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8aa4677b-138d-4ea6-a977-a9ec57b58bcd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8aa4677b-138d-4ea6-a977-a9ec57b58bcd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8aa4677b-138d-4ea6-a977-a9ec57b58bcd {
  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-8aa4677b-138d-4ea6-a977-a9ec57b58bcd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8aa4677b-138d-4ea6-a977-a9ec57b58bcd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8aa4677b-138d-4ea6-a977-a9ec57b58bcd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b41e622f-8448-4b0b-803a-a5da55b45c30 {
  display: none;
}
#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 {
  text-align: left;
}


.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 {
  max-width: 100%;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom,
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 {
  max-width: 100%;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom,
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 {
  max-width: 100%;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom,
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 {
  max-width: 100%;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom,
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 {
  max-width: 100%;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom,
.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf0ee42d-874f-43eb-b04b-918f56d96fd8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-395ca6db-5718-4a25-9478-8451b5a5e6e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-395ca6db-5718-4a25-9478-8451b5a5e6e0 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-83211bab-1a22-43cf-8c19-f86c12e5278d {
  text-align: center;
}

#s-83211bab-1a22-43cf-8c19-f86c12e5278d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-83211bab-1a22-43cf-8c19-f86c12e5278d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-83211bab-1a22-43cf-8c19-f86c12e5278d .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-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70 {
  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-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7d8ef41e-93ff-42d8-b9cd-92d49c3d2b70.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-10109296-a583-41fd-98f4-dfb03b2ee872 {
  display: none;
}
#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 {
  text-align: left;
}


.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 {
  max-width: 100%;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom,
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 {
  max-width: 100%;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom,
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 {
  max-width: 100%;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom,
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 {
  max-width: 100%;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom,
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 {
  max-width: 100%;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom,
.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e35e657-b0f0-4f6e-ba55-d94ad4ea21b0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-6c173756-666c-409a-9424-8fb4d55958f3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c173756-666c-409a-9424-8fb4d55958f3 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-59552fbc-5280-40e7-8bcb-4739e0e8943c {
  text-align: center;
}

#s-59552fbc-5280-40e7-8bcb-4739e0e8943c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-59552fbc-5280-40e7-8bcb-4739e0e8943c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-59552fbc-5280-40e7-8bcb-4739e0e8943c .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-53b1a6c8-0444-499b-ab92-78c962dced2e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-53b1a6c8-0444-499b-ab92-78c962dced2e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-53b1a6c8-0444-499b-ab92-78c962dced2e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-53b1a6c8-0444-499b-ab92-78c962dced2e {
  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-53b1a6c8-0444-499b-ab92-78c962dced2e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-53b1a6c8-0444-499b-ab92-78c962dced2e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-53b1a6c8-0444-499b-ab92-78c962dced2e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0bf0cdf0-e716-4174-b9e7-37c828227841 {
  display: none;
}
#s-3b89a663-6ca8-434c-b67a-00d486e09a1c {
  text-align: left;
}


.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c {
  max-width: 100%;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom,
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c {
  max-width: 100%;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom,
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c {
  max-width: 100%;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom,
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c {
  max-width: 100%;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom,
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c {
  max-width: 100%;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom,
.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3b89a663-6ca8-434c-b67a-00d486e09a1c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-98e9e304-aa8e-45dd-98e3-5e27d0147ea9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-98e9e304-aa8e-45dd-98e3-5e27d0147ea9 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-48d0ce63-a336-45a9-aa2b-f97131479a5c {
  text-align: center;
}

#s-48d0ce63-a336-45a9-aa2b-f97131479a5c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-48d0ce63-a336-45a9-aa2b-f97131479a5c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-48d0ce63-a336-45a9-aa2b-f97131479a5c .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-a5edbd12-c0bf-41d3-926b-390d11a2b2ae {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a5edbd12-c0bf-41d3-926b-390d11a2b2ae:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a5edbd12-c0bf-41d3-926b-390d11a2b2ae:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a5edbd12-c0bf-41d3-926b-390d11a2b2ae {
  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-a5edbd12-c0bf-41d3-926b-390d11a2b2ae.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a5edbd12-c0bf-41d3-926b-390d11a2b2ae.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a5edbd12-c0bf-41d3-926b-390d11a2b2ae.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-86fd9f82-1025-41c1-b98c-e4071ffee5b8 {
  display: none;
}
#s-bf717919-3dc2-4188-a012-d783a61daa1e {
  text-align: left;
}


.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e {
  max-width: 100%;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom,
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e {
  max-width: 100%;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom,
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e {
  max-width: 100%;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom,
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e {
  max-width: 100%;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom,
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e {
  max-width: 100%;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom,
.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bf717919-3dc2-4188-a012-d783a61daa1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-f1252172-f029-4687-ab5c-6074b0958f2d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f1252172-f029-4687-ab5c-6074b0958f2d .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-cd03e560-fe3c-402d-9578-d7c00b228f6f {
  text-align: center;
}

#s-cd03e560-fe3c-402d-9578-d7c00b228f6f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-cd03e560-fe3c-402d-9578-d7c00b228f6f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-cd03e560-fe3c-402d-9578-d7c00b228f6f .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-1cd4b4e3-fcd9-48c4-880c-716358bb2854 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1cd4b4e3-fcd9-48c4-880c-716358bb2854:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1cd4b4e3-fcd9-48c4-880c-716358bb2854:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1cd4b4e3-fcd9-48c4-880c-716358bb2854 {
  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-1cd4b4e3-fcd9-48c4-880c-716358bb2854.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1cd4b4e3-fcd9-48c4-880c-716358bb2854.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1cd4b4e3-fcd9-48c4-880c-716358bb2854.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-15677439-a330-4437-800e-ef7347b7984a {
  display: none;
}
#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 {
  text-align: left;
}


.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 {
  max-width: 100%;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom,
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 {
  max-width: 100%;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom,
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 {
  max-width: 100%;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom,
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 {
  max-width: 100%;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom,
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 {
  max-width: 100%;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom,
.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c0004b5-c69f-4255-b7a2-37a68714ba73 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b9b6e1be-0cfc-43ae-a198-35bc4eafd69b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b9b6e1be-0cfc-43ae-a198-35bc4eafd69b .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-be0f2f2c-86b1-4ef5-bda6-e6dcd8bab040 {
  text-align: center;
}

#s-be0f2f2c-86b1-4ef5-bda6-e6dcd8bab040 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-be0f2f2c-86b1-4ef5-bda6-e6dcd8bab040 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-be0f2f2c-86b1-4ef5-bda6-e6dcd8bab040 .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-7e2dfb79-a26c-46f7-96bb-a2b09f13a486 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7e2dfb79-a26c-46f7-96bb-a2b09f13a486:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7e2dfb79-a26c-46f7-96bb-a2b09f13a486:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7e2dfb79-a26c-46f7-96bb-a2b09f13a486 {
  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-7e2dfb79-a26c-46f7-96bb-a2b09f13a486.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7e2dfb79-a26c-46f7-96bb-a2b09f13a486.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7e2dfb79-a26c-46f7-96bb-a2b09f13a486.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-81a4092e-1c39-4deb-8878-798437517a91 {
  display: none;
}
#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b {
  text-align: left;
}


.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b {
  max-width: 100%;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom,
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b {
  max-width: 100%;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom,
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b {
  max-width: 100%;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom,
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b {
  max-width: 100%;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom,
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b {
  max-width: 100%;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom,
.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cfec510d-9b47-4c02-8e4c-24dbe9ce064b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e1712b1a-ae2d-4866-8bc9-9224ca0baf2f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e1712b1a-ae2d-4866-8bc9-9224ca0baf2f .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-06c797c0-9b21-48d4-9ec3-9b93b0b74c31 {
  text-align: center;
}

#s-06c797c0-9b21-48d4-9ec3-9b93b0b74c31 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-06c797c0-9b21-48d4-9ec3-9b93b0b74c31 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-06c797c0-9b21-48d4-9ec3-9b93b0b74c31 .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-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2 {
  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-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-46b2b74a-ff8c-4db2-8a6a-5a462fa750c2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bd2a1727-c8d3-49a0-874c-062356bfa110 {
  display: none;
}
#s-3038d790-32b6-40f2-8624-1e48eb2066c8 {
  text-align: left;
}


.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 {
  max-width: 100%;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom,
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 {
  max-width: 100%;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom,
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 {
  max-width: 100%;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom,
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 {
  max-width: 100%;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom,
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 {
  max-width: 100%;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom,
.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3038d790-32b6-40f2-8624-1e48eb2066c8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-5f9bdcb6-fad5-44ac-9a17-40a93060ec67 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5f9bdcb6-fad5-44ac-9a17-40a93060ec67 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-d12da74b-46f1-401e-a4a2-ab4f913e6e11 {
  text-align: center;
}

#s-d12da74b-46f1-401e-a4a2-ab4f913e6e11 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-d12da74b-46f1-401e-a4a2-ab4f913e6e11 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d12da74b-46f1-401e-a4a2-ab4f913e6e11 .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-372e79ad-a233-4e8f-b53a-522319428291 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-372e79ad-a233-4e8f-b53a-522319428291:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-372e79ad-a233-4e8f-b53a-522319428291:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-372e79ad-a233-4e8f-b53a-522319428291 {
  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-372e79ad-a233-4e8f-b53a-522319428291.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-372e79ad-a233-4e8f-b53a-522319428291.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-372e79ad-a233-4e8f-b53a-522319428291.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-08451f02-461d-4ad1-88ee-3d50df744815 {
  display: none;
}
#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 {
  text-align: left;
}


.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 {
  max-width: 100%;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom,
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 {
  max-width: 100%;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom,
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 {
  max-width: 100%;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom,
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 {
  max-width: 100%;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom,
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 {
  max-width: 100%;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom,
.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f168f5fa-662f-4b60-80da-dc2f07bc4f80 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-5ca5c7cd-e401-44ff-a369-8a93cc769035 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5ca5c7cd-e401-44ff-a369-8a93cc769035 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-0085aaa0-5581-4cf4-bd7c-1ba766ca7100 {
  text-align: center;
}

#s-0085aaa0-5581-4cf4-bd7c-1ba766ca7100 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-0085aaa0-5581-4cf4-bd7c-1ba766ca7100 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0085aaa0-5581-4cf4-bd7c-1ba766ca7100 .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-f5290288-5439-45de-838d-2110e7dfac56 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-f5290288-5439-45de-838d-2110e7dfac56:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f5290288-5439-45de-838d-2110e7dfac56:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f5290288-5439-45de-838d-2110e7dfac56 {
  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-f5290288-5439-45de-838d-2110e7dfac56.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f5290288-5439-45de-838d-2110e7dfac56.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f5290288-5439-45de-838d-2110e7dfac56.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e7a62a9f-ce76-44c9-b7d2-e6dfcc6dce8b {
  display: none;
}
#s-2c832d01-535a-478a-9856-2dd45429ce6a {
  text-align: left;
}


.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a {
  max-width: 100%;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom,
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a {
  max-width: 100%;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom,
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a {
  max-width: 100%;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom,
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a {
  max-width: 100%;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom,
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a {
  max-width: 100%;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom,
.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c832d01-535a-478a-9856-2dd45429ce6a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2b3fc428-c40b-421a-9c80-31e931f8922d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2b3fc428-c40b-421a-9c80-31e931f8922d .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-7398be7d-90e7-4375-be91-50c6e5adf113 {
  text-align: center;
}

#s-7398be7d-90e7-4375-be91-50c6e5adf113 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-7398be7d-90e7-4375-be91-50c6e5adf113 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-7398be7d-90e7-4375-be91-50c6e5adf113 .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-4b49ff3a-13a5-4239-a5c7-8774eb388062 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-4b49ff3a-13a5-4239-a5c7-8774eb388062:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4b49ff3a-13a5-4239-a5c7-8774eb388062:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4b49ff3a-13a5-4239-a5c7-8774eb388062 {
  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-4b49ff3a-13a5-4239-a5c7-8774eb388062.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4b49ff3a-13a5-4239-a5c7-8774eb388062.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-4b49ff3a-13a5-4239-a5c7-8774eb388062.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (max-width: 767px){#s-fba9e815-8ad0-468d-8c25-b5967dcde538 {
  
}
}
#s-fba9e815-8ad0-468d-8c25-b5967dcde538 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-fba9e815-8ad0-468d-8c25-b5967dcde538 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-fba9e815-8ad0-468d-8c25-b5967dcde538 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-fba9e815-8ad0-468d-8c25-b5967dcde538 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-fba9e815-8ad0-468d-8c25-b5967dcde538 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-fba9e815-8ad0-468d-8c25-b5967dcde538 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-3cfd5be1-8e93-415d-9fc4-f6606a70f844 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3cfd5be1-8e93-415d-9fc4-f6606a70f844"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-5b22a1d0-b3da-469e-9123-ff9049bd0ab9 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-5b22a1d0-b3da-469e-9123-ff9049bd0ab9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5b22a1d0-b3da-469e-9123-ff9049bd0ab9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5b22a1d0-b3da-469e-9123-ff9049bd0ab9 {
  
}
}@media (max-width: 767px){#s-5b22a1d0-b3da-469e-9123-ff9049bd0ab9 {
  
}
}
#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 {
  
}
}@media (max-width: 767px){#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 {
  
}
}
#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}


#s-b4044780-9d19-4d9b-8bc7-6b4d76939166 .shogun-heading-component h2 a {
  color: rgba(0, 0, 0, 1);
}


#s-15664530-a5a3-4676-9cb3-46e2b0082960 {
  border-style: solid;
margin-top: 30px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-15664530-a5a3-4676-9cb3-46e2b0082960 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-15664530-a5a3-4676-9cb3-46e2b0082960 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-15664530-a5a3-4676-9cb3-46e2b0082960 {
  
}
}@media (max-width: 767px){#s-15664530-a5a3-4676-9cb3-46e2b0082960 {
  
}
}
#s-70384735-e66e-4094-9f08-6c3414c9739d {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-70384735-e66e-4094-9f08-6c3414c9739d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-70384735-e66e-4094-9f08-6c3414c9739d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-70384735-e66e-4094-9f08-6c3414c9739d {
  
}
}@media (max-width: 767px){#s-70384735-e66e-4094-9f08-6c3414c9739d {
  
}
}
@media (min-width: 0px) {
[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 1.0px);
}

}

@media (min-width: 768px) {
[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 1.0px);
}

}

@media (min-width: 992px) {
[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 1.0px);
}

}

@media (min-width: 1200px) {
[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 1.0px);
}

[id="s-70384735-e66e-4094-9f08-6c3414c9739d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 1.0px);
}

}

#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c {
  
}
}@media (max-width: 767px){#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c {
  
}
}


#s-1f9cd035-5208-4d1c-82c3-3d5047fa905c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-c3460942-d6d4-4802-aa98-66add7ff47a3 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-c3460942-d6d4-4802-aa98-66add7ff47a3:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-c3460942-d6d4-4802-aa98-66add7ff47a3:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-c3460942-d6d4-4802-aa98-66add7ff47a3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c3460942-d6d4-4802-aa98-66add7ff47a3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c3460942-d6d4-4802-aa98-66add7ff47a3 {
  
}
}@media (max-width: 767px){#s-c3460942-d6d4-4802-aa98-66add7ff47a3 {
  
}
}


#s-c3460942-d6d4-4802-aa98-66add7ff47a3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-70e84056-04db-45fb-9fed-17295fac8f07 {
  margin-top: 155px;
}

#s-7a68a3e9-64c3-49a0-8f86-d1a0f025a1ff {
  padding-top: 100px;
padding-left: 30%;
padding-bottom: 100px;
padding-right: 30%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7a68a3e9-64c3-49a0-8f86-d1a0f025a1ff {
  padding-top: 60px;
padding-left: 15%;
padding-bottom: 60px;
padding-right: 15%;
}
}@media (max-width: 767px){#s-7a68a3e9-64c3-49a0-8f86-d1a0f025a1ff {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-7a68a3e9-64c3-49a0-8f86-d1a0f025a1ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a68a3e9-64c3-49a0-8f86-d1a0f025a1ff.shg-box.shg-c {
  justify-content: center;
}

#s-9cb874ef-4107-4ee7-97a4-140b5ae68f69 {
  margin-top: 0px;
margin-bottom: 10px;
text-align: center;
}

#s-9cb874ef-4107-4ee7-97a4-140b5ae68f69 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Work Sans;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-80180fa8-90fb-4bdf-8fe5-5e362fc77c09 {
  margin-bottom: 20px;
text-align: center;
}

#s-80180fa8-90fb-4bdf-8fe5-5e362fc77c09 .shogun-heading-component h1 {
  color: rgba(138, 202, 30, 1);
  font-weight:  800 ;
  font-family: Work Sans;
  font-style:   ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-040a3af4-38ba-4be4-aed9-9d57882516b2 {
  margin-bottom: 20px;
text-align: center;
}

#s-040a3af4-38ba-4be4-aed9-9d57882516b2 .shogun-heading-component h1 {
  color: rgba(102, 102, 102, 1);
  font-weight:  normal ;
  font-family: Work Sans;
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-7ceda2c8-964e-4d47-a373-761a93210651 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-box {
  padding: 10px;
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  
  
  
  
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  font-size: ;
  font-style: ;
  color: rgba(34, 188, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
  justify-content: center;
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: rgba(224, 0, 0, 1);
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(34, 188, 34, 1);
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-field-error-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  font-style: ;
  color: rgba(224, 0, 0, 1);
  font-family: Spartan;
  font-weight: 500;
  
  
  
}

#s-7ceda2c8-964e-4d47-a373-761a93210651 .shogun-form-field-error-msg > span {
  display: flex;
  align-items: center;
}
.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-64461fac-4405-47ea-8ad3-3df62b94dce7 {
  margin-bottom: 10px;
}

#s-64461fac-4405-47ea-8ad3-3df62b94dce7  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-64461fac-4405-47ea-8ad3-3df62b94dce7  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}

#s-64461fac-4405-47ea-8ad3-3df62b94dce7  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}

#s-64461fac-4405-47ea-8ad3-3df62b94dce7  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}


#s-64461fac-4405-47ea-8ad3-3df62b94dce7 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-64461fac-4405-47ea-8ad3-3df62b94dce7 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-d4183d4c-af90-414f-a38f-d7a4fe65a728 {
  margin-bottom: 10px;
}

#s-d4183d4c-af90-414f-a38f-d7a4fe65a728  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-d4183d4c-af90-414f-a38f-d7a4fe65a728  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}

#s-d4183d4c-af90-414f-a38f-d7a4fe65a728  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}

#s-d4183d4c-af90-414f-a38f-d7a4fe65a728  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}


#s-d4183d4c-af90-414f-a38f-d7a4fe65a728 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-d4183d4c-af90-414f-a38f-d7a4fe65a728 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-25749cad-142f-4eb5-ab9f-3e848e105dc3 {
  margin-bottom: 10px;
}

#s-25749cad-142f-4eb5-ab9f-3e848e105dc3  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-25749cad-142f-4eb5-ab9f-3e848e105dc3  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}

#s-25749cad-142f-4eb5-ab9f-3e848e105dc3  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}

#s-25749cad-142f-4eb5-ab9f-3e848e105dc3  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  
  
}


#s-25749cad-142f-4eb5-ab9f-3e848e105dc3 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-25749cad-142f-4eb5-ab9f-3e848e105dc3 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355 {
  margin-bottom: 10px;
}

#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-58a4aa6f-91ed-4b23-a78e-12fc1a20b355 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc {
  margin-bottom: 10px;
}

#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-eb59c6e2-2382-42d8-87fd-11b8acb58cdc .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-f43036e5-1d22-43fe-876c-1c958328b134 {
  margin-bottom: 10px;
}

#s-f43036e5-1d22-43fe-876c-1c958328b134  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-f43036e5-1d22-43fe-876c-1c958328b134  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-f43036e5-1d22-43fe-876c-1c958328b134  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-f43036e5-1d22-43fe-876c-1c958328b134  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-f43036e5-1d22-43fe-876c-1c958328b134 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-f43036e5-1d22-43fe-876c-1c958328b134 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-e293d122-3c14-41ec-a91e-471a93ff3799 {
  margin-bottom: 10px;
}

#s-e293d122-3c14-41ec-a91e-471a93ff3799  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-e293d122-3c14-41ec-a91e-471a93ff3799  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-e293d122-3c14-41ec-a91e-471a93ff3799  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-e293d122-3c14-41ec-a91e-471a93ff3799  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-e293d122-3c14-41ec-a91e-471a93ff3799 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-e293d122-3c14-41ec-a91e-471a93ff3799 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-e523901d-93c8-4e68-945e-bcb25ea8856c {
  margin-bottom: 10px;
}

#s-e523901d-93c8-4e68-945e-bcb25ea8856c  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-e523901d-93c8-4e68-945e-bcb25ea8856c  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-e523901d-93c8-4e68-945e-bcb25ea8856c  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-e523901d-93c8-4e68-945e-bcb25ea8856c  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-e523901d-93c8-4e68-945e-bcb25ea8856c .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-e523901d-93c8-4e68-945e-bcb25ea8856c .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-a878a71f-245c-4361-a46c-ad6300969b75 {
  margin-bottom: 10px;
}

#s-a878a71f-245c-4361-a46c-ad6300969b75  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-a878a71f-245c-4361-a46c-ad6300969b75  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-a878a71f-245c-4361-a46c-ad6300969b75  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-a878a71f-245c-4361-a46c-ad6300969b75  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-a878a71f-245c-4361-a46c-ad6300969b75 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-a878a71f-245c-4361-a46c-ad6300969b75 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed {
  margin-bottom: 5px;
}

#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(245, 245, 245, 1);
  
  font-size: 16px;
  font-style: ;
  color: #000;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed  .shogun-form-text-input-field::-moz-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed  .shogun-form-text-input-field:-ms-input-placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}

#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed  .shogun-form-text-input-field::placeholder {
  font-size: 16px;
  font-style: ;
  color: rgba(34, 34, 34, 1);
  font-family: Work Sans;
  font-weight: 500;
  line-height: 2em;
  
}


#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: #000;
  
  background-color: rgba(241, 241, 241, 1);
  color: #000;
}



#s-f9bf8985-ab23-43b8-ad0d-0e3c5ba235ed .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


.shogun-form-box-submit:focus {
  outline: none;
}

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

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

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

#s-a77db557-2913-41b3-8cc6-e0dfc256cee6 {
  background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 45px;
padding-bottom: 15px;
padding-right: 45px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
color: #FFFFFF;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
font-family: Work Sans;
font-weight: 800;
hover-type: color;
}
#s-a77db557-2913-41b3-8cc6-e0dfc256cee6:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 0px !important;
background-color: rgba(34, 34, 34, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-a77db557-2913-41b3-8cc6-e0dfc256cee6:active {background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 0px !important;
background-color: rgba(68, 68, 68, 1) !important;
text-decoration: none !important;
hover-type: color !important;}
#s-a77db557-2913-41b3-8cc6-e0dfc256cee6[disabled],
#s-a77db557-2913-41b3-8cc6-e0dfc256cee6[disabled]:hover,
#s-a77db557-2913-41b3-8cc6-e0dfc256cee6[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-a77db557-2913-41b3-8cc6-e0dfc256cee6 {
  display:  inline-block ;
  width:  auto ;
}

@media (max-width: 767px){#s-a77db557-2913-41b3-8cc6-e0dfc256cee6[disabled],
#s-a77db557-2913-41b3-8cc6-e0dfc256cee6[disabled]:hover,
#s-a77db557-2913-41b3-8cc6-e0dfc256cee6[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-a77db557-2913-41b3-8cc6-e0dfc256cee6 {
  display:  block ;
  width:  100% ;
}

}
#s-c242a48d-7a75-45e8-8a3b-fced48ed8738 {
  margin-bottom: 20px;
text-align: center;
}

#s-c242a48d-7a75-45e8-8a3b-fced48ed8738 .shogun-heading-component h3 {
  color: rgba(102, 102, 102, 1);
  font-weight:  600 ;
  font-family: Work Sans;
  font-style:   ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-853933db-5c14-4e0f-8e02-a0c9ea9687eb {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-853933db-5c14-4e0f-8e02-a0c9ea9687eb"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-b7525f0b-efb1-4e3f-bfd4-50526af341b6 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-b7525f0b-efb1-4e3f-bfd4-50526af341b6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b7525f0b-efb1-4e3f-bfd4-50526af341b6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b7525f0b-efb1-4e3f-bfd4-50526af341b6 {
  
}
}@media (max-width: 767px){#s-b7525f0b-efb1-4e3f-bfd4-50526af341b6 {
  
}
}
#s-11b1263e-d82e-496a-93fa-9398c2e1627e {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-11b1263e-d82e-496a-93fa-9398c2e1627e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-11b1263e-d82e-496a-93fa-9398c2e1627e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-11b1263e-d82e-496a-93fa-9398c2e1627e {
  
}
}@media (max-width: 767px){#s-11b1263e-d82e-496a-93fa-9398c2e1627e {
  
}
}
#s-11b1263e-d82e-496a-93fa-9398c2e1627e .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-2c267cd9-d33d-4c1c-885e-4b8381bbb182 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-2c267cd9-d33d-4c1c-885e-4b8381bbb182 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2c267cd9-d33d-4c1c-885e-4b8381bbb182 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2c267cd9-d33d-4c1c-885e-4b8381bbb182 {
  
}
}@media (max-width: 767px){#s-2c267cd9-d33d-4c1c-885e-4b8381bbb182 {
  
}
}
#s-873d3c56-4d51-4d3d-a080-b418f21870f8 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-873d3c56-4d51-4d3d-a080-b418f21870f8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-873d3c56-4d51-4d3d-a080-b418f21870f8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-873d3c56-4d51-4d3d-a080-b418f21870f8 {
  
}
}@media (max-width: 767px){#s-873d3c56-4d51-4d3d-a080-b418f21870f8 {
  
}
}
@media (min-width: 0px) {
[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-873d3c56-4d51-4d3d-a080-b418f21870f8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08 {
  
}
}@media (max-width: 767px){#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08 {
  
}
}


#s-ff90d78c-2b4a-4824-b0f5-e6623063cb08.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 13px;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17:hover {box-shadow:  15px   !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(0, 97, 255, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17:active {box-shadow: 0px 0px   !important;
background-color: rgba(0, 97, 255, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17 {
  
}
}@media (max-width: 767px){#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17 {
  
}
}


#s-f3b4e027-a9c9-4fc8-9aba-3b8841363f17.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-1434423d-582b-41ef-9e59-7207dff26b47 {
  margin-top: 5%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-1434423d-582b-41ef-9e59-7207dff26b47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1434423d-582b-41ef-9e59-7207dff26b47.shg-box.shg-c {
  justify-content: center;
}

#s-c4025bf4-de9d-4be7-b1d9-7218a1da0806 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-5c7def2d-ba5a-4a19-8f25-8f14e3e4c7cb > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-5c7def2d-ba5a-4a19-8f25-8f14e3e4c7cb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-5c7def2d-ba5a-4a19-8f25-8f14e3e4c7cb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-5c7def2d-ba5a-4a19-8f25-8f14e3e4c7cb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-5c7def2d-ba5a-4a19-8f25-8f14e3e4c7cb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 28px;
}

#s-5c7def2d-ba5a-4a19-8f25-8f14e3e4c7cb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 28px;
}
#s-3c7addd1-512d-46a1-b340-aecfc324c1f7 {
  min-height: 50px;
}








#s-3c7addd1-512d-46a1-b340-aecfc324c1f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c7addd1-512d-46a1-b340-aecfc324c1f7.shg-box.shg-c {
  justify-content: center;
}

#s-be0db4be-094c-4b36-935c-f61eab9b1914 {
  text-align: center;
}




  #s-be0db4be-094c-4b36-935c-f61eab9b1914 img.shogun-image {
    
    width: px;
  }


#s-be0db4be-094c-4b36-935c-f61eab9b1914 .shogun-image-content {
  
    align-items: center;
  
}

#s-f9711e06-0316-418e-b5da-d61678635a1f {
  display: none;
}
#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 {
  text-align: left;
}


.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 {
  max-width: 100%;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom,
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 {
  max-width: 100%;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom,
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 {
  max-width: 100%;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom,
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 {
  max-width: 100%;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom,
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 {
  max-width: 100%;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom,
.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db7b8fb5-3d8b-4ae5-9f3f-e6e9e8e50652 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ce743551-1cfd-43ff-b435-87ed7bb7fe97 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ce743551-1cfd-43ff-b435-87ed7bb7fe97 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-20caf53b-674e-4d92-9e59-03f1cdf68931 {
  text-align: center;
}

#s-20caf53b-674e-4d92-9e59-03f1cdf68931 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-20caf53b-674e-4d92-9e59-03f1cdf68931 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-20caf53b-674e-4d92-9e59-03f1cdf68931 .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-4e644503-c92d-4ec5-a3ca-1aadda3a3823 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-4e644503-c92d-4ec5-a3ca-1aadda3a3823:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4e644503-c92d-4ec5-a3ca-1aadda3a3823:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4e644503-c92d-4ec5-a3ca-1aadda3a3823 {
  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-4e644503-c92d-4ec5-a3ca-1aadda3a3823.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4e644503-c92d-4ec5-a3ca-1aadda3a3823.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-4e644503-c92d-4ec5-a3ca-1aadda3a3823.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-dcd81ff6-eb79-420b-859c-a03a37bc7654 {
  display: none;
}
#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 {
  text-align: left;
}


.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 {
  max-width: 100%;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom,
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 {
  max-width: 100%;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom,
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 {
  max-width: 100%;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom,
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 {
  max-width: 100%;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom,
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 {
  max-width: 100%;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom,
.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f0ee5cd4-c68a-4a84-8979-818f3678a823 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d2ca53f7-7959-4d43-9689-3f4b2a0c1330 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2ca53f7-7959-4d43-9689-3f4b2a0c1330 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-d05843b2-809e-4597-9031-11f7d790f252 {
  text-align: center;
}

#s-d05843b2-809e-4597-9031-11f7d790f252 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-d05843b2-809e-4597-9031-11f7d790f252 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d05843b2-809e-4597-9031-11f7d790f252 .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-c36a53c4-33b6-4e88-b583-92c180eb407e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c36a53c4-33b6-4e88-b583-92c180eb407e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c36a53c4-33b6-4e88-b583-92c180eb407e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c36a53c4-33b6-4e88-b583-92c180eb407e {
  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-c36a53c4-33b6-4e88-b583-92c180eb407e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c36a53c4-33b6-4e88-b583-92c180eb407e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c36a53c4-33b6-4e88-b583-92c180eb407e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-36861368-b26f-43bc-8749-0038f7d6b1fc {
  display: none;
}
#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c {
  text-align: left;
}


.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c {
  max-width: 100%;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom,
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c {
  max-width: 100%;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom,
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c {
  max-width: 100%;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom,
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c {
  max-width: 100%;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom,
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c {
  max-width: 100%;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom,
.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4e9f4e82-4cf1-4acb-b365-4a9bf175d16c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b1c68ff3-5df9-4eeb-84dc-b9eeb76053c1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b1c68ff3-5df9-4eeb-84dc-b9eeb76053c1 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-43e5bbc0-a6ef-4495-92d5-9a2ee1016b02 {
  text-align: center;
}

#s-43e5bbc0-a6ef-4495-92d5-9a2ee1016b02 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-43e5bbc0-a6ef-4495-92d5-9a2ee1016b02 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-43e5bbc0-a6ef-4495-92d5-9a2ee1016b02 .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-062389aa-deec-42a5-99c8-5d710239b3c4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-062389aa-deec-42a5-99c8-5d710239b3c4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-062389aa-deec-42a5-99c8-5d710239b3c4:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-062389aa-deec-42a5-99c8-5d710239b3c4 {
  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-062389aa-deec-42a5-99c8-5d710239b3c4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-062389aa-deec-42a5-99c8-5d710239b3c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-062389aa-deec-42a5-99c8-5d710239b3c4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-88397099-1978-404d-9bf0-bfb7a71f8b92 {
  display: none;
}
#s-10558358-80c0-4781-870a-fcab51020d89 {
  text-align: left;
}


.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 {
  max-width: 100%;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom,
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 {
  max-width: 100%;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom,
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 {
  max-width: 100%;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom,
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 {
  max-width: 100%;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom,
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 {
  max-width: 100%;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom,
.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-10558358-80c0-4781-870a-fcab51020d89 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-8954e57d-cbd1-431b-b0cb-ec2a95e6c55b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8954e57d-cbd1-431b-b0cb-ec2a95e6c55b .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-603c9e40-dd9f-421a-b015-29da679ad9f0 {
  text-align: center;
}

#s-603c9e40-dd9f-421a-b015-29da679ad9f0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-603c9e40-dd9f-421a-b015-29da679ad9f0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-603c9e40-dd9f-421a-b015-29da679ad9f0 .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-a7fff142-455e-4c94-b1aa-4031340aa823 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a7fff142-455e-4c94-b1aa-4031340aa823:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a7fff142-455e-4c94-b1aa-4031340aa823:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a7fff142-455e-4c94-b1aa-4031340aa823 {
  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-a7fff142-455e-4c94-b1aa-4031340aa823.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a7fff142-455e-4c94-b1aa-4031340aa823.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a7fff142-455e-4c94-b1aa-4031340aa823.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-f89567ef-88e3-4252-96e5-e15b1d1f47fe {
  display: none;
}
#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c {
  text-align: left;
}


.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c {
  max-width: 100%;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom,
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c {
  max-width: 100%;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom,
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c {
  max-width: 100%;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom,
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c {
  max-width: 100%;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom,
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c {
  max-width: 100%;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom,
.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8a2f1e83-9f61-4211-ae22-e7a06c4a279c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d67966c9-e94f-4074-b05b-d478ac9160c7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d67966c9-e94f-4074-b05b-d478ac9160c7 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-755bf0b0-9369-4030-bec4-1f4f5d5bde16 {
  text-align: center;
}

#s-755bf0b0-9369-4030-bec4-1f4f5d5bde16 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-755bf0b0-9369-4030-bec4-1f4f5d5bde16 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-755bf0b0-9369-4030-bec4-1f4f5d5bde16 .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-148cf6b3-aee1-41e4-8f3b-972acad085c7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-148cf6b3-aee1-41e4-8f3b-972acad085c7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-148cf6b3-aee1-41e4-8f3b-972acad085c7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-148cf6b3-aee1-41e4-8f3b-972acad085c7 {
  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-148cf6b3-aee1-41e4-8f3b-972acad085c7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-148cf6b3-aee1-41e4-8f3b-972acad085c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-148cf6b3-aee1-41e4-8f3b-972acad085c7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-219eab60-aafa-42fc-95c6-c9e0847cc6e4 {
  display: none;
}
#s-2e919e48-491e-4eb4-addd-6950552324b6 {
  text-align: left;
}


.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 {
  max-width: 100%;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom,
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 {
  max-width: 100%;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom,
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 {
  max-width: 100%;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom,
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 {
  max-width: 100%;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom,
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 {
  max-width: 100%;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom,
.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2e919e48-491e-4eb4-addd-6950552324b6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e84c9425-a857-4251-b651-f4d4f246eebd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e84c9425-a857-4251-b651-f4d4f246eebd .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-e5b234d8-752d-468c-8568-09e9a780ede8 {
  text-align: center;
}

#s-e5b234d8-752d-468c-8568-09e9a780ede8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-e5b234d8-752d-468c-8568-09e9a780ede8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e5b234d8-752d-468c-8568-09e9a780ede8 .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-f07d3f81-8c8d-47c1-8be5-8c2987c7383b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-f07d3f81-8c8d-47c1-8be5-8c2987c7383b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f07d3f81-8c8d-47c1-8be5-8c2987c7383b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f07d3f81-8c8d-47c1-8be5-8c2987c7383b {
  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-f07d3f81-8c8d-47c1-8be5-8c2987c7383b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f07d3f81-8c8d-47c1-8be5-8c2987c7383b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f07d3f81-8c8d-47c1-8be5-8c2987c7383b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d6c6f87d-7a57-4479-b377-cd6582042f20 hr {
  border: 0;
  width: 100%;
  border-top: 2px solid #ddd;
}

#s-efda47ce-4aa5-4aee-b789-14bd3afe19cf {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-171b05f5-265b-4147-b475-ce68de7d98f8 {
  display: none;
}
@media (min-width: 0px) {
[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-a4244547-b790-4e12-99a6-c204a1ed1ce8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 25.0px);
}

}

#s-6f303caa-de29-4704-bf9a-911319b727d0 {
  text-align: left;
}


.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 {
  max-width: 100%;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom,
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 {
  max-width: 100%;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom,
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 {
  max-width: 100%;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom,
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 {
  max-width: 100%;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom,
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 {
  max-width: 100%;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom,
.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6f303caa-de29-4704-bf9a-911319b727d0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
.shg-gallery-thumb-list {
  display: flex;
  flex-wrap: wrap;
}

.shg-gallery-thumb-image {
  max-width: 100%;
  display: inline-block;
  cursor: pointer;
}

.shg-gallery-thumb-image:hover {
  opacity: 0.6;
}

.shg-gallery-thumb-image-square {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

#s-7083ee00-877e-4df6-9507-e76db234e4ca {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-7083ee00-877e-4df6-9507-e76db234e4ca .shg-gallery-thumb-image-wrapper {
  
  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-7083ee00-877e-4df6-9507-e76db234e4ca .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf {
  text-align: left;
}


.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf {
  max-width: 100%;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom,
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf {
  max-width: 100%;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom,
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf {
  max-width: 100%;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom,
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf {
  max-width: 100%;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom,
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf {
  max-width: 100%;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom,
.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-37b4886b-9b1f-44d3-ad85-da86b89d7abf .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c4c7565a-178c-4061-aa07-4beffb27a7fb {
  text-align: left;
}


.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb {
  max-width: 100%;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom,
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb {
  max-width: 100%;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom,
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb {
  max-width: 100%;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom,
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb {
  max-width: 100%;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom,
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb {
  max-width: 100%;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom,
.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c4c7565a-178c-4061-aa07-4beffb27a7fb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-6d12ce04-46a8-4e89-a02e-fdfea634966f {
  text-align: left;
}


.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f {
  max-width: 100%;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom,
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f {
  max-width: 100%;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom,
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f {
  max-width: 100%;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom,
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f {
  max-width: 100%;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom,
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f {
  max-width: 100%;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom,
.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6d12ce04-46a8-4e89-a02e-fdfea634966f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-67b81cf0-b67b-4436-b17e-e05bddd05707 {
  text-align: left;
}


.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 {
  max-width: 100%;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom,
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 {
  max-width: 100%;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom,
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 {
  max-width: 100%;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom,
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 {
  max-width: 100%;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom,
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 {
  max-width: 100%;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom,
.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-67b81cf0-b67b-4436-b17e-e05bddd05707 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-be703745-b067-4b30-a225-13ee6406af16 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-be703745-b067-4b30-a225-13ee6406af16 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 13.2px;
}

#s-44300a92-33b1-4c5d-bafe-f6a9fbbc9a53 {
  text-align: center;
}

#s-44300a92-33b1-4c5d-bafe-f6a9fbbc9a53 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-44300a92-33b1-4c5d-bafe-f6a9fbbc9a53 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-44300a92-33b1-4c5d-bafe-f6a9fbbc9a53 .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-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5 {
  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-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6bfed6a9-8e76-46ad-9bd7-c11f42d103f5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1f7a171e-f121-4277-b4d6-98f4b1aea680 {
  display: none;
}
#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 {
  text-align: left;
}


.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 {
  max-width: 100%;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom,
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 {
  max-width: 100%;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom,
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 {
  max-width: 100%;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom,
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 {
  max-width: 100%;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom,
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 {
  max-width: 100%;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom,
.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-737f3073-c8d0-4892-b24f-7ab354b2e4d1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ed238d6a-8a66-4198-a1f4-152843d31619 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ed238d6a-8a66-4198-a1f4-152843d31619 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-4636e918-1640-450e-884d-856d2933e6ea {
  text-align: center;
}

#s-4636e918-1640-450e-884d-856d2933e6ea .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-4636e918-1640-450e-884d-856d2933e6ea .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4636e918-1640-450e-884d-856d2933e6ea .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-9adf321b-2cb0-4626-b27a-aafc198838e9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9adf321b-2cb0-4626-b27a-aafc198838e9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9adf321b-2cb0-4626-b27a-aafc198838e9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9adf321b-2cb0-4626-b27a-aafc198838e9 {
  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-9adf321b-2cb0-4626-b27a-aafc198838e9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9adf321b-2cb0-4626-b27a-aafc198838e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9adf321b-2cb0-4626-b27a-aafc198838e9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2729160e-52bb-479c-b1b3-8f3260868783 {
  display: none;
}
#s-404a5bae-9017-4fce-b017-af9f29bfad57 {
  text-align: left;
}


.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 {
  max-width: 100%;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom,
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 {
  max-width: 100%;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom,
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 {
  max-width: 100%;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom,
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 {
  max-width: 100%;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom,
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 {
  max-width: 100%;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom,
.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-404a5bae-9017-4fce-b017-af9f29bfad57 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c288b2b6-4330-4389-a897-34222d83dea4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c288b2b6-4330-4389-a897-34222d83dea4 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-4abeddbb-de8a-4cef-8675-dd7cc7b5fa5a {
  text-align: center;
}

#s-4abeddbb-de8a-4cef-8675-dd7cc7b5fa5a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-4abeddbb-de8a-4cef-8675-dd7cc7b5fa5a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4abeddbb-de8a-4cef-8675-dd7cc7b5fa5a .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-51b8d3e4-3bff-4d70-9417-de4be749ead5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-51b8d3e4-3bff-4d70-9417-de4be749ead5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-51b8d3e4-3bff-4d70-9417-de4be749ead5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-51b8d3e4-3bff-4d70-9417-de4be749ead5 {
  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-51b8d3e4-3bff-4d70-9417-de4be749ead5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-51b8d3e4-3bff-4d70-9417-de4be749ead5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-51b8d3e4-3bff-4d70-9417-de4be749ead5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e77cdb29-99e7-4d4b-b145-33241794891c {
  display: none;
}
#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 {
  text-align: left;
}


.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 {
  max-width: 100%;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom,
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 {
  max-width: 100%;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom,
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 {
  max-width: 100%;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom,
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 {
  max-width: 100%;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom,
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 {
  max-width: 100%;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom,
.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-338bbd0a-3a0f-4a15-b611-7621fb74f924 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c1914a9e-c7ae-4ab6-a809-40583033f5c1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c1914a9e-c7ae-4ab6-a809-40583033f5c1 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-e831a89c-ac56-41b6-a707-bb51a1b0709c {
  text-align: center;
}

#s-e831a89c-ac56-41b6-a707-bb51a1b0709c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-e831a89c-ac56-41b6-a707-bb51a1b0709c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e831a89c-ac56-41b6-a707-bb51a1b0709c .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-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f {
  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-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d438a30e-bb5a-44ae-88bf-2be15e1b8c1f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-45a1046f-56be-4523-9b36-a944f027da17 {
  display: none;
}
#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 {
  text-align: left;
}


.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 {
  max-width: 100%;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom,
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 {
  max-width: 100%;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom,
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 {
  max-width: 100%;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom,
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 {
  max-width: 100%;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom,
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 {
  max-width: 100%;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom,
.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d80d7c7-0df2-4242-bc8e-1c89e5d02710 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b51565d2-4808-45f3-b368-2a94eeaaad21 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b51565d2-4808-45f3-b368-2a94eeaaad21 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-6a7c3c8e-e746-4e94-b317-663faa52f8e1 {
  text-align: center;
}

#s-6a7c3c8e-e746-4e94-b317-663faa52f8e1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-6a7c3c8e-e746-4e94-b317-663faa52f8e1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6a7c3c8e-e746-4e94-b317-663faa52f8e1 .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-34d83621-6122-4eac-bfb7-cb535b51d1a9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-34d83621-6122-4eac-bfb7-cb535b51d1a9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-34d83621-6122-4eac-bfb7-cb535b51d1a9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-34d83621-6122-4eac-bfb7-cb535b51d1a9 {
  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-34d83621-6122-4eac-bfb7-cb535b51d1a9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-34d83621-6122-4eac-bfb7-cb535b51d1a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-34d83621-6122-4eac-bfb7-cb535b51d1a9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-badd3484-fa8b-4ffd-beb6-92c645f605ae {
  display: none;
}
#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 {
  text-align: left;
}


.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 {
  max-width: 100%;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom,
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 {
  max-width: 100%;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom,
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 {
  max-width: 100%;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom,
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 {
  max-width: 100%;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom,
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 {
  max-width: 100%;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom,
.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8eaea674-4815-40dc-b6b1-4ebb8a3f2b04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-fa2d01e6-2f0d-4d3f-9ebd-cdacc4d9a0ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fa2d01e6-2f0d-4d3f-9ebd-cdacc4d9a0ac .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-78d3a90c-2283-446e-8a05-4980018a5f98 {
  text-align: center;
}

#s-78d3a90c-2283-446e-8a05-4980018a5f98 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-78d3a90c-2283-446e-8a05-4980018a5f98 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-78d3a90c-2283-446e-8a05-4980018a5f98 .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-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e {
  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-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e9f6cf0d-5cf8-4a6b-a5de-676c45e7cd9e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c1446609-37ca-447f-a7fc-0d20a20ccd15 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c1446609-37ca-447f-a7fc-0d20a20ccd15 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c1446609-37ca-447f-a7fc-0d20a20ccd15 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c1446609-37ca-447f-a7fc-0d20a20ccd15 {
  
}
}@media (max-width: 767px){#s-c1446609-37ca-447f-a7fc-0d20a20ccd15 {
  
}
}







#s-c1446609-37ca-447f-a7fc-0d20a20ccd15 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1446609-37ca-447f-a7fc-0d20a20ccd15.shg-box.shg-c {
  justify-content: flex-start;
}

#s-d817983e-fbbc-4cfd-ae8a-3a18e0e63de2 {
  min-height: 50px;
}








#s-d817983e-fbbc-4cfd-ae8a-3a18e0e63de2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d817983e-fbbc-4cfd-ae8a-3a18e0e63de2.shg-box.shg-c {
  justify-content: center;
}

#s-4b625927-f83a-4457-a61c-5b114721380c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4b625927-f83a-4457-a61c-5b114721380c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-4b625927-f83a-4457-a61c-5b114721380c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-4b625927-f83a-4457-a61c-5b114721380c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4b625927-f83a-4457-a61c-5b114721380c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-4b625927-f83a-4457-a61c-5b114721380c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4849c451-a1a4-4bf4-81ad-cdf13faf7ba2"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-3b8e901e-7dea-4f40-ba75-a6f2b227cb24 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-3b8e901e-7dea-4f40-ba75-a6f2b227cb24 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3b8e901e-7dea-4f40-ba75-a6f2b227cb24 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3b8e901e-7dea-4f40-ba75-a6f2b227cb24 {
  
}
}@media (max-width: 767px){#s-3b8e901e-7dea-4f40-ba75-a6f2b227cb24 {
  
}
}
#s-cc4291d6-af83-47dc-9519-bbe302f6e140 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-cc4291d6-af83-47dc-9519-bbe302f6e140 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cc4291d6-af83-47dc-9519-bbe302f6e140 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cc4291d6-af83-47dc-9519-bbe302f6e140 {
  
}
}@media (max-width: 767px){#s-cc4291d6-af83-47dc-9519-bbe302f6e140 {
  
}
}
#s-cc4291d6-af83-47dc-9519-bbe302f6e140 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-1061b2af-ab2f-462e-8f3d-f0f35daf10fe {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-1061b2af-ab2f-462e-8f3d-f0f35daf10fe {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1061b2af-ab2f-462e-8f3d-f0f35daf10fe {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1061b2af-ab2f-462e-8f3d-f0f35daf10fe {
  
}
}@media (max-width: 767px){#s-1061b2af-ab2f-462e-8f3d-f0f35daf10fe {
  
}
}
#s-0f95792c-71a9-4df2-82cb-508206414767 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-0f95792c-71a9-4df2-82cb-508206414767 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0f95792c-71a9-4df2-82cb-508206414767 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0f95792c-71a9-4df2-82cb-508206414767 {
  
}
}@media (max-width: 767px){#s-0f95792c-71a9-4df2-82cb-508206414767 {
  
}
}
@media (min-width: 0px) {
[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0f95792c-71a9-4df2-82cb-508206414767"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9 {
  
}
}@media (max-width: 767px){#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9 {
  
}
}


#s-13361909-9c7d-4f4b-a61d-e54931c2c2a9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922 {
  
}
}@media (max-width: 767px){#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922 {
  
}
}


#s-17aba4fb-f8ac-42b1-8004-e0818cdbc922.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-e04ed74f-a50b-4a76-a2c2-52839ec16911 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-e04ed74f-a50b-4a76-a2c2-52839ec16911 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e04ed74f-a50b-4a76-a2c2-52839ec16911 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e04ed74f-a50b-4a76-a2c2-52839ec16911 {
  
}
}@media (max-width: 767px){#s-e04ed74f-a50b-4a76-a2c2-52839ec16911 {
  
}
}







#s-e04ed74f-a50b-4a76-a2c2-52839ec16911 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e04ed74f-a50b-4a76-a2c2-52839ec16911.shg-box.shg-c {
  justify-content: flex-start;
}

#s-bdc92b7f-3ee0-4908-8266-23d7c2316513 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-color: rgba(234, 249, 254, 1);
}
@media (min-width: 1200px){#s-bdc92b7f-3ee0-4908-8266-23d7c2316513 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bdc92b7f-3ee0-4908-8266-23d7c2316513 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bdc92b7f-3ee0-4908-8266-23d7c2316513 {
  
}
}@media (max-width: 767px){#s-bdc92b7f-3ee0-4908-8266-23d7c2316513 {
  
}
}







#s-bdc92b7f-3ee0-4908-8266-23d7c2316513 > .shg-box-overlay {
  background-color: rgba(222, 247, 250, 1);
  opacity: 0;
}#s-bdc92b7f-3ee0-4908-8266-23d7c2316513.shg-box.shg-c {
  justify-content: center;
}

#s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fba60ea2-5fd3-4c31-a8d2-f5fd0a36e318"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d7bcf152-808d-47ef-96ef-0706b16cbc60 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-d7bcf152-808d-47ef-96ef-0706b16cbc60 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d7bcf152-808d-47ef-96ef-0706b16cbc60 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d7bcf152-808d-47ef-96ef-0706b16cbc60 {
  
}
}@media (max-width: 767px){#s-d7bcf152-808d-47ef-96ef-0706b16cbc60 {
  
}
}
#s-5264a209-693a-4445-a170-0250fe89d7cb {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-5264a209-693a-4445-a170-0250fe89d7cb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5264a209-693a-4445-a170-0250fe89d7cb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5264a209-693a-4445-a170-0250fe89d7cb {
  
}
}@media (max-width: 767px){#s-5264a209-693a-4445-a170-0250fe89d7cb {
  
}
}
#s-5264a209-693a-4445-a170-0250fe89d7cb .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f47db599-65a0-4297-a72d-8333e3acef16 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-f47db599-65a0-4297-a72d-8333e3acef16 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f47db599-65a0-4297-a72d-8333e3acef16 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f47db599-65a0-4297-a72d-8333e3acef16 {
  
}
}@media (max-width: 767px){#s-f47db599-65a0-4297-a72d-8333e3acef16 {
  
}
}
#s-d9539242-df62-4889-9b2d-dee3635c906b {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-d9539242-df62-4889-9b2d-dee3635c906b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d9539242-df62-4889-9b2d-dee3635c906b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d9539242-df62-4889-9b2d-dee3635c906b {
  
}
}@media (max-width: 767px){#s-d9539242-df62-4889-9b2d-dee3635c906b {
  
}
}
@media (min-width: 0px) {
[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d9539242-df62-4889-9b2d-dee3635c906b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443 {
  
}
}@media (max-width: 767px){#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443 {
  
}
}


#s-6ed54f40-8d6b-4dfd-9cb2-2766d1766443.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c {
  
}
}@media (max-width: 767px){#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c {
  
}
}


#s-7d46bab8-3e4c-4ba3-bb11-72edbc5b5b7c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-23676173-c7b1-4730-9622-8a7e88205d23 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-23676173-c7b1-4730-9622-8a7e88205d23 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-23676173-c7b1-4730-9622-8a7e88205d23 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-23676173-c7b1-4730-9622-8a7e88205d23 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-23676173-c7b1-4730-9622-8a7e88205d23 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 26px;
}

#s-23676173-c7b1-4730-9622-8a7e88205d23 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 26px;
}
#s-c8f233f6-a431-4c3c-8074-cbe78514c7ac {
  text-align: center;
}




  #s-c8f233f6-a431-4c3c-8074-cbe78514c7ac img.shogun-image {
    
    width: px;
  }


#s-c8f233f6-a431-4c3c-8074-cbe78514c7ac .shogun-image-content {
  
    align-items: center;
  
}

#s-9a6f63d7-0a5b-46f4-8303-732e4cde566a {
  display: none;
}
#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 {
  text-align: left;
}


.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 {
  max-width: 100%;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom,
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 {
  max-width: 100%;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom,
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 {
  max-width: 100%;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom,
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 {
  max-width: 100%;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom,
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 {
  max-width: 100%;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom,
.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3ec5aa20-a83a-4429-b03d-19e2ffb2e455 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-592bee3b-cd0e-4c85-a1b5-264f6bfac444 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-592bee3b-cd0e-4c85-a1b5-264f6bfac444 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-76195683-b1a5-4911-b585-31961f23daf7 {
  text-align: center;
}

#s-76195683-b1a5-4911-b585-31961f23daf7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-76195683-b1a5-4911-b585-31961f23daf7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-76195683-b1a5-4911-b585-31961f23daf7 .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-9ad9dd68-8192-446f-bd6f-599766711d03 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9ad9dd68-8192-446f-bd6f-599766711d03:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9ad9dd68-8192-446f-bd6f-599766711d03:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9ad9dd68-8192-446f-bd6f-599766711d03 {
  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-9ad9dd68-8192-446f-bd6f-599766711d03.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9ad9dd68-8192-446f-bd6f-599766711d03.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9ad9dd68-8192-446f-bd6f-599766711d03.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c4b30447-39a1-4433-bb88-46ac08690eee {
  display: none;
}
#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec {
  text-align: left;
}


.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec {
  max-width: 100%;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom,
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec {
  max-width: 100%;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom,
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec {
  max-width: 100%;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom,
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec {
  max-width: 100%;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom,
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec {
  max-width: 100%;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom,
.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8d6b72d6-6e04-4221-939c-d1fe6dd4a4ec .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-dd50fbe9-f3ea-44e2-b170-23b22746db7a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dd50fbe9-f3ea-44e2-b170-23b22746db7a .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-fbac486d-be91-48aa-9a41-622bd14cde23 {
  text-align: center;
}

#s-fbac486d-be91-48aa-9a41-622bd14cde23 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-fbac486d-be91-48aa-9a41-622bd14cde23 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-fbac486d-be91-48aa-9a41-622bd14cde23 .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-039ca8c9-4630-4995-9649-295d121d6189 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-039ca8c9-4630-4995-9649-295d121d6189:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-039ca8c9-4630-4995-9649-295d121d6189:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-039ca8c9-4630-4995-9649-295d121d6189 {
  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-039ca8c9-4630-4995-9649-295d121d6189.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-039ca8c9-4630-4995-9649-295d121d6189.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-039ca8c9-4630-4995-9649-295d121d6189.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a187cf83-621c-4580-944f-f7dbe40d1413 {
  display: none;
}
#s-fde6720e-709f-4867-a7d3-86c0024b2599 {
  text-align: left;
}


.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 {
  max-width: 100%;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom,
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 {
  max-width: 100%;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom,
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 {
  max-width: 100%;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom,
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 {
  max-width: 100%;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom,
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 {
  max-width: 100%;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom,
.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-fde6720e-709f-4867-a7d3-86c0024b2599 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-9a2f413b-b094-4306-a786-48c1f0d86d53 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9a2f413b-b094-4306-a786-48c1f0d86d53 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-e642247e-966a-43c2-891b-d160b3ba27f0 {
  text-align: center;
}

#s-e642247e-966a-43c2-891b-d160b3ba27f0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-e642247e-966a-43c2-891b-d160b3ba27f0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e642247e-966a-43c2-891b-d160b3ba27f0 .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-fe04959f-ea3a-4815-af98-e59af3bf3366 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-fe04959f-ea3a-4815-af98-e59af3bf3366:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fe04959f-ea3a-4815-af98-e59af3bf3366:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fe04959f-ea3a-4815-af98-e59af3bf3366 {
  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-fe04959f-ea3a-4815-af98-e59af3bf3366.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe04959f-ea3a-4815-af98-e59af3bf3366.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-fe04959f-ea3a-4815-af98-e59af3bf3366.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ff7d1988-9d87-4afb-8e1f-4c3d6f753174 {
  display: none;
}
#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 {
  text-align: left;
}


.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 {
  max-width: 100%;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom,
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 {
  max-width: 100%;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom,
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 {
  max-width: 100%;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom,
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 {
  max-width: 100%;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom,
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 {
  max-width: 100%;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom,
.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5956f9ad-04ee-4521-b8e0-a4bf9545dd27 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ea8dcea0-ee91-4677-b926-1a32afb492c6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ea8dcea0-ee91-4677-b926-1a32afb492c6 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-9dab13d2-e388-4f28-8ac2-e357daa1b866 {
  text-align: center;
}

#s-9dab13d2-e388-4f28-8ac2-e357daa1b866 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-9dab13d2-e388-4f28-8ac2-e357daa1b866 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9dab13d2-e388-4f28-8ac2-e357daa1b866 .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-bd94b265-d473-467a-8a95-10b7a5ec0de0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-bd94b265-d473-467a-8a95-10b7a5ec0de0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bd94b265-d473-467a-8a95-10b7a5ec0de0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bd94b265-d473-467a-8a95-10b7a5ec0de0 {
  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-bd94b265-d473-467a-8a95-10b7a5ec0de0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bd94b265-d473-467a-8a95-10b7a5ec0de0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-bd94b265-d473-467a-8a95-10b7a5ec0de0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d0f3d2cf-239d-4de5-bd95-2699be18dc19 {
  display: none;
}
#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 {
  text-align: left;
}


.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 {
  max-width: 100%;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom,
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 {
  max-width: 100%;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom,
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 {
  max-width: 100%;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom,
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 {
  max-width: 100%;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom,
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 {
  max-width: 100%;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom,
.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0ee4dbc0-1b8d-4285-b06a-33779140f6e8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c09047e5-7843-476b-8856-a6b9facce3e6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c09047e5-7843-476b-8856-a6b9facce3e6 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-9c8f2ccb-c705-4463-8d6c-50f933794f5d {
  text-align: center;
}

#s-9c8f2ccb-c705-4463-8d6c-50f933794f5d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-9c8f2ccb-c705-4463-8d6c-50f933794f5d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9c8f2ccb-c705-4463-8d6c-50f933794f5d .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-797f87e9-b107-4550-9d47-6aa672d31d9f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-797f87e9-b107-4550-9d47-6aa672d31d9f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-797f87e9-b107-4550-9d47-6aa672d31d9f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-797f87e9-b107-4550-9d47-6aa672d31d9f {
  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-797f87e9-b107-4550-9d47-6aa672d31d9f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-797f87e9-b107-4550-9d47-6aa672d31d9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-797f87e9-b107-4550-9d47-6aa672d31d9f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-287cef52-7110-460f-8a8d-e28b005faf76 {
  display: none;
}
#s-93689b25-40ce-45f6-8a69-a5081f53bbad {
  text-align: left;
}


.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad {
  max-width: 100%;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom,
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad {
  max-width: 100%;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom,
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad {
  max-width: 100%;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom,
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad {
  max-width: 100%;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom,
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad {
  max-width: 100%;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom,
.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93689b25-40ce-45f6-8a69-a5081f53bbad .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2589aa4b-2a17-4070-9082-09fc6b46387a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2589aa4b-2a17-4070-9082-09fc6b46387a .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-7990cd97-a539-48e0-8ce9-773c756c5f4b {
  text-align: center;
}

#s-7990cd97-a539-48e0-8ce9-773c756c5f4b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-7990cd97-a539-48e0-8ce9-773c756c5f4b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-7990cd97-a539-48e0-8ce9-773c756c5f4b .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-ea30c23e-6f6d-46de-9e24-ce388aded03c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ea30c23e-6f6d-46de-9e24-ce388aded03c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ea30c23e-6f6d-46de-9e24-ce388aded03c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ea30c23e-6f6d-46de-9e24-ce388aded03c {
  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-ea30c23e-6f6d-46de-9e24-ce388aded03c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea30c23e-6f6d-46de-9e24-ce388aded03c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ea30c23e-6f6d-46de-9e24-ce388aded03c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2fa6f6ea-f543-40c5-8f85-1e7d550eea00 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-2fa6f6ea-f543-40c5-8f85-1e7d550eea00 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-2fa6f6ea-f543-40c5-8f85-1e7d550eea00 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-2fa6f6ea-f543-40c5-8f85-1e7d550eea00 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-2fa6f6ea-f543-40c5-8f85-1e7d550eea00 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-2fa6f6ea-f543-40c5-8f85-1e7d550eea00 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-ecbaa362-191c-48ce-8fe5-82224dff7895 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ecbaa362-191c-48ce-8fe5-82224dff7895 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ecbaa362-191c-48ce-8fe5-82224dff7895 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ecbaa362-191c-48ce-8fe5-82224dff7895 {
  
}
}@media (max-width: 767px){#s-ecbaa362-191c-48ce-8fe5-82224dff7895 {
  
}
}







#s-ecbaa362-191c-48ce-8fe5-82224dff7895 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecbaa362-191c-48ce-8fe5-82224dff7895.shg-box.shg-c {
  justify-content: flex-start;
}

#s-a6d2180b-fd05-477f-88af-25e8d00dcd95 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-color: rgba(234, 249, 254, 1);
}
@media (min-width: 1200px){#s-a6d2180b-fd05-477f-88af-25e8d00dcd95 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a6d2180b-fd05-477f-88af-25e8d00dcd95 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a6d2180b-fd05-477f-88af-25e8d00dcd95 {
  
}
}@media (max-width: 767px){#s-a6d2180b-fd05-477f-88af-25e8d00dcd95 {
  
}
}







#s-a6d2180b-fd05-477f-88af-25e8d00dcd95 > .shg-box-overlay {
  background-color: rgba(222, 247, 250, 1);
  opacity: 0;
}#s-a6d2180b-fd05-477f-88af-25e8d00dcd95.shg-box.shg-c {
  justify-content: center;
}

#s-fd5acdcc-d65e-4100-9e41-3c96c6866f54 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fd5acdcc-d65e-4100-9e41-3c96c6866f54"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-a2fd6c76-b1bf-464d-908b-b096c0904cc9 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-a2fd6c76-b1bf-464d-908b-b096c0904cc9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a2fd6c76-b1bf-464d-908b-b096c0904cc9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a2fd6c76-b1bf-464d-908b-b096c0904cc9 {
  
}
}@media (max-width: 767px){#s-a2fd6c76-b1bf-464d-908b-b096c0904cc9 {
  
}
}
#s-c520bb94-b35b-4ae1-acd4-ba7cb0e67388 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-c520bb94-b35b-4ae1-acd4-ba7cb0e67388 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c520bb94-b35b-4ae1-acd4-ba7cb0e67388 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c520bb94-b35b-4ae1-acd4-ba7cb0e67388 {
  
}
}@media (max-width: 767px){#s-c520bb94-b35b-4ae1-acd4-ba7cb0e67388 {
  
}
}
#s-c520bb94-b35b-4ae1-acd4-ba7cb0e67388 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-08e80d3e-566e-4916-b8e7-d68a169bff16 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-08e80d3e-566e-4916-b8e7-d68a169bff16 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-08e80d3e-566e-4916-b8e7-d68a169bff16 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-08e80d3e-566e-4916-b8e7-d68a169bff16 {
  
}
}@media (max-width: 767px){#s-08e80d3e-566e-4916-b8e7-d68a169bff16 {
  
}
}
#s-969c5bc5-b447-4ba1-af2a-07662c30e1b1 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-969c5bc5-b447-4ba1-af2a-07662c30e1b1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-969c5bc5-b447-4ba1-af2a-07662c30e1b1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-969c5bc5-b447-4ba1-af2a-07662c30e1b1 {
  
}
}@media (max-width: 767px){#s-969c5bc5-b447-4ba1-af2a-07662c30e1b1 {
  
}
}
@media (min-width: 0px) {
[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-969c5bc5-b447-4ba1-af2a-07662c30e1b1"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(253, 253, 253, 1);
text-decoration: none;
hover-type: color;
}
#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda {
  
}
}@media (max-width: 767px){#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda {
  
}
}


#s-b8acffff-6ede-4f69-8fa5-5e3a9fbecbda.shg-btn {
  color: rgba(253, 253, 253, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(253, 253, 253, 1);
text-decoration: none;
hover-type: color;
}
#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973 {
  
}
}@media (max-width: 767px){#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973 {
  
}
}


#s-fd5d5dcf-7f7d-4e66-8b81-a3ec1334e973.shg-btn {
  color: rgba(253, 253, 253, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-1f1e5ae3-942f-4657-9830-2dfa727a5ad8 {
  margin-top: 140px;
margin-bottom: 0px;
}

#s-2006a417-a7c4-4d88-9793-44dc9fcead8e {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2006a417-a7c4-4d88-9793-44dc9fcead8e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-a0720672-c4f5-42ca-83b7-149a6a39d744 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-a0720672-c4f5-42ca-83b7-149a6a39d744 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a0720672-c4f5-42ca-83b7-149a6a39d744 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a0720672-c4f5-42ca-83b7-149a6a39d744 {
  
}
}@media (max-width: 767px){#s-a0720672-c4f5-42ca-83b7-149a6a39d744 {
  
}
}
#s-f17263e1-ea31-4923-986b-accb189ce24c {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-f17263e1-ea31-4923-986b-accb189ce24c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f17263e1-ea31-4923-986b-accb189ce24c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f17263e1-ea31-4923-986b-accb189ce24c {
  
}
}@media (max-width: 767px){#s-f17263e1-ea31-4923-986b-accb189ce24c {
  
}
}
#s-f17263e1-ea31-4923-986b-accb189ce24c .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-c8323bb1-4799-46c6-9f1c-c37c1b61b41b {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-c8323bb1-4799-46c6-9f1c-c37c1b61b41b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c8323bb1-4799-46c6-9f1c-c37c1b61b41b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c8323bb1-4799-46c6-9f1c-c37c1b61b41b {
  
}
}@media (max-width: 767px){#s-c8323bb1-4799-46c6-9f1c-c37c1b61b41b {
  
}
}
#s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6 {
  
}
}@media (max-width: 767px){#s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6 {
  
}
}
@media (min-width: 0px) {
[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbc1d285-8f56-48a6-8d29-5adff3ed9cd6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(253, 253, 253, 1);
text-decoration: none;
hover-type: color;
}
#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d {
  
}
}@media (max-width: 767px){#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d {
  
}
}


#s-b8c29f10-7bc2-4d44-850d-22f37d6f5a3d.shg-btn {
  color: rgba(253, 253, 253, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(253, 253, 253, 1);
text-decoration: none;
hover-type: color;
}
#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b {
  
}
}@media (max-width: 767px){#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b {
  
}
}


#s-aeeaae03-04fa-4f80-bb63-d539cefbe54b.shg-btn {
  color: rgba(253, 253, 253, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-7ad82810-631e-4864-a64b-32e6029da60d {
  margin-top: 140px;
margin-bottom: 0px;
}

#s-ae259899-1645-45dd-8f10-09066c162385 {
  display: none;
}
#s-8f476e03-3722-4d42-a96d-e1ea60c19cac {
  text-align: left;
}


.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac {
  max-width: 100%;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom,
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac {
  max-width: 100%;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom,
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac {
  max-width: 100%;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom,
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac {
  max-width: 100%;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom,
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac {
  max-width: 100%;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom,
.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8f476e03-3722-4d42-a96d-e1ea60c19cac .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a1a348d4-2d67-476b-8501-a42edbad9d52 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a1a348d4-2d67-476b-8501-a42edbad9d52 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-e39f36f2-a4b4-4e19-9d34-c5ef077c24c6 {
  text-align: center;
}

#s-e39f36f2-a4b4-4e19-9d34-c5ef077c24c6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-e39f36f2-a4b4-4e19-9d34-c5ef077c24c6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e39f36f2-a4b4-4e19-9d34-c5ef077c24c6 .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-001fae2a-644b-4086-9b43-b2d53e716429 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-001fae2a-644b-4086-9b43-b2d53e716429:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-001fae2a-644b-4086-9b43-b2d53e716429:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-001fae2a-644b-4086-9b43-b2d53e716429 {
  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-001fae2a-644b-4086-9b43-b2d53e716429.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-001fae2a-644b-4086-9b43-b2d53e716429.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-001fae2a-644b-4086-9b43-b2d53e716429.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e5529607-5cf5-49c5-a97b-88b396b4ab5c {
  display: none;
}
#s-e785437d-4220-48a6-9dbf-51e327d61ea3 {
  text-align: left;
}


.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 {
  max-width: 100%;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom,
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 {
  max-width: 100%;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom,
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 {
  max-width: 100%;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom,
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 {
  max-width: 100%;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom,
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 {
  max-width: 100%;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom,
.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e785437d-4220-48a6-9dbf-51e327d61ea3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-eb809bfb-7262-4a68-912c-0d45b5610c97 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eb809bfb-7262-4a68-912c-0d45b5610c97 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-fb91bea9-1b41-4744-abbb-4f2fb315f188 {
  text-align: center;
}

#s-fb91bea9-1b41-4744-abbb-4f2fb315f188 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-fb91bea9-1b41-4744-abbb-4f2fb315f188 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-fb91bea9-1b41-4744-abbb-4f2fb315f188 .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-a5595dd1-b067-4626-8183-3773a2261795 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a5595dd1-b067-4626-8183-3773a2261795:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a5595dd1-b067-4626-8183-3773a2261795:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a5595dd1-b067-4626-8183-3773a2261795 {
  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-a5595dd1-b067-4626-8183-3773a2261795.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a5595dd1-b067-4626-8183-3773a2261795.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a5595dd1-b067-4626-8183-3773a2261795.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1be9280e-5b97-4b3c-8e00-f8adbed397e0 {
  display: none;
}
#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb {
  text-align: left;
}


.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb {
  max-width: 100%;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom,
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb {
  max-width: 100%;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom,
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb {
  max-width: 100%;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom,
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb {
  max-width: 100%;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom,
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb {
  max-width: 100%;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom,
.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c3d6d1e-bacb-47ee-86c4-51ff879843bb .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-dff894aa-3d04-4790-80f5-5a23da6a1bef {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dff894aa-3d04-4790-80f5-5a23da6a1bef .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-1edc0a28-c3a9-469a-b223-0554034f96ba {
  text-align: center;
}

#s-1edc0a28-c3a9-469a-b223-0554034f96ba .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-1edc0a28-c3a9-469a-b223-0554034f96ba .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1edc0a28-c3a9-469a-b223-0554034f96ba .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-b530b1a1-83ee-4802-bf84-cf477db9a0a9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b530b1a1-83ee-4802-bf84-cf477db9a0a9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b530b1a1-83ee-4802-bf84-cf477db9a0a9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b530b1a1-83ee-4802-bf84-cf477db9a0a9 {
  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-b530b1a1-83ee-4802-bf84-cf477db9a0a9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b530b1a1-83ee-4802-bf84-cf477db9a0a9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b530b1a1-83ee-4802-bf84-cf477db9a0a9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ae8470a2-f3c3-4424-b91e-ad02da505336 {
  display: none;
}
#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 {
  text-align: left;
}


.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 {
  max-width: 100%;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom,
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 {
  max-width: 100%;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom,
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 {
  max-width: 100%;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom,
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 {
  max-width: 100%;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom,
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 {
  max-width: 100%;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom,
.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b37a00dc-aa82-43c4-8c19-4c51c51afd81 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-0fb64eab-ba4e-4e43-8a2a-1c189fba7548 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0fb64eab-ba4e-4e43-8a2a-1c189fba7548 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-e27be91d-33dd-4295-805d-44be07c21740 {
  text-align: center;
}

#s-e27be91d-33dd-4295-805d-44be07c21740 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-e27be91d-33dd-4295-805d-44be07c21740 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e27be91d-33dd-4295-805d-44be07c21740 .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-7c7db575-725e-4883-a83d-2e681b0ee2a5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7c7db575-725e-4883-a83d-2e681b0ee2a5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7c7db575-725e-4883-a83d-2e681b0ee2a5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7c7db575-725e-4883-a83d-2e681b0ee2a5 {
  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-7c7db575-725e-4883-a83d-2e681b0ee2a5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c7db575-725e-4883-a83d-2e681b0ee2a5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7c7db575-725e-4883-a83d-2e681b0ee2a5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e1d98b4c-f2c6-48b6-99d7-813a2f41f80a {
  display: none;
}
#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 {
  text-align: left;
}


.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 {
  max-width: 100%;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom,
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 {
  max-width: 100%;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom,
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 {
  max-width: 100%;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom,
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 {
  max-width: 100%;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom,
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 {
  max-width: 100%;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom,
.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ae898b3d-7fa1-4d6e-bb4f-852153ee5201 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-6c0f1766-a04d-4dc6-8a48-e3aa6990a995 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c0f1766-a04d-4dc6-8a48-e3aa6990a995 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-cbe93c94-9026-4b59-a8b7-a7165e4ece3b {
  text-align: center;
}

#s-cbe93c94-9026-4b59-a8b7-a7165e4ece3b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-cbe93c94-9026-4b59-a8b7-a7165e4ece3b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-cbe93c94-9026-4b59-a8b7-a7165e4ece3b .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-7def0d81-a903-4f37-9f57-f9466e4fd6ce {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7def0d81-a903-4f37-9f57-f9466e4fd6ce:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7def0d81-a903-4f37-9f57-f9466e4fd6ce:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7def0d81-a903-4f37-9f57-f9466e4fd6ce {
  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-7def0d81-a903-4f37-9f57-f9466e4fd6ce.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7def0d81-a903-4f37-9f57-f9466e4fd6ce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7def0d81-a903-4f37-9f57-f9466e4fd6ce.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b16138e6-5d9e-437d-be60-01fd9c50117d {
  display: none;
}
#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca {
  text-align: left;
}


.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca {
  max-width: 100%;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom,
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca {
  max-width: 100%;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom,
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca {
  max-width: 100%;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom,
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca {
  max-width: 100%;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom,
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca {
  max-width: 100%;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom,
.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d686c55b-f0ec-40a7-ad67-1c540caf5eca .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-5ce70f4b-7981-4fc0-9a67-6992887e7fee {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5ce70f4b-7981-4fc0-9a67-6992887e7fee .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-fc05c9d8-ebe7-4b91-b196-2c11ce809333 {
  text-align: center;
}

#s-fc05c9d8-ebe7-4b91-b196-2c11ce809333 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-fc05c9d8-ebe7-4b91-b196-2c11ce809333 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-fc05c9d8-ebe7-4b91-b196-2c11ce809333 .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-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a {
  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-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8571a7ec-bf5b-4e8c-abb5-c5fda49ff01a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-44b95781-43d8-4cc5-ac86-34f52a9c72d1 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-44b95781-43d8-4cc5-ac86-34f52a9c72d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-44b95781-43d8-4cc5-ac86-34f52a9c72d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-44b95781-43d8-4cc5-ac86-34f52a9c72d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-44b95781-43d8-4cc5-ac86-34f52a9c72d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-44b95781-43d8-4cc5-ac86-34f52a9c72d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e104b8bc-adac-4bf2-b1e3-6faa797ebb6b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-724d62c8-5257-44ea-9707-468cea65cffc {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-724d62c8-5257-44ea-9707-468cea65cffc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-724d62c8-5257-44ea-9707-468cea65cffc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-724d62c8-5257-44ea-9707-468cea65cffc {
  
}
}@media (max-width: 767px){#s-724d62c8-5257-44ea-9707-468cea65cffc {
  
}
}
#s-0d8e277d-779c-4d2b-8c4c-1f577ecf21c4 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-0d8e277d-779c-4d2b-8c4c-1f577ecf21c4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d8e277d-779c-4d2b-8c4c-1f577ecf21c4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d8e277d-779c-4d2b-8c4c-1f577ecf21c4 {
  
}
}@media (max-width: 767px){#s-0d8e277d-779c-4d2b-8c4c-1f577ecf21c4 {
  
}
}
#s-0d8e277d-779c-4d2b-8c4c-1f577ecf21c4 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e30cc129-554c-4ac4-846a-bbaeda05d3b8 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-e30cc129-554c-4ac4-846a-bbaeda05d3b8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e30cc129-554c-4ac4-846a-bbaeda05d3b8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e30cc129-554c-4ac4-846a-bbaeda05d3b8 {
  
}
}@media (max-width: 767px){#s-e30cc129-554c-4ac4-846a-bbaeda05d3b8 {
  
}
}
#s-7f72aacc-4f23-4a10-996d-ba37e82a85a3 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-7f72aacc-4f23-4a10-996d-ba37e82a85a3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7f72aacc-4f23-4a10-996d-ba37e82a85a3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7f72aacc-4f23-4a10-996d-ba37e82a85a3 {
  
}
}@media (max-width: 767px){#s-7f72aacc-4f23-4a10-996d-ba37e82a85a3 {
  
}
}
@media (min-width: 0px) {
[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7f72aacc-4f23-4a10-996d-ba37e82a85a3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-ea1a406a-73fc-4ebd-b342-9a64f8115789 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-ea1a406a-73fc-4ebd-b342-9a64f8115789:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-ea1a406a-73fc-4ebd-b342-9a64f8115789:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-ea1a406a-73fc-4ebd-b342-9a64f8115789 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ea1a406a-73fc-4ebd-b342-9a64f8115789 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ea1a406a-73fc-4ebd-b342-9a64f8115789 {
  
}
}@media (max-width: 767px){#s-ea1a406a-73fc-4ebd-b342-9a64f8115789 {
  
}
}


#s-ea1a406a-73fc-4ebd-b342-9a64f8115789.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-bab8eff0-f52d-4b60-a381-c0dd1295d030 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-bab8eff0-f52d-4b60-a381-c0dd1295d030:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-bab8eff0-f52d-4b60-a381-c0dd1295d030:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-bab8eff0-f52d-4b60-a381-c0dd1295d030 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bab8eff0-f52d-4b60-a381-c0dd1295d030 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bab8eff0-f52d-4b60-a381-c0dd1295d030 {
  
}
}@media (max-width: 767px){#s-bab8eff0-f52d-4b60-a381-c0dd1295d030 {
  
}
}


#s-bab8eff0-f52d-4b60-a381-c0dd1295d030.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-5ebef94d-8f81-4a6c-9407-9e39c56612bb {
  margin-top: 145px;
}

#s-5c205300-c56d-4038-ac93-13693180696c {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5c205300-c56d-4038-ac93-13693180696c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-3bb52a92-8eb2-4443-a487-6de7ac72cc18 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-3bb52a92-8eb2-4443-a487-6de7ac72cc18 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3bb52a92-8eb2-4443-a487-6de7ac72cc18 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3bb52a92-8eb2-4443-a487-6de7ac72cc18 {
  
}
}@media (max-width: 767px){#s-3bb52a92-8eb2-4443-a487-6de7ac72cc18 {
  
}
}
#s-9853ca07-152e-47ae-a9f2-9bef916773bb {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-9853ca07-152e-47ae-a9f2-9bef916773bb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9853ca07-152e-47ae-a9f2-9bef916773bb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9853ca07-152e-47ae-a9f2-9bef916773bb {
  
}
}@media (max-width: 767px){#s-9853ca07-152e-47ae-a9f2-9bef916773bb {
  
}
}
#s-9853ca07-152e-47ae-a9f2-9bef916773bb .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-ad98ea7b-f0a3-48b6-9aa6-8f4532cb0949 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-ad98ea7b-f0a3-48b6-9aa6-8f4532cb0949 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ad98ea7b-f0a3-48b6-9aa6-8f4532cb0949 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ad98ea7b-f0a3-48b6-9aa6-8f4532cb0949 {
  
}
}@media (max-width: 767px){#s-ad98ea7b-f0a3-48b6-9aa6-8f4532cb0949 {
  
}
}
#s-f727f02b-b5d0-4aee-9126-2873b7a9f96c {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-f727f02b-b5d0-4aee-9126-2873b7a9f96c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f727f02b-b5d0-4aee-9126-2873b7a9f96c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f727f02b-b5d0-4aee-9126-2873b7a9f96c {
  
}
}@media (max-width: 767px){#s-f727f02b-b5d0-4aee-9126-2873b7a9f96c {
  
}
}
@media (min-width: 0px) {
[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f727f02b-b5d0-4aee-9126-2873b7a9f96c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-7bf34d6a-852c-4efd-993b-2da87d462175 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-7bf34d6a-852c-4efd-993b-2da87d462175:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-7bf34d6a-852c-4efd-993b-2da87d462175:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-7bf34d6a-852c-4efd-993b-2da87d462175 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7bf34d6a-852c-4efd-993b-2da87d462175 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7bf34d6a-852c-4efd-993b-2da87d462175 {
  
}
}@media (max-width: 767px){#s-7bf34d6a-852c-4efd-993b-2da87d462175 {
  
}
}


#s-7bf34d6a-852c-4efd-993b-2da87d462175.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-b31334cc-0e1a-4457-934b-dce7112046e7 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-b31334cc-0e1a-4457-934b-dce7112046e7:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-b31334cc-0e1a-4457-934b-dce7112046e7:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-b31334cc-0e1a-4457-934b-dce7112046e7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b31334cc-0e1a-4457-934b-dce7112046e7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b31334cc-0e1a-4457-934b-dce7112046e7 {
  
}
}@media (max-width: 767px){#s-b31334cc-0e1a-4457-934b-dce7112046e7 {
  
}
}


#s-b31334cc-0e1a-4457-934b-dce7112046e7.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-c0bd221b-2e77-4ebf-9ce0-e5e2fef248a3 {
  margin-top: 145px;
}

#s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4bf28cd1-ae10-40f7-b4e6-ed33d1aff5e6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-bbb48045-293f-491f-9571-6e0a50c0822e {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-bbb48045-293f-491f-9571-6e0a50c0822e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bbb48045-293f-491f-9571-6e0a50c0822e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bbb48045-293f-491f-9571-6e0a50c0822e {
  
}
}@media (max-width: 767px){#s-bbb48045-293f-491f-9571-6e0a50c0822e {
  
}
}
#s-f69dc6b1-1c33-4b87-895f-0908563af168 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-f69dc6b1-1c33-4b87-895f-0908563af168 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f69dc6b1-1c33-4b87-895f-0908563af168 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f69dc6b1-1c33-4b87-895f-0908563af168 {
  
}
}@media (max-width: 767px){#s-f69dc6b1-1c33-4b87-895f-0908563af168 {
  
}
}
#s-f69dc6b1-1c33-4b87-895f-0908563af168 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-29aea566-2be2-41b9-9f1c-7b3f114c5809 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-29aea566-2be2-41b9-9f1c-7b3f114c5809 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-29aea566-2be2-41b9-9f1c-7b3f114c5809 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-29aea566-2be2-41b9-9f1c-7b3f114c5809 {
  
}
}@media (max-width: 767px){#s-29aea566-2be2-41b9-9f1c-7b3f114c5809 {
  
}
}
#s-81ae7e30-a813-41ad-beea-b5ff1cac7477 {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-81ae7e30-a813-41ad-beea-b5ff1cac7477 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-81ae7e30-a813-41ad-beea-b5ff1cac7477 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-81ae7e30-a813-41ad-beea-b5ff1cac7477 {
  
}
}@media (max-width: 767px){#s-81ae7e30-a813-41ad-beea-b5ff1cac7477 {
  
}
}
@media (min-width: 0px) {
[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-81ae7e30-a813-41ad-beea-b5ff1cac7477"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5 {
  
}
}@media (max-width: 767px){#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5 {
  
}
}


#s-aff3a4bc-36a0-49eb-8899-2ecb141447d5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323 {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323 {
  
}
}@media (max-width: 767px){#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323 {
  
}
}


#s-7a9a5e54-d08d-47a5-9b7e-f8f0054d5323.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-b36bb3fe-6480-4d93-88d9-c658d1f60ff3 {
  margin-top: 145px;
}

#s-61cd6062-57aa-422f-84a7-db37030276f8 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-61cd6062-57aa-422f-84a7-db37030276f8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-61cd6062-57aa-422f-84a7-db37030276f8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-61cd6062-57aa-422f-84a7-db37030276f8 {
  
}
}@media (max-width: 767px){#s-61cd6062-57aa-422f-84a7-db37030276f8 {
  
}
}







#s-61cd6062-57aa-422f-84a7-db37030276f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61cd6062-57aa-422f-84a7-db37030276f8.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c0afa361-9f0a-41e5-ac56-2f6726437abb {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 0px;
background-color: rgba(234, 249, 254, 1);
}
@media (min-width: 1200px){#s-c0afa361-9f0a-41e5-ac56-2f6726437abb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c0afa361-9f0a-41e5-ac56-2f6726437abb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c0afa361-9f0a-41e5-ac56-2f6726437abb {
  
}
}@media (max-width: 767px){#s-c0afa361-9f0a-41e5-ac56-2f6726437abb {
  
}
}







#s-c0afa361-9f0a-41e5-ac56-2f6726437abb > .shg-box-overlay {
  background-color: rgba(222, 247, 250, 1);
  opacity: 0;
}#s-c0afa361-9f0a-41e5-ac56-2f6726437abb.shg-box.shg-c {
  justify-content: center;
}

#s-3331e263-d833-4f72-95bb-fb29e97dea05 {
  margin-left: 0px;
margin-right: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3331e263-d833-4f72-95bb-fb29e97dea05"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d6916db7-3a5b-48db-85f1-4016bd4d4cae {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-d6916db7-3a5b-48db-85f1-4016bd4d4cae {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d6916db7-3a5b-48db-85f1-4016bd4d4cae {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d6916db7-3a5b-48db-85f1-4016bd4d4cae {
  
}
}@media (max-width: 767px){#s-d6916db7-3a5b-48db-85f1-4016bd4d4cae {
  
}
}
#s-f3698bcf-340d-40fc-bdf8-5837e9e2be57 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-f3698bcf-340d-40fc-bdf8-5837e9e2be57 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f3698bcf-340d-40fc-bdf8-5837e9e2be57 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f3698bcf-340d-40fc-bdf8-5837e9e2be57 {
  
}
}@media (max-width: 767px){#s-f3698bcf-340d-40fc-bdf8-5837e9e2be57 {
  
}
}
#s-f3698bcf-340d-40fc-bdf8-5837e9e2be57 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-765e0731-aa9d-4c1b-8559-5dcbd1c94f1f {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-765e0731-aa9d-4c1b-8559-5dcbd1c94f1f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-765e0731-aa9d-4c1b-8559-5dcbd1c94f1f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-765e0731-aa9d-4c1b-8559-5dcbd1c94f1f {
  
}
}@media (max-width: 767px){#s-765e0731-aa9d-4c1b-8559-5dcbd1c94f1f {
  
}
}
#s-cba86c75-5069-4b3d-8be7-9bdf4c32416f {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-cba86c75-5069-4b3d-8be7-9bdf4c32416f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cba86c75-5069-4b3d-8be7-9bdf4c32416f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cba86c75-5069-4b3d-8be7-9bdf4c32416f {
  
}
}@media (max-width: 767px){#s-cba86c75-5069-4b3d-8be7-9bdf4c32416f {
  
}
}
@media (min-width: 0px) {
[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cba86c75-5069-4b3d-8be7-9bdf4c32416f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe {
  
}
}@media (max-width: 767px){#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe {
  
}
}


#s-d7ff0ed8-69a4-406d-ae8c-d85050df40fe.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a {
  box-shadow:0px 5px 30px 0px rgba(0, 0, 0, 0.1);
background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 30px;
opacity: 1;
text-align: center;
background-color: rgba(138, 202, 30, 1);
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: color;
}
#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a:hover {box-shadow:  15px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 30px !important;
opacity: 1 !important;
background-color: rgba(168, 168, 168, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a:active {box-shadow: 0px 0px   !important;
background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a {
  
}
}@media (max-width: 767px){#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a {
  
}
}


#s-b192864b-ef32-4183-8f10-fe8fdfb71b4a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  font-weight: 900;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-26579cb2-0c6e-4af3-9f97-d9ff6c2453e4 {
  margin-top: 145px;
}

#s-a240fb35-4b3d-4bc4-8b4a-087c08ec9f04 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-a240fb35-4b3d-4bc4-8b4a-087c08ec9f04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-a240fb35-4b3d-4bc4-8b4a-087c08ec9f04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(138, 202, 30, 1);
}

#s-a240fb35-4b3d-4bc4-8b4a-087c08ec9f04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-a240fb35-4b3d-4bc4-8b4a-087c08ec9f04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(138, 202, 30, 1);
  text-align: center;
  font-family: Abel;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-a240fb35-4b3d-4bc4-8b4a-087c08ec9f04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-2c60ebc4-f54a-4c64-b368-a5733eca4d87 {
  display: none;
}
#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 {
  text-align: left;
}


.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 {
  max-width: 100%;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom,
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 {
  max-width: 100%;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom,
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 {
  max-width: 100%;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom,
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 {
  max-width: 100%;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom,
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 {
  max-width: 100%;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom,
.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2c13978a-01a6-4e79-af99-f9d9fcc75a53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-6df8e03c-1b68-497d-b447-f59426657584 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6df8e03c-1b68-497d-b447-f59426657584 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-4fb3cbd1-fef6-4e84-a9c4-24b8e74cc64a {
  text-align: center;
}

#s-4fb3cbd1-fef6-4e84-a9c4-24b8e74cc64a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-4fb3cbd1-fef6-4e84-a9c4-24b8e74cc64a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4fb3cbd1-fef6-4e84-a9c4-24b8e74cc64a .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-0debd398-1c4d-4e3e-b56f-6e2d3268966c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-0debd398-1c4d-4e3e-b56f-6e2d3268966c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0debd398-1c4d-4e3e-b56f-6e2d3268966c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0debd398-1c4d-4e3e-b56f-6e2d3268966c {
  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-0debd398-1c4d-4e3e-b56f-6e2d3268966c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0debd398-1c4d-4e3e-b56f-6e2d3268966c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0debd398-1c4d-4e3e-b56f-6e2d3268966c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-641d1c3e-c86b-4617-b4d0-29814f543e5c {
  display: none;
}
#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 {
  text-align: left;
}


.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 {
  max-width: 100%;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom,
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 {
  max-width: 100%;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom,
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 {
  max-width: 100%;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom,
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 {
  max-width: 100%;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom,
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 {
  max-width: 100%;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom,
.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cf4d11c-b42e-48fd-a433-bee8c0f81894 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-7d36765d-4f27-4d9e-b501-7136cee09560 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d36765d-4f27-4d9e-b501-7136cee09560 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-43117cc5-84f6-46df-a82e-5b6609b190b4 {
  text-align: center;
}

#s-43117cc5-84f6-46df-a82e-5b6609b190b4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-43117cc5-84f6-46df-a82e-5b6609b190b4 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-43117cc5-84f6-46df-a82e-5b6609b190b4 .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-7316c0f3-ab84-4a6d-abb2-8c2717dfc991 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7316c0f3-ab84-4a6d-abb2-8c2717dfc991:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7316c0f3-ab84-4a6d-abb2-8c2717dfc991:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7316c0f3-ab84-4a6d-abb2-8c2717dfc991 {
  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-7316c0f3-ab84-4a6d-abb2-8c2717dfc991.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7316c0f3-ab84-4a6d-abb2-8c2717dfc991.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7316c0f3-ab84-4a6d-abb2-8c2717dfc991.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-72ef14ac-6b7c-48b3-9015-ba2ffa4d5a86 {
  display: none;
}
#s-f844f974-8e25-4d1f-b62a-d584dc44c759 {
  text-align: left;
}


.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 {
  max-width: 100%;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom,
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 {
  max-width: 100%;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom,
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 {
  max-width: 100%;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom,
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 {
  max-width: 100%;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom,
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 {
  max-width: 100%;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom,
.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f844f974-8e25-4d1f-b62a-d584dc44c759 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-149ec668-e965-4983-a5a1-009601ce6241 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-149ec668-e965-4983-a5a1-009601ce6241 .shg-product-title-component h5 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
}

#s-166d495f-2a5b-459b-885b-ddfcaae7d531 {
  text-align: center;
}

#s-166d495f-2a5b-459b-885b-ddfcaae7d531 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-166d495f-2a5b-459b-885b-ddfcaae7d531 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-166d495f-2a5b-459b-885b-ddfcaae7d531 .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-217857e2-c1c7-4ffe-a05d-cfde7335ae88 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-217857e2-c1c7-4ffe-a05d-cfde7335ae88:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-217857e2-c1c7-4ffe-a05d-cfde7335ae88:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-217857e2-c1c7-4ffe-a05d-cfde7335ae88 {
  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-217857e2-c1c7-4ffe-a05d-cfde7335ae88.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-217857e2-c1c7-4ffe-a05d-cfde7335ae88.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-217857e2-c1c7-4ffe-a05d-cfde7335ae88.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



/*
  $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;
}
