.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-d13e0d63-6e82-4df7-8f34-9097768760d6 {
  min-height: 5px;
}








#s-d13e0d63-6e82-4df7-8f34-9097768760d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d13e0d63-6e82-4df7-8f34-9097768760d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd42b5b1-7714-45a2-8027-5f8507919884 {
  min-height: 5px;
}








#s-dd42b5b1-7714-45a2-8027-5f8507919884 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dd42b5b1-7714-45a2-8027-5f8507919884.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8302074f-0a18-46b2-bbc5-24b1da266f0d {
  text-align: left;
}

#s-2e589275-6ed9-4504-bce0-cf8c6c0abebc {
  min-height: 50px;
}








#s-2e589275-6ed9-4504-bce0-cf8c6c0abebc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e589275-6ed9-4504-bce0-cf8c6c0abebc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b521c65d-1dc0-4b5d-8424-e0a53bfe6fe6 {
  text-align: left;
}

#s-a6ceabf2-efe5-4662-8f80-aaeb77e90de1 {
  min-height: 50px;
}








#s-a6ceabf2-efe5-4662-8f80-aaeb77e90de1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6ceabf2-efe5-4662-8f80-aaeb77e90de1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-964240cf-337e-4629-aae9-0ddf51c4ebac {
  margin-bottom: 30px;
text-align: left;
}

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

#s-c9914f46-9f84-41dd-a555-bbe5c60d9452 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/66;
text-align: center;
}





  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 img.shogun-image,
  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 {
    width: 100%;
    height: auto;
  }



  img.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
    
    
  }


.s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shogun-image-content {
  
    align-items: center;
  
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shg-align-container {
  text-align: center
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 img.shogun-image,
  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 {
    width: 100%;
    height: auto;
  }



  img.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
    
    
  }


.s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shogun-image-content {
  
    align-items: center;
  
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shg-align-container {
  text-align: center
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
  box-sizing: border-box;
}


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



  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 img.shogun-image,
  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 {
    width: 100%;
    height: auto;
  }



  img.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
    
    
  }


.s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shogun-image-content {
  
    align-items: center;
  
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shg-align-container {
  text-align: center
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
  box-sizing: border-box;
}


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



  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 img.shogun-image,
  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 {
    width: 100%;
    height: auto;
  }



  img.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
    
    
  }


.s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shogun-image-content {
  
    align-items: center;
  
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shg-align-container {
  text-align: center
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
  box-sizing: border-box;
}


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



  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 img.shogun-image,
  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c9914f46-9f84-41dd-a555-bbe5c60d9452 {
    width: 100%;
    height: auto;
  }



  img.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
    
    
  }


.s-c9914f46-9f84-41dd-a555-bbe5c60d9452 .shogun-image-content {
  
    align-items: center;
  
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shg-align-container {
  text-align: center
}

.s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9914f46-9f84-41dd-a555-bbe5c60d9452.shogun-image {
  box-sizing: border-box;
}


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

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

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

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

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

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

#s-d7e059ce-f718-449b-8d7e-8fba721925af {
  margin-left: 15%;
margin-right: 15%;
min-height: 0px;
}
@media (max-width: 767px){#s-d7e059ce-f718-449b-8d7e-8fba721925af {
  display: none;
}
#s-d7e059ce-f718-449b-8d7e-8fba721925af, #wrap-s-d7e059ce-f718-449b-8d7e-8fba721925af { display:none !important; }}
#s-d7e059ce-f718-449b-8d7e-8fba721925af .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-d7e059ce-f718-449b-8d7e-8fba721925af table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-d7e059ce-f718-449b-8d7e-8fba721925af td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-d7e059ce-f718-449b-8d7e-8fba721925af td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-d7e059ce-f718-449b-8d7e-8fba721925af td.shogun-table-column, #s-d7e059ce-f718-449b-8d7e-8fba721925af td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-c05d356f-b43a-4506-8322-6acb2e98312f {
  text-align: center;
}
@media (max-width: 767px){#s-c05d356f-b43a-4506-8322-6acb2e98312f {
  display: none;
}
#s-c05d356f-b43a-4506-8322-6acb2e98312f, #wrap-s-c05d356f-b43a-4506-8322-6acb2e98312f { display:none !important; }}






  img.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
    
    
  }


.s-c05d356f-b43a-4506-8322-6acb2e98312f .shogun-image-content {
  
    align-items: center;
  
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shg-align-container {
  text-align: center
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
    
    
  }


.s-c05d356f-b43a-4506-8322-6acb2e98312f .shogun-image-content {
  
    align-items: center;
  
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shg-align-container {
  text-align: center
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
    
    
  }


.s-c05d356f-b43a-4506-8322-6acb2e98312f .shogun-image-content {
  
    align-items: center;
  
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shg-align-container {
  text-align: center
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
    
    
  }


.s-c05d356f-b43a-4506-8322-6acb2e98312f .shogun-image-content {
  
    align-items: center;
  
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shg-align-container {
  text-align: center
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
    
    
  }


.s-c05d356f-b43a-4506-8322-6acb2e98312f .shogun-image-content {
  
    align-items: center;
  
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shg-align-container {
  text-align: center
}

.s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c05d356f-b43a-4506-8322-6acb2e98312f.shogun-image {
  box-sizing: border-box;
}


}
#s-9538c43b-7213-476f-a3d1-96c24b747516 {
  text-align: center;
}







  img.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
    
    
  }


.s-9538c43b-7213-476f-a3d1-96c24b747516 .shogun-image-content {
  
    align-items: center;
  
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shg-align-container {
  text-align: center
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
    
    
  }


.s-9538c43b-7213-476f-a3d1-96c24b747516 .shogun-image-content {
  
    align-items: center;
  
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shg-align-container {
  text-align: center
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
    
    
  }


.s-9538c43b-7213-476f-a3d1-96c24b747516 .shogun-image-content {
  
    align-items: center;
  
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shg-align-container {
  text-align: center
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
    
    
  }


.s-9538c43b-7213-476f-a3d1-96c24b747516 .shogun-image-content {
  
    align-items: center;
  
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shg-align-container {
  text-align: center
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
    
    
  }


.s-9538c43b-7213-476f-a3d1-96c24b747516 .shogun-image-content {
  
    align-items: center;
  
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shg-align-container {
  text-align: center
}

.s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9538c43b-7213-476f-a3d1-96c24b747516.shogun-image {
  box-sizing: border-box;
}


}
#s-bbba6cbe-f50e-4af9-b043-e1212aef4d46 {
  text-align: center;
}







  img.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
    
    
  }


.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shg-align-container {
  text-align: center
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
    
    
  }


.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shg-align-container {
  text-align: center
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
    
    
  }


.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shg-align-container {
  text-align: center
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
    
    
  }


.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shg-align-container {
  text-align: center
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
    
    
  }


.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shg-align-container {
  text-align: center
}

.s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbba6cbe-f50e-4af9-b043-e1212aef4d46.shogun-image {
  box-sizing: border-box;
}


}
#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 {
  margin-left: 0%;
margin-right: 0%;
min-height: 0px;
}
@media (min-width: 1200px){#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 {
  display: none;
}
#s-853b9d98-40b7-469e-8a2c-18afd190a5f7, #wrap-s-853b9d98-40b7-469e-8a2c-18afd190a5f7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 {
  display: none;
}
#s-853b9d98-40b7-469e-8a2c-18afd190a5f7, #wrap-s-853b9d98-40b7-469e-8a2c-18afd190a5f7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 {
  display: none;
}
#s-853b9d98-40b7-469e-8a2c-18afd190a5f7, #wrap-s-853b9d98-40b7-469e-8a2c-18afd190a5f7 { display:none !important; }}
#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-853b9d98-40b7-469e-8a2c-18afd190a5f7 td.shogun-table-column, #s-853b9d98-40b7-469e-8a2c-18afd190a5f7 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-4bd2a76a-5122-4063-b896-77dccd949209 {
  max-width: 361px;
aspect-ratio: 361/151;
text-align: center;
}





  #s-4bd2a76a-5122-4063-b896-77dccd949209 img.shogun-image,
  #s-4bd2a76a-5122-4063-b896-77dccd949209 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bd2a76a-5122-4063-b896-77dccd949209 {
    width: 100%;
    height: auto;
  }



  img.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
    
    
  }


.s-4bd2a76a-5122-4063-b896-77dccd949209 .shogun-image-content {
  
    align-items: center;
  
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shg-align-container {
  text-align: center
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-4bd2a76a-5122-4063-b896-77dccd949209 img.shogun-image,
  #s-4bd2a76a-5122-4063-b896-77dccd949209 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bd2a76a-5122-4063-b896-77dccd949209 {
    width: 100%;
    height: auto;
  }



  img.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
    
    
  }


.s-4bd2a76a-5122-4063-b896-77dccd949209 .shogun-image-content {
  
    align-items: center;
  
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shg-align-container {
  text-align: center
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
  box-sizing: border-box;
}


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



  #s-4bd2a76a-5122-4063-b896-77dccd949209 img.shogun-image,
  #s-4bd2a76a-5122-4063-b896-77dccd949209 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bd2a76a-5122-4063-b896-77dccd949209 {
    width: 100%;
    height: auto;
  }



  img.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
    
    
  }


.s-4bd2a76a-5122-4063-b896-77dccd949209 .shogun-image-content {
  
    align-items: center;
  
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shg-align-container {
  text-align: center
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
  box-sizing: border-box;
}


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



  #s-4bd2a76a-5122-4063-b896-77dccd949209 img.shogun-image,
  #s-4bd2a76a-5122-4063-b896-77dccd949209 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bd2a76a-5122-4063-b896-77dccd949209 {
    width: 100%;
    height: auto;
  }



  img.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
    
    
  }


.s-4bd2a76a-5122-4063-b896-77dccd949209 .shogun-image-content {
  
    align-items: center;
  
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shg-align-container {
  text-align: center
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
  box-sizing: border-box;
}


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



  #s-4bd2a76a-5122-4063-b896-77dccd949209 img.shogun-image,
  #s-4bd2a76a-5122-4063-b896-77dccd949209 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bd2a76a-5122-4063-b896-77dccd949209 {
    width: 100%;
    height: auto;
  }



  img.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
    
    
  }


.s-4bd2a76a-5122-4063-b896-77dccd949209 .shogun-image-content {
  
    align-items: center;
  
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shg-align-container {
  text-align: center
}

.s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bd2a76a-5122-4063-b896-77dccd949209.shogun-image {
  box-sizing: border-box;
}


}
#s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 {
  max-width: 361px;
aspect-ratio: 361/151;
text-align: center;
}





  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 img.shogun-image,
  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 {
    width: 100%;
    height: auto;
  }



  img.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
    
    
  }


.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shogun-image-content {
  
    align-items: center;
  
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shg-align-container {
  text-align: center
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 img.shogun-image,
  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 {
    width: 100%;
    height: auto;
  }



  img.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
    
    
  }


.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shogun-image-content {
  
    align-items: center;
  
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shg-align-container {
  text-align: center
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
  box-sizing: border-box;
}


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



  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 img.shogun-image,
  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 {
    width: 100%;
    height: auto;
  }



  img.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
    
    
  }


.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shogun-image-content {
  
    align-items: center;
  
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shg-align-container {
  text-align: center
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
  box-sizing: border-box;
}


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



  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 img.shogun-image,
  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 {
    width: 100%;
    height: auto;
  }



  img.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
    
    
  }


.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shogun-image-content {
  
    align-items: center;
  
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shg-align-container {
  text-align: center
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
  box-sizing: border-box;
}


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



  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 img.shogun-image,
  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 {
    width: 100%;
    height: auto;
  }



  img.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
    
    
  }


.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344 .shogun-image-content {
  
    align-items: center;
  
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shg-align-container {
  text-align: center
}

.s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28caa0b2-73f4-4a0d-bd82-fee4bdabd344.shogun-image {
  box-sizing: border-box;
}


}
#s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 {
  max-width: 361px;
aspect-ratio: 361/151;
text-align: center;
}





  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 img.shogun-image,
  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 {
    width: 100%;
    height: auto;
  }



  img.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
    
    
  }


.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shogun-image-content {
  
    align-items: center;
  
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shg-align-container {
  text-align: center
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 img.shogun-image,
  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 {
    width: 100%;
    height: auto;
  }



  img.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
    
    
  }


.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shogun-image-content {
  
    align-items: center;
  
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shg-align-container {
  text-align: center
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
  box-sizing: border-box;
}


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



  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 img.shogun-image,
  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 {
    width: 100%;
    height: auto;
  }



  img.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
    
    
  }


.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shogun-image-content {
  
    align-items: center;
  
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shg-align-container {
  text-align: center
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
  box-sizing: border-box;
}


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



  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 img.shogun-image,
  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 {
    width: 100%;
    height: auto;
  }



  img.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
    
    
  }


.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shogun-image-content {
  
    align-items: center;
  
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shg-align-container {
  text-align: center
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
  box-sizing: border-box;
}


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



  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 img.shogun-image,
  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 {
    width: 100%;
    height: auto;
  }



  img.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
    
    
  }


.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599 .shogun-image-content {
  
    align-items: center;
  
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shg-align-container {
  text-align: center
}

.s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bfc01fe-13a6-4e89-a3f7-63ede127d599.shogun-image {
  box-sizing: border-box;
}


}
#s-f2c2b233-8632-4a42-b1de-abf9d4a29314 {
  min-height: 50px;
}
@media (max-width: 767px){#s-f2c2b233-8632-4a42-b1de-abf9d4a29314 {
  display: none;
}
#s-f2c2b233-8632-4a42-b1de-abf9d4a29314, #wrap-s-f2c2b233-8632-4a42-b1de-abf9d4a29314 { display:none !important; }}







#s-f2c2b233-8632-4a42-b1de-abf9d4a29314 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2c2b233-8632-4a42-b1de-abf9d4a29314.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-7d4c5257-1109-4929-8da1-94bf3c591cc4 {
  margin-top: 30px;
margin-bottom: 30px;
}
@media (max-width: 767px){#s-7d4c5257-1109-4929-8da1-94bf3c591cc4 {
  
}
}
#s-7d4c5257-1109-4929-8da1-94bf3c591cc4 hr {
  border-top: 1px solid #000;
}

#s-b3bbbbac-f319-4688-be31-fb3457f73c3d {
  min-height: 50px;
}








#s-b3bbbbac-f319-4688-be31-fb3457f73c3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3bbbbac-f319-4688-be31-fb3457f73c3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a31a7504-16ec-4918-a683-f47835ca46d5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-a31a7504-16ec-4918-a683-f47835ca46d5 {
  display: none;
}
#s-a31a7504-16ec-4918-a683-f47835ca46d5, #wrap-s-a31a7504-16ec-4918-a683-f47835ca46d5 { display:none !important; }}







#s-a31a7504-16ec-4918-a683-f47835ca46d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a31a7504-16ec-4918-a683-f47835ca46d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05c557c0-55ec-482d-9bd0-1bb06b225138 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-05c557c0-55ec-482d-9bd0-1bb06b225138 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05c557c0-55ec-482d-9bd0-1bb06b225138.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f3ea952-406a-4239-9a27-5ac64c55bda1 {
  min-height: 50px;
}








#s-3f3ea952-406a-4239-9a27-5ac64c55bda1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f3ea952-406a-4239-9a27-5ac64c55bda1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b1ace29d-dceb-4ba4-a4bd-3b509f8c61ec {
  text-align: left;
}

#s-cdb45054-0e50-4038-a145-0c68a36f1e97 {
  min-height: 50px;
}
@media (max-width: 767px){#s-cdb45054-0e50-4038-a145-0c68a36f1e97 {
  display: none;
}
#s-cdb45054-0e50-4038-a145-0c68a36f1e97, #wrap-s-cdb45054-0e50-4038-a145-0c68a36f1e97 { display:none !important; }}







#s-cdb45054-0e50-4038-a145-0c68a36f1e97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cdb45054-0e50-4038-a145-0c68a36f1e97.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (max-width: 767px){#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
  display: none;
}
#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a, #wrap-s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a { display:none !important; }}




  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a img.shogun-image,
  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
    width: 100%;
    height: auto;
  }



  img.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
    
    
  }


.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shogun-image-content {
  
    align-items: center;
  
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shg-align-container {
  text-align: center
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a img.shogun-image,
  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
    width: 100%;
    height: auto;
  }



  img.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
    
    
  }


.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shogun-image-content {
  
    align-items: center;
  
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shg-align-container {
  text-align: center
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
  box-sizing: border-box;
}


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



  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a img.shogun-image,
  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
    width: 100%;
    height: auto;
  }



  img.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
    
    
  }


.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shogun-image-content {
  
    align-items: center;
  
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shg-align-container {
  text-align: center
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
  box-sizing: border-box;
}


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



  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a img.shogun-image,
  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
    width: 100%;
    height: auto;
  }



  img.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
    
    
  }


.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shogun-image-content {
  
    align-items: center;
  
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shg-align-container {
  text-align: center
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
  box-sizing: border-box;
}


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



  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a img.shogun-image,
  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a {
    width: 100%;
    height: auto;
  }



  img.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
    
    
  }


.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a .shogun-image-content {
  
    align-items: center;
  
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shg-align-container {
  text-align: center
}

.s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a7ccbd9-5b7a-4536-abe8-18a047263f6a.shogun-image {
  box-sizing: border-box;
}


}
#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 {
  display: none;
}
#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14, #wrap-s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 {
  display: none;
}
#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14, #wrap-s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 {
  display: none;
}
#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14, #wrap-s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 { display:none !important; }}







#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9cd2bbd-bc26-4e39-a04e-40625614fa14.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (min-width: 1200px){#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
  display: none;
}
#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6, #wrap-s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
  display: none;
}
#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6, #wrap-s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
  display: none;
}
#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6, #wrap-s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 { display:none !important; }}




  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 img.shogun-image,
  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
    width: 100%;
    height: auto;
  }



  img.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
    
    
  }


.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shg-align-container {
  text-align: center
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 img.shogun-image,
  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
    width: 100%;
    height: auto;
  }



  img.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
    
    
  }


.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shg-align-container {
  text-align: center
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
  box-sizing: border-box;
}


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



  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 img.shogun-image,
  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
    width: 100%;
    height: auto;
  }



  img.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
    
    
  }


.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shg-align-container {
  text-align: center
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
  box-sizing: border-box;
}


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



  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 img.shogun-image,
  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
    width: 100%;
    height: auto;
  }



  img.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
    
    
  }


.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shg-align-container {
  text-align: center
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
  box-sizing: border-box;
}


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



  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 img.shogun-image,
  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 {
    width: 100%;
    height: auto;
  }



  img.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
    
    
  }


.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shg-align-container {
  text-align: center
}

.s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c8ff1c-8958-4430-9dbb-3c7edcdd3ac6.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 1200px){#s-244b3bf7-37e9-4422-814c-8af083d440cb {
  display: none;
}
#s-244b3bf7-37e9-4422-814c-8af083d440cb, #wrap-s-244b3bf7-37e9-4422-814c-8af083d440cb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-244b3bf7-37e9-4422-814c-8af083d440cb {
  display: none;
}
#s-244b3bf7-37e9-4422-814c-8af083d440cb, #wrap-s-244b3bf7-37e9-4422-814c-8af083d440cb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-244b3bf7-37e9-4422-814c-8af083d440cb {
  display: none;
}
#s-244b3bf7-37e9-4422-814c-8af083d440cb, #wrap-s-244b3bf7-37e9-4422-814c-8af083d440cb { display:none !important; }}
#s-244b3bf7-37e9-4422-814c-8af083d440cb .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-244b3bf7-37e9-4422-814c-8af083d440cb table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-244b3bf7-37e9-4422-814c-8af083d440cb td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-244b3bf7-37e9-4422-814c-8af083d440cb td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-244b3bf7-37e9-4422-814c-8af083d440cb td.shogun-table-column, #s-244b3bf7-37e9-4422-814c-8af083d440cb td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-d4bb803c-dd0d-401d-ba22-d1f47e63b54f {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-d4bb803c-dd0d-401d-ba22-d1f47e63b54f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d4bb803c-dd0d-401d-ba22-d1f47e63b54f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-1b87bc89-ddcc-479e-9192-9c486a5fd413 {
  margin-bottom: 10px;
}

#s-548e2f88-8f48-4751-bb5d-15577f87edaf {
  text-align: left;
}

#s-1ab6c9dd-0c8c-42fb-bfec-04f175bea8a6 {
  margin-top: 6px;
}

#s-0f171c2b-a230-4ac4-946f-b094f5b5facb {
  display: none;
}
#s-30609bfb-6c3a-443a-b912-f041dd2f0982 {
  text-align: left;
}

#s-30609bfb-6c3a-443a-b912-f041dd2f0982 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-30609bfb-6c3a-443a-b912-f041dd2f0982 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-30609bfb-6c3a-443a-b912-f041dd2f0982 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

.shg-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-338d544d-a3ec-4ab9-b115-f135198a26a6 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-338d544d-a3ec-4ab9-b115-f135198a26a6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-338d544d-a3ec-4ab9-b115-f135198a26a6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-338d544d-a3ec-4ab9-b115-f135198a26a6-root {
    text-align: center;
  }


#s-338d544d-a3ec-4ab9-b115-f135198a26a6.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-338d544d-a3ec-4ab9-b115-f135198a26a6-root {
    text-align: center;
  }


#s-338d544d-a3ec-4ab9-b115-f135198a26a6.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-338d544d-a3ec-4ab9-b115-f135198a26a6-root {
    text-align: center;
  }


#s-338d544d-a3ec-4ab9-b115-f135198a26a6.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-338d544d-a3ec-4ab9-b115-f135198a26a6-root {
    text-align: center;
  }


#s-338d544d-a3ec-4ab9-b115-f135198a26a6.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-338d544d-a3ec-4ab9-b115-f135198a26a6-root {
    text-align: center;
  }


#s-338d544d-a3ec-4ab9-b115-f135198a26a6.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-813fa572-c8fa-43cc-b03a-bbc26212d094 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-813fa572-c8fa-43cc-b03a-bbc26212d094 {
  display: none;
}
#s-813fa572-c8fa-43cc-b03a-bbc26212d094, #wrap-s-813fa572-c8fa-43cc-b03a-bbc26212d094 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-813fa572-c8fa-43cc-b03a-bbc26212d094 {
  display: none;
}
#s-813fa572-c8fa-43cc-b03a-bbc26212d094, #wrap-s-813fa572-c8fa-43cc-b03a-bbc26212d094 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-813fa572-c8fa-43cc-b03a-bbc26212d094 {
  display: none;
}
#s-813fa572-c8fa-43cc-b03a-bbc26212d094, #wrap-s-813fa572-c8fa-43cc-b03a-bbc26212d094 { display:none !important; }}
#s-813fa572-c8fa-43cc-b03a-bbc26212d094 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-813fa572-c8fa-43cc-b03a-bbc26212d094 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-813fa572-c8fa-43cc-b03a-bbc26212d094 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-813fa572-c8fa-43cc-b03a-bbc26212d094 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-813fa572-c8fa-43cc-b03a-bbc26212d094 td.shogun-table-column, #s-813fa572-c8fa-43cc-b03a-bbc26212d094 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-bf272222-a345-4781-9403-1b42940f111b {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-bf272222-a345-4781-9403-1b42940f111b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf272222-a345-4781-9403-1b42940f111b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33ca3bbb-f628-49b8-8499-6fa5feb7f577 {
  margin-bottom: 10px;
}

#s-b2537874-ca2d-4d70-84d1-91e577f5b320 {
  text-align: left;
}

#s-e8daa0a8-1faf-4e1e-825a-170f1952c078 {
  margin-top: 6px;
}

#s-9de7fd4b-8945-42fd-abe5-152679cdb854 {
  display: none;
}
#s-cff7691c-e517-4b52-8c20-658c11bbbd08 {
  text-align: left;
}

#s-cff7691c-e517-4b52-8c20-658c11bbbd08 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cff7691c-e517-4b52-8c20-658c11bbbd08 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-cff7691c-e517-4b52-8c20-658c11bbbd08 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a810484b-453f-4c8e-a0d1-b720603d3cab {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-a810484b-453f-4c8e-a0d1-b720603d3cab:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a810484b-453f-4c8e-a0d1-b720603d3cab:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a810484b-453f-4c8e-a0d1-b720603d3cab-root {
    text-align: center;
  }


#s-a810484b-453f-4c8e-a0d1-b720603d3cab.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-a810484b-453f-4c8e-a0d1-b720603d3cab-root {
    text-align: center;
  }


#s-a810484b-453f-4c8e-a0d1-b720603d3cab.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a810484b-453f-4c8e-a0d1-b720603d3cab-root {
    text-align: center;
  }


#s-a810484b-453f-4c8e-a0d1-b720603d3cab.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a810484b-453f-4c8e-a0d1-b720603d3cab-root {
    text-align: center;
  }


#s-a810484b-453f-4c8e-a0d1-b720603d3cab.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-a810484b-453f-4c8e-a0d1-b720603d3cab-root {
    text-align: center;
  }


#s-a810484b-453f-4c8e-a0d1-b720603d3cab.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-a4b58895-8323-4324-b474-89aa3bef15b2 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-a4b58895-8323-4324-b474-89aa3bef15b2 {
  display: none;
}
#s-a4b58895-8323-4324-b474-89aa3bef15b2, #wrap-s-a4b58895-8323-4324-b474-89aa3bef15b2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a4b58895-8323-4324-b474-89aa3bef15b2 {
  display: none;
}
#s-a4b58895-8323-4324-b474-89aa3bef15b2, #wrap-s-a4b58895-8323-4324-b474-89aa3bef15b2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a4b58895-8323-4324-b474-89aa3bef15b2 {
  display: none;
}
#s-a4b58895-8323-4324-b474-89aa3bef15b2, #wrap-s-a4b58895-8323-4324-b474-89aa3bef15b2 { display:none !important; }}
#s-a4b58895-8323-4324-b474-89aa3bef15b2 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-a4b58895-8323-4324-b474-89aa3bef15b2 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-a4b58895-8323-4324-b474-89aa3bef15b2 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-a4b58895-8323-4324-b474-89aa3bef15b2 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-a4b58895-8323-4324-b474-89aa3bef15b2 td.shogun-table-column, #s-a4b58895-8323-4324-b474-89aa3bef15b2 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-ec466280-656e-4b7e-8fb5-ddfef8888f7e {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-ec466280-656e-4b7e-8fb5-ddfef8888f7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec466280-656e-4b7e-8fb5-ddfef8888f7e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27a3d481-a144-4913-8839-06364232ba0c {
  margin-bottom: 10px;
}

#s-2bad1a55-814a-4c07-8d64-89f6d2e29755 {
  text-align: left;
}

#s-ce1b9814-5976-477c-bc56-11af26fbd6c0 {
  margin-top: 6px;
}

#s-6e6a18ff-13a3-491d-a1d1-dd0e904f9989 {
  display: none;
}
#s-39f4357a-8822-423e-888e-3d4a88150dd4 {
  text-align: left;
}

#s-39f4357a-8822-423e-888e-3d4a88150dd4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-39f4357a-8822-423e-888e-3d4a88150dd4 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-39f4357a-8822-423e-888e-3d4a88150dd4 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-35948031-18a9-4d7b-8160-3805b25aa671 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-35948031-18a9-4d7b-8160-3805b25aa671:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-35948031-18a9-4d7b-8160-3805b25aa671:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-35948031-18a9-4d7b-8160-3805b25aa671-root {
    text-align: center;
  }


#s-35948031-18a9-4d7b-8160-3805b25aa671.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-35948031-18a9-4d7b-8160-3805b25aa671-root {
    text-align: center;
  }


#s-35948031-18a9-4d7b-8160-3805b25aa671.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-35948031-18a9-4d7b-8160-3805b25aa671-root {
    text-align: center;
  }


#s-35948031-18a9-4d7b-8160-3805b25aa671.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-35948031-18a9-4d7b-8160-3805b25aa671-root {
    text-align: center;
  }


#s-35948031-18a9-4d7b-8160-3805b25aa671.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-35948031-18a9-4d7b-8160-3805b25aa671-root {
    text-align: center;
  }


#s-35948031-18a9-4d7b-8160-3805b25aa671.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-97e2b5fa-ac5a-4f05-a6f0-a131327867b0 {
  min-height: 50px;
}








#s-97e2b5fa-ac5a-4f05-a6f0-a131327867b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97e2b5fa-ac5a-4f05-a6f0-a131327867b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 {
  display: none;
}
#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3, #wrap-s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 { display:none !important; }}
#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 td.shogun-table-column, #s-817a5e6f-d4e1-4078-bf65-c9180d7072d3 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-aa1e0b54-c276-4b94-b364-f36b38a6edfa {
  text-align: left;
}

#s-514b466a-edd7-4217-aa39-c6eb96f1958e {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}
@media (max-width: 767px){#s-514b466a-edd7-4217-aa39-c6eb96f1958e {
  
}
}
#s-7cef2c06-5681-42e9-ba68-1dc567a26f80 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-7cef2c06-5681-42e9-ba68-1dc567a26f80 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-7cef2c06-5681-42e9-ba68-1dc567a26f80 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-7cef2c06-5681-42e9-ba68-1dc567a26f80 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-7cef2c06-5681-42e9-ba68-1dc567a26f80 td.shogun-table-column, #s-7cef2c06-5681-42e9-ba68-1dc567a26f80 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-0915489f-2475-4092-b408-e5fac7556f58 {
  min-height: 50px;
}








#s-0915489f-2475-4092-b408-e5fac7556f58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0915489f-2475-4092-b408-e5fac7556f58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09c02461-e7c2-4aef-a25c-aa8a786f9853 {
  margin-top: 30px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-09c02461-e7c2-4aef-a25c-aa8a786f9853 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09c02461-e7c2-4aef-a25c-aa8a786f9853.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9bdb9f50-ef35-4de0-a059-ea3bf3838e7c {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

.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-cc4378f6-2a57-4e42-8593-2af443dc7c53 {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-cc4378f6-2a57-4e42-8593-2af443dc7c53"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-01cb44e6-af5b-4c58-b6ff-539b5044f25f {
  display: none;
}
#s-1baf4f85-4c47-4df2-8aba-a6b8d030d4de {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-1baf4f85-4c47-4df2-8aba-a6b8d030d4de .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1baf4f85-4c47-4df2-8aba-a6b8d030d4de .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-1baf4f85-4c47-4df2-8aba-a6b8d030d4de .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e879db57-2dc5-4972-ad29-1a841eb1663b {
  min-height: 50px;
}








#s-e879db57-2dc5-4972-ad29-1a841eb1663b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e879db57-2dc5-4972-ad29-1a841eb1663b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3aa261f4-c3bd-4432-a68c-a16973ba66c0-root {
    text-align: center;
  }


#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-3aa261f4-c3bd-4432-a68c-a16973ba66c0-root {
    text-align: center;
  }


#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3aa261f4-c3bd-4432-a68c-a16973ba66c0-root {
    text-align: center;
  }


#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3aa261f4-c3bd-4432-a68c-a16973ba66c0-root {
    text-align: center;
  }


#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-3aa261f4-c3bd-4432-a68c-a16973ba66c0-root {
    text-align: center;
  }


#s-3aa261f4-c3bd-4432-a68c-a16973ba66c0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-918b3ebd-dee8-4d00-a845-fed38bf918b0 {
  min-height: 50px;
}








#s-918b3ebd-dee8-4d00-a845-fed38bf918b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-918b3ebd-dee8-4d00-a845-fed38bf918b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dbfe46d4-116f-4941-9925-bdb037a7b22c {
  min-height: 50px;
}








#s-dbfe46d4-116f-4941-9925-bdb037a7b22c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbfe46d4-116f-4941-9925-bdb037a7b22c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2244e3d8-ab87-4eaf-9dc6-242e7df2537c {
  min-height: 50px;
}
@media (max-width: 767px){#s-2244e3d8-ab87-4eaf-9dc6-242e7df2537c {
  display: none;
}
#s-2244e3d8-ab87-4eaf-9dc6-242e7df2537c, #wrap-s-2244e3d8-ab87-4eaf-9dc6-242e7df2537c { display:none !important; }}







#s-2244e3d8-ab87-4eaf-9dc6-242e7df2537c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2244e3d8-ab87-4eaf-9dc6-242e7df2537c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30648abb-404d-495c-af06-6248e78be275 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-30648abb-404d-495c-af06-6248e78be275 {
  display: none;
}
#s-30648abb-404d-495c-af06-6248e78be275, #wrap-s-30648abb-404d-495c-af06-6248e78be275 { display:none !important; }}
#s-30648abb-404d-495c-af06-6248e78be275 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-30648abb-404d-495c-af06-6248e78be275 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-30648abb-404d-495c-af06-6248e78be275 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-30648abb-404d-495c-af06-6248e78be275 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-30648abb-404d-495c-af06-6248e78be275 td.shogun-table-column, #s-30648abb-404d-495c-af06-6248e78be275 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-181ddf26-a975-41dd-b9de-6768bada2718 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-c43bf101-7678-4176-8aa1-8467be7ab45f {
  text-align: left;
}

#s-c1303730-4f45-40dd-bafe-162768699c0e .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-c1303730-4f45-40dd-bafe-162768699c0e table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c1303730-4f45-40dd-bafe-162768699c0e td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-c1303730-4f45-40dd-bafe-162768699c0e td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-c1303730-4f45-40dd-bafe-162768699c0e td.shogun-table-column, #s-c1303730-4f45-40dd-bafe-162768699c0e td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-bb7552b6-c09a-4a9f-a4aa-e2c0daf81080 {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-bb7552b6-c09a-4a9f-a4aa-e2c0daf81080 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb7552b6-c09a-4a9f-a4aa-e2c0daf81080.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d047e40-841d-42db-9a8a-4eb8b6078eb6 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-84cb068d-ff0c-4b2a-85ac-bd8bad97271e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-43a5419f-1e36-4664-a050-d8ffa478bb38 {
  display: none;
}
#s-ca1cc01f-ee4d-4fad-ba76-787926acdca7 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-ca1cc01f-ee4d-4fad-ba76-787926acdca7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ca1cc01f-ee4d-4fad-ba76-787926acdca7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-ca1cc01f-ee4d-4fad-ba76-787926acdca7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9a9b01d4-cc68-4fa2-afa1-3ee382e4cde1 {
  min-height: 50px;
}








#s-9a9b01d4-cc68-4fa2-afa1-3ee382e4cde1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a9b01d4-cc68-4fa2-afa1-3ee382e4cde1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5182a59c-571f-44cf-8817-76608f3600a0 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-5182a59c-571f-44cf-8817-76608f3600a0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5182a59c-571f-44cf-8817-76608f3600a0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5182a59c-571f-44cf-8817-76608f3600a0-root {
    text-align: center;
  }


#s-5182a59c-571f-44cf-8817-76608f3600a0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-5182a59c-571f-44cf-8817-76608f3600a0-root {
    text-align: center;
  }


#s-5182a59c-571f-44cf-8817-76608f3600a0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5182a59c-571f-44cf-8817-76608f3600a0-root {
    text-align: center;
  }


#s-5182a59c-571f-44cf-8817-76608f3600a0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5182a59c-571f-44cf-8817-76608f3600a0-root {
    text-align: center;
  }


#s-5182a59c-571f-44cf-8817-76608f3600a0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-5182a59c-571f-44cf-8817-76608f3600a0-root {
    text-align: center;
  }


#s-5182a59c-571f-44cf-8817-76608f3600a0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-814f1f16-3cfb-41c1-946b-ddeef53439aa {
  min-height: 50px;
}








#s-814f1f16-3cfb-41c1-946b-ddeef53439aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-814f1f16-3cfb-41c1-946b-ddeef53439aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f318128a-a2fe-4ad8-938b-337f7c9cd4a6 {
  min-height: 50px;
}








#s-f318128a-a2fe-4ad8-938b-337f7c9cd4a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f318128a-a2fe-4ad8-938b-337f7c9cd4a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-221f3b97-75cf-44bd-b50e-3a7238d2e9b8 {
  min-height: 50px;
}








#s-221f3b97-75cf-44bd-b50e-3a7238d2e9b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-221f3b97-75cf-44bd-b50e-3a7238d2e9b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b64d7c96-9124-4812-b305-0dc138a6fb0c {
  min-height: 50px;
}
@media (max-width: 767px){#s-b64d7c96-9124-4812-b305-0dc138a6fb0c {
  display: none;
}
#s-b64d7c96-9124-4812-b305-0dc138a6fb0c, #wrap-s-b64d7c96-9124-4812-b305-0dc138a6fb0c { display:none !important; }}







#s-b64d7c96-9124-4812-b305-0dc138a6fb0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b64d7c96-9124-4812-b305-0dc138a6fb0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 {
  display: none;
}
#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4, #wrap-s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 { display:none !important; }}
#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 td.shogun-table-column, #s-a7fbe6e9-cc5d-4b97-9d62-4d943d560cb4 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-9df86d34-2bd9-4e63-903a-b7beac0b9462 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-32c9df66-1de2-44a4-b180-dd7a47dd6f15 {
  text-align: left;
}

#s-e6b0201a-b186-4ab6-9e8b-dd99e3c38dd3 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-e6b0201a-b186-4ab6-9e8b-dd99e3c38dd3 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-e6b0201a-b186-4ab6-9e8b-dd99e3c38dd3 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-e6b0201a-b186-4ab6-9e8b-dd99e3c38dd3 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-e6b0201a-b186-4ab6-9e8b-dd99e3c38dd3 td.shogun-table-column, #s-e6b0201a-b186-4ab6-9e8b-dd99e3c38dd3 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-ae33b5c3-35d3-4a18-96c3-ad10d12d6f40 {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-ae33b5c3-35d3-4a18-96c3-ad10d12d6f40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae33b5c3-35d3-4a18-96c3-ad10d12d6f40.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36e01987-38a3-4f75-bb3d-6520397d2a5f {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-a2d6c7f9-deed-463b-8d6c-b46eec11245b {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-a2d6c7f9-deed-463b-8d6c-b46eec11245b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-6b422f2c-cd03-4a32-9b6d-09f3a6cba9a4 {
  display: none;
}
#s-dade7b83-1758-4d48-98c1-9484a6fa2e47 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-dade7b83-1758-4d48-98c1-9484a6fa2e47 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-dade7b83-1758-4d48-98c1-9484a6fa2e47 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-dade7b83-1758-4d48-98c1-9484a6fa2e47 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-18856864-726b-45db-a657-7c52d99fad34 {
  min-height: 50px;
}








#s-18856864-726b-45db-a657-7c52d99fad34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-18856864-726b-45db-a657-7c52d99fad34.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96-root {
    text-align: center;
  }


#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96-root {
    text-align: center;
  }


#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96-root {
    text-align: center;
  }


#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96-root {
    text-align: center;
  }


#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96-root {
    text-align: center;
  }


#s-7e04fcf7-3ec6-4cb9-b14b-460e88ea1a96.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-74e7508f-5194-47ef-aecf-025549cdbd1b {
  min-height: 50px;
}








#s-74e7508f-5194-47ef-aecf-025549cdbd1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74e7508f-5194-47ef-aecf-025549cdbd1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27ca29d7-91bf-418c-9379-474668fbd44b {
  min-height: 50px;
}








#s-27ca29d7-91bf-418c-9379-474668fbd44b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27ca29d7-91bf-418c-9379-474668fbd44b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b78aac9c-0eb7-4797-beff-d7a44b8a662d {
  min-height: 50px;
}








#s-b78aac9c-0eb7-4797-beff-d7a44b8a662d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b78aac9c-0eb7-4797-beff-d7a44b8a662d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e5f35f0-158b-4679-927c-828b00185a6a {
  min-height: 50px;
}
@media (max-width: 767px){#s-8e5f35f0-158b-4679-927c-828b00185a6a {
  display: none;
}
#s-8e5f35f0-158b-4679-927c-828b00185a6a, #wrap-s-8e5f35f0-158b-4679-927c-828b00185a6a { display:none !important; }}







#s-8e5f35f0-158b-4679-927c-828b00185a6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e5f35f0-158b-4679-927c-828b00185a6a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7843627e-325f-4d94-a487-d19545f471a9 {
  min-height: 50px;
}
@media (max-width: 767px){#s-7843627e-325f-4d94-a487-d19545f471a9 {
  display: none;
}
#s-7843627e-325f-4d94-a487-d19545f471a9, #wrap-s-7843627e-325f-4d94-a487-d19545f471a9 { display:none !important; }}







#s-7843627e-325f-4d94-a487-d19545f471a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7843627e-325f-4d94-a487-d19545f471a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d5d7100-512d-457f-a5a6-4ce4cf8477af {
  min-height: 50px;
}








#s-5d5d7100-512d-457f-a5a6-4ce4cf8477af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d5d7100-512d-457f-a5a6-4ce4cf8477af.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-824e6384-83eb-4b50-ad4d-2f8d087b1755 {
  text-align: left;
}

#s-ef53cd1e-9033-4238-a4a9-72b7ef24182d {
  min-height: 50px;
}








#s-ef53cd1e-9033-4238-a4a9-72b7ef24182d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef53cd1e-9033-4238-a4a9-72b7ef24182d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (max-width: 767px){#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
  display: none;
}
#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd, #wrap-s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd { display:none !important; }}




  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd img.shogun-image,
  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
    width: 100%;
    height: auto;
  }



  img.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
    
    
  }


.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shogun-image-content {
  
    align-items: center;
  
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shg-align-container {
  text-align: center
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd img.shogun-image,
  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
    width: 100%;
    height: auto;
  }



  img.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
    
    
  }


.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shogun-image-content {
  
    align-items: center;
  
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shg-align-container {
  text-align: center
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
  box-sizing: border-box;
}


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



  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd img.shogun-image,
  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
    width: 100%;
    height: auto;
  }



  img.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
    
    
  }


.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shogun-image-content {
  
    align-items: center;
  
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shg-align-container {
  text-align: center
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
  box-sizing: border-box;
}


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



  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd img.shogun-image,
  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
    width: 100%;
    height: auto;
  }



  img.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
    
    
  }


.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shogun-image-content {
  
    align-items: center;
  
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shg-align-container {
  text-align: center
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
  box-sizing: border-box;
}


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



  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd img.shogun-image,
  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd {
    width: 100%;
    height: auto;
  }



  img.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
    
    
  }


.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd .shogun-image-content {
  
    align-items: center;
  
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shg-align-container {
  text-align: center
}

.s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4bba1412-fb5a-4d1d-8e2e-820bb94d32dd.shogun-image {
  box-sizing: border-box;
}


}
#s-9e427d62-fea7-4a34-8fc8-4ef3a551f774 {
  min-height: 50px;
}








#s-9e427d62-fea7-4a34-8fc8-4ef3a551f774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e427d62-fea7-4a34-8fc8-4ef3a551f774.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 {
  display: none;
}
#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7, #wrap-s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 { display:none !important; }}
#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 td.shogun-table-column, #s-1b687c7d-3d14-43b5-b78c-dcce3261e2e7 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-ed232af4-beec-43e6-af45-ff64a26dc4b9 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-5f9a086f-e9e0-4c75-b3da-7729c973f488 {
  text-align: left;
}

#s-da5ce9a4-168d-4ef4-8583-e749ff97d1b1 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-da5ce9a4-168d-4ef4-8583-e749ff97d1b1 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-da5ce9a4-168d-4ef4-8583-e749ff97d1b1 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-da5ce9a4-168d-4ef4-8583-e749ff97d1b1 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-da5ce9a4-168d-4ef4-8583-e749ff97d1b1 td.shogun-table-column, #s-da5ce9a4-168d-4ef4-8583-e749ff97d1b1 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-a0609ba3-f9fb-4c7d-98f7-e4c6cfa7c986 {
  min-height: 50px;
}








#s-a0609ba3-f9fb-4c7d-98f7-e4c6cfa7c986 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0609ba3-f9fb-4c7d-98f7-e4c6cfa7c986.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0fbaddca-f456-469d-b820-75643149f29c {
  margin-top: 30px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-0fbaddca-f456-469d-b820-75643149f29c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0fbaddca-f456-469d-b820-75643149f29c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a231d3bb-12a4-46d3-a8c9-4767daa2d66e {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1 {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-bf1d78db-9ae6-44ff-84de-d7c93c5cb7e1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-20d6d5f7-b29d-4163-8764-00f67b068761 {
  display: none;
}
#s-6c01f917-39f4-4a62-b8aa-62b9b017e495 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-6c01f917-39f4-4a62-b8aa-62b9b017e495 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6c01f917-39f4-4a62-b8aa-62b9b017e495 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-6c01f917-39f4-4a62-b8aa-62b9b017e495 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7491f113-257d-4ffc-b15a-a2d9a21876ed {
  min-height: 50px;
}








#s-7491f113-257d-4ffc-b15a-a2d9a21876ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7491f113-257d-4ffc-b15a-a2d9a21876ed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d433638-76cc-4c98-8879-afb323461231 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-0d433638-76cc-4c98-8879-afb323461231:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0d433638-76cc-4c98-8879-afb323461231:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0d433638-76cc-4c98-8879-afb323461231-root {
    text-align: center;
  }


#s-0d433638-76cc-4c98-8879-afb323461231.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0d433638-76cc-4c98-8879-afb323461231-root {
    text-align: center;
  }


#s-0d433638-76cc-4c98-8879-afb323461231.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0d433638-76cc-4c98-8879-afb323461231-root {
    text-align: center;
  }


#s-0d433638-76cc-4c98-8879-afb323461231.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0d433638-76cc-4c98-8879-afb323461231-root {
    text-align: center;
  }


#s-0d433638-76cc-4c98-8879-afb323461231.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0d433638-76cc-4c98-8879-afb323461231-root {
    text-align: center;
  }


#s-0d433638-76cc-4c98-8879-afb323461231.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-345adff1-3104-4eec-a3c2-6d32ca929a77 {
  min-height: 50px;
}








#s-345adff1-3104-4eec-a3c2-6d32ca929a77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-345adff1-3104-4eec-a3c2-6d32ca929a77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ee816b7-8b3c-42a2-b470-e9c979c7d3d0 {
  min-height: 50px;
}








#s-9ee816b7-8b3c-42a2-b470-e9c979c7d3d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ee816b7-8b3c-42a2-b470-e9c979c7d3d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb23a55e-8a2c-43c7-9652-8691bacc184f {
  min-height: 50px;
}
@media (max-width: 767px){#s-cb23a55e-8a2c-43c7-9652-8691bacc184f {
  display: none;
}
#s-cb23a55e-8a2c-43c7-9652-8691bacc184f, #wrap-s-cb23a55e-8a2c-43c7-9652-8691bacc184f { display:none !important; }}







#s-cb23a55e-8a2c-43c7-9652-8691bacc184f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cb23a55e-8a2c-43c7-9652-8691bacc184f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 {
  display: none;
}
#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7, #wrap-s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 { display:none !important; }}
#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 td.shogun-table-column, #s-82fd00c5-9842-4929-9e46-bf33a5ae1ae7 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-0fb21a94-b838-42fb-bf68-8ad71128d872 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-59ad3274-513f-47dd-b1d9-f4bf92a969fd {
  text-align: left;
}

#s-07b03958-deb2-47dc-a070-c5424de02834 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-07b03958-deb2-47dc-a070-c5424de02834 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-07b03958-deb2-47dc-a070-c5424de02834 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-07b03958-deb2-47dc-a070-c5424de02834 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-07b03958-deb2-47dc-a070-c5424de02834 td.shogun-table-column, #s-07b03958-deb2-47dc-a070-c5424de02834 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-9c8db2a9-463a-43d7-b28a-cabc64a44a3a {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-9c8db2a9-463a-43d7-b28a-cabc64a44a3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c8db2a9-463a-43d7-b28a-cabc64a44a3a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf395f06-5cca-4e51-a9ae-d3bf0a473d6b {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-a1e11603-d16e-4f2a-80ec-a13736749404 {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-a1e11603-d16e-4f2a-80ec-a13736749404"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-670bed6f-8ade-4045-ab69-db66844faef9 {
  display: none;
}
#s-f057387b-f4e6-44d4-b149-53d2bc044ed9 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-f057387b-f4e6-44d4-b149-53d2bc044ed9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f057387b-f4e6-44d4-b149-53d2bc044ed9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-f057387b-f4e6-44d4-b149-53d2bc044ed9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0d11c7c7-87d0-44ad-9643-f51fc11e44cb {
  min-height: 50px;
}








#s-0d11c7c7-87d0-44ad-9643-f51fc11e44cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d11c7c7-87d0-44ad-9643-f51fc11e44cb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b1338dc-1aaf-4204-9e19-708cc7363206 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-2b1338dc-1aaf-4204-9e19-708cc7363206:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2b1338dc-1aaf-4204-9e19-708cc7363206:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2b1338dc-1aaf-4204-9e19-708cc7363206-root {
    text-align: center;
  }


#s-2b1338dc-1aaf-4204-9e19-708cc7363206.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2b1338dc-1aaf-4204-9e19-708cc7363206-root {
    text-align: center;
  }


#s-2b1338dc-1aaf-4204-9e19-708cc7363206.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2b1338dc-1aaf-4204-9e19-708cc7363206-root {
    text-align: center;
  }


#s-2b1338dc-1aaf-4204-9e19-708cc7363206.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2b1338dc-1aaf-4204-9e19-708cc7363206-root {
    text-align: center;
  }


#s-2b1338dc-1aaf-4204-9e19-708cc7363206.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2b1338dc-1aaf-4204-9e19-708cc7363206-root {
    text-align: center;
  }


#s-2b1338dc-1aaf-4204-9e19-708cc7363206.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-82793792-68a7-42d3-8491-c121caee624a {
  min-height: 50px;
}








#s-82793792-68a7-42d3-8491-c121caee624a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-82793792-68a7-42d3-8491-c121caee624a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce6cc7cd-89c4-4287-b619-cefb2b1e5db4 {
  min-height: 50px;
}








#s-ce6cc7cd-89c4-4287-b619-cefb2b1e5db4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce6cc7cd-89c4-4287-b619-cefb2b1e5db4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3dd3803c-4c27-4c50-8a6a-ba9ea715cde3 {
  min-height: 50px;
}








#s-3dd3803c-4c27-4c50-8a6a-ba9ea715cde3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3dd3803c-4c27-4c50-8a6a-ba9ea715cde3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 {
  display: none;
}
#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7, #wrap-s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 {
  display: none;
}
#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7, #wrap-s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 {
  display: none;
}
#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7, #wrap-s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 { display:none !important; }}







#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59c852a9-ff6c-4c9f-a267-19ca1ed643a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60e9ef03-2601-4178-be18-26f666c24164 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}





  #s-60e9ef03-2601-4178-be18-26f666c24164 img.shogun-image,
  #s-60e9ef03-2601-4178-be18-26f666c24164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e9ef03-2601-4178-be18-26f666c24164 {
    width: 100%;
    height: auto;
  }



  img.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
    
    
  }


.s-60e9ef03-2601-4178-be18-26f666c24164 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shg-align-container {
  text-align: center
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-60e9ef03-2601-4178-be18-26f666c24164 img.shogun-image,
  #s-60e9ef03-2601-4178-be18-26f666c24164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e9ef03-2601-4178-be18-26f666c24164 {
    width: 100%;
    height: auto;
  }



  img.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
    
    
  }


.s-60e9ef03-2601-4178-be18-26f666c24164 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shg-align-container {
  text-align: center
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
  box-sizing: border-box;
}


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



  #s-60e9ef03-2601-4178-be18-26f666c24164 img.shogun-image,
  #s-60e9ef03-2601-4178-be18-26f666c24164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e9ef03-2601-4178-be18-26f666c24164 {
    width: 100%;
    height: auto;
  }



  img.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
    
    
  }


.s-60e9ef03-2601-4178-be18-26f666c24164 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shg-align-container {
  text-align: center
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
  box-sizing: border-box;
}


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



  #s-60e9ef03-2601-4178-be18-26f666c24164 img.shogun-image,
  #s-60e9ef03-2601-4178-be18-26f666c24164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e9ef03-2601-4178-be18-26f666c24164 {
    width: 100%;
    height: auto;
  }



  img.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
    
    
  }


.s-60e9ef03-2601-4178-be18-26f666c24164 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shg-align-container {
  text-align: center
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
  box-sizing: border-box;
}


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



  #s-60e9ef03-2601-4178-be18-26f666c24164 img.shogun-image,
  #s-60e9ef03-2601-4178-be18-26f666c24164 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e9ef03-2601-4178-be18-26f666c24164 {
    width: 100%;
    height: auto;
  }



  img.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
    
    
  }


.s-60e9ef03-2601-4178-be18-26f666c24164 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shg-align-container {
  text-align: center
}

.s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e9ef03-2601-4178-be18-26f666c24164.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 1200px){#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 {
  display: none;
}
#s-148dd1e2-ab01-43d5-aaa0-78ce31638176, #wrap-s-148dd1e2-ab01-43d5-aaa0-78ce31638176 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 {
  display: none;
}
#s-148dd1e2-ab01-43d5-aaa0-78ce31638176, #wrap-s-148dd1e2-ab01-43d5-aaa0-78ce31638176 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 {
  display: none;
}
#s-148dd1e2-ab01-43d5-aaa0-78ce31638176, #wrap-s-148dd1e2-ab01-43d5-aaa0-78ce31638176 { display:none !important; }}
#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-148dd1e2-ab01-43d5-aaa0-78ce31638176 td.shogun-table-column, #s-148dd1e2-ab01-43d5-aaa0-78ce31638176 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-da26a4b3-64f3-49cd-b805-f37895ecb101 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-da26a4b3-64f3-49cd-b805-f37895ecb101 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da26a4b3-64f3-49cd-b805-f37895ecb101.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c2d2b9ab-a591-455c-a6a7-44319da0146b {
  margin-bottom: 10px;
}

#s-21a8ce39-17c5-4449-b576-ccd7f1a4fd25 {
  text-align: left;
}

#s-a401ade7-b1a4-423c-a8ea-cc3232aad9e3 {
  display: none;
}
#s-2c771286-f35c-4b30-83d7-55b146af8992 {
  margin-top: 7px;
text-align: left;
}

#s-2c771286-f35c-4b30-83d7-55b146af8992 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2c771286-f35c-4b30-83d7-55b146af8992 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-2c771286-f35c-4b30-83d7-55b146af8992 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f24b47c3-e23f-4bae-87e6-56daf0ee306b-root {
    text-align: center;
  }


#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f24b47c3-e23f-4bae-87e6-56daf0ee306b-root {
    text-align: center;
  }


#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f24b47c3-e23f-4bae-87e6-56daf0ee306b-root {
    text-align: center;
  }


#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f24b47c3-e23f-4bae-87e6-56daf0ee306b-root {
    text-align: center;
  }


#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f24b47c3-e23f-4bae-87e6-56daf0ee306b-root {
    text-align: center;
  }


#s-f24b47c3-e23f-4bae-87e6-56daf0ee306b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 {
  display: none;
}
#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87, #wrap-s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 {
  display: none;
}
#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87, #wrap-s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 {
  display: none;
}
#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87, #wrap-s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 { display:none !important; }}
#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 td.shogun-table-column, #s-3e77ce1b-0765-485a-9fe2-8f5a96b5ea87 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-bfb09564-0526-46cc-a70f-7e9b443d1c65 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-bfb09564-0526-46cc-a70f-7e9b443d1c65 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfb09564-0526-46cc-a70f-7e9b443d1c65.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-acc76483-a809-4c0e-9a45-d7c031c0dfb8 {
  margin-bottom: 10px;
}

#s-fcd9eb07-fe77-4fe3-a32b-923bb584a0dc {
  text-align: left;
}

#s-e0e006c3-8779-40ca-a1d3-57a6f27b3109 {
  display: none;
}
#s-343e10b1-9a29-4f92-b647-8b7b274d4cac {
  margin-top: 7px;
text-align: left;
}

#s-343e10b1-9a29-4f92-b647-8b7b274d4cac .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-343e10b1-9a29-4f92-b647-8b7b274d4cac .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-343e10b1-9a29-4f92-b647-8b7b274d4cac .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1c86f2b0-495e-4478-9e22-dd9b417be36b {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-1c86f2b0-495e-4478-9e22-dd9b417be36b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1c86f2b0-495e-4478-9e22-dd9b417be36b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1c86f2b0-495e-4478-9e22-dd9b417be36b-root {
    text-align: center;
  }


#s-1c86f2b0-495e-4478-9e22-dd9b417be36b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1c86f2b0-495e-4478-9e22-dd9b417be36b-root {
    text-align: center;
  }


#s-1c86f2b0-495e-4478-9e22-dd9b417be36b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1c86f2b0-495e-4478-9e22-dd9b417be36b-root {
    text-align: center;
  }


#s-1c86f2b0-495e-4478-9e22-dd9b417be36b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1c86f2b0-495e-4478-9e22-dd9b417be36b-root {
    text-align: center;
  }


#s-1c86f2b0-495e-4478-9e22-dd9b417be36b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1c86f2b0-495e-4478-9e22-dd9b417be36b-root {
    text-align: center;
  }


#s-1c86f2b0-495e-4478-9e22-dd9b417be36b.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-1b32f403-d619-41d6-9ad9-9ec5dc1033f5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-1b32f403-d619-41d6-9ad9-9ec5dc1033f5 {
  display: none;
}
#s-1b32f403-d619-41d6-9ad9-9ec5dc1033f5, #wrap-s-1b32f403-d619-41d6-9ad9-9ec5dc1033f5 { display:none !important; }}







#s-1b32f403-d619-41d6-9ad9-9ec5dc1033f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b32f403-d619-41d6-9ad9-9ec5dc1033f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 {
  display: none;
}
#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266, #wrap-s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 {
  display: none;
}
#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266, #wrap-s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 {
  display: none;
}
#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266, #wrap-s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 { display:none !important; }}
#s-47a4ff01-9e83-424b-b4e3-1e1e303f2266 hr {
  border-top: 2px solid #000;
}

#s-de6802d1-56e3-4888-85ed-055855f98923 {
  padding-top: 30px;
padding-bottom: 30px;
}
@media (max-width: 767px){#s-de6802d1-56e3-4888-85ed-055855f98923 {
  display: none;
}
#s-de6802d1-56e3-4888-85ed-055855f98923, #wrap-s-de6802d1-56e3-4888-85ed-055855f98923 { display:none !important; }}
#s-de6802d1-56e3-4888-85ed-055855f98923 hr {
  border-top: 2px solid #000;
}

#s-71bf37ac-3f5f-4d89-bb46-e0b11cae4c35 {
  min-height: 50px;
}
@media (max-width: 767px){#s-71bf37ac-3f5f-4d89-bb46-e0b11cae4c35 {
  display: none;
}
#s-71bf37ac-3f5f-4d89-bb46-e0b11cae4c35, #wrap-s-71bf37ac-3f5f-4d89-bb46-e0b11cae4c35 { display:none !important; }}







#s-71bf37ac-3f5f-4d89-bb46-e0b11cae4c35 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-71bf37ac-3f5f-4d89-bb46-e0b11cae4c35.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5684cb5b-df83-4143-a96f-be0c0e3098a9 {
  min-height: 50px;
}








#s-5684cb5b-df83-4143-a96f-be0c0e3098a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5684cb5b-df83-4143-a96f-be0c0e3098a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ed96d5f-85f6-405d-b886-9c2323ba076e {
  text-align: left;
}

#s-c9a4825a-470c-408c-9145-39fe7a3825fe {
  min-height: 50px;
}








#s-c9a4825a-470c-408c-9145-39fe7a3825fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9a4825a-470c-408c-9145-39fe7a3825fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (max-width: 767px){#s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
  display: none;
}
#s-7f4d8277-bdcd-45aa-adc3-9774420d6958, #wrap-s-7f4d8277-bdcd-45aa-adc3-9774420d6958 { display:none !important; }}




  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 img.shogun-image,
  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
    width: 100%;
    height: auto;
  }



  img.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
    
    
  }


.s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shg-align-container {
  text-align: center
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 img.shogun-image,
  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
    width: 100%;
    height: auto;
  }



  img.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
    
    
  }


.s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shg-align-container {
  text-align: center
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
  box-sizing: border-box;
}


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



  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 img.shogun-image,
  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
    width: 100%;
    height: auto;
  }



  img.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
    
    
  }


.s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shg-align-container {
  text-align: center
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
  box-sizing: border-box;
}


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



  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 img.shogun-image,
  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
    width: 100%;
    height: auto;
  }



  img.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
    
    
  }


.s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shg-align-container {
  text-align: center
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
  box-sizing: border-box;
}


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



  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 img.shogun-image,
  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f4d8277-bdcd-45aa-adc3-9774420d6958 {
    width: 100%;
    height: auto;
  }



  img.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
    
    
  }


.s-7f4d8277-bdcd-45aa-adc3-9774420d6958 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shg-align-container {
  text-align: center
}

.s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f4d8277-bdcd-45aa-adc3-9774420d6958.shogun-image {
  box-sizing: border-box;
}


}
#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 {
  display: none;
}
#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9, #wrap-s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 {
  display: none;
}
#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9, #wrap-s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 {
  display: none;
}
#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9, #wrap-s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 { display:none !important; }}







#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7cbdf316-9f15-43a8-9a70-f10c137b7ba9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}





  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 img.shogun-image,
  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 {
    width: 100%;
    height: auto;
  }



  img.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
    
    
  }


.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shg-align-container {
  text-align: center
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 img.shogun-image,
  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 {
    width: 100%;
    height: auto;
  }



  img.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
    
    
  }


.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shg-align-container {
  text-align: center
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
  box-sizing: border-box;
}


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



  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 img.shogun-image,
  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 {
    width: 100%;
    height: auto;
  }



  img.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
    
    
  }


.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shg-align-container {
  text-align: center
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
  box-sizing: border-box;
}


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



  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 img.shogun-image,
  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 {
    width: 100%;
    height: auto;
  }



  img.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
    
    
  }


.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shg-align-container {
  text-align: center
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
  box-sizing: border-box;
}


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



  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 img.shogun-image,
  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 {
    width: 100%;
    height: auto;
  }



  img.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
    
    
  }


.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shg-align-container {
  text-align: center
}

.s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6ff27e2-bb5f-45ff-8e6e-02a6352153d0.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 1200px){#s-e226772c-2344-47b7-81cb-48b6d0502e14 {
  display: none;
}
#s-e226772c-2344-47b7-81cb-48b6d0502e14, #wrap-s-e226772c-2344-47b7-81cb-48b6d0502e14 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e226772c-2344-47b7-81cb-48b6d0502e14 {
  display: none;
}
#s-e226772c-2344-47b7-81cb-48b6d0502e14, #wrap-s-e226772c-2344-47b7-81cb-48b6d0502e14 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e226772c-2344-47b7-81cb-48b6d0502e14 {
  display: none;
}
#s-e226772c-2344-47b7-81cb-48b6d0502e14, #wrap-s-e226772c-2344-47b7-81cb-48b6d0502e14 { display:none !important; }}
#s-e226772c-2344-47b7-81cb-48b6d0502e14 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-e226772c-2344-47b7-81cb-48b6d0502e14 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-e226772c-2344-47b7-81cb-48b6d0502e14 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-e226772c-2344-47b7-81cb-48b6d0502e14 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-e226772c-2344-47b7-81cb-48b6d0502e14 td.shogun-table-column, #s-e226772c-2344-47b7-81cb-48b6d0502e14 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-b31b5129-dfc2-46a6-8ea0-c4a064757bfc {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-b31b5129-dfc2-46a6-8ea0-c4a064757bfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b31b5129-dfc2-46a6-8ea0-c4a064757bfc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-221f6930-d39c-43ab-bbbf-048ce12a2c2f {
  margin-bottom: 10px;
}

#s-3bd314bd-17bc-48cc-be32-e85de1940da8 {
  text-align: left;
}

#s-91b390a0-2c68-4e13-b5da-0f640e219ec6 {
  margin-top: 6px;
margin-bottom: 0px;
}

#s-816df5e1-2db6-4a30-ae08-85dfac88c510 {
  display: none;
}
#s-6b16e9b5-ba3b-4585-8727-17929c4123d8 {
  text-align: left;
}

#s-6b16e9b5-ba3b-4585-8727-17929c4123d8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6b16e9b5-ba3b-4585-8727-17929c4123d8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-6b16e9b5-ba3b-4585-8727-17929c4123d8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-89343478-f183-4cf8-8852-9691acd2d628 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-89343478-f183-4cf8-8852-9691acd2d628:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-89343478-f183-4cf8-8852-9691acd2d628:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-89343478-f183-4cf8-8852-9691acd2d628-root {
    text-align: center;
  }


#s-89343478-f183-4cf8-8852-9691acd2d628.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-89343478-f183-4cf8-8852-9691acd2d628-root {
    text-align: center;
  }


#s-89343478-f183-4cf8-8852-9691acd2d628.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-89343478-f183-4cf8-8852-9691acd2d628-root {
    text-align: center;
  }


#s-89343478-f183-4cf8-8852-9691acd2d628.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-89343478-f183-4cf8-8852-9691acd2d628-root {
    text-align: center;
  }


#s-89343478-f183-4cf8-8852-9691acd2d628.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-89343478-f183-4cf8-8852-9691acd2d628-root {
    text-align: center;
  }


#s-89343478-f183-4cf8-8852-9691acd2d628.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-b7972267-4815-4768-b18f-1300ec77766b {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-b7972267-4815-4768-b18f-1300ec77766b {
  display: none;
}
#s-b7972267-4815-4768-b18f-1300ec77766b, #wrap-s-b7972267-4815-4768-b18f-1300ec77766b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b7972267-4815-4768-b18f-1300ec77766b {
  display: none;
}
#s-b7972267-4815-4768-b18f-1300ec77766b, #wrap-s-b7972267-4815-4768-b18f-1300ec77766b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b7972267-4815-4768-b18f-1300ec77766b {
  display: none;
}
#s-b7972267-4815-4768-b18f-1300ec77766b, #wrap-s-b7972267-4815-4768-b18f-1300ec77766b { display:none !important; }}
#s-b7972267-4815-4768-b18f-1300ec77766b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-b7972267-4815-4768-b18f-1300ec77766b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-b7972267-4815-4768-b18f-1300ec77766b td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-b7972267-4815-4768-b18f-1300ec77766b td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-b7972267-4815-4768-b18f-1300ec77766b td.shogun-table-column, #s-b7972267-4815-4768-b18f-1300ec77766b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-ce8de9e6-4d5e-4247-956c-18a32427221f {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-ce8de9e6-4d5e-4247-956c-18a32427221f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce8de9e6-4d5e-4247-956c-18a32427221f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17dc4be4-946a-4c18-9758-f505ed733ba6 {
  margin-bottom: 10px;
}

#s-315fddf1-ceb0-4f1e-a5a6-5d38542ee0b0 {
  text-align: left;
}

#s-b6ccb00d-c786-4b34-bcaa-72281715a8e4 {
  margin-top: 6px;
}

#s-40e96ee6-3872-4365-9d67-fa01113eda10 {
  display: none;
}
#s-dac5cc4a-8538-409d-8b20-bae4ed427abc {
  text-align: left;
}

#s-dac5cc4a-8538-409d-8b20-bae4ed427abc .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-dac5cc4a-8538-409d-8b20-bae4ed427abc .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-dac5cc4a-8538-409d-8b20-bae4ed427abc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3-root {
    text-align: center;
  }


#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3-root {
    text-align: center;
  }


#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3-root {
    text-align: center;
  }


#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3-root {
    text-align: center;
  }


#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3-root {
    text-align: center;
  }


#s-80ca0363-5919-4ab3-a34b-6db1bc8f14a3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-86af9a77-8ca1-4afa-bb30-43959c5df723 {
  min-height: 50px;
}








#s-86af9a77-8ca1-4afa-bb30-43959c5df723 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86af9a77-8ca1-4afa-bb30-43959c5df723.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8d1c594-1798-433c-9d98-2e87748450fb {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-e8d1c594-1798-433c-9d98-2e87748450fb {
  display: none;
}
#s-e8d1c594-1798-433c-9d98-2e87748450fb, #wrap-s-e8d1c594-1798-433c-9d98-2e87748450fb { display:none !important; }}
#s-e8d1c594-1798-433c-9d98-2e87748450fb .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-e8d1c594-1798-433c-9d98-2e87748450fb table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-e8d1c594-1798-433c-9d98-2e87748450fb td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-e8d1c594-1798-433c-9d98-2e87748450fb td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-e8d1c594-1798-433c-9d98-2e87748450fb td.shogun-table-column, #s-e8d1c594-1798-433c-9d98-2e87748450fb td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-6019a7f8-c8aa-4d21-aed5-ed496e8d6556 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}
@media (max-width: 767px){#s-6019a7f8-c8aa-4d21-aed5-ed496e8d6556 {
  display: none;
}
#s-6019a7f8-c8aa-4d21-aed5-ed496e8d6556, #wrap-s-6019a7f8-c8aa-4d21-aed5-ed496e8d6556 { display:none !important; }}
#s-05b783fc-15c6-4496-9eaf-6a875ca2a9d5 {
  text-align: left;
}

@media (max-width: 767px){#s-24e60d34-1057-4a85-bdc9-daf7867664d2 {
  
}
}
#s-24e60d34-1057-4a85-bdc9-daf7867664d2 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-24e60d34-1057-4a85-bdc9-daf7867664d2 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-24e60d34-1057-4a85-bdc9-daf7867664d2 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-24e60d34-1057-4a85-bdc9-daf7867664d2 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-24e60d34-1057-4a85-bdc9-daf7867664d2 td.shogun-table-column, #s-24e60d34-1057-4a85-bdc9-daf7867664d2 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-c7894a4c-41ef-4818-a919-9dc727e995fd {
  min-height: 50px;
}








#s-c7894a4c-41ef-4818-a919-9dc727e995fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7894a4c-41ef-4818-a919-9dc727e995fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-628e8de7-918b-42cd-9726-bb758b2f5e6c {
  margin-top: 30px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-628e8de7-918b-42cd-9726-bb758b2f5e6c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-628e8de7-918b-42cd-9726-bb758b2f5e6c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3e63c79-0912-47b2-83ac-81b092481d95 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-216d38ff-653d-4330-99b8-c2d6b287fd89 {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-216d38ff-653d-4330-99b8-c2d6b287fd89"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-77013ef9-0267-4297-9f33-50a688629ad9 {
  display: none;
}
#s-f5ab76e4-5ab3-42aa-a67b-3b0866aad39b {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-f5ab76e4-5ab3-42aa-a67b-3b0866aad39b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f5ab76e4-5ab3-42aa-a67b-3b0866aad39b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-f5ab76e4-5ab3-42aa-a67b-3b0866aad39b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-78768e9d-555e-408b-aa44-2db6a67daa5a {
  min-height: 50px;
}








#s-78768e9d-555e-408b-aa44-2db6a67daa5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-78768e9d-555e-408b-aa44-2db6a67daa5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046-root {
    text-align: center;
  }


#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046-root {
    text-align: center;
  }


#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046-root {
    text-align: center;
  }


#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046-root {
    text-align: center;
  }


#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046-root {
    text-align: center;
  }


#s-8b6fb7f3-3c4b-4943-80e9-29c6319c8046.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-b6a16dce-a349-4d21-a09a-6be52a9f77b3 {
  min-height: 50px;
}








#s-b6a16dce-a349-4d21-a09a-6be52a9f77b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6a16dce-a349-4d21-a09a-6be52a9f77b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ac65fd6-f5ae-469b-9bbc-704d6dca8bf0 {
  min-height: 50px;
}








#s-6ac65fd6-f5ae-469b-9bbc-704d6dca8bf0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ac65fd6-f5ae-469b-9bbc-704d6dca8bf0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7b748b7-4ef9-4a24-8aeb-8f026f602350 {
  min-height: 50px;
}
@media (max-width: 767px){#s-e7b748b7-4ef9-4a24-8aeb-8f026f602350 {
  display: none;
}
#s-e7b748b7-4ef9-4a24-8aeb-8f026f602350, #wrap-s-e7b748b7-4ef9-4a24-8aeb-8f026f602350 { display:none !important; }}







#s-e7b748b7-4ef9-4a24-8aeb-8f026f602350 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7b748b7-4ef9-4a24-8aeb-8f026f602350.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eea2a140-4e56-4423-a070-08cafd73dfb1 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-eea2a140-4e56-4423-a070-08cafd73dfb1 {
  display: none;
}
#s-eea2a140-4e56-4423-a070-08cafd73dfb1, #wrap-s-eea2a140-4e56-4423-a070-08cafd73dfb1 { display:none !important; }}
#s-eea2a140-4e56-4423-a070-08cafd73dfb1 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-eea2a140-4e56-4423-a070-08cafd73dfb1 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-eea2a140-4e56-4423-a070-08cafd73dfb1 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-eea2a140-4e56-4423-a070-08cafd73dfb1 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-eea2a140-4e56-4423-a070-08cafd73dfb1 td.shogun-table-column, #s-eea2a140-4e56-4423-a070-08cafd73dfb1 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-ffa31609-0b44-494c-9746-4b1c588dc0ff {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-ad3249de-00bd-4004-be04-eff6000e8f96 {
  text-align: left;
}

#s-60f3c88a-4132-476f-bcae-8369ca08b0d8 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-60f3c88a-4132-476f-bcae-8369ca08b0d8 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-60f3c88a-4132-476f-bcae-8369ca08b0d8 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-60f3c88a-4132-476f-bcae-8369ca08b0d8 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-60f3c88a-4132-476f-bcae-8369ca08b0d8 td.shogun-table-column, #s-60f3c88a-4132-476f-bcae-8369ca08b0d8 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-60b1f88e-742c-472e-83d2-26a7a512dd2d {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-60b1f88e-742c-472e-83d2-26a7a512dd2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60b1f88e-742c-472e-83d2-26a7a512dd2d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb206ae6-d0a4-4501-9c1f-cd61ee4a3ae5 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-b98e5f20-fc2d-4724-90d6-c3c57d3a887a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-2b63daa1-1779-4ce7-80f0-9ed7793d2f73 {
  display: none;
}
#s-7c62a82c-af75-4dec-8d6a-6a6971a8b8a3 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-7c62a82c-af75-4dec-8d6a-6a6971a8b8a3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7c62a82c-af75-4dec-8d6a-6a6971a8b8a3 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-7c62a82c-af75-4dec-8d6a-6a6971a8b8a3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1237cecb-005d-472e-9ab7-ff87f6a96f3b {
  min-height: 50px;
}








#s-1237cecb-005d-472e-9ab7-ff87f6a96f3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1237cecb-005d-472e-9ab7-ff87f6a96f3b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-692069f6-4b9f-4de8-a555-b5c018a8d931 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-692069f6-4b9f-4de8-a555-b5c018a8d931:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-692069f6-4b9f-4de8-a555-b5c018a8d931:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-692069f6-4b9f-4de8-a555-b5c018a8d931-root {
    text-align: center;
  }


#s-692069f6-4b9f-4de8-a555-b5c018a8d931.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-692069f6-4b9f-4de8-a555-b5c018a8d931-root {
    text-align: center;
  }


#s-692069f6-4b9f-4de8-a555-b5c018a8d931.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-692069f6-4b9f-4de8-a555-b5c018a8d931-root {
    text-align: center;
  }


#s-692069f6-4b9f-4de8-a555-b5c018a8d931.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-692069f6-4b9f-4de8-a555-b5c018a8d931-root {
    text-align: center;
  }


#s-692069f6-4b9f-4de8-a555-b5c018a8d931.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-692069f6-4b9f-4de8-a555-b5c018a8d931-root {
    text-align: center;
  }


#s-692069f6-4b9f-4de8-a555-b5c018a8d931.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-e0258f90-b399-4f08-b3a2-dae84251a59f {
  min-height: 50px;
}








#s-e0258f90-b399-4f08-b3a2-dae84251a59f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0258f90-b399-4f08-b3a2-dae84251a59f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b891ca4b-f320-4058-8533-43af5cddcbad {
  min-height: 50px;
}








#s-b891ca4b-f320-4058-8533-43af5cddcbad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b891ca4b-f320-4058-8533-43af5cddcbad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-38ed4c99-19aa-4a99-b830-95f7912f5b10 {
  min-height: 50px;
}








#s-38ed4c99-19aa-4a99-b830-95f7912f5b10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38ed4c99-19aa-4a99-b830-95f7912f5b10.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-635176e0-dc99-430e-b429-34a5466e7187 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 20px;
}
@media (max-width: 767px){#s-635176e0-dc99-430e-b429-34a5466e7187 {
  display: none;
}
#s-635176e0-dc99-430e-b429-34a5466e7187, #wrap-s-635176e0-dc99-430e-b429-34a5466e7187 { display:none !important; }}







#s-635176e0-dc99-430e-b429-34a5466e7187 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-635176e0-dc99-430e-b429-34a5466e7187.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73523e9b-4dd1-4c09-bb67-450c874ab080 {
  min-height: 50px;
}








#s-73523e9b-4dd1-4c09-bb67-450c874ab080 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73523e9b-4dd1-4c09-bb67-450c874ab080.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-294f8b9c-1fbc-4322-ae7b-a77ddafb8440 {
  min-height: 50px;
}








#s-294f8b9c-1fbc-4322-ae7b-a77ddafb8440 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-294f8b9c-1fbc-4322-ae7b-a77ddafb8440.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-129a2314-2445-462b-9352-28268df69ac7 {
  text-align: left;
}

#s-417378ff-90b7-42c8-8383-208b13202cf2 {
  min-height: 50px;
}








#s-417378ff-90b7-42c8-8383-208b13202cf2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-417378ff-90b7-42c8-8383-208b13202cf2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7446ff21-6237-4d30-a786-66c3402c921c {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (max-width: 767px){#s-7446ff21-6237-4d30-a786-66c3402c921c {
  display: none;
}
#s-7446ff21-6237-4d30-a786-66c3402c921c, #wrap-s-7446ff21-6237-4d30-a786-66c3402c921c { display:none !important; }}




  #s-7446ff21-6237-4d30-a786-66c3402c921c img.shogun-image,
  #s-7446ff21-6237-4d30-a786-66c3402c921c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7446ff21-6237-4d30-a786-66c3402c921c {
    width: 100%;
    height: auto;
  }



  img.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
    
    
  }


.s-7446ff21-6237-4d30-a786-66c3402c921c .shogun-image-content {
  
    align-items: center;
  
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shg-align-container {
  text-align: center
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-7446ff21-6237-4d30-a786-66c3402c921c img.shogun-image,
  #s-7446ff21-6237-4d30-a786-66c3402c921c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7446ff21-6237-4d30-a786-66c3402c921c {
    width: 100%;
    height: auto;
  }



  img.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
    
    
  }


.s-7446ff21-6237-4d30-a786-66c3402c921c .shogun-image-content {
  
    align-items: center;
  
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shg-align-container {
  text-align: center
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
  box-sizing: border-box;
}


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



  #s-7446ff21-6237-4d30-a786-66c3402c921c img.shogun-image,
  #s-7446ff21-6237-4d30-a786-66c3402c921c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7446ff21-6237-4d30-a786-66c3402c921c {
    width: 100%;
    height: auto;
  }



  img.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
    
    
  }


.s-7446ff21-6237-4d30-a786-66c3402c921c .shogun-image-content {
  
    align-items: center;
  
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shg-align-container {
  text-align: center
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
  box-sizing: border-box;
}


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



  #s-7446ff21-6237-4d30-a786-66c3402c921c img.shogun-image,
  #s-7446ff21-6237-4d30-a786-66c3402c921c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7446ff21-6237-4d30-a786-66c3402c921c {
    width: 100%;
    height: auto;
  }



  img.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
    
    
  }


.s-7446ff21-6237-4d30-a786-66c3402c921c .shogun-image-content {
  
    align-items: center;
  
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shg-align-container {
  text-align: center
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
  box-sizing: border-box;
}


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



  #s-7446ff21-6237-4d30-a786-66c3402c921c img.shogun-image,
  #s-7446ff21-6237-4d30-a786-66c3402c921c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7446ff21-6237-4d30-a786-66c3402c921c {
    width: 100%;
    height: auto;
  }



  img.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
    
    
  }


.s-7446ff21-6237-4d30-a786-66c3402c921c .shogun-image-content {
  
    align-items: center;
  
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shg-align-container {
  text-align: center
}

.s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7446ff21-6237-4d30-a786-66c3402c921c.shogun-image {
  box-sizing: border-box;
}


}
#s-1672bbfe-9dec-4c50-805a-177ffd821d0a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1672bbfe-9dec-4c50-805a-177ffd821d0a {
  display: none;
}
#s-1672bbfe-9dec-4c50-805a-177ffd821d0a, #wrap-s-1672bbfe-9dec-4c50-805a-177ffd821d0a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1672bbfe-9dec-4c50-805a-177ffd821d0a {
  display: none;
}
#s-1672bbfe-9dec-4c50-805a-177ffd821d0a, #wrap-s-1672bbfe-9dec-4c50-805a-177ffd821d0a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1672bbfe-9dec-4c50-805a-177ffd821d0a {
  display: none;
}
#s-1672bbfe-9dec-4c50-805a-177ffd821d0a, #wrap-s-1672bbfe-9dec-4c50-805a-177ffd821d0a { display:none !important; }}







#s-1672bbfe-9dec-4c50-805a-177ffd821d0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1672bbfe-9dec-4c50-805a-177ffd821d0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e549a31-0aed-4a6a-bf78-1956e6caeaae {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}





  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae img.shogun-image,
  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae {
    width: 100%;
    height: auto;
  }



  img.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
    
    
  }


.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shogun-image-content {
  
    align-items: center;
  
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shg-align-container {
  text-align: center
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae img.shogun-image,
  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae {
    width: 100%;
    height: auto;
  }



  img.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
    
    
  }


.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shogun-image-content {
  
    align-items: center;
  
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shg-align-container {
  text-align: center
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
  box-sizing: border-box;
}


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



  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae img.shogun-image,
  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae {
    width: 100%;
    height: auto;
  }



  img.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
    
    
  }


.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shogun-image-content {
  
    align-items: center;
  
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shg-align-container {
  text-align: center
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
  box-sizing: border-box;
}


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



  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae img.shogun-image,
  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae {
    width: 100%;
    height: auto;
  }



  img.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
    
    
  }


.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shogun-image-content {
  
    align-items: center;
  
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shg-align-container {
  text-align: center
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
  box-sizing: border-box;
}


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



  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae img.shogun-image,
  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e549a31-0aed-4a6a-bf78-1956e6caeaae {
    width: 100%;
    height: auto;
  }



  img.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
    
    
  }


.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae .shogun-image-content {
  
    align-items: center;
  
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shg-align-container {
  text-align: center
}

.s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e549a31-0aed-4a6a-bf78-1956e6caeaae.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 1200px){#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 {
  display: none;
}
#s-a99b16e6-1068-4ee0-924d-e636c1fbea26, #wrap-s-a99b16e6-1068-4ee0-924d-e636c1fbea26 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 {
  display: none;
}
#s-a99b16e6-1068-4ee0-924d-e636c1fbea26, #wrap-s-a99b16e6-1068-4ee0-924d-e636c1fbea26 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 {
  display: none;
}
#s-a99b16e6-1068-4ee0-924d-e636c1fbea26, #wrap-s-a99b16e6-1068-4ee0-924d-e636c1fbea26 { display:none !important; }}
#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-a99b16e6-1068-4ee0-924d-e636c1fbea26 td.shogun-table-column, #s-a99b16e6-1068-4ee0-924d-e636c1fbea26 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-4392bfd1-b866-403f-8815-64cc9f164726 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-4392bfd1-b866-403f-8815-64cc9f164726 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4392bfd1-b866-403f-8815-64cc9f164726.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5b81759-fc82-467f-9a44-c958978e7a4c {
  margin-bottom: 10px;
}

#s-7721272d-3fd3-4402-be22-768d691403e6 {
  text-align: left;
}

#s-d87208e2-a2b0-4ed7-bf31-be5c9dfe3f71 {
  margin-top: 6px;
margin-bottom: 0px;
}

#s-9effd5b7-c1cb-4ca2-8391-9aaf8c6d2af7 {
  display: none;
}
#s-92f66561-b3a0-442c-b305-a03b542a6bb3 {
  text-align: left;
}

#s-92f66561-b3a0-442c-b305-a03b542a6bb3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-92f66561-b3a0-442c-b305-a03b542a6bb3 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-92f66561-b3a0-442c-b305-a03b542a6bb3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3-root {
    text-align: center;
  }


#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3-root {
    text-align: center;
  }


#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3-root {
    text-align: center;
  }


#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3-root {
    text-align: center;
  }


#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3-root {
    text-align: center;
  }


#s-832f7fd9-4300-4c43-bcaa-0779c9cda3c3.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-67ba4db6-be51-48b7-a86a-83f91caa2bda {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-67ba4db6-be51-48b7-a86a-83f91caa2bda {
  display: none;
}
#s-67ba4db6-be51-48b7-a86a-83f91caa2bda, #wrap-s-67ba4db6-be51-48b7-a86a-83f91caa2bda { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-67ba4db6-be51-48b7-a86a-83f91caa2bda {
  display: none;
}
#s-67ba4db6-be51-48b7-a86a-83f91caa2bda, #wrap-s-67ba4db6-be51-48b7-a86a-83f91caa2bda { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-67ba4db6-be51-48b7-a86a-83f91caa2bda {
  display: none;
}
#s-67ba4db6-be51-48b7-a86a-83f91caa2bda, #wrap-s-67ba4db6-be51-48b7-a86a-83f91caa2bda { display:none !important; }}
#s-67ba4db6-be51-48b7-a86a-83f91caa2bda .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-67ba4db6-be51-48b7-a86a-83f91caa2bda table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-67ba4db6-be51-48b7-a86a-83f91caa2bda td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-67ba4db6-be51-48b7-a86a-83f91caa2bda td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-67ba4db6-be51-48b7-a86a-83f91caa2bda td.shogun-table-column, #s-67ba4db6-be51-48b7-a86a-83f91caa2bda td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-eb0ce620-ac79-4af5-a0f7-3056f8910ea7 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-eb0ce620-ac79-4af5-a0f7-3056f8910ea7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb0ce620-ac79-4af5-a0f7-3056f8910ea7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d062c471-96ed-4ff2-ac80-7a18a6467cd6 {
  margin-bottom: 10px;
}

#s-07fe9156-6c96-4d9c-bdcf-2d7d08dd1bdd {
  text-align: left;
}

#s-52d58adc-b477-42fe-a2fc-c06909df03dc {
  margin-top: 6px;
}

#s-f4af724d-06cd-488b-969b-19eb133705ba {
  display: none;
}
#s-9f9084f6-a92e-43ec-a9e4-855281e02ba6 {
  text-align: left;
}

#s-9f9084f6-a92e-43ec-a9e4-855281e02ba6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9f9084f6-a92e-43ec-a9e4-855281e02ba6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-9f9084f6-a92e-43ec-a9e4-855281e02ba6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7797d20f-5ddc-464e-9b26-fe010a7ec013 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-7797d20f-5ddc-464e-9b26-fe010a7ec013:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7797d20f-5ddc-464e-9b26-fe010a7ec013:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7797d20f-5ddc-464e-9b26-fe010a7ec013-root {
    text-align: center;
  }


#s-7797d20f-5ddc-464e-9b26-fe010a7ec013.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-7797d20f-5ddc-464e-9b26-fe010a7ec013-root {
    text-align: center;
  }


#s-7797d20f-5ddc-464e-9b26-fe010a7ec013.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7797d20f-5ddc-464e-9b26-fe010a7ec013-root {
    text-align: center;
  }


#s-7797d20f-5ddc-464e-9b26-fe010a7ec013.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7797d20f-5ddc-464e-9b26-fe010a7ec013-root {
    text-align: center;
  }


#s-7797d20f-5ddc-464e-9b26-fe010a7ec013.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-7797d20f-5ddc-464e-9b26-fe010a7ec013-root {
    text-align: center;
  }


#s-7797d20f-5ddc-464e-9b26-fe010a7ec013.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-43e7d340-b09b-4066-9d40-5a942dd221dc {
  min-height: 50px;
}








#s-43e7d340-b09b-4066-9d40-5a942dd221dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43e7d340-b09b-4066-9d40-5a942dd221dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab936446-9e58-4cce-95c0-777e5e8ea877 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-ab936446-9e58-4cce-95c0-777e5e8ea877 {
  display: none;
}
#s-ab936446-9e58-4cce-95c0-777e5e8ea877, #wrap-s-ab936446-9e58-4cce-95c0-777e5e8ea877 { display:none !important; }}
#s-ab936446-9e58-4cce-95c0-777e5e8ea877 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-ab936446-9e58-4cce-95c0-777e5e8ea877 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-ab936446-9e58-4cce-95c0-777e5e8ea877 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-ab936446-9e58-4cce-95c0-777e5e8ea877 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-ab936446-9e58-4cce-95c0-777e5e8ea877 td.shogun-table-column, #s-ab936446-9e58-4cce-95c0-777e5e8ea877 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-239571da-5896-4985-888e-ea123db9699c {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-4a32315b-5f34-4da3-b281-3a811b6c7cd5 {
  text-align: left;
}

#s-1855e923-b26d-482b-9ed4-43864cd8af62 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-1855e923-b26d-482b-9ed4-43864cd8af62 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-1855e923-b26d-482b-9ed4-43864cd8af62 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-1855e923-b26d-482b-9ed4-43864cd8af62 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-1855e923-b26d-482b-9ed4-43864cd8af62 td.shogun-table-column, #s-1855e923-b26d-482b-9ed4-43864cd8af62 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-e9018fa5-6837-4d82-94bf-b7ca3033dc99 {
  min-height: 50px;
}








#s-e9018fa5-6837-4d82-94bf-b7ca3033dc99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9018fa5-6837-4d82-94bf-b7ca3033dc99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d6feb1f8-809c-4b06-bc32-38a7d6144b50 {
  margin-top: 30px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-d6feb1f8-809c-4b06-bc32-38a7d6144b50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6feb1f8-809c-4b06-bc32-38a7d6144b50.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d604d5c-76b5-4531-8373-ca59d22b253f {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-0c08b61e-7cad-402e-a078-070673de023c {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-0c08b61e-7cad-402e-a078-070673de023c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-c1773ca8-d486-490c-88e0-9e187bdd1234 {
  display: none;
}
#s-4e22d30c-93f9-4ec5-aeb9-f3b357081d39 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-4e22d30c-93f9-4ec5-aeb9-f3b357081d39 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4e22d30c-93f9-4ec5-aeb9-f3b357081d39 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-4e22d30c-93f9-4ec5-aeb9-f3b357081d39 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7005f7c4-3ff1-4fd5-95b2-fb0c6af7122e {
  min-height: 50px;
}








#s-7005f7c4-3ff1-4fd5-95b2-fb0c6af7122e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7005f7c4-3ff1-4fd5-95b2-fb0c6af7122e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b632bee6-7140-4553-a1a3-0c50e4c6f619 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-b632bee6-7140-4553-a1a3-0c50e4c6f619:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b632bee6-7140-4553-a1a3-0c50e4c6f619:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b632bee6-7140-4553-a1a3-0c50e4c6f619-root {
    text-align: center;
  }


#s-b632bee6-7140-4553-a1a3-0c50e4c6f619.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b632bee6-7140-4553-a1a3-0c50e4c6f619-root {
    text-align: center;
  }


#s-b632bee6-7140-4553-a1a3-0c50e4c6f619.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b632bee6-7140-4553-a1a3-0c50e4c6f619-root {
    text-align: center;
  }


#s-b632bee6-7140-4553-a1a3-0c50e4c6f619.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b632bee6-7140-4553-a1a3-0c50e4c6f619-root {
    text-align: center;
  }


#s-b632bee6-7140-4553-a1a3-0c50e4c6f619.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b632bee6-7140-4553-a1a3-0c50e4c6f619-root {
    text-align: center;
  }


#s-b632bee6-7140-4553-a1a3-0c50e4c6f619.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-4c8a3166-0c51-450f-9327-80b5c7e6c4d2 {
  min-height: 50px;
}








#s-4c8a3166-0c51-450f-9327-80b5c7e6c4d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c8a3166-0c51-450f-9327-80b5c7e6c4d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f64653c9-350e-4938-bca4-5b1a8a05c2b5 {
  min-height: 50px;
}








#s-f64653c9-350e-4938-bca4-5b1a8a05c2b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f64653c9-350e-4938-bca4-5b1a8a05c2b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7007b76c-6239-4ff6-9187-551a0849d704 {
  min-height: 50px;
}
@media (max-width: 767px){#s-7007b76c-6239-4ff6-9187-551a0849d704 {
  display: none;
}
#s-7007b76c-6239-4ff6-9187-551a0849d704, #wrap-s-7007b76c-6239-4ff6-9187-551a0849d704 { display:none !important; }}







#s-7007b76c-6239-4ff6-9187-551a0849d704 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7007b76c-6239-4ff6-9187-551a0849d704.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10e85804-c227-4836-920b-ae496c32c8a4 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-10e85804-c227-4836-920b-ae496c32c8a4 {
  display: none;
}
#s-10e85804-c227-4836-920b-ae496c32c8a4, #wrap-s-10e85804-c227-4836-920b-ae496c32c8a4 { display:none !important; }}
#s-10e85804-c227-4836-920b-ae496c32c8a4 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-10e85804-c227-4836-920b-ae496c32c8a4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-10e85804-c227-4836-920b-ae496c32c8a4 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-10e85804-c227-4836-920b-ae496c32c8a4 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-10e85804-c227-4836-920b-ae496c32c8a4 td.shogun-table-column, #s-10e85804-c227-4836-920b-ae496c32c8a4 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-56632add-42c4-4fae-9f99-047a5c5b0985 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-61ca4328-011d-460d-8b73-63a7df27cbd4 {
  text-align: left;
}

#s-f8ccaf9a-8662-4010-a856-0a4f4ea77a6d .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-f8ccaf9a-8662-4010-a856-0a4f4ea77a6d table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-f8ccaf9a-8662-4010-a856-0a4f4ea77a6d td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-f8ccaf9a-8662-4010-a856-0a4f4ea77a6d td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-f8ccaf9a-8662-4010-a856-0a4f4ea77a6d td.shogun-table-column, #s-f8ccaf9a-8662-4010-a856-0a4f4ea77a6d td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-2ebf4fe6-f459-40f8-9fa3-c7007c187c6f {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-2ebf4fe6-f459-40f8-9fa3-c7007c187c6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ebf4fe6-f459-40f8-9fa3-c7007c187c6f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b9ea9322-d7b6-4d7b-9208-2a8fe1ae2d03 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-d46576cf-9b56-4f6d-934c-ed4084ce53ad {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-d46576cf-9b56-4f6d-934c-ed4084ce53ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-c59b592e-065d-4d94-83f0-2515877c6ca0 {
  display: none;
}
#s-e37fbc82-fd55-466b-93fb-1fa1f18fb390 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-e37fbc82-fd55-466b-93fb-1fa1f18fb390 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e37fbc82-fd55-466b-93fb-1fa1f18fb390 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-e37fbc82-fd55-466b-93fb-1fa1f18fb390 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-88c82dfa-81b7-4fb1-8e37-94414a03168b {
  min-height: 50px;
}








#s-88c82dfa-81b7-4fb1-8e37-94414a03168b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88c82dfa-81b7-4fb1-8e37-94414a03168b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-61f56277-a73a-429b-978e-d192909d5f89 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-61f56277-a73a-429b-978e-d192909d5f89:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-61f56277-a73a-429b-978e-d192909d5f89:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-61f56277-a73a-429b-978e-d192909d5f89-root {
    text-align: center;
  }


#s-61f56277-a73a-429b-978e-d192909d5f89.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-61f56277-a73a-429b-978e-d192909d5f89-root {
    text-align: center;
  }


#s-61f56277-a73a-429b-978e-d192909d5f89.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-61f56277-a73a-429b-978e-d192909d5f89-root {
    text-align: center;
  }


#s-61f56277-a73a-429b-978e-d192909d5f89.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-61f56277-a73a-429b-978e-d192909d5f89-root {
    text-align: center;
  }


#s-61f56277-a73a-429b-978e-d192909d5f89.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-61f56277-a73a-429b-978e-d192909d5f89-root {
    text-align: center;
  }


#s-61f56277-a73a-429b-978e-d192909d5f89.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-e852f08a-3d9a-459a-ac96-6900a875bfb7 {
  min-height: 50px;
}








#s-e852f08a-3d9a-459a-ac96-6900a875bfb7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e852f08a-3d9a-459a-ac96-6900a875bfb7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bcbd7cc8-f03f-48a5-be37-bcf0b8232d6e {
  min-height: 50px;
}








#s-bcbd7cc8-f03f-48a5-be37-bcf0b8232d6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcbd7cc8-f03f-48a5-be37-bcf0b8232d6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d1ecf650-6e6f-4779-b21b-f2b4e306d535 {
  min-height: 50px;
}








#s-d1ecf650-6e6f-4779-b21b-f2b4e306d535 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1ecf650-6e6f-4779-b21b-f2b4e306d535.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-99863819-1e06-4385-8c02-5545d2de12b9 {
  min-height: 50px;
}
@media (max-width: 767px){#s-99863819-1e06-4385-8c02-5545d2de12b9 {
  display: none;
}
#s-99863819-1e06-4385-8c02-5545d2de12b9, #wrap-s-99863819-1e06-4385-8c02-5545d2de12b9 { display:none !important; }}







#s-99863819-1e06-4385-8c02-5545d2de12b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99863819-1e06-4385-8c02-5545d2de12b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-167ec4de-a387-4e90-8a8a-73ac8785487a {
  margin-top: 30px;
margin-bottom: 30px;
}
@media (max-width: 767px){#s-167ec4de-a387-4e90-8a8a-73ac8785487a {
  
}
}
#s-167ec4de-a387-4e90-8a8a-73ac8785487a hr {
  border-top: 2px solid #000;
}

#s-06276abc-1310-4c7a-a716-099b3eec075b {
  min-height: 50px;
}
@media (max-width: 767px){#s-06276abc-1310-4c7a-a716-099b3eec075b {
  display: none;
}
#s-06276abc-1310-4c7a-a716-099b3eec075b, #wrap-s-06276abc-1310-4c7a-a716-099b3eec075b { display:none !important; }}







#s-06276abc-1310-4c7a-a716-099b3eec075b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06276abc-1310-4c7a-a716-099b3eec075b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bf4b99b-e6b4-4efb-9b63-ae833177bdf0 {
  min-height: 50px;
}








#s-0bf4b99b-e6b4-4efb-9b63-ae833177bdf0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bf4b99b-e6b4-4efb-9b63-ae833177bdf0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8e099df-6282-44b6-888e-809b235f0ee6 {
  text-align: left;
}

#s-94f135f9-fbae-4cd3-a9e2-ad4487005a5e {
  min-height: 50px;
}








#s-94f135f9-fbae-4cd3-a9e2-ad4487005a5e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94f135f9-fbae-4cd3-a9e2-ad4487005a5e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (max-width: 767px){#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
  display: none;
}
#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e, #wrap-s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e { display:none !important; }}




  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e img.shogun-image,
  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
    width: 100%;
    height: auto;
  }



  img.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
    
    
  }


.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shogun-image-content {
  
    align-items: center;
  
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shg-align-container {
  text-align: center
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e img.shogun-image,
  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
    width: 100%;
    height: auto;
  }



  img.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
    
    
  }


.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shogun-image-content {
  
    align-items: center;
  
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shg-align-container {
  text-align: center
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
  box-sizing: border-box;
}


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



  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e img.shogun-image,
  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
    width: 100%;
    height: auto;
  }



  img.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
    
    
  }


.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shogun-image-content {
  
    align-items: center;
  
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shg-align-container {
  text-align: center
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
  box-sizing: border-box;
}


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



  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e img.shogun-image,
  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
    width: 100%;
    height: auto;
  }



  img.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
    
    
  }


.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shogun-image-content {
  
    align-items: center;
  
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shg-align-container {
  text-align: center
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
  box-sizing: border-box;
}


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



  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e img.shogun-image,
  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e {
    width: 100%;
    height: auto;
  }



  img.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
    
    
  }


.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e .shogun-image-content {
  
    align-items: center;
  
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shg-align-container {
  text-align: center
}

.s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11f0d144-73cf-4ea5-9b0f-79eac87cc20e.shogun-image {
  box-sizing: border-box;
}


}
#s-4095d631-35bb-447f-81cd-1335d8fddc20 {
  min-height: 50px;
}








#s-4095d631-35bb-447f-81cd-1335d8fddc20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4095d631-35bb-447f-81cd-1335d8fddc20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f {
  display: none;
}
#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f, #wrap-s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f { display:none !important; }}
#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f td.shogun-table-column, #s-945c30f1-7bd6-4823-af5e-39cdf46dfe6f td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-c8bf4fde-b8ce-4273-9d8d-92863205c09f {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-30d71a3f-042b-4ba6-9688-1747dbb6ea55 {
  text-align: left;
}

#s-4d14dc19-0c50-42ac-a15f-62d5a0df1889 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-4d14dc19-0c50-42ac-a15f-62d5a0df1889 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-4d14dc19-0c50-42ac-a15f-62d5a0df1889 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-4d14dc19-0c50-42ac-a15f-62d5a0df1889 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-4d14dc19-0c50-42ac-a15f-62d5a0df1889 td.shogun-table-column, #s-4d14dc19-0c50-42ac-a15f-62d5a0df1889 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-b7b3173f-ec49-4027-852a-fc1109c42cc3 {
  min-height: 50px;
}








#s-b7b3173f-ec49-4027-852a-fc1109c42cc3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b7b3173f-ec49-4027-852a-fc1109c42cc3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9688129-9ee4-47f9-9153-0859bfdd2227 {
  margin-top: 30px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-d9688129-9ee4-47f9-9153-0859bfdd2227 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9688129-9ee4-47f9-9153-0859bfdd2227.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c23f50d8-24fd-4dda-86ed-ab0f348fb5cc {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-ec35560f-9ae4-456a-9586-09348f62220b {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-ec35560f-9ae4-456a-9586-09348f62220b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-8c9facc3-112f-4cf7-a320-08d8221ee803 {
  display: none;
}
#s-ba3b655c-080a-4505-8e61-a4d587493e83 {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-ba3b655c-080a-4505-8e61-a4d587493e83 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ba3b655c-080a-4505-8e61-a4d587493e83 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-ba3b655c-080a-4505-8e61-a4d587493e83 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f2d86d6f-9049-4a72-92f3-9cd62d6e027b {
  min-height: 50px;
}








#s-f2d86d6f-9049-4a72-92f3-9cd62d6e027b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2d86d6f-9049-4a72-92f3-9cd62d6e027b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-160016f5-6fb8-497f-be6a-7fd1fcfab90e-root {
    text-align: center;
  }


#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-160016f5-6fb8-497f-be6a-7fd1fcfab90e-root {
    text-align: center;
  }


#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-160016f5-6fb8-497f-be6a-7fd1fcfab90e-root {
    text-align: center;
  }


#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-160016f5-6fb8-497f-be6a-7fd1fcfab90e-root {
    text-align: center;
  }


#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-160016f5-6fb8-497f-be6a-7fd1fcfab90e-root {
    text-align: center;
  }


#s-160016f5-6fb8-497f-be6a-7fd1fcfab90e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-d6933a78-311a-4299-a791-04f23e2ffa31 {
  min-height: 50px;
}








#s-d6933a78-311a-4299-a791-04f23e2ffa31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6933a78-311a-4299-a791-04f23e2ffa31.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3b4e409-bc35-4cdb-9019-73e60bc139ad {
  min-height: 50px;
}








#s-e3b4e409-bc35-4cdb-9019-73e60bc139ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3b4e409-bc35-4cdb-9019-73e60bc139ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba409743-0451-435e-8234-90fde9a6c229 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ba409743-0451-435e-8234-90fde9a6c229 {
  display: none;
}
#s-ba409743-0451-435e-8234-90fde9a6c229, #wrap-s-ba409743-0451-435e-8234-90fde9a6c229 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ba409743-0451-435e-8234-90fde9a6c229 {
  display: none;
}
#s-ba409743-0451-435e-8234-90fde9a6c229, #wrap-s-ba409743-0451-435e-8234-90fde9a6c229 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ba409743-0451-435e-8234-90fde9a6c229 {
  display: none;
}
#s-ba409743-0451-435e-8234-90fde9a6c229, #wrap-s-ba409743-0451-435e-8234-90fde9a6c229 { display:none !important; }}







#s-ba409743-0451-435e-8234-90fde9a6c229 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba409743-0451-435e-8234-90fde9a6c229.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}
@media (min-width: 1200px){#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
  display: none;
}
#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a, #wrap-s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
  display: none;
}
#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a, #wrap-s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
  display: none;
}
#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a, #wrap-s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a { display:none !important; }}




  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a img.shogun-image,
  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
    width: 100%;
    height: auto;
  }



  img.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
    
    
  }


.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shg-align-container {
  text-align: center
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a img.shogun-image,
  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
    width: 100%;
    height: auto;
  }



  img.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
    
    
  }


.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shg-align-container {
  text-align: center
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
  box-sizing: border-box;
}


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



  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a img.shogun-image,
  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
    width: 100%;
    height: auto;
  }



  img.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
    
    
  }


.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shg-align-container {
  text-align: center
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
  box-sizing: border-box;
}


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



  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a img.shogun-image,
  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
    width: 100%;
    height: auto;
  }



  img.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
    
    
  }


.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shg-align-container {
  text-align: center
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
  box-sizing: border-box;
}


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



  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a img.shogun-image,
  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a {
    width: 100%;
    height: auto;
  }



  img.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
    
    
  }


.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shg-align-container {
  text-align: center
}

.s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccdf50f3-9322-4eb3-8d93-6a1314ce1f1a.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 1200px){#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 {
  display: none;
}
#s-ae2129c5-d357-4984-ba95-a70c7ea3e146, #wrap-s-ae2129c5-d357-4984-ba95-a70c7ea3e146 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 {
  display: none;
}
#s-ae2129c5-d357-4984-ba95-a70c7ea3e146, #wrap-s-ae2129c5-d357-4984-ba95-a70c7ea3e146 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 {
  display: none;
}
#s-ae2129c5-d357-4984-ba95-a70c7ea3e146, #wrap-s-ae2129c5-d357-4984-ba95-a70c7ea3e146 { display:none !important; }}
#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-ae2129c5-d357-4984-ba95-a70c7ea3e146 td.shogun-table-column, #s-ae2129c5-d357-4984-ba95-a70c7ea3e146 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-7b71ded9-a5fa-4fd8-9d39-f79ca40afc37 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-7b71ded9-a5fa-4fd8-9d39-f79ca40afc37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b71ded9-a5fa-4fd8-9d39-f79ca40afc37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a70cc4b-c425-4383-bc06-0ef1d1d85b04 {
  margin-bottom: 10px;
}

#s-2b0cc506-693e-44fb-8399-06fdeb2efcb1 {
  text-align: left;
}

#s-cc72f40f-0dc0-44a3-ba76-193b13b00354 {
  display: none;
}
#s-869dd5e4-3482-48d7-bb9b-dea6532254cf {
  text-align: left;
}

#s-869dd5e4-3482-48d7-bb9b-dea6532254cf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-869dd5e4-3482-48d7-bb9b-dea6532254cf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-869dd5e4-3482-48d7-bb9b-dea6532254cf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a07ddd20-6609-4175-b356-8aff10aed150 {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-a07ddd20-6609-4175-b356-8aff10aed150:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a07ddd20-6609-4175-b356-8aff10aed150:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a07ddd20-6609-4175-b356-8aff10aed150-root {
    text-align: center;
  }


#s-a07ddd20-6609-4175-b356-8aff10aed150.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-a07ddd20-6609-4175-b356-8aff10aed150-root {
    text-align: center;
  }


#s-a07ddd20-6609-4175-b356-8aff10aed150.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a07ddd20-6609-4175-b356-8aff10aed150-root {
    text-align: center;
  }


#s-a07ddd20-6609-4175-b356-8aff10aed150.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a07ddd20-6609-4175-b356-8aff10aed150-root {
    text-align: center;
  }


#s-a07ddd20-6609-4175-b356-8aff10aed150.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-a07ddd20-6609-4175-b356-8aff10aed150-root {
    text-align: center;
  }


#s-a07ddd20-6609-4175-b356-8aff10aed150.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 {
  display: none;
}
#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63, #wrap-s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 {
  display: none;
}
#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63, #wrap-s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 {
  display: none;
}
#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63, #wrap-s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 { display:none !important; }}
#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 td.shogun-table-column, #s-84d9a1b2-2d7e-4f57-97dd-1538dfdf0a63 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-59b373d9-3dd4-4280-a5d7-f80141367428 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-59b373d9-3dd4-4280-a5d7-f80141367428 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59b373d9-3dd4-4280-a5d7-f80141367428.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9c86a8f-6093-4a38-a889-38dadefe15ed {
  margin-bottom: 10px;
}

#s-19022385-6238-4345-bf9e-55cc6bc63b95 {
  text-align: left;
}

#s-440dae95-00b5-4901-8ce1-f2e12515dfaa {
  margin-top: 2px;
}

#s-28f03390-b1fb-407f-9ec5-848cfdbb5801 {
  display: none;
}
#s-829db6fd-b19e-46c4-93ea-aab4a1376adb {
  text-align: left;
}

#s-829db6fd-b19e-46c4-93ea-aab4a1376adb .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-829db6fd-b19e-46c4-93ea-aab4a1376adb .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-829db6fd-b19e-46c4-93ea-aab4a1376adb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db-root {
    text-align: center;
  }


#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db-root {
    text-align: center;
  }


#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db-root {
    text-align: center;
  }


#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db-root {
    text-align: center;
  }


#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db-root {
    text-align: center;
  }


#s-8e09f5de-0c60-4dd2-b4b4-df7c2e0557db.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 {
  display: none;
}
#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0, #wrap-s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 {
  display: none;
}
#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0, #wrap-s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 {
  display: none;
}
#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0, #wrap-s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 { display:none !important; }}
#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 td.shogun-table-column, #s-b2a3657e-dd32-487e-92a4-cbb83739e1e0 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-61f147fa-2de2-4a27-bcf5-304b5d011a7e {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-61f147fa-2de2-4a27-bcf5-304b5d011a7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61f147fa-2de2-4a27-bcf5-304b5d011a7e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b0328d6b-ac78-4ed6-97e8-60006dfe170a {
  margin-bottom: 10px;
}

#s-7bb925a9-1d98-49b6-85b1-83bc348089fe {
  text-align: left;
}

#s-03647bda-9f14-4b18-826a-26066939f2d8 {
  display: none;
}
#s-2f1e1a07-c4d5-43c2-95e2-f61a920c3357 {
  text-align: left;
}

#s-2f1e1a07-c4d5-43c2-95e2-f61a920c3357 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2f1e1a07-c4d5-43c2-95e2-f61a920c3357 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 12px;
}

#s-2f1e1a07-c4d5-43c2-95e2-f61a920c3357 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-fa7450ea-14a8-4e03-b88a-229976c2566e {
  padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-fa7450ea-14a8-4e03-b88a-229976c2566e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fa7450ea-14a8-4e03-b88a-229976c2566e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fa7450ea-14a8-4e03-b88a-229976c2566e-root {
    text-align: center;
  }


#s-fa7450ea-14a8-4e03-b88a-229976c2566e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-fa7450ea-14a8-4e03-b88a-229976c2566e-root {
    text-align: center;
  }


#s-fa7450ea-14a8-4e03-b88a-229976c2566e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fa7450ea-14a8-4e03-b88a-229976c2566e-root {
    text-align: center;
  }


#s-fa7450ea-14a8-4e03-b88a-229976c2566e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fa7450ea-14a8-4e03-b88a-229976c2566e-root {
    text-align: center;
  }


#s-fa7450ea-14a8-4e03-b88a-229976c2566e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-fa7450ea-14a8-4e03-b88a-229976c2566e-root {
    text-align: center;
  }


#s-fa7450ea-14a8-4e03-b88a-229976c2566e.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  block ;
}
}
#s-0ba58d39-238c-4305-a629-7f3487122dab {
  min-height: 50px;
}








#s-0ba58d39-238c-4305-a629-7f3487122dab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ba58d39-238c-4305-a629-7f3487122dab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 {
  display: none;
}
#s-91a8904d-93fd-4fde-a782-1ef1edba1a41, #wrap-s-91a8904d-93fd-4fde-a782-1ef1edba1a41 { display:none !important; }}
#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-91a8904d-93fd-4fde-a782-1ef1edba1a41 td.shogun-table-column, #s-91a8904d-93fd-4fde-a782-1ef1edba1a41 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-daa0a98d-2125-4f28-abe3-89bcf0282946 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-455fb3df-6a99-427d-b04a-70d0591af2f9 {
  text-align: left;
}

#s-686f60e0-4da0-44fe-91cf-3cbd4fde6c32 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-686f60e0-4da0-44fe-91cf-3cbd4fde6c32 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-686f60e0-4da0-44fe-91cf-3cbd4fde6c32 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-686f60e0-4da0-44fe-91cf-3cbd4fde6c32 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-686f60e0-4da0-44fe-91cf-3cbd4fde6c32 td.shogun-table-column, #s-686f60e0-4da0-44fe-91cf-3cbd4fde6c32 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-e2c8c425-437a-416c-bfff-ce3bd5afb62f {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-e2c8c425-437a-416c-bfff-ce3bd5afb62f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2c8c425-437a-416c-bfff-ce3bd5afb62f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-32cb7191-5bc7-4e71-9496-e7c55fcc5d10 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-e458a498-9d61-4a4f-afa4-a5ce9a5c037f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-11d6dc33-1138-4caa-97e8-55a3afe54f8d {
  display: none;
}
#s-45cdf617-00a6-40ca-826d-735070be49da {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-45cdf617-00a6-40ca-826d-735070be49da .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-45cdf617-00a6-40ca-826d-735070be49da .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-45cdf617-00a6-40ca-826d-735070be49da .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-3759d407-48a6-403e-9edc-5a6c4e0a7610 {
  min-height: 50px;
}








#s-3759d407-48a6-403e-9edc-5a6c4e0a7610 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3759d407-48a6-403e-9edc-5a6c4e0a7610.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8176fda7-4558-4986-bed6-dbe3ebc34c40 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-8176fda7-4558-4986-bed6-dbe3ebc34c40:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8176fda7-4558-4986-bed6-dbe3ebc34c40:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8176fda7-4558-4986-bed6-dbe3ebc34c40-root {
    text-align: center;
  }


#s-8176fda7-4558-4986-bed6-dbe3ebc34c40.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-8176fda7-4558-4986-bed6-dbe3ebc34c40-root {
    text-align: center;
  }


#s-8176fda7-4558-4986-bed6-dbe3ebc34c40.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8176fda7-4558-4986-bed6-dbe3ebc34c40-root {
    text-align: center;
  }


#s-8176fda7-4558-4986-bed6-dbe3ebc34c40.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8176fda7-4558-4986-bed6-dbe3ebc34c40-root {
    text-align: center;
  }


#s-8176fda7-4558-4986-bed6-dbe3ebc34c40.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-8176fda7-4558-4986-bed6-dbe3ebc34c40-root {
    text-align: center;
  }


#s-8176fda7-4558-4986-bed6-dbe3ebc34c40.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-71718f1d-d513-499b-908c-e6bcfb1a6dc4 {
  min-height: 50px;
}








#s-71718f1d-d513-499b-908c-e6bcfb1a6dc4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-71718f1d-d513-499b-908c-e6bcfb1a6dc4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83f0edc8-1351-4031-aa38-32f050d59c65 {
  min-height: 50px;
}








#s-83f0edc8-1351-4031-aa38-32f050d59c65 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83f0edc8-1351-4031-aa38-32f050d59c65.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c60860e3-a83e-4086-bf03-afeed532684d {
  min-height: 50px;
}








#s-c60860e3-a83e-4086-bf03-afeed532684d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c60860e3-a83e-4086-bf03-afeed532684d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d03e7505-d6a7-4928-8147-6a6de433870f {
  min-height: 50px;
}
@media (max-width: 767px){#s-d03e7505-d6a7-4928-8147-6a6de433870f {
  display: none;
}
#s-d03e7505-d6a7-4928-8147-6a6de433870f, #wrap-s-d03e7505-d6a7-4928-8147-6a6de433870f { display:none !important; }}







#s-d03e7505-d6a7-4928-8147-6a6de433870f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d03e7505-d6a7-4928-8147-6a6de433870f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-593594c1-432e-4a11-9253-8c6539bba679 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-593594c1-432e-4a11-9253-8c6539bba679 {
  display: none;
}
#s-593594c1-432e-4a11-9253-8c6539bba679, #wrap-s-593594c1-432e-4a11-9253-8c6539bba679 { display:none !important; }}
#s-593594c1-432e-4a11-9253-8c6539bba679 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-593594c1-432e-4a11-9253-8c6539bba679 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-593594c1-432e-4a11-9253-8c6539bba679 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-593594c1-432e-4a11-9253-8c6539bba679 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-593594c1-432e-4a11-9253-8c6539bba679 td.shogun-table-column, #s-593594c1-432e-4a11-9253-8c6539bba679 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-f1c41693-8e39-4e0e-a793-4fce877fb06a {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 30px;
padding-left: 0%;
text-align: left;
}

#s-3e37a19c-fa72-430d-a603-dc501e92f2a5 {
  text-align: left;
}

#s-0c086258-377e-4939-a3a3-05d3f468c402 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-0c086258-377e-4939-a3a3-05d3f468c402 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-0c086258-377e-4939-a3a3-05d3f468c402 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-0c086258-377e-4939-a3a3-05d3f468c402 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-0c086258-377e-4939-a3a3-05d3f468c402 td.shogun-table-column, #s-0c086258-377e-4939-a3a3-05d3f468c402 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-2a7f50e3-8291-4850-b664-5a09313ea3c3 {
  margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-2a7f50e3-8291-4850-b664-5a09313ea3c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a7f50e3-8291-4850-b664-5a09313ea3c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a2fc49f-4f25-4ec1-8bea-622656fc8c11 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334 {
  margin-left: 0%;
}

@media (min-width: 0px) {
[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-b0b0fc4d-22c7-4ed8-9a5c-79cc55d5d334"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-089bf69a-20fb-4b41-9885-df1bbfdc010c {
  display: none;
}
#s-9d47e273-0a7e-4f20-876c-b0724fbfe13c {
  margin-top: 15px;
margin-left: 0%;
text-align: left;
}

#s-9d47e273-0a7e-4f20-876c-b0724fbfe13c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9d47e273-0a7e-4f20-876c-b0724fbfe13c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-9d47e273-0a7e-4f20-876c-b0724fbfe13c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-38feeca0-eb45-43b9-815b-392fa81ec2d3 {
  min-height: 50px;
}








#s-38feeca0-eb45-43b9-815b-392fa81ec2d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38feeca0-eb45-43b9-815b-392fa81ec2d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3 {
  margin-top: 10px;
margin-left: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3-root {
    text-align: center;
  }


#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3-root {
    text-align: center;
  }


#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3-root {
    text-align: center;
  }


#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3-root {
    text-align: center;
  }


#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3-root {
    text-align: center;
  }


#s-fa9f6b91-d9eb-44c3-9aa2-b000350feec3.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  block ;
}
}
#s-de7693f2-4b72-4991-97d7-149a86f4d229 {
  min-height: 50px;
}








#s-de7693f2-4b72-4991-97d7-149a86f4d229 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-de7693f2-4b72-4991-97d7-149a86f4d229.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ba99321-a57b-4ac7-990b-a12e03bf6850 {
  min-height: 50px;
}








#s-2ba99321-a57b-4ac7-990b-a12e03bf6850 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ba99321-a57b-4ac7-990b-a12e03bf6850.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e15a2b2-c0bb-43f1-8f3f-5c0c77bbd066 {
  min-height: 50px;
}








#s-4e15a2b2-c0bb-43f1-8f3f-5c0c77bbd066 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e15a2b2-c0bb-43f1-8f3f-5c0c77bbd066.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c8de827-3748-45a2-bc9e-f7d77e8946a5 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4c8de827-3748-45a2-bc9e-f7d77e8946a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c8de827-3748-45a2-bc9e-f7d77e8946a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b9d52682-99e1-48c0-8622-f727402df653 {
  margin-top: 49px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}








#s-b9d52682-99e1-48c0-8622-f727402df653 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9d52682-99e1-48c0-8622-f727402df653.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0aa8207c-8607-41e6-9a21-3883aac824bb {
  text-align: left;
}

#s-0b78c1a7-87ca-47e0-b822-f75ce8a7a760 {
  min-height: 50px;
}








#s-0b78c1a7-87ca-47e0-b822-f75ce8a7a760 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b78c1a7-87ca-47e0-b822-f75ce8a7a760.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-586c2b26-0627-4d05-a8ab-7d6feb28546e {
  text-align: left;
}

#s-a57e8321-4b45-44f5-98c5-6517a634ca83 {
  margin-bottom: 20px;
max-width: 1201px;
aspect-ratio: 1201/81;
text-align: center;
}





  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 img.shogun-image,
  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 {
    width: 100%;
    height: auto;
  }



  img.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
    
    
  }


.s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shg-align-container {
  text-align: center
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 img.shogun-image,
  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 {
    width: 100%;
    height: auto;
  }



  img.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
    
    
  }


.s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shg-align-container {
  text-align: center
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
  box-sizing: border-box;
}


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



  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 img.shogun-image,
  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 {
    width: 100%;
    height: auto;
  }



  img.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
    
    
  }


.s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shg-align-container {
  text-align: center
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
  box-sizing: border-box;
}


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



  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 img.shogun-image,
  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 {
    width: 100%;
    height: auto;
  }



  img.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
    
    
  }


.s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shg-align-container {
  text-align: center
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
  box-sizing: border-box;
}


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



  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 img.shogun-image,
  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a57e8321-4b45-44f5-98c5-6517a634ca83 {
    width: 100%;
    height: auto;
  }



  img.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
    
    
  }


.s-a57e8321-4b45-44f5-98c5-6517a634ca83 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shg-align-container {
  text-align: center
}

.s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57e8321-4b45-44f5-98c5-6517a634ca83.shogun-image {
  box-sizing: border-box;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-c155f19a-ef4b-4848-abeb-f25853fa2bcc {
  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-215ca352-bac7-4b88-aa78-65746d4b3e58 {
  text-align: left;
}



.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-215ca352-bac7-4b88-aa78-65746d4b3e58 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-29e3e930-e893-4e90-af84-51d55a541594 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-29e3e930-e893-4e90-af84-51d55a541594 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-e2a41d05-01ec-4102-9dd7-7b0074b57869 {
  text-align: center;
}

#s-e2a41d05-01ec-4102-9dd7-7b0074b57869 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e2a41d05-01ec-4102-9dd7-7b0074b57869 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-e2a41d05-01ec-4102-9dd7-7b0074b57869 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-06c469ed-cf75-4fc2-bec0-0219bd81aaa3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-91b08942-3584-40c5-9a99-9337a47c8db1 {
  display: none;
}
#s-b1269cf1-b2a8-482e-a112-f88125a33f39 {
  text-align: left;
}



.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1269cf1-b2a8-482e-a112-f88125a33f39 img.shogun-image {
  width: 100%;
}



}
#s-88237af6-0a32-4708-8c02-18852880aaa4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-88237af6-0a32-4708-8c02-18852880aaa4 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-05a3ba10-1a58-4dae-99f4-d725d0640251 {
  text-align: center;
}

#s-05a3ba10-1a58-4dae-99f4-d725d0640251 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-05a3ba10-1a58-4dae-99f4-d725d0640251 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-05a3ba10-1a58-4dae-99f4-d725d0640251 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-400db56c-c299-4ce0-8d3b-320ad9d83f9b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-dea92421-7e72-409c-8931-758a9dfda2fc {
  display: none;
}
#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 {
  text-align: left;
}



.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c433580-15f2-448f-b3dc-054a9b72ebb1 img.shogun-image {
  width: 100%;
}



}
#s-077e3d31-7ca4-46c2-a742-a03384eb9685 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-077e3d31-7ca4-46c2-a742-a03384eb9685 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-00a53a00-55bf-4848-a193-9a7af348bb9f {
  text-align: center;
}

#s-00a53a00-55bf-4848-a193-9a7af348bb9f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-00a53a00-55bf-4848-a193-9a7af348bb9f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-00a53a00-55bf-4848-a193-9a7af348bb9f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c20f53ac-f82d-4963-a16f-74ee9d47432a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c20f53ac-f82d-4963-a16f-74ee9d47432a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c20f53ac-f82d-4963-a16f-74ee9d47432a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c20f53ac-f82d-4963-a16f-74ee9d47432a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c20f53ac-f82d-4963-a16f-74ee9d47432a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c20f53ac-f82d-4963-a16f-74ee9d47432a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c20f53ac-f82d-4963-a16f-74ee9d47432a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7e465346-5528-4ee9-85af-6b010b7e3a55 {
  display: none;
}
#s-8563d811-1b55-4d49-b66d-a98997f0ce75 {
  text-align: left;
}



.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8563d811-1b55-4d49-b66d-a98997f0ce75 img.shogun-image {
  width: 100%;
}



}
#s-df9a12b3-a636-44e2-bdb2-b74466dec734 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df9a12b3-a636-44e2-bdb2-b74466dec734 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-28e46d39-c452-4e06-a1a6-d413f90e03ef {
  text-align: center;
}

#s-28e46d39-c452-4e06-a1a6-d413f90e03ef .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-28e46d39-c452-4e06-a1a6-d413f90e03ef .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-28e46d39-c452-4e06-a1a6-d413f90e03ef .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-48baaa78-3194-4ca3-8316-2ffb26f7e23d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3d6e707c-2e62-460b-9945-472a8371462a {
  display: none;
}
#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 {
  text-align: left;
}



.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b9c1b54-416e-4742-8d02-de99b11c0d43 img.shogun-image {
  width: 100%;
}



}
#s-3c8149e3-4194-43f6-821f-b525ab7c50e6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c8149e3-4194-43f6-821f-b525ab7c50e6 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-e270019e-895f-4d9a-ba3c-733ab4aa04b9 {
  text-align: center;
}

#s-e270019e-895f-4d9a-ba3c-733ab4aa04b9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e270019e-895f-4d9a-ba3c-733ab4aa04b9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-e270019e-895f-4d9a-ba3c-733ab4aa04b9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-3e2b8daf-341f-4d30-9a8a-144a540c04f3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-69e82e5a-009c-4999-a821-e98e0de43720 {
  display: none;
}
#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 {
  text-align: left;
}



.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f06bc256-8e1f-4f7e-b4da-b48b3447b142 img.shogun-image {
  width: 100%;
}



}
#s-530e53e0-cff4-46d5-bf43-5b18040622b9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-530e53e0-cff4-46d5-bf43-5b18040622b9 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-49e4d388-918b-4a9e-a241-9a520fe7e832 {
  text-align: center;
}

#s-49e4d388-918b-4a9e-a241-9a520fe7e832 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-49e4d388-918b-4a9e-a241-9a520fe7e832 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-49e4d388-918b-4a9e-a241-9a520fe7e832 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c362c848-f6cf-4150-ab97-e884d3e6acdd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c362c848-f6cf-4150-ab97-e884d3e6acdd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c362c848-f6cf-4150-ab97-e884d3e6acdd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c362c848-f6cf-4150-ab97-e884d3e6acdd {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c362c848-f6cf-4150-ab97-e884d3e6acdd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c362c848-f6cf-4150-ab97-e884d3e6acdd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c362c848-f6cf-4150-ab97-e884d3e6acdd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3742466e-397a-47f0-9f56-1048f3b57b88 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3742466e-397a-47f0-9f56-1048f3b57b88:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-3742466e-397a-47f0-9f56-1048f3b57b88:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3742466e-397a-47f0-9f56-1048f3b57b88-root {
    text-align: center;
  }


#s-3742466e-397a-47f0-9f56-1048f3b57b88.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3742466e-397a-47f0-9f56-1048f3b57b88-root {
    text-align: center;
  }


#s-3742466e-397a-47f0-9f56-1048f3b57b88.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3742466e-397a-47f0-9f56-1048f3b57b88-root {
    text-align: center;
  }


#s-3742466e-397a-47f0-9f56-1048f3b57b88.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3742466e-397a-47f0-9f56-1048f3b57b88-root {
    text-align: center;
  }


#s-3742466e-397a-47f0-9f56-1048f3b57b88.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3742466e-397a-47f0-9f56-1048f3b57b88-root {
    text-align: center;
  }


#s-3742466e-397a-47f0-9f56-1048f3b57b88.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-614b340d-ad8d-4986-9522-2ead456193e2 {
  min-height: 50px;
}








#s-614b340d-ad8d-4986-9522-2ead456193e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-614b340d-ad8d-4986-9522-2ead456193e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c7dd6891-6d88-4728-a093-06dd1bdd4298 {
  min-height: 50px;
}








#s-c7dd6891-6d88-4728-a093-06dd1bdd4298 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7dd6891-6d88-4728-a093-06dd1bdd4298.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-87ab2afb-5cd2-4cd1-87d6-a9a40ef05445 {
  text-align: left;
}

@media (min-width: 0px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-974dfef5-6948-4def-b18f-7517963d998b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-974dfef5-6948-4def-b18f-7517963d998b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-column, #s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-0c0c30ce-3fa2-4287-b73d-3664c003da72 {
  text-align: center;
}







  img.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
    
    
  }


.s-0c0c30ce-3fa2-4287-b73d-3664c003da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shg-align-container {
  text-align: center
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
    
    
  }


.s-0c0c30ce-3fa2-4287-b73d-3664c003da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shg-align-container {
  text-align: center
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
    
    
  }


.s-0c0c30ce-3fa2-4287-b73d-3664c003da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shg-align-container {
  text-align: center
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
    
    
  }


.s-0c0c30ce-3fa2-4287-b73d-3664c003da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shg-align-container {
  text-align: center
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
    
    
  }


.s-0c0c30ce-3fa2-4287-b73d-3664c003da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shg-align-container {
  text-align: center
}

.s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c0c30ce-3fa2-4287-b73d-3664c003da72.shogun-image {
  box-sizing: border-box;
}


}
#s-883a850e-aba8-4eb4-b708-ecabca69cd8b {
  text-align: center;
}







  img.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
    
    
  }


.s-883a850e-aba8-4eb4-b708-ecabca69cd8b .shogun-image-content {
  
    align-items: center;
  
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shg-align-container {
  text-align: center
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
    
    
  }


.s-883a850e-aba8-4eb4-b708-ecabca69cd8b .shogun-image-content {
  
    align-items: center;
  
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shg-align-container {
  text-align: center
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
    
    
  }


.s-883a850e-aba8-4eb4-b708-ecabca69cd8b .shogun-image-content {
  
    align-items: center;
  
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shg-align-container {
  text-align: center
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
    
    
  }


.s-883a850e-aba8-4eb4-b708-ecabca69cd8b .shogun-image-content {
  
    align-items: center;
  
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shg-align-container {
  text-align: center
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
    
    
  }


.s-883a850e-aba8-4eb4-b708-ecabca69cd8b .shogun-image-content {
  
    align-items: center;
  
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shg-align-container {
  text-align: center
}

.s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-883a850e-aba8-4eb4-b708-ecabca69cd8b.shogun-image {
  box-sizing: border-box;
}


}
#s-b2922f9d-fea9-4f18-9297-b674fa2852cd {
  text-align: left;
}

#s-69e5cf06-3b45-42d8-b7d1-e4002f985422 {
  text-align: left;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-column, #s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-8d8b0258-4af7-4536-b555-2b815e1ac865 {
  text-align: center;
}







  img.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
    
    
  }


.s-8d8b0258-4af7-4536-b555-2b815e1ac865 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shg-align-container {
  text-align: center
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
    
    
  }


.s-8d8b0258-4af7-4536-b555-2b815e1ac865 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shg-align-container {
  text-align: center
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
    
    
  }


.s-8d8b0258-4af7-4536-b555-2b815e1ac865 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shg-align-container {
  text-align: center
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
    
    
  }


.s-8d8b0258-4af7-4536-b555-2b815e1ac865 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shg-align-container {
  text-align: center
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
    
    
  }


.s-8d8b0258-4af7-4536-b555-2b815e1ac865 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shg-align-container {
  text-align: center
}

.s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d8b0258-4af7-4536-b555-2b815e1ac865.shogun-image {
  box-sizing: border-box;
}


}
#s-b96e9fa7-41a9-48bf-8f54-7334f3c95481 {
  text-align: center;
}







  img.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
    
    
  }


.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481 .shogun-image-content {
  
    align-items: center;
  
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shg-align-container {
  text-align: center
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
    
    
  }


.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481 .shogun-image-content {
  
    align-items: center;
  
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shg-align-container {
  text-align: center
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
    
    
  }


.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481 .shogun-image-content {
  
    align-items: center;
  
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shg-align-container {
  text-align: center
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
    
    
  }


.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481 .shogun-image-content {
  
    align-items: center;
  
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shg-align-container {
  text-align: center
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
    
    
  }


.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481 .shogun-image-content {
  
    align-items: center;
  
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shg-align-container {
  text-align: center
}

.s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b96e9fa7-41a9-48bf-8f54-7334f3c95481.shogun-image {
  box-sizing: border-box;
}


}
#s-2e2e9ef6-30d0-472e-8c01-20890f767698 {
  text-align: left;
}

#s-454e3450-4ca5-4040-ad4b-90dfca83ae2e {
  text-align: left;
}

#s-4ed30d3b-8d13-411e-94e8-351549bfd177 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4ed30d3b-8d13-411e-94e8-351549bfd177:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-4ed30d3b-8d13-411e-94e8-351549bfd177:active {background-color: rgba(255, 204, 204, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-d990749a-aade-42a9-937c-b05de135de0c {
  min-height: 50px;
}








#s-d990749a-aade-42a9-937c-b05de135de0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d990749a-aade-42a9-937c-b05de135de0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-94465a24-d288-4f7c-b0f0-93724203482a {
  min-height: 50px;
}








#s-94465a24-d288-4f7c-b0f0-93724203482a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94465a24-d288-4f7c-b0f0-93724203482a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee7e0857-aa0a-4d98-8aa6-beec84098f94 {
  min-height: 50px;
}








#s-ee7e0857-aa0a-4d98-8aa6-beec84098f94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ee7e0857-aa0a-4d98-8aa6-beec84098f94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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