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

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

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

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

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

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

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

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

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

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

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

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

#s-684a0052-a2e6-4ad6-9338-8ba41c5a1c61 {
  min-height: 758px;
background-repeat: no-repeat;
background-attachment: scroll;
background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px){#s-684a0052-a2e6-4ad6-9338-8ba41c5a1c61 {
  min-height: 433px;
}
}







#s-684a0052-a2e6-4ad6-9338-8ba41c5a1c61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-684a0052-a2e6-4ad6-9338-8ba41c5a1c61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-9846dbc8-09a5-4014-b192-7b5592ef13d6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9846dbc8-09a5-4014-b192-7b5592ef13d6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Arimo";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-05e422b6-c86a-4891-948a-4c0178a35736 {
  margin-left: 20%;
margin-bottom: 76px;
margin-right: 20%;
text-align: center;
}







  #s-05e422b6-c86a-4891-948a-4c0178a35736 img.shogun-image {
    

    
    
    
  }


#s-05e422b6-c86a-4891-948a-4c0178a35736 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9 {
  border-style: solid;
padding-top: 10px;
padding-left: 52px;
padding-bottom: 10px;
padding-right: 52px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(236, 236, 236, 1);
border-radius: 41px;
background-color: rgba(45, 122, 252, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2df20721-31c9-4631-a5f1-b13e9a13a3c9-root {
    text-align: center;
  }


#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2df20721-31c9-4631-a5f1-b13e9a13a3c9-root {
    text-align: center;
  }


#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2df20721-31c9-4631-a5f1-b13e9a13a3c9-root {
    text-align: center;
  }


#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2df20721-31c9-4631-a5f1-b13e9a13a3c9-root {
    text-align: center;
  }


#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2df20721-31c9-4631-a5f1-b13e9a13a3c9-root {
    text-align: center;
  }


#s-2df20721-31c9-4631-a5f1-b13e9a13a3c9.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-813676ef-6d54-48a0-a45b-1925699769d9 {
  margin-bottom: -465px;
min-height: 800px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-813676ef-6d54-48a0-a45b-1925699769d9 {
  margin-left: 20%;
margin-bottom: -313px;
margin-right: 20%;
}
}@media (max-width: 767px){#s-813676ef-6d54-48a0-a45b-1925699769d9 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 100px;
}
}







#s-813676ef-6d54-48a0-a45b-1925699769d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-813676ef-6d54-48a0-a45b-1925699769d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9ce0d1b-db13-4e85-9229-c1c12e97b034 {
  min-height: 50px;
}








#s-d9ce0d1b-db13-4e85-9229-c1c12e97b034 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9ce0d1b-db13-4e85-9229-c1c12e97b034.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a789f7a0-7b7c-4b3d-b782-be6b74c88b29 {
  box-shadow:7px 6px 46px 30px rgba(0, 0, 0, 0.56);
margin-top: -594px;
margin-left: 222px;
margin-right: 222px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 11px;
text-align: center;
}
@media (min-width: 1200px){#s-a789f7a0-7b7c-4b3d-b782-be6b74c88b29 {
  margin-left: 100px;
margin-right: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a789f7a0-7b7c-4b3d-b782-be6b74c88b29 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-a789f7a0-7b7c-4b3d-b782-be6b74c88b29 {
  margin-top: -109px;
margin-left: 3%;
margin-right: 3%;
}
}






  #s-a789f7a0-7b7c-4b3d-b782-be6b74c88b29 img.shogun-image {
    

    
    
    
  }


#s-a789f7a0-7b7c-4b3d-b782-be6b74c88b29 .shogun-image-content {
  
    align-items: center;
  
}

#s-8594115f-1b22-4397-8e02-6115f9088906 {
  padding-left: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(33, 33, 33, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
background-attachment: scroll;
}








#s-8594115f-1b22-4397-8e02-6115f9088906 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8594115f-1b22-4397-8e02-6115f9088906.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-e5cf4e77-ae73-4343-829c-5d13057af034 {
  margin-top: 50px;
margin-left: 200px;
margin-bottom: 50px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e5cf4e77-ae73-4343-829c-5d13057af034 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-e5cf4e77-ae73-4343-829c-5d13057af034 {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-e5cf4e77-ae73-4343-829c-5d13057af034"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5cf4e77-ae73-4343-829c-5d13057af034"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e5cf4e77-ae73-4343-829c-5d13057af034"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5cf4e77-ae73-4343-829c-5d13057af034"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-e5cf4e77-ae73-4343-829c-5d13057af034"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e05beb2c-1933-46f3-b696-6b92c172e381 {
  margin-left: 40px;
margin-right: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e05beb2c-1933-46f3-b696-6b92c172e381 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-29cf2e59-a309-4c52-b4af-cfe0efb7b04e {
  margin-left: 40px;
margin-right: 40px;
}

.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

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

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

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

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

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 {
  margin-left: 3%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

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

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  




  #s-74395d9c-deb6-4df3-ba4b-a815c65bb880-btn-wrapper {
    text-align: center;
  }


#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-variant-btn:hover {
  background: #252525;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-variant-btn:active, #s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-variant-btn.active {
  background: rgba(0, 236, 2, 0.7);
  color: #ffffff;
}

#s-74395d9c-deb6-4df3-ba4b-a815c65bb880 .shg-variant-btn.disabled {
  background: #252525;
}

#s-5feeacc8-7a0d-411b-8bf0-12731fa8e3f8 {
  margin-left: 7%;
text-align: left;
}

#s-5feeacc8-7a0d-411b-8bf0-12731fa8e3f8 .shg-product-sold-out {
  display: none;
  color: rgba(0, 236, 2, 1);
  font-size: 22px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5feeacc8-7a0d-411b-8bf0-12731fa8e3f8 .shg-product-price {
  color: rgba(0, 236, 2, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
}

#s-5feeacc8-7a0d-411b-8bf0-12731fa8e3f8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a1b65d66-297b-4811-b21b-a0a207240d58"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

.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-96ca579e-562e-4659-9302-ff0490074095 {
  margin-top: 20px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 10px;
padding-left: 57px;
padding-bottom: 10px;
padding-right: 57px;
border-radius: 43px;
background-color: rgba(0, 236, 0, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-96ca579e-562e-4659-9302-ff0490074095:hover {background-color: rgba(28, 34, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-96ca579e-562e-4659-9302-ff0490074095:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-96ca579e-562e-4659-9302-ff0490074095 {
  margin-top: 20px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 10px;
padding-left: 57px;
padding-bottom: 10px;
padding-right: 57px;
text-align: center;
cursor: pointer;
}
#s-96ca579e-562e-4659-9302-ff0490074095:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-96ca579e-562e-4659-9302-ff0490074095-atc-btn-wrapper {
    text-align: left;
  }


#s-96ca579e-562e-4659-9302-ff0490074095 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-96ca579e-562e-4659-9302-ff0490074095.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-96ca579e-562e-4659-9302-ff0490074095.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-96ca579e-562e-4659-9302-ff0490074095.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){
  #s-96ca579e-562e-4659-9302-ff0490074095-atc-btn-wrapper {
    text-align: center;
  }


#s-96ca579e-562e-4659-9302-ff0490074095 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-96ca579e-562e-4659-9302-ff0490074095.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-96ca579e-562e-4659-9302-ff0490074095.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-96ca579e-562e-4659-9302-ff0490074095.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-7e0f080c-9d2e-43b2-8288-6acd41f919a5 {
  margin-top: 35px;
margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-2dedcd38-5670-414b-a8bf-62bedc1ee145 {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-f143a265-4dca-404a-b131-642011a1e761 {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-319b67cd-1e81-4f4f-9d40-c736969f333b {
  margin-top: 0px;
margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-a627d732-c49b-4cad-95ae-88a903b6a174 {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-53d0c973-74f3-4051-adf2-742aa1ef4f29 {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-b5499248-1121-4929-a7dd-fd3fd8932f8d {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-9affe6fc-6d04-40b2-af47-4ae3c2b02daf {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

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

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

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

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

#s-789d64da-bc5c-492d-9a20-45ba37e87074 {
  min-height: 50px;
background-color: rgba(228, 228, 228, 0);
}








#s-789d64da-bc5c-492d-9a20-45ba37e87074 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-789d64da-bc5c-492d-9a20-45ba37e87074.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2553fa93-c90f-49b2-a3bc-0f5c15ad2a3f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-3dadc002-6ede-429c-8b52-6e248abc0ca6 {
  margin-top: 60px;
margin-left: 40px;
}

#s-95de13ee-3144-4328-af3a-68c99168c829 {
  margin-left: 40px;
margin-right: 40px;
text-align: left;
}

#s-95de13ee-3144-4328-af3a-68c99168c829 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}



#s-36dbb4a5-df40-46c3-ae19-f1790bc023b3 {
  min-height: 50px;
background-color: rgba(228, 228, 228, 0);
}








#s-36dbb4a5-df40-46c3-ae19-f1790bc023b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36dbb4a5-df40-46c3-ae19-f1790bc023b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c562b67-44e2-472a-a811-11758210405e {
  margin-top: 40px;
margin-left: 200px;
margin-bottom: 100px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6c562b67-44e2-472a-a811-11758210405e {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-6c562b67-44e2-472a-a811-11758210405e {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-6c562b67-44e2-472a-a811-11758210405e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6c562b67-44e2-472a-a811-11758210405e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.0px);
}

}

@media (min-width: 992px) {
[id="s-6c562b67-44e2-472a-a811-11758210405e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.0px);
}

}

@media (min-width: 1200px) {
[id="s-6c562b67-44e2-472a-a811-11758210405e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.0px);
}

}

#s-40967b83-8314-446b-93df-d0337d44ea5c {
  margin-left: 40px;
margin-right: 40px;
text-align: left;
}
@media (max-width: 767px){#s-40967b83-8314-446b-93df-d0337d44ea5c {
  max-width: 50px;
}
}






  #s-40967b83-8314-446b-93df-d0337d44ea5c img.shogun-image {
    

    
    
    
  }


#s-40967b83-8314-446b-93df-d0337d44ea5c .shogun-image-content {
  
    align-items: center;
  
}

#s-92ce9c27-9d15-4cf7-935b-bfc88e968e9f {
  margin-top: 20px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-92ce9c27-9d15-4cf7-935b-bfc88e968e9f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-de91e9f5-82cb-4cb7-a5b0-a8ac393214c0 {
  margin-left: 40px;
margin-right: 0px;
}
@media (max-width: 767px){#s-de91e9f5-82cb-4cb7-a5b0-a8ac393214c0 {
  margin-right: 40px;
}
}
#s-c98c0e77-831d-4030-97fe-4e889059dff1 {
  margin-left: 40px;
margin-right: 40px;
text-align: left;
}
@media (max-width: 767px){#s-c98c0e77-831d-4030-97fe-4e889059dff1 {
  max-width: 50px;
}
}






  #s-c98c0e77-831d-4030-97fe-4e889059dff1 img.shogun-image {
    

    
    
    
  }


#s-c98c0e77-831d-4030-97fe-4e889059dff1 .shogun-image-content {
  
    align-items: center;
  
}

#s-884844bd-5d64-4d57-820f-49ab02bd59ca {
  margin-top: 20px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-884844bd-5d64-4d57-820f-49ab02bd59ca .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-c2efa75a-c5d2-4453-b1e4-88022ded47ac {
  margin-left: 40px;
margin-right: 0px;
}
@media (max-width: 767px){#s-c2efa75a-c5d2-4453-b1e4-88022ded47ac {
  margin-right: 40px;
}
}
#s-67ec1b3d-5c85-4bef-8b63-e66f41053b13 {
  margin-left: 40px;
margin-right: 40px;
text-align: left;
}
@media (max-width: 767px){#s-67ec1b3d-5c85-4bef-8b63-e66f41053b13 {
  max-width: 50px;
}
}






  #s-67ec1b3d-5c85-4bef-8b63-e66f41053b13 img.shogun-image {
    

    
    
    
  }


#s-67ec1b3d-5c85-4bef-8b63-e66f41053b13 .shogun-image-content {
  
    align-items: center;
  
}

#s-8378b5bf-a1bd-4865-bdc2-79a1d22a3f1e {
  margin-top: 20px;
margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8378b5bf-a1bd-4865-bdc2-79a1d22a3f1e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-9f6e6cea-bb36-43d4-81b2-513453412964 {
  margin-left: 40px;
margin-right: 40px;
}

#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d {
  min-height: 50px;
background-color: rgba(209, 209, 209, 1);
}
@media (min-width: 1200px){#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d {
  
}
}@media (max-width: 767px){#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d {
  
}
}







#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-161f4bf0-e375-4fd6-adc5-5cbf7977455d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-a4eb203f-8a11-417b-8a7d-df695a97ee12 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(228, 228, 228, 0);
border-style: solid;
}

#s-a4eb203f-8a11-417b-8a7d-df695a97ee12 .shg-sld-dot {
  background-color: rgba(106, 106, 106, 1);
}

#s-a4eb203f-8a11-417b-8a7d-df695a97ee12 .shg-sld-nav-button.shg-sld-left,
#s-a4eb203f-8a11-417b-8a7d-df695a97ee12 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(106, 106, 106, 1);
}

#s-45641730-166e-4b41-a62d-d51e8b2674bf {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-45641730-166e-4b41-a62d-d51e8b2674bf {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-45641730-166e-4b41-a62d-d51e8b2674bf {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-45641730-166e-4b41-a62d-d51e8b2674bf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-9078f596-e68b-447c-add3-557c17145c7c {
  margin-top: 75px;
margin-left: 0px;
margin-bottom: 75px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
max-width: 200px;
text-align: center;
}
@media (max-width: 767px){#s-9078f596-e68b-447c-add3-557c17145c7c {
  margin-bottom: 0px;
}
}






  #s-9078f596-e68b-447c-add3-557c17145c7c img.shogun-image {
    

    
    
    
  }


#s-9078f596-e68b-447c-add3-557c17145c7c .shogun-image-content {
  
    align-items: center;
  
}

#s-a203a58b-039e-482c-8f77-9724bf3086c0 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-f57519ca-a739-4239-940e-09ce1ed90371 {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f57519ca-a739-4239-940e-09ce1ed90371 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-f57519ca-a739-4239-940e-09ce1ed90371 {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f57519ca-a739-4239-940e-09ce1ed90371"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-8cdb4088-f915-4d78-8f88-b3f20621d19e {
  box-shadow:6px 1px 13px 1px rgba(27, 27, 27, 0.51);
margin-top: 75px;
margin-left: 100px;
margin-bottom: 75px;
margin-right: 100px;
border-radius: 265px;
max-width: 200px;
text-align: center;
}
@media (max-width: 767px){#s-8cdb4088-f915-4d78-8f88-b3f20621d19e {
  margin-top: 40px;
margin-bottom: 0px;
}
}






  #s-8cdb4088-f915-4d78-8f88-b3f20621d19e img.shogun-image {
    

    
    
    
  }


#s-8cdb4088-f915-4d78-8f88-b3f20621d19e .shogun-image-content {
  
    align-items: center;
  
}

#s-d18995d5-489a-4c38-b1a8-c7161a9e9bf4 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-6d1b8426-4780-44d9-8a62-08769c22bcfe {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6d1b8426-4780-44d9-8a62-08769c22bcfe {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-6d1b8426-4780-44d9-8a62-08769c22bcfe {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6d1b8426-4780-44d9-8a62-08769c22bcfe"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-d7b59117-9668-4265-acf5-a93026a1929a {
  margin-top: 75px;
margin-left: 56px;
margin-bottom: 75px;
margin-right: 56px;
border-radius: 265px;
max-width: 3000px;
text-align: center;
}
@media (max-width: 767px){#s-d7b59117-9668-4265-acf5-a93026a1929a {
  margin-bottom: 0px;
}
}






  #s-d7b59117-9668-4265-acf5-a93026a1929a img.shogun-image {
    

    
    
    
  }


#s-d7b59117-9668-4265-acf5-a93026a1929a .shogun-image-content {
  
    align-items: center;
  
}

#s-4172ce8e-9c6a-42fb-8804-c4e22efe33e7 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-f0511689-882e-455a-828e-fdc5e6dcb677 {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f0511689-882e-455a-828e-fdc5e6dcb677 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-f0511689-882e-455a-828e-fdc5e6dcb677 {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f0511689-882e-455a-828e-fdc5e6dcb677"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-3b24eae1-e8ba-4dc6-a4ca-08082c88fa96 {
  margin-top: 75px;
margin-left: 29px;
margin-bottom: 75px;
margin-right: 29px;
max-width: 300px;
text-align: center;
}
@media (max-width: 767px){#s-3b24eae1-e8ba-4dc6-a4ca-08082c88fa96 {
  margin-bottom: 0px;
}
}






  #s-3b24eae1-e8ba-4dc6-a4ca-08082c88fa96 img.shogun-image {
    

    
    
    
  }


#s-3b24eae1-e8ba-4dc6-a4ca-08082c88fa96 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8ffa4e4-5d5d-4e93-b0d8-6951f94134f1 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-ff6dbada-361a-4011-8948-fe997d3c843e {
  min-height: 600px;
background-color: rgba(36, 36, 36, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-ff6dbada-361a-4011-8948-fe997d3c843e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff6dbada-361a-4011-8948-fe997d3c843e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ff6dbada-361a-4011-8948-fe997d3c843e {
  
}
}@media (max-width: 767px){#s-ff6dbada-361a-4011-8948-fe997d3c843e {
  
}
}







#s-ff6dbada-361a-4011-8948-fe997d3c843e > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.4;
}#s-ff6dbada-361a-4011-8948-fe997d3c843e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc2211ec-cb96-4139-944f-88b7864917c6 {
  margin-left: 200px;
margin-right: 200px;
padding-top: 72px;
padding-bottom: 72px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cc2211ec-cb96-4139-944f-88b7864917c6 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-cc2211ec-cb96-4139-944f-88b7864917c6 {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc2211ec-cb96-4139-944f-88b7864917c6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-26e398e7-5ca1-4a4b-a2a7-880eb8c04965 {
  margin-top: 35px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-26e398e7-5ca1-4a4b-a2a7-880eb8c04965 {
  margin-top: 35px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
}
#s-26e398e7-5ca1-4a4b-a2a7-880eb8c04965 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-26e398e7-5ca1-4a4b-a2a7-880eb8c04965 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: center;
}


}
#s-31b3069f-cfe3-4533-b7b5-046daa1d8a8d {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-31b3069f-cfe3-4533-b7b5-046daa1d8a8d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-31b3069f-cfe3-4533-b7b5-046daa1d8a8d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-31b3069f-cfe3-4533-b7b5-046daa1d8a8d {
  
}
}@media (max-width: 767px){#s-31b3069f-cfe3-4533-b7b5-046daa1d8a8d {
  
}
}
#s-f169004e-53ac-4f08-a2df-e17797b71448 {
  box-shadow:19px 15px 28px 7px rgba(0, 0, 0, 1);
margin-left: 18px;
margin-right: -157px;
border-radius: 10px;
max-width: 560px;
text-align: center;
}
@media (min-width: 1200px){#s-f169004e-53ac-4f08-a2df-e17797b71448 {
  margin-top: 37px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f169004e-53ac-4f08-a2df-e17797b71448 {
  margin-top: 37px;
}
}@media (max-width: 767px){#s-f169004e-53ac-4f08-a2df-e17797b71448 {
  margin-left: 3%;
margin-right: 3%;
}
}






  #s-f169004e-53ac-4f08-a2df-e17797b71448 img.shogun-image {
    

    
    
    
  }


#s-f169004e-53ac-4f08-a2df-e17797b71448 .shogun-image-content {
  
    align-items: center;
  
}

#s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb {
  margin-left: 116px;
margin-right: 200px;
padding-top: 72px;
padding-bottom: 72px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb {
  margin-right: 0px;
}
}@media (max-width: 767px){#s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-a92b0521-156e-4ad7-a1b2-0f5fd50937fb"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-526a6147-52b7-45cf-a636-521768177f97 {
  box-shadow:19px 15px 28px 7px #000000;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}
@media (max-width: 767px){#s-526a6147-52b7-45cf-a636-521768177f97 {
  margin-left: 3%;
margin-right: 3%;
}
}






  #s-526a6147-52b7-45cf-a636-521768177f97 img.shogun-image {
    

    
    
    
  }


#s-526a6147-52b7-45cf-a636-521768177f97 .shogun-image-content {
  
    align-items: center;
  
}

#s-26cf1949-11a1-4eb9-9c71-8e7776125aa5 {
  margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
@media (max-width: 767px){#s-26cf1949-11a1-4eb9-9c71-8e7776125aa5 {
  margin-top: 32px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
}
#s-26cf1949-11a1-4eb9-9c71-8e7776125aa5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: right;
}


@media (max-width: 767px){#s-26cf1949-11a1-4eb9-9c71-8e7776125aa5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: center;
}


}
#s-59ec3eab-1d4c-4ca5-a8b7-cae8a096cc82 {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-59ec3eab-1d4c-4ca5-a8b7-cae8a096cc82 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-59ec3eab-1d4c-4ca5-a8b7-cae8a096cc82 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-59ec3eab-1d4c-4ca5-a8b7-cae8a096cc82 {
  
}
}@media (max-width: 767px){#s-59ec3eab-1d4c-4ca5-a8b7-cae8a096cc82 {
  
}
}
#s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3 {
  margin-left: 200px;
margin-right: 200px;
padding-top: 72px;
padding-bottom: 72px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3 {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ecc39e16-2d47-48bc-a500-cd2aad91a9a3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-037c4cdb-82e2-41a7-8bda-354d080c2b81 {
  margin-top: 35px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-037c4cdb-82e2-41a7-8bda-354d080c2b81 {
  margin-top: 35px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
}
#s-037c4cdb-82e2-41a7-8bda-354d080c2b81 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-037c4cdb-82e2-41a7-8bda-354d080c2b81 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: center;
}


}
#s-2dafd188-abe3-47ae-822b-4d1be0dfe061 {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-2dafd188-abe3-47ae-822b-4d1be0dfe061 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2dafd188-abe3-47ae-822b-4d1be0dfe061 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2dafd188-abe3-47ae-822b-4d1be0dfe061 {
  
}
}@media (max-width: 767px){#s-2dafd188-abe3-47ae-822b-4d1be0dfe061 {
  
}
}
#s-abb73d56-d814-4d09-bca6-85101a4cb9eb {
  box-shadow:19px 15px 28px 7px rgba(0, 0, 0, 1);
margin-left: 18px;
margin-right: -157px;
border-radius: 10px;
max-width: 560px;
text-align: center;
}
@media (min-width: 1200px){#s-abb73d56-d814-4d09-bca6-85101a4cb9eb {
  margin-top: 37px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-abb73d56-d814-4d09-bca6-85101a4cb9eb {
  margin-top: 37px;
}
}@media (max-width: 767px){#s-abb73d56-d814-4d09-bca6-85101a4cb9eb {
  margin-left: 3%;
margin-right: 3%;
}
}






  #s-abb73d56-d814-4d09-bca6-85101a4cb9eb img.shogun-image {
    

    
    
    
  }


#s-abb73d56-d814-4d09-bca6-85101a4cb9eb .shogun-image-content {
  
    align-items: center;
  
}

#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(228, 228, 228, 0);
border-style: solid;
}
@media (min-width: 1200px){#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab {
  display: none;
}
#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab, #wrap-s-f6a82886-7851-40cc-a7e9-67dc0aade3ab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab {
  display: none;
}
#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab, #wrap-s-f6a82886-7851-40cc-a7e9-67dc0aade3ab { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab {
  display: none;
}
#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab, #wrap-s-f6a82886-7851-40cc-a7e9-67dc0aade3ab { display: none !important; }}@media (max-width: 767px){#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab {
  display: none;
}
#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab, #wrap-s-f6a82886-7851-40cc-a7e9-67dc0aade3ab { display: none !important; }}
#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab .shg-sld-nav-button.shg-sld-left,
#s-f6a82886-7851-40cc-a7e9-67dc0aade3ab .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-666137a8-9c4f-409a-9d90-d98c3e9912ee {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-666137a8-9c4f-409a-9d90-d98c3e9912ee {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-666137a8-9c4f-409a-9d90-d98c3e9912ee {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-666137a8-9c4f-409a-9d90-d98c3e9912ee"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-4334e166-c85a-405b-a61e-c875a6b8b8db {
  box-shadow:6px 1px 13px 1px rgba(27, 27, 27, 0.51);
margin-top: 75px;
margin-left: 100px;
margin-bottom: 75px;
margin-right: 100px;
border-radius: 265px;
max-width: 200px;
text-align: center;
}
@media (max-width: 767px){#s-4334e166-c85a-405b-a61e-c875a6b8b8db {
  margin-top: 40px;
margin-bottom: 0px;
}
}






  #s-4334e166-c85a-405b-a61e-c875a6b8b8db img.shogun-image {
    

    
    
    
  }


#s-4334e166-c85a-405b-a61e-c875a6b8b8db .shogun-image-content {
  
    align-items: center;
  
}

#s-f8c49f1a-6754-452d-9d55-17e6ad41875c {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-88e529a3-e228-4365-aa5c-be045a2b5f4b {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-88e529a3-e228-4365-aa5c-be045a2b5f4b {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-88e529a3-e228-4365-aa5c-be045a2b5f4b {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-88e529a3-e228-4365-aa5c-be045a2b5f4b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-f76932c3-2748-439c-9606-48c6d378d01e {
  box-shadow:6px 1px 13px 1px rgba(27, 27, 27, 0.51);
margin-top: 75px;
margin-left: 100px;
margin-bottom: 75px;
margin-right: 100px;
border-radius: 265px;
max-width: 200px;
text-align: center;
}
@media (max-width: 767px){#s-f76932c3-2748-439c-9606-48c6d378d01e {
  margin-bottom: 0px;
}
}






  #s-f76932c3-2748-439c-9606-48c6d378d01e img.shogun-image {
    

    
    
    
  }


#s-f76932c3-2748-439c-9606-48c6d378d01e .shogun-image-content {
  
    align-items: center;
  
}

#s-1ba385aa-24e1-41cd-a8af-3d53f5588ba2 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-cc74b7aa-d768-4238-957d-80ae9402de14 {
  margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cc74b7aa-d768-4238-957d-80ae9402de14 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-cc74b7aa-d768-4238-957d-80ae9402de14 {
  margin-left: 40px;
margin-right: 40px;
}
}
@media (min-width: 0px) {
[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc74b7aa-d768-4238-957d-80ae9402de14"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-498641f9-58d2-4eed-8637-65d6b829fd1d {
  box-shadow:6px 1px 13px 1px rgba(27, 27, 27, 0.51);
margin-top: 75px;
margin-left: 100px;
margin-bottom: 75px;
margin-right: 100px;
border-radius: 265px;
max-width: 200px;
text-align: center;
}
@media (max-width: 767px){#s-498641f9-58d2-4eed-8637-65d6b829fd1d {
  margin-bottom: 0px;
}
}






  #s-498641f9-58d2-4eed-8637-65d6b829fd1d img.shogun-image {
    

    
    
    
  }


#s-498641f9-58d2-4eed-8637-65d6b829fd1d .shogun-image-content {
  
    align-items: center;
  
}

#s-57ba7d3a-eb83-43d5-8d62-079da70552e7 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-f08c879e-dcad-44fb-906c-7849aa77d8bc {
  min-height: 50px;
background-color: rgba(228, 228, 228, 0);
}








#s-f08c879e-dcad-44fb-906c-7849aa77d8bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f08c879e-dcad-44fb-906c-7849aa77d8bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6b8fd9e5-4122-436c-99bb-ce23d711b535 {
  margin-top: 100px;
margin-left: 200px;
margin-bottom: 100px;
margin-right: 200px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-6b8fd9e5-4122-436c-99bb-ce23d711b535 {
  display: none;
}
#s-6b8fd9e5-4122-436c-99bb-ce23d711b535, #wrap-s-6b8fd9e5-4122-436c-99bb-ce23d711b535 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6b8fd9e5-4122-436c-99bb-ce23d711b535 {
  display: none;
}
#s-6b8fd9e5-4122-436c-99bb-ce23d711b535, #wrap-s-6b8fd9e5-4122-436c-99bb-ce23d711b535 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6b8fd9e5-4122-436c-99bb-ce23d711b535 {
  display: none;
}
#s-6b8fd9e5-4122-436c-99bb-ce23d711b535, #wrap-s-6b8fd9e5-4122-436c-99bb-ce23d711b535 { display: none !important; }}@media (max-width: 767px){#s-6b8fd9e5-4122-436c-99bb-ce23d711b535 {
  margin-top: 50px;
margin-left: 40px;
margin-right: 40px;
display: none;
}
#s-6b8fd9e5-4122-436c-99bb-ce23d711b535, #wrap-s-6b8fd9e5-4122-436c-99bb-ce23d711b535 { display: none !important; }}







#s-6b8fd9e5-4122-436c-99bb-ce23d711b535 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b8fd9e5-4122-436c-99bb-ce23d711b535.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79bac2a4-7707-4e5c-97cd-da766c063a8e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-79bac2a4-7707-4e5c-97cd-da766c063a8e .shogun-heading-component h1 {
  color: rgba(252, 252, 252, 1);
  font-weight:  800 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



#s-afe7ff85-0307-4d15-990b-f1aa728d369e {
  margin-top: -25px;
margin-bottom: 40px;
}

#s-b45164af-6e78-41da-ac26-522b2ba938ea {
  box-shadow:1px 1px 38px 1px rgba(0, 0, 0, 1);
}

#s-09b8c949-cd69-43b6-ae59-53448c59428f {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-09b8c949-cd69-43b6-ae59-53448c59428f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09b8c949-cd69-43b6-ae59-53448c59428f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2fb2e177-8afc-4390-958a-d9d53a878df8 {
  margin-top: 30px;
margin-left: 12%;
margin-bottom: 30px;
margin-right: 12%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2fb2e177-8afc-4390-958a-d9d53a878df8 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-2fb2e177-8afc-4390-958a-d9d53a878df8 {
  margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-2fb2e177-8afc-4390-958a-d9d53a878df8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fb2e177-8afc-4390-958a-d9d53a878df8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2fb2e177-8afc-4390-958a-d9d53a878df8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fb2e177-8afc-4390-958a-d9d53a878df8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-27ef0696-32a0-4884-a14e-8af5466a80d7 {
  box-shadow:11px 5px 15px 5px rgba(0, 0, 0, 0.28);
margin-top: 24px;
margin-left: 44%;
margin-bottom: 24px;
margin-right: 44%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 10px;
max-width: 100px;
text-align: center;
opacity: 0.99;
}
@media (min-width: 768px) and (max-width: 991px){#s-27ef0696-32a0-4884-a14e-8af5466a80d7 {
  margin-left: 41%;
margin-right: 41%;
}
}






  #s-27ef0696-32a0-4884-a14e-8af5466a80d7 img.shogun-image {
    

    
    
    
  }


#s-27ef0696-32a0-4884-a14e-8af5466a80d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-39f92572-52ab-412a-90e3-69fd26c24c19 {
  margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-39f92572-52ab-412a-90e3-69fd26c24c19 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-dd032811-44cc-4eaf-a0d7-e17123cc5d80 {
  margin-left: 40px;
margin-right: 40px;
}

#s-352b2c1b-39bf-4a11-99eb-41a484f5808a {
  box-shadow:11px 5px 15px 5px rgba(0, 0, 0, 0.28);
margin-top: 24px;
margin-left: 44%;
margin-bottom: 24px;
margin-right: 44%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 10px;
max-width: 100px;
text-align: center;
opacity: 0.99;
}
@media (min-width: 768px) and (max-width: 991px){#s-352b2c1b-39bf-4a11-99eb-41a484f5808a {
  margin-left: 41%;
margin-right: 41%;
}
}






  #s-352b2c1b-39bf-4a11-99eb-41a484f5808a img.shogun-image {
    

    
    
    
  }


#s-352b2c1b-39bf-4a11-99eb-41a484f5808a .shogun-image-content {
  
    align-items: center;
  
}

#s-d452f4c4-de79-436e-8268-3a5471b183ff {
  margin-left: 40px;
margin-bottom: 0px;
margin-right: 40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d452f4c4-de79-436e-8268-3a5471b183ff .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-0d499fa9-4242-4af3-8ef2-368626ad0752 {
  margin-left: 40px;
margin-right: 40px;
}

@media (min-width: 0px) {
[id="s-4287301b-a313-40a1-8891-dce3109dad94"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4287301b-a313-40a1-8891-dce3109dad94"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4287301b-a313-40a1-8891-dce3109dad94"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4287301b-a313-40a1-8891-dce3109dad94"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

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

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

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

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

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

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

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

#s-259142ca-1072-417e-a095-98fb9db51780 {
  text-align: left;
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 {
  max-width:  100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  width: 100%;
}



.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  aspect-ratio: 1/1;
}

@media (min-width: 1200px){
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 {
  max-width:  100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  width: 100%;
}



.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  aspect-ratio: 1/1;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 {
  max-width:  100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  width: 100%;
}



.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  aspect-ratio: 1/1;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 {
  max-width:  100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  width: 100%;
}



.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  aspect-ratio: 1/1;
}

}@media (max-width: 767px){
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 {
  max-width:  100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  width: 100%;
}



.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 .shg-image-zoom,
.shg-c#s-259142ca-1072-417e-a095-98fb9db51780 img.shogun-image {
  aspect-ratio: 1/1;
}

}
#s-d55172ef-7f91-44a2-b9f1-242117c4d8aa {
  margin-top: 24%;
margin-bottom: 24%;
min-height: 50px;
}








#s-d55172ef-7f91-44a2-b9f1-242117c4d8aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d55172ef-7f91-44a2-b9f1-242117c4d8aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17a201bf-ed55-4712-8950-0f0abcbe5e05 {
  margin-left: 40px;
margin-right: 40px;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 {
  margin-left: 25%;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  




  #s-da1c06ed-ad74-491d-848f-fa2698719728-btn-wrapper {
    text-align: center;
  }


#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-variant-btn:hover {
  background: #252525;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-variant-btn:active, #s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-da1c06ed-ad74-491d-848f-fa2698719728 .shg-variant-btn.disabled {
  background: #252525;
}

#s-3d547e9d-a1ba-4871-b79c-d6ad0fabc99e {
  text-align: center;
}

#s-3d547e9d-a1ba-4871-b79c-d6ad0fabc99e .shg-product-sold-out {
  display: none;
  color: rgba(4, 221, 0, 1);
  font-size: 38px;
  font-weight:  700 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-3d547e9d-a1ba-4871-b79c-d6ad0fabc99e .shg-product-price {
  color: rgba(4, 221, 0, 1);
  font-weight:  700 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 38px;
}

#s-3d547e9d-a1ba-4871-b79c-d6ad0fabc99e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(4, 221, 0, 1);
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 38px;
  padding-left: 10px;
}

#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 57px;
padding-bottom: 10px;
padding-right: 57px;
border-radius: 43px;
background-color: rgba(4, 221, 1, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b:hover {background-color: rgba(28, 34, 34, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b-atc-btn-wrapper {
    text-align: center;
  }


#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-890e2f9c-ede9-4e90-b0dc-e719bf1d072b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-192002c7-76ef-405d-ab48-f5f53843f208 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-192002c7-76ef-405d-ab48-f5f53843f208 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-192002c7-76ef-405d-ab48-f5f53843f208.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ad826c5-21c1-4eed-b2f7-56e82e303ade {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 17px;
padding-bottom: 17px;
}

#s-656579c1-9b9a-46cb-9350-ae0f30c72c0e {
  margin-left: 16%;
margin-right: 16%;
}
@media (min-width: 768px) and (max-width: 991px){#s-656579c1-9b9a-46cb-9350-ae0f30c72c0e {
  margin-left: 4%;
margin-right: 4%;
}
}@media (max-width: 767px){#s-656579c1-9b9a-46cb-9350-ae0f30c72c0e {
  margin-left: 6%;
margin-right: 6%;
}
}
@media (min-width: 0px) {
[id="s-656579c1-9b9a-46cb-9350-ae0f30c72c0e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-656579c1-9b9a-46cb-9350-ae0f30c72c0e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-656579c1-9b9a-46cb-9350-ae0f30c72c0e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-656579c1-9b9a-46cb-9350-ae0f30c72c0e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e4ed4f1b-91e7-4479-8ebd-4cf0d0d8ce6f {
  margin-top: 119px;
margin-bottom: 0px;
}
@media (max-width: 767px){#s-e4ed4f1b-91e7-4479-8ebd-4cf0d0d8ce6f {
  margin-top: 0px;
}
}
#s-85f73163-020e-49c3-b0e9-1c40cfcefea8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-85f73163-020e-49c3-b0e9-1c40cfcefea8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 23px;
  
  
  text-align: left;
}



#s-761b1a14-0f54-479c-a218-0dded62fc47d {
  margin-top: 3px;
margin-bottom: 20px;
}

#s-84900cb4-1dd8-4b86-ab24-cba1b8264118 {
  margin-bottom: 10px;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: left;
cursor: pointer;
}
#s-403d3109-3cac-4e6d-b154-e00972ab2923:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-403d3109-3cac-4e6d-b154-e00972ab2923:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-403d3109-3cac-4e6d-b154-e00972ab2923 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-403d3109-3cac-4e6d-b154-e00972ab2923:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-403d3109-3cac-4e6d-b154-e00972ab2923:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-403d3109-3cac-4e6d-b154-e00972ab2923-atc-btn-wrapper {
    text-align: left;
  }


#s-403d3109-3cac-4e6d-b154-e00972ab2923 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){
  #s-403d3109-3cac-4e6d-b154-e00972ab2923-atc-btn-wrapper {
    text-align: center;
  }


#s-403d3109-3cac-4e6d-b154-e00972ab2923 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-403d3109-3cac-4e6d-b154-e00972ab2923.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-37cde718-3915-4e18-b66b-448fb49684e8 {
  box-shadow:16px 15px 78px 1px rgba(0, 0, 0, 1);
margin-top: 138px;
margin-bottom: 138px;
border-radius: 10px;
max-width: 714px;
text-align: right;
}
@media (max-width: 767px){#s-37cde718-3915-4e18-b66b-448fb49684e8 {
  margin-top: 21px;
margin-bottom: 21px;
}
}






  #s-37cde718-3915-4e18-b66b-448fb49684e8 img.shogun-image {
    

    
    
    
  }


#s-37cde718-3915-4e18-b66b-448fb49684e8 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-b86160b3-fb94-4080-8946-098cebb8bf07 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-b86160b3-fb94-4080-8946-098cebb8bf07 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-b86160b3-fb94-4080-8946-098cebb8bf07 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(29, 29, 29, 1);
}

#s-b86160b3-fb94-4080-8946-098cebb8bf07 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-b86160b3-fb94-4080-8946-098cebb8bf07 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(29, 29, 29, 1);
  text-align: left;
  font-family: Poppins;
  font-weight: ;
  font-style: ;
  font-size: 35px;
}

#s-b86160b3-fb94-4080-8946-098cebb8bf07 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 35px;
}
#s-41d9db80-e380-4952-a3cd-65aa3623fb7c {
  margin-left: 20px;
margin-right: 20px;
}

#s-62528f3a-ece4-4f44-bae1-ee48b012b340 {
  margin-left: 20px;
margin-right: 20px;
}

#s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10%;
padding-bottom: 10%;
}
@media (max-width: 767px){#s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5 {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b2dac12f-86c0-44d2-b2bd-f625b032f7d5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

#s-8b2d899c-4359-40be-8098-92bd8b237010 {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-8b2d899c-4359-40be-8098-92bd8b237010 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8b2d899c-4359-40be-8098-92bd8b237010 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8b2d899c-4359-40be-8098-92bd8b237010 {
  
}
}@media (max-width: 767px){#s-8b2d899c-4359-40be-8098-92bd8b237010 {
  
}
}
#s-8b2d899c-4359-40be-8098-92bd8b237010 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 46px;
  
  
  
}



#s-7bfc2017-f78b-4ca4-a4d5-bb88f4fadfc1 {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-7bfc2017-f78b-4ca4-a4d5-bb88f4fadfc1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7bfc2017-f78b-4ca4-a4d5-bb88f4fadfc1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7bfc2017-f78b-4ca4-a4d5-bb88f4fadfc1 {
  
}
}@media (max-width: 767px){#s-7bfc2017-f78b-4ca4-a4d5-bb88f4fadfc1 {
  
}
}
#s-e339744e-af1e-4b39-a6e6-4316ef072550 {
  margin-left: 28%;
margin-right: 28%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}
@media (max-width: 767px){#s-e339744e-af1e-4b39-a6e6-4316ef072550 {
  margin-left: 10%;
margin-right: 10%;
}
}
#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

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

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  




  #s-e339744e-af1e-4b39-a6e6-4316ef072550-btn-wrapper {
    text-align: center;
  }


#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-variant-btn:hover {
  background: #252525;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-variant-btn:active, #s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-e339744e-af1e-4b39-a6e6-4316ef072550 .shg-variant-btn.disabled {
  background: #252525;
}

#s-d055f96f-1ec3-44bc-937c-66d1fa4f5617 {
  text-align: center;
}

#s-d055f96f-1ec3-44bc-937c-66d1fa4f5617 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 29px;
  font-weight:  700 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-d055f96f-1ec3-44bc-937c-66d1fa4f5617 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 29px;
}

#s-d055f96f-1ec3-44bc-937c-66d1fa4f5617 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(165, 165, 165, 1);
  font-weight:  700 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 29px;
  padding-left: 10px;
}

#s-932757d2-8320-46b1-a143-6647a85c0b94 {
  border-style: solid;
padding-top: 10px;
padding-left: 54px;
padding-bottom: 10px;
padding-right: 54px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: #2C2A34;
border-radius: 30px;
background-color: rgba(255, 198, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(44, 44, 44, 1);
}
#s-932757d2-8320-46b1-a143-6647a85c0b94:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(255, 198, 0, 1) !important;
border-radius: 30px !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-932757d2-8320-46b1-a143-6647a85c0b94:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-932757d2-8320-46b1-a143-6647a85c0b94 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-932757d2-8320-46b1-a143-6647a85c0b94.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-932757d2-8320-46b1-a143-6647a85c0b94.shg-btn {
  color: rgba(44, 44, 44, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-932757d2-8320-46b1-a143-6647a85c0b94.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f {
  margin-left: 16%;
margin-right: 16%;
text-align: left;
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f {
  max-width:  100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  width: 100%;
}



.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  aspect-ratio: 1/1;
}

@media (min-width: 1200px){
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f {
  max-width:  100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  width: 100%;
}



.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  aspect-ratio: 1/1;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f {
  max-width:  100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  width: 100%;
}



.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  aspect-ratio: 1/1;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f {
  max-width:  100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  width: 100%;
}



.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  aspect-ratio: 1/1;
}

}@media (max-width: 767px){
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f {
  max-width:  100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  max-width: 1400px !important;
  
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  width: 100%;
}



.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f .shg-image-zoom,
.shg-c#s-c7d4777f-1e2a-4370-beaf-65459fa8f67f img.shogun-image {
  aspect-ratio: 1/1;
}

}
#s-e4196d9a-fad2-46c9-a00c-5932e9922c4d {
  margin-top: 43px;
margin-left: 9%;
margin-bottom: 43px;
margin-right: 9%;
min-height: 50px;
}








#s-e4196d9a-fad2-46c9-a00c-5932e9922c4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4196d9a-fad2-46c9-a00c-5932e9922c4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c4ea64e-040d-4081-ae75-38948be87351 {
  margin-bottom: 53px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c4ea64e-040d-4081-ae75-38948be87351 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



/*
  $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;
  }
}

#s-6e1e094e-2592-4f2b-91e0-7a59c7b671d8 {
  margin-left: 12%;
margin-right: 12%;
}

#s-b21abd59-5e12-4a45-9318-992abd7aea8c {
  text-align: left;
}



.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b21abd59-5e12-4a45-9318-992abd7aea8c img.shogun-image {
  width: 100%;
}



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

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

#s-6e6bcd5c-1851-44c8-ae2b-d86dce153ef4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e6bcd5c-1851-44c8-ae2b-d86dce153ef4 .shg-product-title-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
}

#s-32f87abc-cdb5-437f-af66-80941f7751fc {
  text-align: center;
}

#s-32f87abc-cdb5-437f-af66-80941f7751fc .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-32f87abc-cdb5-437f-af66-80941f7751fc .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-32f87abc-cdb5-437f-af66-80941f7751fc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
  padding-left: 10px;
}

#s-c63067c4-4a09-4021-802f-700de14d051e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c63067c4-4a09-4021-802f-700de14d051e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c63067c4-4a09-4021-802f-700de14d051e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c63067c4-4a09-4021-802f-700de14d051e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c63067c4-4a09-4021-802f-700de14d051e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c63067c4-4a09-4021-802f-700de14d051e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c63067c4-4a09-4021-802f-700de14d051e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 {
  text-align: left;
}



.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c6806454-0fb8-4b0d-8321-0125a32ed2f8 img.shogun-image {
  width: 100%;
}



}
#s-33b56420-a141-43ee-8435-a9133dc2ce87 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33b56420-a141-43ee-8435-a9133dc2ce87 .shg-product-title-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
}

#s-7fc8bef2-dca8-4e85-b898-6dd629e4e86d {
  text-align: center;
}

#s-7fc8bef2-dca8-4e85-b898-6dd629e4e86d .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7fc8bef2-dca8-4e85-b898-6dd629e4e86d .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-7fc8bef2-dca8-4e85-b898-6dd629e4e86d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
  padding-left: 10px;
}

#s-8bf1965e-76be-43a9-ae5b-8561e9da3095 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8bf1965e-76be-43a9-ae5b-8561e9da3095:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8bf1965e-76be-43a9-ae5b-8561e9da3095:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8bf1965e-76be-43a9-ae5b-8561e9da3095 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8bf1965e-76be-43a9-ae5b-8561e9da3095.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8bf1965e-76be-43a9-ae5b-8561e9da3095.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8bf1965e-76be-43a9-ae5b-8561e9da3095.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-fbe8898e-e189-436e-8a27-94ad81bbd58b {
  text-align: left;
}



.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe8898e-e189-436e-8a27-94ad81bbd58b img.shogun-image {
  width: 100%;
}



}
#s-6f466711-10b9-4ed7-9f63-41fe02dda3dd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6f466711-10b9-4ed7-9f63-41fe02dda3dd .shg-product-title-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
}

#s-b6d043d5-3f51-48df-8469-eaedbc8ff413 {
  text-align: center;
}

#s-b6d043d5-3f51-48df-8469-eaedbc8ff413 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b6d043d5-3f51-48df-8469-eaedbc8ff413 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-b6d043d5-3f51-48df-8469-eaedbc8ff413 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
  padding-left: 10px;
}

#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-be1c9470-0fbe-47e8-82a7-2c6ff117ce9f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e {
  text-align: left;
}



.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a8fe771-e149-46f3-ab7d-1856f0dbce4e img.shogun-image {
  width: 100%;
}



}
#s-1df24fa0-16a6-433e-a6ee-b805829b6cf2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1df24fa0-16a6-433e-a6ee-b805829b6cf2 .shg-product-title-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
}

#s-49eee03c-8369-44bd-a65a-b6c4b67eb41d {
  text-align: center;
}

#s-49eee03c-8369-44bd-a65a-b6c4b67eb41d .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-49eee03c-8369-44bd-a65a-b6c4b67eb41d .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-49eee03c-8369-44bd-a65a-b6c4b67eb41d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
  padding-left: 10px;
}

#s-226db154-f334-480e-a68d-d9e5beb24072 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-226db154-f334-480e-a68d-d9e5beb24072:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-226db154-f334-480e-a68d-d9e5beb24072:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-226db154-f334-480e-a68d-d9e5beb24072 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-226db154-f334-480e-a68d-d9e5beb24072.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-226db154-f334-480e-a68d-d9e5beb24072.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-226db154-f334-480e-a68d-d9e5beb24072.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7f90f2e7-81ee-444d-b249-f26a5441b74e {
  text-align: left;
}



.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f90f2e7-81ee-444d-b249-f26a5441b74e img.shogun-image {
  width: 100%;
}



}
#s-1e0ceca1-93af-431a-9b17-06911cea26b9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1e0ceca1-93af-431a-9b17-06911cea26b9 .shg-product-title-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
}

#s-41fbd501-d94e-4f5e-a31a-ef79e03a3f8e {
  text-align: center;
}

#s-41fbd501-d94e-4f5e-a31a-ef79e03a3f8e .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-41fbd501-d94e-4f5e-a31a-ef79e03a3f8e .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-41fbd501-d94e-4f5e-a31a-ef79e03a3f8e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
  padding-left: 10px;
}

#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-47c767e3-85a0-4c19-a6ac-0ebe01a07398.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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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