.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-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 {
  padding-top: 50px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 1200px){#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 {
  margin-top: -85px;
margin-left: 180px;
margin-right: 180px;
padding-left: 30px;
padding-right: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 {
  margin-top: -75px;
margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 {
  margin-top: -60px;
}
}@media (max-width: 767px){#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 {
  margin-top: -45px;
padding-left: 15px;
padding-right: 15px;
display: none;
}
#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9, #wrap-s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 { display:none !important; }}







#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-24f53d4a-aa72-4169-b8b2-4dd11ec1a8f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-32814b39-2b66-44e7-b982-8e51b3ed14e7 {
  margin-left: 45%;
margin-bottom: 20px;
margin-right: 45%;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}







  #s-32814b39-2b66-44e7-b982-8e51b3ed14e7 img.shogun-image {
    

    
    
    
  }


#s-32814b39-2b66-44e7-b982-8e51b3ed14e7 .shogun-image-content {
  
    align-items: 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-373b12b3-0521-49b1-9a29-9fa1d27302d3 {
  margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-373b12b3-0521-49b1-9a29-9fa1d27302d3 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 29px;
  
  letter-spacing: 5px;
  
}



.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-c0a8d77e-8455-4ab0-9e56-3dd9a547b6e4 {
  margin-left: 15%;
margin-right: 15%;
}

#s-418c872b-64c5-423e-85d1-af61441392b2 {
  margin-top: 20px;
}

#s-bef26e84-8754-4664-963f-bdde48f52123 {
  padding-top: 30px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 1200px){#s-bef26e84-8754-4664-963f-bdde48f52123 {
  margin-top: -85px;
margin-left: 180px;
margin-right: 180px;
padding-left: 30px;
padding-right: 30px;
display: none;
}
#s-bef26e84-8754-4664-963f-bdde48f52123, #wrap-s-bef26e84-8754-4664-963f-bdde48f52123 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bef26e84-8754-4664-963f-bdde48f52123 {
  margin-top: -75px;
margin-left: 150px;
margin-right: 150px;
display: none;
}
#s-bef26e84-8754-4664-963f-bdde48f52123, #wrap-s-bef26e84-8754-4664-963f-bdde48f52123 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bef26e84-8754-4664-963f-bdde48f52123 {
  margin-top: -60px;
display: none;
}
#s-bef26e84-8754-4664-963f-bdde48f52123, #wrap-s-bef26e84-8754-4664-963f-bdde48f52123 { display:none !important; }}@media (max-width: 767px){#s-bef26e84-8754-4664-963f-bdde48f52123 {
  margin-top: -45px;
padding-left: 15px;
padding-right: 15px;
}
}







#s-bef26e84-8754-4664-963f-bdde48f52123 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bef26e84-8754-4664-963f-bdde48f52123.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98f144a0-5faa-41e3-9484-178f89ff1d4e {
  margin-top: 20px;
margin-left: 44%;
margin-bottom: 20px;
margin-right: 45%;
text-align: center;
}







  #s-98f144a0-5faa-41e3-9484-178f89ff1d4e img.shogun-image {
    

    
    
    
  }


#s-98f144a0-5faa-41e3-9484-178f89ff1d4e .shogun-image-content {
  
    align-items: center;
  
}

#s-08f611f0-0f36-4e57-8c24-09e9273b1de3 {
  margin-left: 5%;
margin-right: 5%;
}

#s-8e92e6c3-6546-4633-8cdf-6d02028778cc {
  margin-top: 30px;
}

#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823 {
  padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823 {
  display: none;
}
#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823, #wrap-s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823 { display:none !important; }}@media (max-width: 767px){#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823 {
  display: none;
}
#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823, #wrap-s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823 { display:none !important; }}







#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc668f90-d8bb-4dc1-a5d8-966d3d0cb823.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c37ebf8-fcf8-4ef2-8030-e6d3f512d175 {
  margin-top: 70px;
margin-bottom: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c37ebf8-fcf8-4ef2-8030-e6d3f512d175 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 31px;
  
  letter-spacing: 5px;
  
}



.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-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b {
  margin-top: 50px;
margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4ee77261-48ae-4d7c-b961-f0e7eaa5de0b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-440b61d2-683c-47d9-bbd0-fcc3c4cdecfe {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-440b61d2-683c-47d9-bbd0-fcc3c4cdecfe {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 {
  text-align: left;
}



.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f5f383-0535-4c96-87e5-b7ebdbd61340 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-02d7c002-ba00-4024-bb8f-6781d91dda1e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-02d7c002-ba00-4024-bb8f-6781d91dda1e .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

.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-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-e80e5c52-98e0-4be5-91b8-f8fda0eea0a8.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


.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-91dacd3e-1295-4236-84ba-1e76504a4486 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-91dacd3e-1295-4236-84ba-1e76504a4486 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-91dacd3e-1295-4236-84ba-1e76504a4486 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-91dacd3e-1295-4236-84ba-1e76504a4486 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-91dacd3e-1295-4236-84ba-1e76504a4486 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-91dacd3e-1295-4236-84ba-1e76504a4486 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-91dacd3e-1295-4236-84ba-1e76504a4486 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-e3e9382e-6818-422e-94a7-c7939dffbcc6 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-e3e9382e-6818-422e-94a7-c7939dffbcc6 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e3e9382e-6818-422e-94a7-c7939dffbcc6 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e3e9382e-6818-422e-94a7-c7939dffbcc6 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-e3e9382e-6818-422e-94a7-c7939dffbcc6 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-100540d2-8de8-452e-ad79-d8a282be2028 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-100540d2-8de8-452e-ad79-d8a282be2028 {
  display: none;
}
#s-eaa54cff-992f-4171-990a-0da00f10003f {
  text-align: left;
}



.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f img.shogun-image {
  width: 100%;
}



}

.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eaa54cff-992f-4171-990a-0da00f10003f img.shogun-image {
  width: 100%;
}




#s-ca9e24e5-b0f8-4812-bdbc-ab72125a2d66 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ca9e24e5-b0f8-4812-bdbc-ab72125a2d66 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-4fd256ec-b26b-4009-bdc5-4fccf3e6a4a0.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-0dffc137-322b-4c22-b793-761a7e3560d1 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-0dffc137-322b-4c22-b793-761a7e3560d1 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-0dffc137-322b-4c22-b793-761a7e3560d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-0dffc137-322b-4c22-b793-761a7e3560d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-0dffc137-322b-4c22-b793-761a7e3560d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-0dffc137-322b-4c22-b793-761a7e3560d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-0dffc137-322b-4c22-b793-761a7e3560d1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-dd050a81-bb32-42c4-b99f-58dc58073b38 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-dd050a81-bb32-42c4-b99f-58dc58073b38 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dd050a81-bb32-42c4-b99f-58dc58073b38 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-dd050a81-bb32-42c4-b99f-58dc58073b38 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-dd050a81-bb32-42c4-b99f-58dc58073b38 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-14da59e5-7b56-4195-a28d-09b6e98d8b89 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-14da59e5-7b56-4195-a28d-09b6e98d8b89 {
  display: none;
}
#s-ee78ed4c-af20-450f-b852-0e789de0c0ee {
  text-align: left;
}



.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee img.shogun-image {
  width: 100%;
}



}

.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee78ed4c-af20-450f-b852-0e789de0c0ee img.shogun-image {
  width: 100%;
}




#s-88a8b7cb-e230-4779-8f68-966db34ca752 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-88a8b7cb-e230-4779-8f68-966db34ca752 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-75503c97-3ae9-4cc5-bde6-d894b4e418f7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-75503c97-3ae9-4cc5-bde6-d894b4e418f7.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-41d01567-3356-4242-88c8-b714c668ba51 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-41d01567-3356-4242-88c8-b714c668ba51 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-41d01567-3356-4242-88c8-b714c668ba51 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-41d01567-3356-4242-88c8-b714c668ba51 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-41d01567-3356-4242-88c8-b714c668ba51 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-41d01567-3356-4242-88c8-b714c668ba51 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-41d01567-3356-4242-88c8-b714c668ba51 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-80a7b943-5594-4086-82f5-809d006bfc9d {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-80a7b943-5594-4086-82f5-809d006bfc9d {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-80a7b943-5594-4086-82f5-809d006bfc9d {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-80a7b943-5594-4086-82f5-809d006bfc9d {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-80a7b943-5594-4086-82f5-809d006bfc9d {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-bdd2349b-aad4-4bc6-a0e6-47690a131099 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-bdd2349b-aad4-4bc6-a0e6-47690a131099 {
  display: none;
}
#s-670fbad6-039b-428f-ba73-b4f3ce5a255f {
  text-align: left;
}



.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f img.shogun-image {
  width: 100%;
}



}

.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670fbad6-039b-428f-ba73-b4f3ce5a255f img.shogun-image {
  width: 100%;
}




#s-e9e4e180-1c59-4822-bbac-ec42b4b3d883 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e9e4e180-1c59-4822-bbac-ec42b4b3d883 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-f83c5e76-6cb5-4c46-9bf1-f564f8f9116a.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-c05466ae-a858-4a28-8841-9161722de4d6 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-c05466ae-a858-4a28-8841-9161722de4d6 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-c05466ae-a858-4a28-8841-9161722de4d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-c05466ae-a858-4a28-8841-9161722de4d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-c05466ae-a858-4a28-8841-9161722de4d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-c05466ae-a858-4a28-8841-9161722de4d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-c05466ae-a858-4a28-8841-9161722de4d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-1d2b2f61-862b-4f4f-b6da-ce200c4c7c88 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-1d2b2f61-862b-4f4f-b6da-ce200c4c7c88 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1d2b2f61-862b-4f4f-b6da-ce200c4c7c88 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1d2b2f61-862b-4f4f-b6da-ce200c4c7c88 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-1d2b2f61-862b-4f4f-b6da-ce200c4c7c88 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd {
  padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd {
  display: none;
}
#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd, #wrap-s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd {
  display: none;
}
#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd, #wrap-s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd {
  
}
}@media (max-width: 767px){#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd {
  
}
}







#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d784b7b2-8d7b-42a9-9567-2d3ded4384dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90a9a133-4646-459e-91f3-734b64814d93 {
  margin-top: 70px;
margin-bottom: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-90a9a133-4646-459e-91f3-734b64814d93 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  letter-spacing: 5px;
  
}


@media (max-width: 767px){#s-90a9a133-4646-459e-91f3-734b64814d93 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 5px;
  
}


}
@media (min-width: 1200px){#s-66e21a56-abcf-446d-a224-fa9ecd645741 {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-66e21a56-abcf-446d-a224-fa9ecd645741 {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-66e21a56-abcf-446d-a224-fa9ecd645741 {
  margin-top: 50px;
margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-66e21a56-abcf-446d-a224-fa9ecd645741"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-66e21a56-abcf-446d-a224-fa9ecd645741"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66e21a56-abcf-446d-a224-fa9ecd645741"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66e21a56-abcf-446d-a224-fa9ecd645741"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (max-width: 767px){#s-505316f8-440a-45f0-aceb-847f7d034b2a {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-505316f8-440a-45f0-aceb-847f7d034b2a {
  display: none;
}
#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 {
  text-align: left;
}



.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6277dbec-8b37-42e5-b0b9-0c459adff4c6 img.shogun-image {
  width: 100%;
}




#s-1fd96cb4-92b7-4820-8de3-15e17e24adfb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1fd96cb4-92b7-4820-8de3-15e17e24adfb .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-e80fd159-63c9-477f-984b-6e4fab84fc96 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-e80fd159-63c9-477f-984b-6e4fab84fc96:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-e80fd159-63c9-477f-984b-6e4fab84fc96:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-e80fd159-63c9-477f-984b-6e4fab84fc96 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e80fd159-63c9-477f-984b-6e4fab84fc96.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e80fd159-63c9-477f-984b-6e4fab84fc96.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-e80fd159-63c9-477f-984b-6e4fab84fc96.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-e80fd159-63c9-477f-984b-6e4fab84fc96.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-4e69bd58-0495-4576-bc9c-fffad80fd16d {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-4e69bd58-0495-4576-bc9c-fffad80fd16d > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-4e69bd58-0495-4576-bc9c-fffad80fd16d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-4e69bd58-0495-4576-bc9c-fffad80fd16d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-4e69bd58-0495-4576-bc9c-fffad80fd16d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-4e69bd58-0495-4576-bc9c-fffad80fd16d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-4e69bd58-0495-4576-bc9c-fffad80fd16d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c98afb47-bc0c-484a-a5b7-9cae56f166ca {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-c98afb47-bc0c-484a-a5b7-9cae56f166ca {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c98afb47-bc0c-484a-a5b7-9cae56f166ca {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c98afb47-bc0c-484a-a5b7-9cae56f166ca {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-c98afb47-bc0c-484a-a5b7-9cae56f166ca {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-dc2fc523-eb03-4070-b1f4-6b991d76e105 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-dc2fc523-eb03-4070-b1f4-6b991d76e105 {
  display: none;
}
#s-3a5a6c87-133c-4a09-86b2-c001d60d589b {
  text-align: left;
}



.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b img.shogun-image {
  width: 100%;
}



}

.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a5a6c87-133c-4a09-86b2-c001d60d589b img.shogun-image {
  width: 100%;
}




#s-b45e38c3-c755-4355-8d67-ccc44647fdd3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b45e38c3-c755-4355-8d67-ccc44647fdd3 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-cd0a840f-3961-4841-854d-d4861464f860 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-cd0a840f-3961-4841-854d-d4861464f860:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-cd0a840f-3961-4841-854d-d4861464f860:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-cd0a840f-3961-4841-854d-d4861464f860 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cd0a840f-3961-4841-854d-d4861464f860.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cd0a840f-3961-4841-854d-d4861464f860.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-cd0a840f-3961-4841-854d-d4861464f860.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-cd0a840f-3961-4841-854d-d4861464f860.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-3dfed6fa-5d3e-4a67-b70b-dbd0287600c9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-5da8ce59-6760-4afc-8a37-5484e2dc2ebf {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-5da8ce59-6760-4afc-8a37-5484e2dc2ebf {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5da8ce59-6760-4afc-8a37-5484e2dc2ebf {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5da8ce59-6760-4afc-8a37-5484e2dc2ebf {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-5da8ce59-6760-4afc-8a37-5484e2dc2ebf {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-1a38cadd-bf4b-4448-98aa-1bdd595b1a8f {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-1a38cadd-bf4b-4448-98aa-1bdd595b1a8f {
  display: none;
}
#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e {
  text-align: left;
}



.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e img.shogun-image {
  width: 100%;
}



}

.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9d68f6d1-cb9f-4fe3-810e-bc1e8d22688e img.shogun-image {
  width: 100%;
}




#s-bdef03a1-1849-407e-b473-7859501efe86 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bdef03a1-1849-407e-b473-7859501efe86 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-135b96fb-b5ee-4928-ae82-d5282c0fd514 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-135b96fb-b5ee-4928-ae82-d5282c0fd514:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-135b96fb-b5ee-4928-ae82-d5282c0fd514:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-135b96fb-b5ee-4928-ae82-d5282c0fd514 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-135b96fb-b5ee-4928-ae82-d5282c0fd514.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-135b96fb-b5ee-4928-ae82-d5282c0fd514.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-135b96fb-b5ee-4928-ae82-d5282c0fd514.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-135b96fb-b5ee-4928-ae82-d5282c0fd514.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 {
  margin-top: 0px;
margin-bottom: 25px;
padding-left: 0%;
padding-right: 0%;
}

#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-df581009-b30f-4fe9-b77e-3d32467f1ad1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-73986b81-3791-4999-a69e-c43d7c6dedf2 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-73986b81-3791-4999-a69e-c43d7c6dedf2 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-73986b81-3791-4999-a69e-c43d7c6dedf2 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-73986b81-3791-4999-a69e-c43d7c6dedf2 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-73986b81-3791-4999-a69e-c43d7c6dedf2 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-7b0d3c81-4f84-4665-8aa3-5ddd0ae2ad28 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-7b0d3c81-4f84-4665-8aa3-5ddd0ae2ad28 {
  display: none;
}
#s-359e621c-65c4-436d-91a5-a341c19d7fc5 {
  text-align: left;
}



.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-359e621c-65c4-436d-91a5-a341c19d7fc5 img.shogun-image {
  width: 100%;
}




#s-65e84bd2-0d52-487d-9c55-4452a33cf389 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-65e84bd2-0d52-487d-9c55-4452a33cf389 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-fdfb7a25-abd8-4f39-8604-305c70ab186f {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-fdfb7a25-abd8-4f39-8604-305c70ab186f:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-fdfb7a25-abd8-4f39-8604-305c70ab186f:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-fdfb7a25-abd8-4f39-8604-305c70ab186f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fdfb7a25-abd8-4f39-8604-305c70ab186f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fdfb7a25-abd8-4f39-8604-305c70ab186f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-fdfb7a25-abd8-4f39-8604-305c70ab186f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-fdfb7a25-abd8-4f39-8604-305c70ab186f.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-7b51bf38-ac92-47f2-a2a0-1f17388b44ee > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-f6c19f61-0c9c-4f46-98f1-df6650067683 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-f6c19f61-0c9c-4f46-98f1-df6650067683 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f6c19f61-0c9c-4f46-98f1-df6650067683 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f6c19f61-0c9c-4f46-98f1-df6650067683 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-f6c19f61-0c9c-4f46-98f1-df6650067683 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-80b9b602-b5d0-4003-9525-0285cc6687a0 {
  padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-80b9b602-b5d0-4003-9525-0285cc6687a0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-80b9b602-b5d0-4003-9525-0285cc6687a0 {
  display: none;
}
#s-80b9b602-b5d0-4003-9525-0285cc6687a0, #wrap-s-80b9b602-b5d0-4003-9525-0285cc6687a0 { display:none !important; }}@media (max-width: 767px){#s-80b9b602-b5d0-4003-9525-0285cc6687a0 {
  display: none;
}
#s-80b9b602-b5d0-4003-9525-0285cc6687a0, #wrap-s-80b9b602-b5d0-4003-9525-0285cc6687a0 { display:none !important; }}







#s-80b9b602-b5d0-4003-9525-0285cc6687a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80b9b602-b5d0-4003-9525-0285cc6687a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8651393-e28d-40a3-9f19-bb9f98ae5e96 {
  margin-top: 70px;
margin-bottom: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c8651393-e28d-40a3-9f19-bb9f98ae5e96 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  letter-spacing: 5px;
  
}



#s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c {
  margin-top: 50px;
margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a2f9f163-cac7-47c2-94a2-ee211fc0cd0c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-d043967e-e570-4d58-be5e-c26c73d74b54 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-d043967e-e570-4d58-be5e-c26c73d74b54 {
  display: none;
}
#s-c718474f-0be7-4967-93fd-567147f31d85 {
  text-align: left;
}



.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c718474f-0be7-4967-93fd-567147f31d85 img.shogun-image {
  width: 100%;
}




#s-1caf5f9c-f8e6-4b05-80cd-da1db7590976 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1caf5f9c-f8e6-4b05-80cd-da1db7590976 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-923e38f0-bb65-43f9-b0d4-37d08b6c11d9.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-e3a57149-12c8-44a9-8232-e7882eb5ea3c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c3ee1a23-d710-4812-83d3-a7b825d68b52 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-c3ee1a23-d710-4812-83d3-a7b825d68b52 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c3ee1a23-d710-4812-83d3-a7b825d68b52 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c3ee1a23-d710-4812-83d3-a7b825d68b52 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-c3ee1a23-d710-4812-83d3-a7b825d68b52 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-85745969-f3e7-4101-990d-68cbf2ff27c6 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-85745969-f3e7-4101-990d-68cbf2ff27c6 {
  display: none;
}
#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 {
  text-align: left;
}



.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcaf7e0b-8490-4c97-a19a-56b1c8372474 img.shogun-image {
  width: 100%;
}




#s-c6f5ea6e-3c2d-4672-888a-bd1ff0f44e87 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6f5ea6e-3c2d-4672-888a-bd1ff0f44e87 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-d091b3b9-158b-49f7-9d4f-2b8e1a481cdc.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b {
  margin-top: 10px;
margin-bottom: 25px;
}

#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-5390ac88-6fcf-4822-9b10-d9e89fc8531b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-9aad3e16-ba1c-42d8-adf4-453ff42d834f {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-9aad3e16-ba1c-42d8-adf4-453ff42d834f {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9aad3e16-ba1c-42d8-adf4-453ff42d834f {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9aad3e16-ba1c-42d8-adf4-453ff42d834f {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-9aad3e16-ba1c-42d8-adf4-453ff42d834f {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-8b795150-c2d9-4593-bed3-3f667663af6a {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-8b795150-c2d9-4593-bed3-3f667663af6a {
  display: none;
}
#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 {
  text-align: left;
}



.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5159c4a6-9014-4128-9699-b5b46a5bcee0 img.shogun-image {
  width: 100%;
}




#s-d43d5ad0-3b6c-4e1a-b1d2-95b91f841678 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d43d5ad0-3b6c-4e1a-b1d2-95b91f841678 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-21577014-f2a7-4c0b-a084-40ce9630be89 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-21577014-f2a7-4c0b-a084-40ce9630be89:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-21577014-f2a7-4c0b-a084-40ce9630be89:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-21577014-f2a7-4c0b-a084-40ce9630be89 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-21577014-f2a7-4c0b-a084-40ce9630be89.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-21577014-f2a7-4c0b-a084-40ce9630be89.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-21577014-f2a7-4c0b-a084-40ce9630be89.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-21577014-f2a7-4c0b-a084-40ce9630be89.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-9b15be47-2a37-4057-800d-94d4c20f7fa9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-5f05adf6-8780-42d5-825f-5f451fd58e5a {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-5f05adf6-8780-42d5-825f-5f451fd58e5a {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5f05adf6-8780-42d5-825f-5f451fd58e5a {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5f05adf6-8780-42d5-825f-5f451fd58e5a {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-5f05adf6-8780-42d5-825f-5f451fd58e5a {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-7cba272e-4eeb-4e72-a7a4-41fc7a206d95 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-7cba272e-4eeb-4e72-a7a4-41fc7a206d95 {
  display: none;
}
#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 {
  text-align: left;
}



.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a43d5baa-7bf9-4092-9671-9f8f8a048338 img.shogun-image {
  width: 100%;
}




#s-5e4066fc-925c-4a5a-b9ea-e0d6701cb688 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5e4066fc-925c-4a5a-b9ea-e0d6701cb688 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-bd689495-66e9-41a1-844b-847125faa17d {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-bd689495-66e9-41a1-844b-847125faa17d:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-bd689495-66e9-41a1-844b-847125faa17d:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-bd689495-66e9-41a1-844b-847125faa17d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bd689495-66e9-41a1-844b-847125faa17d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bd689495-66e9-41a1-844b-847125faa17d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-bd689495-66e9-41a1-844b-847125faa17d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-bd689495-66e9-41a1-844b-847125faa17d.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-23b3407e-f760-4d68-8b83-e3c37df4d9fd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-fe38d0ac-fc4e-4704-b8e0-9ad4341873cf {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-fe38d0ac-fc4e-4704-b8e0-9ad4341873cf {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fe38d0ac-fc4e-4704-b8e0-9ad4341873cf {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fe38d0ac-fc4e-4704-b8e0-9ad4341873cf {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-fe38d0ac-fc4e-4704-b8e0-9ad4341873cf {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-471da485-fb85-46be-89ba-cbe5958052e1 {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-471da485-fb85-46be-89ba-cbe5958052e1 {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-471da485-fb85-46be-89ba-cbe5958052e1 {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-471da485-fb85-46be-89ba-cbe5958052e1 {
  margin-top: 50px;
margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-471da485-fb85-46be-89ba-cbe5958052e1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-471da485-fb85-46be-89ba-cbe5958052e1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-471da485-fb85-46be-89ba-cbe5958052e1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-471da485-fb85-46be-89ba-cbe5958052e1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-bff94eb3-3df6-4762-8ad7-931e384935a5 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-bff94eb3-3df6-4762-8ad7-931e384935a5 {
  display: none;
}
#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 {
  text-align: left;
}



.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6f8e7a2a-faf0-45f2-868b-4348b08c28d3 img.shogun-image {
  width: 100%;
}




#s-252f3724-a7ca-40ed-ac39-206b4e0d372b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-252f3724-a7ca-40ed-ac39-206b4e0d372b .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-54e5179c-04de-4bb7-9ca5-4a48ae8df57a.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-740661d4-0d56-4459-8c58-0537bfc5ec7a {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-740661d4-0d56-4459-8c58-0537bfc5ec7a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-740661d4-0d56-4459-8c58-0537bfc5ec7a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-740661d4-0d56-4459-8c58-0537bfc5ec7a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-740661d4-0d56-4459-8c58-0537bfc5ec7a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-740661d4-0d56-4459-8c58-0537bfc5ec7a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-740661d4-0d56-4459-8c58-0537bfc5ec7a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-e2070d2e-67d9-4c8c-94b6-d0ca3090ddff {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-e2070d2e-67d9-4c8c-94b6-d0ca3090ddff {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e2070d2e-67d9-4c8c-94b6-d0ca3090ddff {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e2070d2e-67d9-4c8c-94b6-d0ca3090ddff {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-e2070d2e-67d9-4c8c-94b6-d0ca3090ddff {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-702d57b6-96a4-4745-af2b-b2c47ca9315a {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-702d57b6-96a4-4745-af2b-b2c47ca9315a {
  display: none;
}
#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 {
  text-align: left;
}



.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-75eb73a2-e471-48d5-bc62-5e2d3f5f9796 img.shogun-image {
  width: 100%;
}




#s-addd2d4f-f2b6-4afc-bdd6-4e0ed1cbfcea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-addd2d4f-f2b6-4afc-bdd6-4e0ed1cbfcea .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: 3px;
}

#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-983cd88c-fe2e-4edb-b4b2-a507221b51f6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-983cd88c-fe2e-4edb-b4b2-a507221b51f6.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-23e3c613-112f-4943-94cd-c3653f23dced {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-23e3c613-112f-4943-94cd-c3653f23dced > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-23e3c613-112f-4943-94cd-c3653f23dced > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-23e3c613-112f-4943-94cd-c3653f23dced > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-23e3c613-112f-4943-94cd-c3653f23dced > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-23e3c613-112f-4943-94cd-c3653f23dced > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-23e3c613-112f-4943-94cd-c3653f23dced > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-3ba71610-32b7-49fe-aa5e-f23cf17d78c5 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-3ba71610-32b7-49fe-aa5e-f23cf17d78c5 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3ba71610-32b7-49fe-aa5e-f23cf17d78c5 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3ba71610-32b7-49fe-aa5e-f23cf17d78c5 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-3ba71610-32b7-49fe-aa5e-f23cf17d78c5 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 {
  padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 {
  display: none;
}
#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43, #wrap-s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 {
  display: none;
}
#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43, #wrap-s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 {
  
}
}@media (max-width: 767px){#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 {
  
}
}







#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46f572ca-bac9-4275-86d7-b3e13f4d3c43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-537602ef-9bbb-4a48-826d-28aefedb43a9 {
  margin-top: 70px;
margin-bottom: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-537602ef-9bbb-4a48-826d-28aefedb43a9 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  letter-spacing: 5px;
  
}


@media (max-width: 767px){#s-537602ef-9bbb-4a48-826d-28aefedb43a9 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 5px;
  
}


}
@media (min-width: 1200px){#s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f {
  margin-top: 50px;
margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b80d3d5-bbcc-4c8e-a88e-b9094d9fb14f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (max-width: 767px){#s-c94653dc-1fa2-4cc4-8358-47ad1e5ef3b0 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-c94653dc-1fa2-4cc4-8358-47ad1e5ef3b0 {
  display: none;
}
#s-098f08db-74dd-499f-a18c-489950872f12 {
  text-align: left;
}



.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-098f08db-74dd-499f-a18c-489950872f12 img.shogun-image {
  width: 100%;
}




#s-d130da46-9a77-4a02-8cfe-d135cb9019f9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d130da46-9a77-4a02-8cfe-d135cb9019f9 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-946848f3-9478-4456-94b5-5bccc505efce {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-946848f3-9478-4456-94b5-5bccc505efce:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-946848f3-9478-4456-94b5-5bccc505efce:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-946848f3-9478-4456-94b5-5bccc505efce {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-946848f3-9478-4456-94b5-5bccc505efce.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-946848f3-9478-4456-94b5-5bccc505efce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-946848f3-9478-4456-94b5-5bccc505efce.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-946848f3-9478-4456-94b5-5bccc505efce.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-ac726428-d7fa-40c4-b33d-a6f2385bc34e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-2ab5f8ad-d826-4186-84cc-d3aeb5621f98 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-2ab5f8ad-d826-4186-84cc-d3aeb5621f98 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2ab5f8ad-d826-4186-84cc-d3aeb5621f98 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2ab5f8ad-d826-4186-84cc-d3aeb5621f98 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-2ab5f8ad-d826-4186-84cc-d3aeb5621f98 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-22bdcd97-17e2-4407-8b2b-1ce334103304 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-22bdcd97-17e2-4407-8b2b-1ce334103304 {
  display: none;
}
#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 {
  text-align: left;
}



.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aae26eb-7ee9-4c5c-a5e4-a923db53a956 img.shogun-image {
  width: 100%;
}




#s-2f146c5a-6a98-450f-8bf1-44d270056d72 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2f146c5a-6a98-450f-8bf1-44d270056d72 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-6be7253e-f6de-4dcc-9343-3eae4ac8f52e.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-1795e9b4-7d44-4ca5-9f81-74ea0eae2afa > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-cbd83dee-7907-4a38-8a7c-1d4af5ab07ab {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-cbd83dee-7907-4a38-8a7c-1d4af5ab07ab {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cbd83dee-7907-4a38-8a7c-1d4af5ab07ab {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cbd83dee-7907-4a38-8a7c-1d4af5ab07ab {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-cbd83dee-7907-4a38-8a7c-1d4af5ab07ab {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-12f1c3c0-e2bd-469b-987a-b6c16cbff6fb {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-12f1c3c0-e2bd-469b-987a-b6c16cbff6fb {
  display: none;
}
#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 {
  text-align: left;
}



.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b78bde19-cb6a-443c-808e-3b3da5ea21f3 img.shogun-image {
  width: 100%;
}




#s-05eca816-a266-4289-bc59-558e467475c0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-05eca816-a266-4289-bc59-558e467475c0 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-43eda06b-18d5-497c-bda0-289940ddd45a {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-43eda06b-18d5-497c-bda0-289940ddd45a:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-43eda06b-18d5-497c-bda0-289940ddd45a:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-43eda06b-18d5-497c-bda0-289940ddd45a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-43eda06b-18d5-497c-bda0-289940ddd45a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-43eda06b-18d5-497c-bda0-289940ddd45a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-43eda06b-18d5-497c-bda0-289940ddd45a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-43eda06b-18d5-497c-bda0-289940ddd45a.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 {
  margin-top: 0px;
margin-bottom: 25px;
padding-left: 0%;
padding-right: 0%;
}

#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-fc48c0f3-1bbb-49e8-a3fb-ba43f0030b82 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-bc838f04-7936-4a80-80d8-7e5b35cba37f {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-bc838f04-7936-4a80-80d8-7e5b35cba37f {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bc838f04-7936-4a80-80d8-7e5b35cba37f {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bc838f04-7936-4a80-80d8-7e5b35cba37f {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-bc838f04-7936-4a80-80d8-7e5b35cba37f {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-af1326a7-105a-4ad1-929c-4bbcd1726221 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-af1326a7-105a-4ad1-929c-4bbcd1726221 {
  display: none;
}
#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 {
  text-align: left;
}



.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-21dcde11-022b-4bb5-ac04-c7bb31a18e07 img.shogun-image {
  width: 100%;
}




#s-3243fd36-9b6c-450e-a94a-04abdf9c7607 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3243fd36-9b6c-450e-a94a-04abdf9c7607 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-2db7a599-f724-4c49-b127-f06d559c6438 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-2db7a599-f724-4c49-b127-f06d559c6438:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-2db7a599-f724-4c49-b127-f06d559c6438:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-2db7a599-f724-4c49-b127-f06d559c6438 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2db7a599-f724-4c49-b127-f06d559c6438.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2db7a599-f724-4c49-b127-f06d559c6438.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-2db7a599-f724-4c49-b127-f06d559c6438.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-2db7a599-f724-4c49-b127-f06d559c6438.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-64cc462a-3db4-409b-b64e-39564ec8f817 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-64cc462a-3db4-409b-b64e-39564ec8f817 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-64cc462a-3db4-409b-b64e-39564ec8f817 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-64cc462a-3db4-409b-b64e-39564ec8f817 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-64cc462a-3db4-409b-b64e-39564ec8f817 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-64cc462a-3db4-409b-b64e-39564ec8f817 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-64cc462a-3db4-409b-b64e-39564ec8f817 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-55038874-32ce-4f80-80d0-463d657797cc {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-55038874-32ce-4f80-80d0-463d657797cc {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-55038874-32ce-4f80-80d0-463d657797cc {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-55038874-32ce-4f80-80d0-463d657797cc {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-55038874-32ce-4f80-80d0-463d657797cc {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (min-width: 1200px){#s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1 {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1 {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1 {
  margin-top: 50px;
margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4a23caf-e0ca-447f-bf9f-c2cb720ae9d1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (max-width: 767px){#s-5da014e1-4758-45e5-b815-4eca32fca2b1 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-5da014e1-4758-45e5-b815-4eca32fca2b1 {
  display: none;
}
#s-f8c92b20-ef93-45b5-a181-6b974e338c3b {
  text-align: left;
}



.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b img.shogun-image {
  width: 100%;
}



}

.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f8c92b20-ef93-45b5-a181-6b974e338c3b img.shogun-image {
  width: 100%;
}




#s-23f06247-83e4-4bb3-b94f-1788e3dc8540 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23f06247-83e4-4bb3-b94f-1788e3dc8540 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-6b1027a5-f197-4b48-91d4-637c41f36242 {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-6b1027a5-f197-4b48-91d4-637c41f36242:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-6b1027a5-f197-4b48-91d4-637c41f36242:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-6b1027a5-f197-4b48-91d4-637c41f36242 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6b1027a5-f197-4b48-91d4-637c41f36242.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6b1027a5-f197-4b48-91d4-637c41f36242.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-6b1027a5-f197-4b48-91d4-637c41f36242.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-6b1027a5-f197-4b48-91d4-637c41f36242.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-c9a9082c-78b8-431b-abb8-0394e7b1db95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-66a7fb7e-c5aa-464e-822e-1dc64a878324 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-66a7fb7e-c5aa-464e-822e-1dc64a878324 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-66a7fb7e-c5aa-464e-822e-1dc64a878324 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-66a7fb7e-c5aa-464e-822e-1dc64a878324 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-66a7fb7e-c5aa-464e-822e-1dc64a878324 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 767px){#s-c0209196-b98d-44e7-9a38-5246f12cc480 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-c0209196-b98d-44e7-9a38-5246f12cc480 {
  display: none;
}
#s-3aa212c7-2e0e-485e-8983-e07fd7900985 {
  text-align: left;
}



.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3aa212c7-2e0e-485e-8983-e07fd7900985 img.shogun-image {
  width: 100%;
}




#s-6624c6e5-66ff-499b-9182-1cb2e9d1725f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6624c6e5-66ff-499b-9182-1cb2e9d1725f .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: 2px;
}

#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f {
  border-style: solid;
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
max-width: 400px;
background-color: rgba(29, 29, 29, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(71, 71, 71, 1) !important;
background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f:active {background-color: rgba(71, 71, 71, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}


#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-b18479c4-cb9a-4276-b29d-c21e805c9f1f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b18479c4-cb9a-4276-b29d-c21e805c9f1f.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(0, 0, 0, 1);
  }


#s-383038f0-9166-45c3-9d83-2bf1d8f51281 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}

#s-383038f0-9166-45c3-9d83-2bf1d8f51281 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(243, 243, 243, 1);
}

#s-383038f0-9166-45c3-9d83-2bf1d8f51281 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(243, 243, 243, 1);
  padding: 10px;
}

#s-383038f0-9166-45c3-9d83-2bf1d8f51281 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 0.9);
}

#s-383038f0-9166-45c3-9d83-2bf1d8f51281 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(243, 243, 243, 1);
}

#s-383038f0-9166-45c3-9d83-2bf1d8f51281 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-383038f0-9166-45c3-9d83-2bf1d8f51281 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c6161f60-5c61-4bd3-adec-92c88fff8822 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-c6161f60-5c61-4bd3-adec-92c88fff8822 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6161f60-5c61-4bd3-adec-92c88fff8822 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6161f60-5c61-4bd3-adec-92c88fff8822 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-c6161f60-5c61-4bd3-adec-92c88fff8822 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-74d464e3-16d0-4eeb-a030-4f63b073fefd {
  margin-left: 0%;
margin-right: 0%;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-74d464e3-16d0-4eeb-a030-4f63b073fefd {
  display: none;
}
#s-74d464e3-16d0-4eeb-a030-4f63b073fefd, #wrap-s-74d464e3-16d0-4eeb-a030-4f63b073fefd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-74d464e3-16d0-4eeb-a030-4f63b073fefd {
  display: none;
}
#s-74d464e3-16d0-4eeb-a030-4f63b073fefd, #wrap-s-74d464e3-16d0-4eeb-a030-4f63b073fefd { display:none !important; }}







#s-74d464e3-16d0-4eeb-a030-4f63b073fefd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74d464e3-16d0-4eeb-a030-4f63b073fefd.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-783ea645-a005-4023-941e-8f48cda3a519 {
  margin-left: 20%;
margin-right: 20%;
padding-top: 0px;
padding-bottom: 0px;
}

#s-783ea645-a005-4023-941e-8f48cda3a519 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-783ea645-a005-4023-941e-8f48cda3a519 .shg-sld-nav-button.shg-sld-left,
#s-783ea645-a005-4023-941e-8f48cda3a519 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-8629deff-27f3-424d-ad3e-d45b7079eef3 {
  max-width: 1366px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 img.shogun-image,
  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 {
    width: 100%;
    height: auto;
  }



  img.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
    
    
  }


.s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shg-align-container {
  text-align: center
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 img.shogun-image,
  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 {
    width: 100%;
    height: auto;
  }



  img.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
    
    
  }


.s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shg-align-container {
  text-align: center
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
  box-sizing: border-box;
}


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



  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 img.shogun-image,
  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 {
    width: 100%;
    height: auto;
  }



  img.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
    
    
  }


.s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shg-align-container {
  text-align: center
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
  box-sizing: border-box;
}


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



  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 img.shogun-image,
  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 {
    width: 100%;
    height: auto;
  }



  img.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
    
    
  }


.s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shg-align-container {
  text-align: center
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
  box-sizing: border-box;
}


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



  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 img.shogun-image,
  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8629deff-27f3-424d-ad3e-d45b7079eef3 {
    width: 100%;
    height: auto;
  }



  img.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
    
    
  }


.s-8629deff-27f3-424d-ad3e-d45b7079eef3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shg-align-container {
  text-align: center
}

.s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8629deff-27f3-424d-ad3e-d45b7079eef3.shogun-image {
  box-sizing: border-box;
}


}
#s-991d9e10-cb02-4ea7-b383-b82016149627 {
  max-width: 1366px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-991d9e10-cb02-4ea7-b383-b82016149627 img.shogun-image,
  #s-991d9e10-cb02-4ea7-b383-b82016149627 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-991d9e10-cb02-4ea7-b383-b82016149627 {
    width: 100%;
    height: auto;
  }



  img.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
    
    
  }


.s-991d9e10-cb02-4ea7-b383-b82016149627 .shogun-image-content {
  
    align-items: center;
  
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shg-align-container {
  text-align: center
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-991d9e10-cb02-4ea7-b383-b82016149627 img.shogun-image,
  #s-991d9e10-cb02-4ea7-b383-b82016149627 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-991d9e10-cb02-4ea7-b383-b82016149627 {
    width: 100%;
    height: auto;
  }



  img.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
    
    
  }


.s-991d9e10-cb02-4ea7-b383-b82016149627 .shogun-image-content {
  
    align-items: center;
  
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shg-align-container {
  text-align: center
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
  box-sizing: border-box;
}


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



  #s-991d9e10-cb02-4ea7-b383-b82016149627 img.shogun-image,
  #s-991d9e10-cb02-4ea7-b383-b82016149627 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-991d9e10-cb02-4ea7-b383-b82016149627 {
    width: 100%;
    height: auto;
  }



  img.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
    
    
  }


.s-991d9e10-cb02-4ea7-b383-b82016149627 .shogun-image-content {
  
    align-items: center;
  
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shg-align-container {
  text-align: center
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
  box-sizing: border-box;
}


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



  #s-991d9e10-cb02-4ea7-b383-b82016149627 img.shogun-image,
  #s-991d9e10-cb02-4ea7-b383-b82016149627 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-991d9e10-cb02-4ea7-b383-b82016149627 {
    width: 100%;
    height: auto;
  }



  img.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
    
    
  }


.s-991d9e10-cb02-4ea7-b383-b82016149627 .shogun-image-content {
  
    align-items: center;
  
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shg-align-container {
  text-align: center
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
  box-sizing: border-box;
}


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



  #s-991d9e10-cb02-4ea7-b383-b82016149627 img.shogun-image,
  #s-991d9e10-cb02-4ea7-b383-b82016149627 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-991d9e10-cb02-4ea7-b383-b82016149627 {
    width: 100%;
    height: auto;
  }



  img.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
    
    
  }


.s-991d9e10-cb02-4ea7-b383-b82016149627 .shogun-image-content {
  
    align-items: center;
  
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shg-align-container {
  text-align: center
}

.s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-991d9e10-cb02-4ea7-b383-b82016149627.shogun-image {
  box-sizing: border-box;
}


}
#s-1618b0f7-a254-4fb2-b065-253d00889e87 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1618b0f7-a254-4fb2-b065-253d00889e87 {
  padding-top: 5px;
padding-bottom: 5px;
}
}
#s-1618b0f7-a254-4fb2-b065-253d00889e87 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: 2px;
  
}



#s-4bab5f6b-f891-4eef-bdd7-80f51a7690ce {
  margin-top: 0%;
margin-bottom: 0%;
}

#s-bc2d0b88-b876-4e25-8b11-66a9d41e424f {
  margin-top: 0%;
margin-bottom: 0%;
}

.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-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(254, 254, 254, 1);
}
#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.87) !important;
background-image: none !important;
hover-type: color !important;}#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.69) !important;
background-image: none !important;
hover-type: color !important;}

  #s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c-root {
    text-align: center;
  }


#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c-root {
    text-align: center;
  }


#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c-root {
    text-align: center;
  }


#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c-root {
    text-align: center;
  }


#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c-root {
    text-align: center;
  }


#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c-root {
    text-align: center;
  }


#s-4e1cbf15-0f60-40c1-bb1d-1b76f3aa7f5c.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-ff40591f-1692-4493-834b-4ad7eae736e7 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-ff40591f-1692-4493-834b-4ad7eae736e7 {
  display: none;
}
#s-ff40591f-1692-4493-834b-4ad7eae736e7, #wrap-s-ff40591f-1692-4493-834b-4ad7eae736e7 { display:none !important; }}@media (max-width: 767px){#s-ff40591f-1692-4493-834b-4ad7eae736e7 {
  display: none;
}
#s-ff40591f-1692-4493-834b-4ad7eae736e7, #wrap-s-ff40591f-1692-4493-834b-4ad7eae736e7 { display:none !important; }}







#s-ff40591f-1692-4493-834b-4ad7eae736e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff40591f-1692-4493-834b-4ad7eae736e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f0f82de-214c-4b11-834b-e925a50d099d {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-8f0f82de-214c-4b11-834b-e925a50d099d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f0f82de-214c-4b11-834b-e925a50d099d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8f0f82de-214c-4b11-834b-e925a50d099d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f0f82de-214c-4b11-834b-e925a50d099d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e {
  max-width: 1366px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e img.shogun-image,
  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e {
    width: 100%;
    height: auto;
  }



  img.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
    
    
  }


.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shogun-image-content {
  
    align-items: center;
  
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shg-align-container {
  text-align: center
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e img.shogun-image,
  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e {
    width: 100%;
    height: auto;
  }



  img.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
    
    
  }


.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shogun-image-content {
  
    align-items: center;
  
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shg-align-container {
  text-align: center
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
  box-sizing: border-box;
}


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



  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e img.shogun-image,
  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e {
    width: 100%;
    height: auto;
  }



  img.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
    
    
  }


.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shogun-image-content {
  
    align-items: center;
  
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shg-align-container {
  text-align: center
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
  box-sizing: border-box;
}


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



  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e img.shogun-image,
  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e {
    width: 100%;
    height: auto;
  }



  img.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
    
    
  }


.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shogun-image-content {
  
    align-items: center;
  
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shg-align-container {
  text-align: center
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
  box-sizing: border-box;
}


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



  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e img.shogun-image,
  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e {
    width: 100%;
    height: auto;
  }



  img.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
    
    
  }


.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e .shogun-image-content {
  
    align-items: center;
  
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shg-align-container {
  text-align: center
}

.s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cf0ba22-46f9-45d8-b3e5-31b49a0ff69e.shogun-image {
  box-sizing: border-box;
}


}
#s-fa21f2a3-5ca5-4566-91a0-1f530ece3d0f {
  margin-top: 20%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-fa21f2a3-5ca5-4566-91a0-1f530ece3d0f {
  margin-top: 5%;
padding-top: 5px;
padding-bottom: 5px;
}
}
#s-fa21f2a3-5ca5-4566-91a0-1f530ece3d0f .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  
}



#s-a9137ad3-e1d9-4d37-96b4-3fb88f8ab31e {
  margin-top: 5%;
margin-bottom: 5%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a9137ad3-e1d9-4d37-96b4-3fb88f8ab31e {
  margin-top: 5%;
margin-bottom: 0%;
}
}
#s-272e8ee4-ca27-495d-a3f8-6029cb4baf93 {
  margin-top: 5%;
margin-bottom: 5%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-272e8ee4-ca27-495d-a3f8-6029cb4baf93 {
  margin-top: 1%;
margin-bottom: 1%;
}
}
#s-ce026889-92dc-431f-8b94-cf70e97a661f {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(254, 254, 254, 1);
}
#s-ce026889-92dc-431f-8b94-cf70e97a661f:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.87) !important;
background-image: none !important;
hover-type: color !important;}#s-ce026889-92dc-431f-8b94-cf70e97a661f:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 0.69) !important;
background-image: none !important;
hover-type: color !important;}

  #s-ce026889-92dc-431f-8b94-cf70e97a661f-root {
    text-align: center;
  }


#s-ce026889-92dc-431f-8b94-cf70e97a661f.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ce026889-92dc-431f-8b94-cf70e97a661f-root {
    text-align: center;
  }


#s-ce026889-92dc-431f-8b94-cf70e97a661f.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ce026889-92dc-431f-8b94-cf70e97a661f-root {
    text-align: center;
  }


#s-ce026889-92dc-431f-8b94-cf70e97a661f.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ce026889-92dc-431f-8b94-cf70e97a661f-root {
    text-align: center;
  }


#s-ce026889-92dc-431f-8b94-cf70e97a661f.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ce026889-92dc-431f-8b94-cf70e97a661f-root {
    text-align: center;
  }


#s-ce026889-92dc-431f-8b94-cf70e97a661f.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
  #s-ce026889-92dc-431f-8b94-cf70e97a661f-root {
    text-align: center;
  }


#s-ce026889-92dc-431f-8b94-cf70e97a661f.shg-btn {
  color: rgba(254, 254, 254, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}

#s-707012aa-ce45-4f56-ac65-d08a572a48bb {
  max-width: 1366px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-707012aa-ce45-4f56-ac65-d08a572a48bb img.shogun-image,
  #s-707012aa-ce45-4f56-ac65-d08a572a48bb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-707012aa-ce45-4f56-ac65-d08a572a48bb {
    width: 100%;
    height: auto;
  }



  img.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
    
    
  }


.s-707012aa-ce45-4f56-ac65-d08a572a48bb .shogun-image-content {
  
    align-items: center;
  
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shg-align-container {
  text-align: center
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-707012aa-ce45-4f56-ac65-d08a572a48bb img.shogun-image,
  #s-707012aa-ce45-4f56-ac65-d08a572a48bb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-707012aa-ce45-4f56-ac65-d08a572a48bb {
    width: 100%;
    height: auto;
  }



  img.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
    
    
  }


.s-707012aa-ce45-4f56-ac65-d08a572a48bb .shogun-image-content {
  
    align-items: center;
  
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shg-align-container {
  text-align: center
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
  box-sizing: border-box;
}


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



  #s-707012aa-ce45-4f56-ac65-d08a572a48bb img.shogun-image,
  #s-707012aa-ce45-4f56-ac65-d08a572a48bb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-707012aa-ce45-4f56-ac65-d08a572a48bb {
    width: 100%;
    height: auto;
  }



  img.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
    
    
  }


.s-707012aa-ce45-4f56-ac65-d08a572a48bb .shogun-image-content {
  
    align-items: center;
  
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shg-align-container {
  text-align: center
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
  box-sizing: border-box;
}


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



  #s-707012aa-ce45-4f56-ac65-d08a572a48bb img.shogun-image,
  #s-707012aa-ce45-4f56-ac65-d08a572a48bb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-707012aa-ce45-4f56-ac65-d08a572a48bb {
    width: 100%;
    height: auto;
  }



  img.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
    
    
  }


.s-707012aa-ce45-4f56-ac65-d08a572a48bb .shogun-image-content {
  
    align-items: center;
  
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shg-align-container {
  text-align: center
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
  box-sizing: border-box;
}


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



  #s-707012aa-ce45-4f56-ac65-d08a572a48bb img.shogun-image,
  #s-707012aa-ce45-4f56-ac65-d08a572a48bb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-707012aa-ce45-4f56-ac65-d08a572a48bb {
    width: 100%;
    height: auto;
  }



  img.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
    
    
  }


.s-707012aa-ce45-4f56-ac65-d08a572a48bb .shogun-image-content {
  
    align-items: center;
  
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shg-align-container {
  text-align: center
}

.s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707012aa-ce45-4f56-ac65-d08a572a48bb.shogun-image {
  box-sizing: border-box;
}


}
#s-f5f11e36-1c53-43ff-a0f6-0106eee97555 {
  text-align: left;
}

#s-80222155-7eb0-4ef1-9f12-e8fb0bc332a0 {
  text-align: left;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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