.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-7478af77-007a-4dbc-b6c0-c41ecd3b683e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-7478af77-007a-4dbc-b6c0-c41ecd3b683e {
  display: none;
}
#s-7478af77-007a-4dbc-b6c0-c41ecd3b683e, #wrap-s-7478af77-007a-4dbc-b6c0-c41ecd3b683e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7478af77-007a-4dbc-b6c0-c41ecd3b683e {
  display: none;
}
#s-7478af77-007a-4dbc-b6c0-c41ecd3b683e, #wrap-s-7478af77-007a-4dbc-b6c0-c41ecd3b683e { display: none !important; }}







#s-7478af77-007a-4dbc-b6c0-c41ecd3b683e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7478af77-007a-4dbc-b6c0-c41ecd3b683e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-2fb5a022-0330-4e55-b155-8edb918cd84a {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
max-width: 600px;
text-align: center;
}
@media (min-width: 1200px){#s-2fb5a022-0330-4e55-b155-8edb918cd84a {
  display: none;
}
#s-2fb5a022-0330-4e55-b155-8edb918cd84a, #wrap-s-2fb5a022-0330-4e55-b155-8edb918cd84a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2fb5a022-0330-4e55-b155-8edb918cd84a {
  display: none;
}
#s-2fb5a022-0330-4e55-b155-8edb918cd84a, #wrap-s-2fb5a022-0330-4e55-b155-8edb918cd84a { display: none !important; }}@media (max-width: 767px){#s-2fb5a022-0330-4e55-b155-8edb918cd84a {
  display: none;
}
#s-2fb5a022-0330-4e55-b155-8edb918cd84a, #wrap-s-2fb5a022-0330-4e55-b155-8edb918cd84a { display: none !important; }}






  #s-2fb5a022-0330-4e55-b155-8edb918cd84a img.shogun-image {
    

    
    
    
  }


#s-2fb5a022-0330-4e55-b155-8edb918cd84a .shogun-image-content {
  
    align-items: center;
  
}

#s-131b4032-120b-46dc-b0ec-7e9901ae5497 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 350px;
text-align: center;
}
@media (min-width: 1200px){#s-131b4032-120b-46dc-b0ec-7e9901ae5497 {
  display: none;
}
#s-131b4032-120b-46dc-b0ec-7e9901ae5497, #wrap-s-131b4032-120b-46dc-b0ec-7e9901ae5497 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-131b4032-120b-46dc-b0ec-7e9901ae5497 {
  display: none;
}
#s-131b4032-120b-46dc-b0ec-7e9901ae5497, #wrap-s-131b4032-120b-46dc-b0ec-7e9901ae5497 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-131b4032-120b-46dc-b0ec-7e9901ae5497 {
  display: none;
}
#s-131b4032-120b-46dc-b0ec-7e9901ae5497, #wrap-s-131b4032-120b-46dc-b0ec-7e9901ae5497 { display: none !important; }}






  #s-131b4032-120b-46dc-b0ec-7e9901ae5497 img.shogun-image {
    

    
    
    
  }


#s-131b4032-120b-46dc-b0ec-7e9901ae5497 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-e574893f-7c53-42d3-8f17-08acd8ccf48f {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e574893f-7c53-42d3-8f17-08acd8ccf48f {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}
}
#s-e574893f-7c53-42d3-8f17-08acd8ccf48f .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e574893f-7c53-42d3-8f17-08acd8ccf48f .shg-sld-nav-button.shg-sld-left,
#s-e574893f-7c53-42d3-8f17-08acd8ccf48f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-c8d52949-b5c9-4377-a1bf-77daaa06a01e {
  text-align: center;
}







  #s-c8d52949-b5c9-4377-a1bf-77daaa06a01e img.shogun-image {
    

    
    
    
  }


#s-c8d52949-b5c9-4377-a1bf-77daaa06a01e .shogun-image-content {
  
    align-items: center;
  
}

.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-267fe22e-36a0-4006-8b4d-811319827d40 {
  text-align: left;
}



.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-267fe22e-36a0-4006-8b4d-811319827d40 img.shogun-image {
  width: 100%;
}



}
#s-d1d284e4-aa3b-4771-be25-42cbd7a2f099 {
  text-align: center;
}







  #s-d1d284e4-aa3b-4771-be25-42cbd7a2f099 img.shogun-image {
    

    
    
    
  }


#s-d1d284e4-aa3b-4771-be25-42cbd7a2f099 .shogun-image-content {
  
    align-items: center;
  
}

#s-4b7ebdde-52f8-4b9d-b1f9-8fcb02044ee0 {
  text-align: center;
}







  #s-4b7ebdde-52f8-4b9d-b1f9-8fcb02044ee0 img.shogun-image {
    

    
    
    
  }


#s-4b7ebdde-52f8-4b9d-b1f9-8fcb02044ee0 .shogun-image-content {
  
    align-items: center;
  
}

#s-428ed484-320c-4f84-a25f-f087c5dc790a {
  text-align: center;
}







  #s-428ed484-320c-4f84-a25f-f087c5dc790a img.shogun-image {
    

    
    
    
  }


#s-428ed484-320c-4f84-a25f-f087c5dc790a .shogun-image-content {
  
    align-items: center;
  
}

#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 {
  border-style: solid;
margin-top: 32px;
margin-left: 0px;
margin-bottom: 24px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 233, 235, 1);
text-align: center;
}
@media (min-width: 1200px){#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 {
  
}
}@media (max-width: 767px){#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 {
  
}
}
#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 36px;
  font-weight:  700 ;
  font-family: Saira;
  font-style:  normal ;
}

#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: Saira;
  font-style:  normal ;
  font-size: 36px;
}

#s-91524c02-7be4-4b72-9fae-2c5eaa4f07b9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.32);
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 24px;
  padding-left: 20px;
}

.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-41f06f70-3ba2-4fc4-ad64-2623cc2154b3 {
  border-style: solid;
margin-left: auto;
margin-bottom: 16px;
margin-right: auto;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
max-width: 300px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3:hover {opacity: 1 !important;
background-color: rgba(2, 156, 255, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3:active {background-color: rgba(56, 177, 255, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3 {
  
}
}@media (max-width: 767px){#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3 {
  
}
}


#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-41f06f70-3ba2-4fc4-ad64-2623cc2154b3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b159618a-626e-4d19-9639-3cb6e919f6c4 {
  margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 16px;
padding-bottom: 8px;
padding-right: 16px;
border-radius: 15px;
text-align: center;
background-color: rgba(2, 156, 255, 1);
}
#s-b159618a-626e-4d19-9639-3cb6e919f6c4:hover {background-color: rgba(43, 172, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b159618a-626e-4d19-9639-3cb6e919f6c4:active {background-color: rgba(57, 178, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-b159618a-626e-4d19-9639-3cb6e919f6c4 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b159618a-626e-4d19-9639-3cb6e919f6c4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b159618a-626e-4d19-9639-3cb6e919f6c4.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-b159618a-626e-4d19-9639-3cb6e919f6c4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b159618a-626e-4d19-9639-3cb6e919f6c4.shg-btn.shg-product-atc-success {
    font-weight: normal;
    font-family: Roboto;
    
    font-size: 14px;
    
  }


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

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

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

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

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

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

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

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

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

#s-2f28187e-7455-4d82-a5f8-07f46d99149b {
  margin-top: 10px;
margin-left: 8px;
margin-bottom: 10px;
margin-right: 8px;
text-align: center;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 8px;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-selector-wrapper label {
    color: rgba(0, 0, 0, 1);
    font-weight:  normal ;
    font-family: Roboto;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  




  #s-2f28187e-7455-4d82-a5f8-07f46d99149b-btn-wrapper {
    text-align: center;
  }


#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-variant-btn:hover {
  background: #252525;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-variant-btn:active, #s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-2f28187e-7455-4d82-a5f8-07f46d99149b .shg-variant-btn.disabled {
  background: #252525;
}

#s-159ee415-3585-4151-a8a6-61218e47e96d {
  margin-top: 8px;
margin-left: 8px;
margin-bottom: 0px;
margin-right: 8px;
text-align: center;
}

#s-159ee415-3585-4151-a8a6-61218e47e96d .shg-product-quantity-wrapper {
  display: flex;
}

#s-159ee415-3585-4151-a8a6-61218e47e96d .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-159ee415-3585-4151-a8a6-61218e47e96d .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-159ee415-3585-4151-a8a6-61218e47e96d .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-159ee415-3585-4151-a8a6-61218e47e96d .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-159ee415-3585-4151-a8a6-61218e47e96d label {
    color: rgba(0, 0, 0, 1);
    font-weight:  normal ;
    font-family: Roboto;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-159ee415-3585-4151-a8a6-61218e47e96d label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  


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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 {
  margin-top: 24px;
margin-left: auto;
margin-bottom: 24px;
margin-right: auto;
max-width: 500px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 {
  max-width: 700px;
}
}@media (max-width: 767px){#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 {
  margin-left: auto;
margin-right: auto;
max-width: 450px;
}
}
#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Saira;
  font-weight: 500;
  font-style: ;
  font-size: 16px;
}

#s-d11a3422-7bdb-4f7e-8865-19ea521866a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.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-b5aafdf8-9e32-41d4-b3be-0d419d8b98ce {
  margin-top: 15px;
margin-left: 25px;
margin-bottom: 15px;
margin-right: 25px;
}

#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67 {
  display: none;
}
#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67, #wrap-s-3be47f54-efa5-400a-ade3-e1ef00a1fa67 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67 {
  display: none;
}
#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67, #wrap-s-3be47f54-efa5-400a-ade3-e1ef00a1fa67 { display: none !important; }}







#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3be47f54-efa5-400a-ade3-e1ef00a1fa67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e6233f49-1499-4fae-ba1b-8a1fabecc303 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e6233f49-1499-4fae-ba1b-8a1fabecc303 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6233f49-1499-4fae-ba1b-8a1fabecc303.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

#s-9e0b421b-4eb6-4e7e-8aa8-52da640790fd {
  box-shadow:4px 4px 7px 1px rgba(0, 0, 0, 0);
margin-top: 24px;
margin-left: auto;
margin-bottom: 24px;
margin-right: auto;
border-top-width: 25px;
border-left-width: 25px;
border-bottom-width: 25px;
border-right-width: 25px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 1000px;
}

#s-8a463d01-4622-46d7-9a01-55e97a701e63 {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-8a463d01-4622-46d7-9a01-55e97a701e63 {
  display: none;
}
#s-8a463d01-4622-46d7-9a01-55e97a701e63, #wrap-s-8a463d01-4622-46d7-9a01-55e97a701e63 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8a463d01-4622-46d7-9a01-55e97a701e63 {
  display: none;
}
#s-8a463d01-4622-46d7-9a01-55e97a701e63, #wrap-s-8a463d01-4622-46d7-9a01-55e97a701e63 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8a463d01-4622-46d7-9a01-55e97a701e63 {
  
}
}@media (max-width: 767px){#s-8a463d01-4622-46d7-9a01-55e97a701e63 {
  
}
}







#s-8a463d01-4622-46d7-9a01-55e97a701e63 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a463d01-4622-46d7-9a01-55e97a701e63.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04f8edb4-6e30-4068-a917-d1b3a5528c85 {
  min-height: 50px;
}








#s-04f8edb4-6e30-4068-a917-d1b3a5528c85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04f8edb4-6e30-4068-a917-d1b3a5528c85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-c7f3bdb6-69d9-41c7-86e2-e54b6c15d21a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c7f3bdb6-69d9-41c7-86e2-e54b6c15d21a .shogun-heading-component h1 {
  color: #000;
  font-weight:  100 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-4221d080-03ed-465b-bba2-1771834c7bd2 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1400px;
background-color: rgba(244, 244, 244, 0);
}
@media (min-width: 1200px){#s-4221d080-03ed-465b-bba2-1771834c7bd2 {
  display: none;
}
#s-4221d080-03ed-465b-bba2-1771834c7bd2, #wrap-s-4221d080-03ed-465b-bba2-1771834c7bd2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4221d080-03ed-465b-bba2-1771834c7bd2 {
  display: none;
}
#s-4221d080-03ed-465b-bba2-1771834c7bd2, #wrap-s-4221d080-03ed-465b-bba2-1771834c7bd2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4221d080-03ed-465b-bba2-1771834c7bd2 {
  display: none;
}
#s-4221d080-03ed-465b-bba2-1771834c7bd2, #wrap-s-4221d080-03ed-465b-bba2-1771834c7bd2 { display: none !important; }}@media (max-width: 767px){#s-4221d080-03ed-465b-bba2-1771834c7bd2 {
  display: none;
}
#s-4221d080-03ed-465b-bba2-1771834c7bd2, #wrap-s-4221d080-03ed-465b-bba2-1771834c7bd2 { display: none !important; }}







#s-4221d080-03ed-465b-bba2-1771834c7bd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4221d080-03ed-465b-bba2-1771834c7bd2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c986abf8-7839-43ce-9363-4a1f77dee43b {
  margin-top: 14px;
margin-left: 40px;
margin-bottom: 12px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c986abf8-7839-43ce-9363-4a1f77dee43b .shogun-heading-component h6 {
  color: #000;
  font-weight:  200 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: center;
}



#s-3e6e03e8-771c-4c62-b4b2-d4dd4359e928 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-3e6e03e8-771c-4c62-b4b2-d4dd4359e928 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-3e6e03e8-771c-4c62-b4b2-d4dd4359e928 .shg-sld-nav-button.shg-sld-left,
#s-3e6e03e8-771c-4c62-b4b2-d4dd4359e928 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-623b60ea-7821-4f53-bce5-d64c7fa9502a {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-623b60ea-7821-4f53-bce5-d64c7fa9502a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-623b60ea-7821-4f53-bce5-d64c7fa9502a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9edf80ba-bd06-4e47-a440-bc0dab3f568b {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
}

#s-229c66f3-a2c2-4805-90b6-3d1564e9598c {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-229c66f3-a2c2-4805-90b6-3d1564e9598c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-229c66f3-a2c2-4805-90b6-3d1564e9598c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-5114114e-3be7-4ce6-a078-4c1662753e8b {
  margin-top: 25px;
margin-left: 0px;
margin-bottom: 25px;
margin-right: 0px;
}

#s-c3b948ff-ae22-4bd9-aee8-d8638115a6b7 {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-c3b948ff-ae22-4bd9-aee8-d8638115a6b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3b948ff-ae22-4bd9-aee8-d8638115a6b7.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1792df7a-1575-44b6-9164-4ce2833a0b34 {
  margin-top: 25px;
margin-left: 0px;
margin-bottom: 25px;
margin-right: 0px;
}

#s-4df87cf9-c30a-48cd-9ee5-bfd66acacb1b {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 20px;
padding-bottom: 50px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}








#s-4df87cf9-c30a-48cd-9ee5-bfd66acacb1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4df87cf9-c30a-48cd-9ee5-bfd66acacb1b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0c519e53-9454-42a0-8377-b2bae330e03b {
  margin-top: 25px;
margin-left: 0px;
margin-bottom: 25px;
margin-right: 0px;
}

#s-ead6ecb2-ed04-4c6d-b941-ef058b83652a {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-ead6ecb2-ed04-4c6d-b941-ef058b83652a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ead6ecb2-ed04-4c6d-b941-ef058b83652a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0adabaac-11d2-4012-8ca6-7e8ee8c33800 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-066d01d2-361a-4f48-aed7-a247b22a2faa {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-066d01d2-361a-4f48-aed7-a247b22a2faa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-066d01d2-361a-4f48-aed7-a247b22a2faa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-e0b5c6af-3281-4a4b-945e-7fbb5a558649 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-e0b5c6af-3281-4a4b-945e-7fbb5a558649"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0b5c6af-3281-4a4b-945e-7fbb5a558649"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e0b5c6af-3281-4a4b-945e-7fbb5a558649"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0b5c6af-3281-4a4b-945e-7fbb5a558649"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-e0b5c6af-3281-4a4b-945e-7fbb5a558649"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e20ec2d2-58d0-4d6f-b447-eb8d5ee31130 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 350px;
}








#s-e20ec2d2-58d0-4d6f-b447-eb8d5ee31130 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-e20ec2d2-58d0-4d6f-b447-eb8d5ee31130.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cdc7d91b-468e-4327-9611-d5b962729a45 {
  margin-top: 15px;
margin-left: 30px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-cdc7d91b-468e-4327-9611-d5b962729a45 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-01cf2fe3-f51b-4c51-9680-5e488bd02ae8 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-01cf2fe3-f51b-4c51-9680-5e488bd02ae8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-01cf2fe3-f51b-4c51-9680-5e488bd02ae8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-01cf2fe3-f51b-4c51-9680-5e488bd02ae8 {
  
}
}@media (max-width: 767px){#s-01cf2fe3-f51b-4c51-9680-5e488bd02ae8 {
  
}
}
#s-eefe304d-4743-47cf-9d90-7ae06519dbb0 {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.15);
max-width: 500px;
text-align: center;
opacity: 1;
}







  #s-eefe304d-4743-47cf-9d90-7ae06519dbb0 img.shogun-image {
    

    
    
    
  }


#s-eefe304d-4743-47cf-9d90-7ae06519dbb0 .shogun-image-content {
  
    align-items: center;
  
}

#s-639cdc83-7c46-4d50-8007-ede893f204af {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-639cdc83-7c46-4d50-8007-ede893f204af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-639cdc83-7c46-4d50-8007-ede893f204af.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1cb0da22-1fa4-4be5-9be1-3683b8f8b054 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-1cb0da22-1fa4-4be5-9be1-3683b8f8b054"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1cb0da22-1fa4-4be5-9be1-3683b8f8b054"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1cb0da22-1fa4-4be5-9be1-3683b8f8b054"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1cb0da22-1fa4-4be5-9be1-3683b8f8b054"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f67c123e-bc26-49e8-9212-7dfac1aee27d {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.15);
max-width: 500px;
text-align: center;
}







  #s-f67c123e-bc26-49e8-9212-7dfac1aee27d img.shogun-image {
    

    
    
    
  }


#s-f67c123e-bc26-49e8-9212-7dfac1aee27d .shogun-image-content {
  
    align-items: center;
  
}

#s-651619d3-f0ed-43b5-9d8d-6058fc12ead7 {
  margin-top: 0px;
margin-bottom: 0px;
}








#s-651619d3-f0ed-43b5-9d8d-6058fc12ead7 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-651619d3-f0ed-43b5-9d8d-6058fc12ead7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ad0b6921-a34a-49fa-86ed-cab451932c0d {
  margin-top: 15px;
margin-left: 30px;
margin-bottom: 15px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-ad0b6921-a34a-49fa-86ed-cab451932c0d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ad0b6921-a34a-49fa-86ed-cab451932c0d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ad0b6921-a34a-49fa-86ed-cab451932c0d {
  
}
}@media (max-width: 767px){#s-ad0b6921-a34a-49fa-86ed-cab451932c0d {
  margin-top: 25px;
margin-bottom: 25px;
}
}
#s-ad0b6921-a34a-49fa-86ed-cab451932c0d .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-e55608eb-d825-4ea2-9c95-e7c918c71e99 {
  border-style: solid;
margin-top: 5px;
margin-left: 30px;
margin-bottom: 5px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-e55608eb-d825-4ea2-9c95-e7c918c71e99 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e55608eb-d825-4ea2-9c95-e7c918c71e99 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e55608eb-d825-4ea2-9c95-e7c918c71e99 {
  
}
}@media (max-width: 767px){#s-e55608eb-d825-4ea2-9c95-e7c918c71e99 {
  
}
}
#s-a68be849-8540-44d4-a839-b03cbd44fb37 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-a68be849-8540-44d4-a839-b03cbd44fb37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a68be849-8540-44d4-a839-b03cbd44fb37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c4dc1b37-2081-4ccf-8589-e1f6dd5609f2 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-c4dc1b37-2081-4ccf-8589-e1f6dd5609f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4dc1b37-2081-4ccf-8589-e1f6dd5609f2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c4dc1b37-2081-4ccf-8589-e1f6dd5609f2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4dc1b37-2081-4ccf-8589-e1f6dd5609f2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-c4dc1b37-2081-4ccf-8589-e1f6dd5609f2"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-068679a1-b6be-4836-8823-58b5cfde71e8 {
  margin-top: 0px;
margin-bottom: 0px;
}








#s-068679a1-b6be-4836-8823-58b5cfde71e8 > .shg-box-overlay {
  background-color: rgba(244, 244, 244, 1);
  opacity: 0;
}#s-068679a1-b6be-4836-8823-58b5cfde71e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4caf9fbf-9b76-4711-9934-9b4ca85232f2 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4caf9fbf-9b76-4711-9934-9b4ca85232f2 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-7e6c9f86-e72c-4e26-b4b0-b8e8ee4cba48 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-7e6c9f86-e72c-4e26-b4b0-b8e8ee4cba48 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7e6c9f86-e72c-4e26-b4b0-b8e8ee4cba48 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7e6c9f86-e72c-4e26-b4b0-b8e8ee4cba48 {
  
}
}@media (max-width: 767px){#s-7e6c9f86-e72c-4e26-b4b0-b8e8ee4cba48 {
  
}
}
#s-33e4feed-4f8c-4c2f-b57c-c8cc6fb02390 {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.21);
margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-33e4feed-4f8c-4c2f-b57c-c8cc6fb02390 img.shogun-image {
    

    
    
    
  }


#s-33e4feed-4f8c-4c2f-b57c-c8cc6fb02390 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-80e23f6b-5c6a-46ca-acac-0cdc21eb6151 {
  min-height: 500px;
background-attachment: scroll;
}








#s-80e23f6b-5c6a-46ca-acac-0cdc21eb6151 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80e23f6b-5c6a-46ca-acac-0cdc21eb6151.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3a6064b6-7c8d-4213-91ed-df2908749272 {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-3a6064b6-7c8d-4213-91ed-df2908749272 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a6064b6-7c8d-4213-91ed-df2908749272.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00fd9430-9b63-4ace-a2fc-45f441c496ab {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-00fd9430-9b63-4ace-a2fc-45f441c496ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00fd9430-9b63-4ace-a2fc-45f441c496ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-00fd9430-9b63-4ace-a2fc-45f441c496ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-00fd9430-9b63-4ace-a2fc-45f441c496ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-18ac3aa1-ac0d-4ff7-9d6d-8e4067fd9e3c {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.15);
max-width: 500px;
text-align: center;
}







  #s-18ac3aa1-ac0d-4ff7-9d6d-8e4067fd9e3c img.shogun-image {
    

    
    
    
  }


#s-18ac3aa1-ac0d-4ff7-9d6d-8e4067fd9e3c .shogun-image-content {
  
    align-items: center;
  
}

#s-581a3a6a-022f-423d-a4fc-f8e1089d1ed5 {
  margin-top: 0px;
margin-bottom: 0px;
}








#s-581a3a6a-022f-423d-a4fc-f8e1089d1ed5 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-581a3a6a-022f-423d-a4fc-f8e1089d1ed5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d3f2d2b-b346-4385-859c-002546905325 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-9d3f2d2b-b346-4385-859c-002546905325 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9d3f2d2b-b346-4385-859c-002546905325 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9d3f2d2b-b346-4385-859c-002546905325 {
  
}
}@media (max-width: 767px){#s-9d3f2d2b-b346-4385-859c-002546905325 {
  margin-top: 25px;
margin-bottom: 25px;
}
}
#s-9d3f2d2b-b346-4385-859c-002546905325 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-10176545-862f-4e04-9467-40f939717330 {
  border-style: solid;
margin-top: 5px;
margin-left: 30px;
margin-bottom: 5px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-10176545-862f-4e04-9467-40f939717330 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-10176545-862f-4e04-9467-40f939717330 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-10176545-862f-4e04-9467-40f939717330 {
  
}
}@media (max-width: 767px){#s-10176545-862f-4e04-9467-40f939717330 {
  
}
}
#s-b2d2e774-a8d4-4371-8609-1a079a98de07 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-b2d2e774-a8d4-4371-8609-1a079a98de07 {
  display: none;
}
#s-b2d2e774-a8d4-4371-8609-1a079a98de07, #wrap-s-b2d2e774-a8d4-4371-8609-1a079a98de07 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b2d2e774-a8d4-4371-8609-1a079a98de07 {
  display: none;
}
#s-b2d2e774-a8d4-4371-8609-1a079a98de07, #wrap-s-b2d2e774-a8d4-4371-8609-1a079a98de07 { display: none !important; }}







#s-b2d2e774-a8d4-4371-8609-1a079a98de07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2d2e774-a8d4-4371-8609-1a079a98de07.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-ab63849f-1862-4282-8d60-a05ed3d138f6 hr {
  border-top: 2px solid #ddd;
}

#s-befde7f2-2247-48a7-bce7-1856613b7736 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-befde7f2-2247-48a7-bce7-1856613b7736 {
  display: none;
}
#s-befde7f2-2247-48a7-bce7-1856613b7736, #wrap-s-befde7f2-2247-48a7-bce7-1856613b7736 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-befde7f2-2247-48a7-bce7-1856613b7736 {
  display: none;
}
#s-befde7f2-2247-48a7-bce7-1856613b7736, #wrap-s-befde7f2-2247-48a7-bce7-1856613b7736 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-befde7f2-2247-48a7-bce7-1856613b7736 {
  display: none;
}
#s-befde7f2-2247-48a7-bce7-1856613b7736, #wrap-s-befde7f2-2247-48a7-bce7-1856613b7736 { display: none !important; }}
#s-befde7f2-2247-48a7-bce7-1856613b7736 .shogun-heading-component h1 {
  color: #000;
  font-weight:  100 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 29px;
  
  
  
}



#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 {
  display: none;
}
#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40, #wrap-s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 {
  display: none;
}
#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40, #wrap-s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 { display: none !important; }}@media (max-width: 767px){#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 {
  display: none;
}
#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40, #wrap-s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 { display: none !important; }}
#s-a6cd2cc1-b116-4d8b-90c4-abd836236f40 .shogun-heading-component h1 {
  color: #000;
  font-weight:  100 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



#s-e1db0558-a029-428d-b2d8-7f6aea797b26 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e1db0558-a029-428d-b2d8-7f6aea797b26 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e1db0558-a029-428d-b2d8-7f6aea797b26 .shg-sld-nav-button.shg-sld-left,
#s-e1db0558-a029-428d-b2d8-7f6aea797b26 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e8f0f710-2f69-4d3c-95c2-ba6dab52df53 {
  text-align: center;
}







  #s-e8f0f710-2f69-4d3c-95c2-ba6dab52df53 img.shogun-image {
    

    
    
    
  }


#s-e8f0f710-2f69-4d3c-95c2-ba6dab52df53 .shogun-image-content {
  
    align-items: center;
  
}

#s-c07a1bca-32d7-4104-814a-40c64491a77a {
  text-align: center;
}







  #s-c07a1bca-32d7-4104-814a-40c64491a77a img.shogun-image {
    

    
    
    
  }


#s-c07a1bca-32d7-4104-814a-40c64491a77a .shogun-image-content {
  
    align-items: center;
  
}

#s-d05074d1-d8e1-4838-8ee1-c52b3c4edd68 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-d05074d1-d8e1-4838-8ee1-c52b3c4edd68 img.shogun-image {
    

    
    
    
  }


#s-d05074d1-d8e1-4838-8ee1-c52b3c4edd68 .shogun-image-content {
  
    align-items: center;
  
}

#s-737536a1-b3e9-435e-b8d0-c669eb57b08f {
  margin-top: 24px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
opacity: 1;
}
@media (min-width: 1200px){#s-737536a1-b3e9-435e-b8d0-c669eb57b08f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-737536a1-b3e9-435e-b8d0-c669eb57b08f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-737536a1-b3e9-435e-b8d0-c669eb57b08f {
  
}
}@media (max-width: 767px){#s-737536a1-b3e9-435e-b8d0-c669eb57b08f {
  
}
}
#s-80405093-207b-4e39-b75d-078058b997bc {
  margin-top: 24px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
opacity: 1;
}
@media (min-width: 1200px){#s-80405093-207b-4e39-b75d-078058b997bc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-80405093-207b-4e39-b75d-078058b997bc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-80405093-207b-4e39-b75d-078058b997bc {
  
}
}@media (max-width: 767px){#s-80405093-207b-4e39-b75d-078058b997bc {
  
}
}
#s-d7ff3cbd-6f04-4de0-a5b6-a9e892f2d230 {
  margin-top: 24px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
opacity: 1;
}
@media (min-width: 1200px){#s-d7ff3cbd-6f04-4de0-a5b6-a9e892f2d230 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d7ff3cbd-6f04-4de0-a5b6-a9e892f2d230 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d7ff3cbd-6f04-4de0-a5b6-a9e892f2d230 {
  
}
}@media (max-width: 767px){#s-d7ff3cbd-6f04-4de0-a5b6-a9e892f2d230 {
  
}
}
#s-42ce700f-3095-483a-8c9f-7667512b561b {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-42ce700f-3095-483a-8c9f-7667512b561b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42ce700f-3095-483a-8c9f-7667512b561b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aab5f9a0-c3d2-4ce0-9723-6f6f762d2501 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-aab5f9a0-c3d2-4ce0-9723-6f6f762d2501 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aab5f9a0-c3d2-4ce0-9723-6f6f762d2501 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aab5f9a0-c3d2-4ce0-9723-6f6f762d2501 {
  
}
}@media (max-width: 767px){#s-aab5f9a0-c3d2-4ce0-9723-6f6f762d2501 {
  
}
}
#s-876f0103-9475-4c96-ba8b-a7df5a8e4994 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-876f0103-9475-4c96-ba8b-a7df5a8e4994 {
  display: none;
}
#s-876f0103-9475-4c96-ba8b-a7df5a8e4994, #wrap-s-876f0103-9475-4c96-ba8b-a7df5a8e4994 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-876f0103-9475-4c96-ba8b-a7df5a8e4994 {
  display: none;
}
#s-876f0103-9475-4c96-ba8b-a7df5a8e4994, #wrap-s-876f0103-9475-4c96-ba8b-a7df5a8e4994 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-876f0103-9475-4c96-ba8b-a7df5a8e4994 {
  display: none;
}
#s-876f0103-9475-4c96-ba8b-a7df5a8e4994, #wrap-s-876f0103-9475-4c96-ba8b-a7df5a8e4994 { display: none !important; }}
#s-876f0103-9475-4c96-ba8b-a7df5a8e4994 .shogun-heading-component h1 {
  color: #000;
  font-weight:  100 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 31px;
  
  
  
}



#s-360a74f6-5510-4d03-9283-9897c12735b7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-360a74f6-5510-4d03-9283-9897c12735b7 {
  display: none;
}
#s-360a74f6-5510-4d03-9283-9897c12735b7, #wrap-s-360a74f6-5510-4d03-9283-9897c12735b7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-360a74f6-5510-4d03-9283-9897c12735b7 {
  display: none;
}
#s-360a74f6-5510-4d03-9283-9897c12735b7, #wrap-s-360a74f6-5510-4d03-9283-9897c12735b7 { display: none !important; }}@media (max-width: 767px){#s-360a74f6-5510-4d03-9283-9897c12735b7 {
  display: none;
}
#s-360a74f6-5510-4d03-9283-9897c12735b7, #wrap-s-360a74f6-5510-4d03-9283-9897c12735b7 { display: none !important; }}
#s-360a74f6-5510-4d03-9283-9897c12735b7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  100 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-7026fb1b-5125-4733-a683-ed28250133c2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-7026fb1b-5125-4733-a683-ed28250133c2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7026fb1b-5125-4733-a683-ed28250133c2 .shg-sld-nav-button.shg-sld-left,
#s-7026fb1b-5125-4733-a683-ed28250133c2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-aea870f4-c3ac-4289-84e2-9afb9f3223be {
  text-align: center;
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be {
  max-width:  100%;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom,
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be {
  max-width:  100%;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom,
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be {
  max-width:  100%;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom,
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be {
  max-width:  100%;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom,
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be {
  max-width:  100%;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom,
.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aea870f4-c3ac-4289-84e2-9afb9f3223be 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-10f476a2-76cd-4e30-b572-242f60e90868 {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-10f476a2-76cd-4e30-b572-242f60e90868 .shg-product-title-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-79d64854-68bd-408b-b519-0cbc88506475 {
  text-align: center;
}

#s-79d64854-68bd-408b-b519-0cbc88506475 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
}

#s-79d64854-68bd-408b-b519-0cbc88506475 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
  font-size: 16px;
}

#s-79d64854-68bd-408b-b519-0cbc88506475 .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-ba4f8490-ced7-4d92-869d-ceaee1e741ad {
  border-style: solid;
margin-top: 8px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad {
  
}
}@media (max-width: 767px){#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad {
  
}
}


#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-ba4f8490-ced7-4d92-869d-ceaee1e741ad.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 {
  text-align: center;
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 {
  max-width:  100%;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom,
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 {
  max-width:  100%;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom,
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 {
  max-width:  100%;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom,
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 {
  max-width:  100%;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom,
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 {
  max-width:  100%;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom,
.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40e324e3-6f68-4cae-b0d4-e0d3ac1f2252 img.shogun-image {
  width: 100%;
}



}
#s-5c6d82f0-b426-4e45-877f-885af6103578 {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5c6d82f0-b426-4e45-877f-885af6103578 .shg-product-title-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-2b26d3f4-e6ca-4399-87fd-6f48cb6a0a06 {
  text-align: center;
}

#s-2b26d3f4-e6ca-4399-87fd-6f48cb6a0a06 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
}

#s-2b26d3f4-e6ca-4399-87fd-6f48cb6a0a06 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
  font-size: 16px;
}

#s-2b26d3f4-e6ca-4399-87fd-6f48cb6a0a06 .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-34a07ec7-0569-4de1-911b-7dc6040e8b11 {
  border-style: solid;
margin-top: 8px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-34a07ec7-0569-4de1-911b-7dc6040e8b11:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-34a07ec7-0569-4de1-911b-7dc6040e8b11:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-34a07ec7-0569-4de1-911b-7dc6040e8b11 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-34a07ec7-0569-4de1-911b-7dc6040e8b11 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-34a07ec7-0569-4de1-911b-7dc6040e8b11 {
  
}
}@media (max-width: 767px){#s-34a07ec7-0569-4de1-911b-7dc6040e8b11 {
  
}
}


#s-34a07ec7-0569-4de1-911b-7dc6040e8b11 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-34a07ec7-0569-4de1-911b-7dc6040e8b11.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-34a07ec7-0569-4de1-911b-7dc6040e8b11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-34a07ec7-0569-4de1-911b-7dc6040e8b11.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7f56fb83-38c4-41a7-816f-313da903e720 {
  text-align: center;
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 {
  max-width:  100%;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom,
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 {
  max-width:  100%;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom,
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 {
  max-width:  100%;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom,
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 {
  max-width:  100%;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom,
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 {
  max-width:  100%;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom,
.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7f56fb83-38c4-41a7-816f-313da903e720 img.shogun-image {
  width: 100%;
}



}
#s-4e6d0150-7608-439a-b958-2d67c2d654fe {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4e6d0150-7608-439a-b958-2d67c2d654fe .shg-product-title-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-99067b54-1d44-4c98-ab3e-e56d995a8b3e {
  text-align: center;
}

#s-99067b54-1d44-4c98-ab3e-e56d995a8b3e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
}

#s-99067b54-1d44-4c98-ab3e-e56d995a8b3e .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
  font-size: 16px;
}

#s-99067b54-1d44-4c98-ab3e-e56d995a8b3e .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-82c38fa9-26f5-4c22-9a76-69e06e8f3290 {
  border-style: solid;
margin-top: 8px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290 {
  
}
}@media (max-width: 767px){#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290 {
  
}
}


#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-82c38fa9-26f5-4c22-9a76-69e06e8f3290.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 {
  min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 {
  display: none;
}
#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8, #wrap-s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 { display: none !important; }}@media (max-width: 767px){#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 {
  display: none;
}
#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8, #wrap-s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 { display: none !important; }}







#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ddd7b85-92dc-421c-8c4c-f5efad6703b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 {
  display: none;
}
#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5, #wrap-s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 {
  display: none;
}
#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5, #wrap-s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 { display: none !important; }}@media (max-width: 767px){#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 {
  display: none;
}
#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5, #wrap-s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 { display: none !important; }}







#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c5de7b4-9b15-4eb5-a2d3-6fe5a56a2af5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1834a99-c427-4577-9611-8e7037cbb8eb {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e1834a99-c427-4577-9611-8e7037cbb8eb {
  display: none;
}
#s-e1834a99-c427-4577-9611-8e7037cbb8eb, #wrap-s-e1834a99-c427-4577-9611-8e7037cbb8eb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e1834a99-c427-4577-9611-8e7037cbb8eb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e1834a99-c427-4577-9611-8e7037cbb8eb {
  display: none;
}
#s-e1834a99-c427-4577-9611-8e7037cbb8eb, #wrap-s-e1834a99-c427-4577-9611-8e7037cbb8eb { display: none !important; }}@media (max-width: 767px){#s-e1834a99-c427-4577-9611-8e7037cbb8eb {
  display: none;
}
#s-e1834a99-c427-4577-9611-8e7037cbb8eb, #wrap-s-e1834a99-c427-4577-9611-8e7037cbb8eb { display: none !important; }}







#s-e1834a99-c427-4577-9611-8e7037cbb8eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1834a99-c427-4577-9611-8e7037cbb8eb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5b2f73e-985a-47b6-88f8-8d313dbf9264 {
  min-height: 50px;
}








#s-c5b2f73e-985a-47b6-88f8-8d313dbf9264 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5b2f73e-985a-47b6-88f8-8d313dbf9264.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20b22934-3ec7-4d73-85b6-201ccac45b60 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-20b22934-3ec7-4d73-85b6-201ccac45b60 {
  display: none;
}
#s-20b22934-3ec7-4d73-85b6-201ccac45b60, #wrap-s-20b22934-3ec7-4d73-85b6-201ccac45b60 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-20b22934-3ec7-4d73-85b6-201ccac45b60 {
  display: none;
}
#s-20b22934-3ec7-4d73-85b6-201ccac45b60, #wrap-s-20b22934-3ec7-4d73-85b6-201ccac45b60 { display: none !important; }}@media (max-width: 767px){#s-20b22934-3ec7-4d73-85b6-201ccac45b60 {
  display: none;
}
#s-20b22934-3ec7-4d73-85b6-201ccac45b60, #wrap-s-20b22934-3ec7-4d73-85b6-201ccac45b60 { display: none !important; }}







#s-20b22934-3ec7-4d73-85b6-201ccac45b60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20b22934-3ec7-4d73-85b6-201ccac45b60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6 {
  margin-left: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-73c7f8c1-a2ee-416c-b566-5e8695f4ade6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

.shg-gallery-root {
}

.shg-gallery-arrows-container {
  display: flex;
  align-items: center;
  position: relative;
}

.shg-gallery-dots-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.shg-gallery-scroll-container {
  position: relative;
}

.shg-gallery-thumb-list {
  display: flex;
  flex-wrap: wrap;
}

.shg-gallery-thumb-image {
  max-width: 100%;
  display: inline-block;
  cursor: pointer;
}

.shg-gallery-thumb-image:hover {
  opacity: 0.6;
}

.shg-gallery-thumb-image-square {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.shg-gallery-image-hidden {
  display: none;
}

.shg-gallery-scroll-button {
  position: absolute;
  width: 3%;
  max-width: 48px;
  max-height: 48px;
}

.shg-left {
  left: 0;
  margin-left: 1%;
}

.shg-right {
  right: 0;
  margin-right: 1%;
}

.shg-gallery-dot {
  height: 14px;
  width: 14px;
  opacity: 0.5;
  border-radius: 100%;
  margin: 0 8px;
}

.shg-selected {
  opacity: 1;
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda {
  padding-top: 0px;
padding-bottom: 0px;
max-width: 80px;
text-align: left;
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 100.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda .shg-gallery-scroll-button {
  color: #FFF;
}

#s-3d53829e-facc-445e-b78f-9a0d6de72dda .shg-gallery-dot {
  background-color: #FFF;
}

#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd {
  margin-top: 25px;
margin-bottom: 25px;
text-align: center;
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd {
  max-width:  100%;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom,
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd {
  max-width:  100%;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom,
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd {
  max-width:  100%;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom,
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd {
  max-width:  100%;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom,
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd {
  max-width:  100%;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom,
.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad2f558c-4237-4276-accb-ffe5b2da7ebd img.shogun-image {
  width: 100%;
}



}
#s-f89c410b-f75e-41a0-a37e-4f15eaede8d4 {
  margin-top: 1px;
margin-left: auto;
margin-bottom: 1px;
margin-right: auto;
max-width: 400px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f89c410b-f75e-41a0-a37e-4f15eaede8d4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f89c410b-f75e-41a0-a37e-4f15eaede8d4 {
  display: none;
}
#s-f89c410b-f75e-41a0-a37e-4f15eaede8d4, #wrap-s-f89c410b-f75e-41a0-a37e-4f15eaede8d4 { display: none !important; }}@media (max-width: 767px){#s-f89c410b-f75e-41a0-a37e-4f15eaede8d4 {
  display: none;
}
#s-f89c410b-f75e-41a0-a37e-4f15eaede8d4, #wrap-s-f89c410b-f75e-41a0-a37e-4f15eaede8d4 { display: none !important; }}
#s-52be6700-04db-4daf-9a49-4ae415eff667 {
  margin-left: auto;
margin-right: auto;
max-width: 370px;
text-align: center;
}







  #s-52be6700-04db-4daf-9a49-4ae415eff667 img.shogun-image {
    

    
    
    
  }


#s-52be6700-04db-4daf-9a49-4ae415eff667 .shogun-image-content {
  
    align-items: center;
  
}

#s-4111993c-fd5c-49a6-88c9-061682f59584 {
  margin-top: -20px;
margin-bottom: -20px;
}

#s-4111993c-fd5c-49a6-88c9-061682f59584 hr {
  border-top: 1px solid #ddd;
}

#s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7 {
  margin-top: 0px;
}

@media (min-width: 0px) {
[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7c3ae437-eb46-4f3b-9470-4f1d22d3a4e7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

}

#s-426c7c73-c883-4cb9-870c-e710f67adda1 {
  min-height: 0px;
}








#s-426c7c73-c883-4cb9-870c-e710f67adda1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-426c7c73-c883-4cb9-870c-e710f67adda1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 {
  border-style: solid;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 233, 235, 1);
min-height: 10px;
max-width: 300px;
text-align: center;
}
@media (min-width: 1200px){#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 {
  
}
}@media (max-width: 767px){#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 {
  
}
}
#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 1.2em;
  font-weight:  600 ;
  font-family: Roboto Slab;
  font-style:  normal ;
}

#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Roboto Slab;
  font-style:  normal ;
  font-size: 1.2em;
}

#s-c94d089c-63f6-48e0-b9a4-d0ed3dc6ffe1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.32);
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 24px;
  padding-left: 20px;
}








#s-19cf6077-eedd-4d0e-aee5-38d376c64674 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-19cf6077-eedd-4d0e-aee5-38d376c64674.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b0b930c-38fe-4731-92ce-06c22a96fc9b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 300px;
text-align: left;
}

#s-7b0b930c-38fe-4731-92ce-06c22a96fc9b .shogun-heading-component h1 {
  color: rgba(137, 134, 134, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 0.9em;
  
  
  text-align: left;
}



#s-04459df3-ed0e-4aa8-9319-66594050b099 {
  margin-top: -20px;
margin-bottom: -20px;
}

#s-04459df3-ed0e-4aa8-9319-66594050b099 hr {
  border-top: 1px solid #ddd;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad {
  margin-top: auto;
margin-bottom: auto;
min-height: 50px;
text-align: center;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 8px;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-selector-wrapper label {
    color: rgba(0, 0, 0, 1);
    font-weight:  normal ;
    font-family: Roboto;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  




  #s-7e84a901-0530-44e8-8c68-65f613f191ad-btn-wrapper {
    text-align: center;
  }


#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-variant-btn:hover {
  background: #252525;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-variant-btn:active, #s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-7e84a901-0530-44e8-8c68-65f613f191ad .shg-variant-btn.disabled {
  background: #252525;
}

#s-46b9ddb8-0a5f-4b00-b73f-83d5811b3ba1 {
  margin-bottom: -11px;
}

#s-46b9ddb8-0a5f-4b00-b73f-83d5811b3ba1 hr {
  border-top: 1px solid #ddd;
}

#s-bc08bc21-d81a-49f0-af37-302de2f2f5ee {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 70px;
max-width: 200px;
text-align: center;
}

#s-bc08bc21-d81a-49f0-af37-302de2f2f5ee .shg-product-quantity-wrapper {
  display: flex;
}

#s-bc08bc21-d81a-49f0-af37-302de2f2f5ee .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-bc08bc21-d81a-49f0-af37-302de2f2f5ee .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-bc08bc21-d81a-49f0-af37-302de2f2f5ee .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-bc08bc21-d81a-49f0-af37-302de2f2f5ee .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-bc08bc21-d81a-49f0-af37-302de2f2f5ee label {
    color: rgba(0, 0, 0, 1);
    font-weight:  normal ;
    font-family: Roboto;
    font-style:  normal ;
    font-size: 16px;
  }

  
    #s-bc08bc21-d81a-49f0-af37-302de2f2f5ee label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  


#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 3px;
padding-left: 0px;
padding-bottom: 3px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de {
  
}
}@media (max-width: 767px){#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de {
  
}
}


#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 21px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-55e2747c-c85f-46c4-ad8f-73d1f4a491de.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-baad3500-0db8-49d5-b723-74d0d2bc67ed {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-left: 16px;
padding-bottom: 5px;
padding-right: 16px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 15px;
text-align: center;
background-color: rgba(2, 156, 255, 0);
background-image: none;
hover-type: color;
color: rgba(9, 9, 9, 1);
}
#s-baad3500-0db8-49d5-b723-74d0d2bc67ed:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(90, 181, 246, 1) !important;}#s-baad3500-0db8-49d5-b723-74d0d2bc67ed:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
background-color: rgba(230, 230, 230, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(90, 181, 246, 1) !important;}


#s-baad3500-0db8-49d5-b723-74d0d2bc67ed {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-baad3500-0db8-49d5-b723-74d0d2bc67ed.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-baad3500-0db8-49d5-b723-74d0d2bc67ed.shg-btn {
  color: rgba(9, 9, 9, 1);
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-baad3500-0db8-49d5-b723-74d0d2bc67ed.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-baad3500-0db8-49d5-b723-74d0d2bc67ed.shg-btn.shg-product-atc-success {
    font-weight: normal;
    font-family: Roboto;
    
    font-size: 17px;
    
  }


#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 400px;
}

#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(194, 194, 194, 1);
}

#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(194, 194, 194, 1);
}

#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-03f4ec34-d80a-44c2-8ab5-467edc1620b4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 13px;
}
#s-ce82b75e-c147-4503-b14c-f6730de4e0f8 {
  margin-left: 5px;
margin-right: 5px;
}

#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20 {
  display: none;
}
#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20, #wrap-s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20 { display: none !important; }}@media (max-width: 767px){#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20 {
  display: none;
}
#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20, #wrap-s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20 { display: none !important; }}







#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c2d2b72-0008-4bfd-8309-4c4bb7dd5e20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c62ebe64-447a-4722-a803-ef0b1c3d267f {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-c62ebe64-447a-4722-a803-ef0b1c3d267f {
  display: none;
}
#s-c62ebe64-447a-4722-a803-ef0b1c3d267f, #wrap-s-c62ebe64-447a-4722-a803-ef0b1c3d267f { display: none !important; }}@media (max-width: 767px){#s-c62ebe64-447a-4722-a803-ef0b1c3d267f {
  display: none;
}
#s-c62ebe64-447a-4722-a803-ef0b1c3d267f, #wrap-s-c62ebe64-447a-4722-a803-ef0b1c3d267f { display: none !important; }}







#s-c62ebe64-447a-4722-a803-ef0b1c3d267f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c62ebe64-447a-4722-a803-ef0b1c3d267f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 {
  display: none;
}
#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6, #wrap-s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 {
  display: none;
}
#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6, #wrap-s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 { display: none !important; }}@media (max-width: 767px){#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 {
  display: none;
}
#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6, #wrap-s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 { display: none !important; }}







#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9edae0b5-8fae-4dab-bd5d-aeee4ff3d6c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a3ded90d-fd94-4ef4-8112-a84294281673 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
min-height: 600px;
max-width: 1200px;
background-color: rgba(255, 255, 255, 1);
}








#s-a3ded90d-fd94-4ef4-8112-a84294281673 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a3ded90d-fd94-4ef4-8112-a84294281673.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393 {
  margin-left: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-c441c6a1-f32d-4b0f-9c26-e3847b8ee393"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 {
  padding-top: 0px;
padding-bottom: 0px;
max-width: 75px;
text-align: left;
}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 100.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-ce65d3b7-4000-40b7-82dc-61770a2427d1 .shg-gallery-dot {
  background-color: #FFF;
}

#s-32bd054f-0052-4fae-b141-298f0290800d {
  margin-top: 25px;
margin-bottom: 25px;
text-align: center;
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d {
  max-width:  100%;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom,
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d {
  max-width:  100%;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom,
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d {
  max-width:  100%;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom,
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d {
  max-width:  100%;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom,
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d {
  max-width:  100%;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom,
.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  max-width: 450px !important;
  min-height: 300px !important;
}

.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32bd054f-0052-4fae-b141-298f0290800d img.shogun-image {
  width: 100%;
}



}
#s-cc1cca44-e235-4af9-8818-9c023a746518 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-cc1cca44-e235-4af9-8818-9c023a746518 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cc1cca44-e235-4af9-8818-9c023a746518 {
  display: none;
}
#s-cc1cca44-e235-4af9-8818-9c023a746518, #wrap-s-cc1cca44-e235-4af9-8818-9c023a746518 { display: none !important; }}@media (max-width: 767px){#s-cc1cca44-e235-4af9-8818-9c023a746518 {
  display: none;
}
#s-cc1cca44-e235-4af9-8818-9c023a746518, #wrap-s-cc1cca44-e235-4af9-8818-9c023a746518 { display: none !important; }}
#s-536ea321-c143-40b3-9e11-68d657f4548f {
  margin-left: auto;
margin-right: auto;
max-width: 370px;
text-align: center;
}







  #s-536ea321-c143-40b3-9e11-68d657f4548f img.shogun-image {
    

    
    
    
  }


#s-536ea321-c143-40b3-9e11-68d657f4548f .shogun-image-content {
  
    align-items: center;
  
}

#s-0c3f5836-f031-452b-9098-5e4632c2307d {
  margin-top: -20px;
margin-bottom: -20px;
}

#s-0c3f5836-f031-452b-9098-5e4632c2307d hr {
  border-top: 1px solid #ddd;
}

#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 233, 235, 1);
text-align: center;
}
@media (min-width: 1200px){#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 {
  
}
}@media (max-width: 767px){#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 {
  
}
}
#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  font-weight:  600 ;
  font-family: Roboto Slab;
  font-style:  normal ;
}

#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Roboto Slab;
  font-style:  normal ;
  font-size: 24px;
}

#s-6dcb6ba0-c2b2-4386-849c-48bdaa773897 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.32);
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 24px;
  padding-left: 20px;
}

#s-da4bb8c4-bdaf-4808-a327-6c7c0d6e16f4 {
  margin-left: -7px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-da4bb8c4-bdaf-4808-a327-6c7c0d6e16f4 .shogun-heading-component h1 {
  color: rgba(137, 134, 134, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 0.9em;
  
  
  text-align: center;
}



#s-810d5e05-90f0-4775-80b0-0c8979916c7e {
  margin-top: -25px;
margin-bottom: -20px;
}

#s-810d5e05-90f0-4775-80b0-0c8979916c7e hr {
  border-top: 1px solid #ddd;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 {
  margin-top: auto;
margin-bottom: auto;
text-align: center;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: column;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-top: 12px;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-de5b4010-b667-42c9-ada1-1f6ab900a7e1-btn-wrapper {
    text-align: center;
  }


#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-variant-btn:hover {
  background: #252525;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-variant-btn:active, #s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-de5b4010-b667-42c9-ada1-1f6ab900a7e1 .shg-variant-btn.disabled {
  background: #252525;
}

#s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 70px;
max-width: 200px;
text-align: center;
}

#s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 .shg-product-quantity-wrapper {
  display: flex;
}

#s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 label {
    color: rgba(0, 0, 0, 1);
    font-weight:  normal ;
    font-family: Roboto;
    font-style:  normal ;
    font-size: 13px;
  }

  
    #s-c6c7d3ef-7873-4941-84a3-e7557fc5de72 label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  


#s-b2a8d961-96c7-4022-a46b-f5ae24f12228 {
  border-style: solid;
margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 3px;
padding-left: 0px;
padding-bottom: 3px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-b2a8d961-96c7-4022-a46b-f5ae24f12228:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-b2a8d961-96c7-4022-a46b-f5ae24f12228:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-b2a8d961-96c7-4022-a46b-f5ae24f12228 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b2a8d961-96c7-4022-a46b-f5ae24f12228 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b2a8d961-96c7-4022-a46b-f5ae24f12228 {
  
}
}@media (max-width: 767px){#s-b2a8d961-96c7-4022-a46b-f5ae24f12228 {
  
}
}


#s-b2a8d961-96c7-4022-a46b-f5ae24f12228 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b2a8d961-96c7-4022-a46b-f5ae24f12228.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b2a8d961-96c7-4022-a46b-f5ae24f12228.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 21px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-b2a8d961-96c7-4022-a46b-f5ae24f12228.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 15px;
text-align: center;
background-color: rgba(2, 156, 255, 0);
background-image: none;
hover-type: color;
color: rgba(9, 9, 9, 1);
}
#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(90, 181, 246, 1) !important;}#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
background-color: rgba(230, 230, 230, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(90, 181, 246, 1) !important;}


#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0.shg-btn {
  color: rgba(9, 9, 9, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-6ec5b215-a193-4528-8afe-f479cc8ee9c0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-6ec5b215-a193-4528-8afe-f479cc8ee9c0.shg-btn.shg-product-atc-success {
    font-weight: normal;
    font-family: Roboto;
    
    font-size: 14px;
    
  }


#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 400px;
}

#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(194, 194, 194, 1);
}

#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(194, 194, 194, 1);
}

#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-71e00731-aef3-4a13-a6a7-c7728c6f1a0e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 13px;
}
#s-96907ce0-0cbc-4988-8220-444e457456b0 {
  min-height: 50px;
}








#s-96907ce0-0cbc-4988-8220-444e457456b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96907ce0-0cbc-4988-8220-444e457456b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f8c9031-95ad-49c4-8800-5b3e71139d0e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3f8c9031-95ad-49c4-8800-5b3e71139d0e .shogun-heading-component h1 {
  color: #000;
  font-weight:  100 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



#s-366a8c08-912a-4461-8270-f6bb1fae40ee {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1400px;
background-color: rgba(244, 244, 244, 0);
}
@media (min-width: 1200px){#s-366a8c08-912a-4461-8270-f6bb1fae40ee {
  display: none;
}
#s-366a8c08-912a-4461-8270-f6bb1fae40ee, #wrap-s-366a8c08-912a-4461-8270-f6bb1fae40ee { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-366a8c08-912a-4461-8270-f6bb1fae40ee {
  display: none;
}
#s-366a8c08-912a-4461-8270-f6bb1fae40ee, #wrap-s-366a8c08-912a-4461-8270-f6bb1fae40ee { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-366a8c08-912a-4461-8270-f6bb1fae40ee {
  display: none;
}
#s-366a8c08-912a-4461-8270-f6bb1fae40ee, #wrap-s-366a8c08-912a-4461-8270-f6bb1fae40ee { display: none !important; }}@media (max-width: 767px){#s-366a8c08-912a-4461-8270-f6bb1fae40ee {
  display: none;
}
#s-366a8c08-912a-4461-8270-f6bb1fae40ee, #wrap-s-366a8c08-912a-4461-8270-f6bb1fae40ee { display: none !important; }}







#s-366a8c08-912a-4461-8270-f6bb1fae40ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-366a8c08-912a-4461-8270-f6bb1fae40ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0431c3fa-8b5d-4968-9c32-c788d07f1f31 {
  margin-top: 14px;
margin-left: 40px;
margin-bottom: 12px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0431c3fa-8b5d-4968-9c32-c788d07f1f31 .shogun-heading-component h6 {
  color: #000;
  font-weight:  200 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: center;
}



#s-b5d5006f-538a-4f9d-87ba-7bd0df203592 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b5d5006f-538a-4f9d-87ba-7bd0df203592 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b5d5006f-538a-4f9d-87ba-7bd0df203592 .shg-sld-nav-button.shg-sld-left,
#s-b5d5006f-538a-4f9d-87ba-7bd0df203592 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9ec5da17-abfa-4d08-8d7b-3170f73e9ff2 {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-9ec5da17-abfa-4d08-8d7b-3170f73e9ff2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ec5da17-abfa-4d08-8d7b-3170f73e9ff2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d60d53c5-74c5-4c76-a310-6371eaac2fd0 {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
}

#s-c1fb41f2-af82-461d-9557-bde069b41c58 {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-c1fb41f2-af82-461d-9557-bde069b41c58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1fb41f2-af82-461d-9557-bde069b41c58.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bdb1e1a0-9878-4608-b889-a9e3249a9a6b {
  margin-top: 25px;
margin-left: 0px;
margin-bottom: 25px;
margin-right: 0px;
}

#s-f95bc7fe-e91a-488e-9a15-97afde155ea0 {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-f95bc7fe-e91a-488e-9a15-97afde155ea0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f95bc7fe-e91a-488e-9a15-97afde155ea0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7b57e5ed-a00f-4597-a8d4-e01bd583c3ed {
  margin-top: 25px;
margin-left: 0px;
margin-bottom: 25px;
margin-right: 0px;
}

#s-f9068fdb-4cd7-492d-987d-fed68f95e971 {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 20px;
padding-bottom: 50px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}








#s-f9068fdb-4cd7-492d-987d-fed68f95e971 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9068fdb-4cd7-492d-987d-fed68f95e971.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-61d32259-e6a9-44c6-bafa-6ae3c15f9f14 {
  margin-top: 25px;
margin-left: 0px;
margin-bottom: 25px;
margin-right: 0px;
}

#s-85a4d5cb-4f07-4df2-b842-9883d077f8f1 {
  box-shadow:10px 15px 10px 0px rgba(0, 0, 0, 0.18);
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 400px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-85a4d5cb-4f07-4df2-b842-9883d077f8f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85a4d5cb-4f07-4df2-b842-9883d077f8f1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1520ec6c-2ea6-4637-a274-4dd7589e11ea {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-ba562b60-6674-4121-aa11-7dadf62ede79 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ba562b60-6674-4121-aa11-7dadf62ede79 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba562b60-6674-4121-aa11-7dadf62ede79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c379675f-d1c8-4d44-b6d7-ea000b93e20d {
  min-height: 50px;
}








#s-c379675f-d1c8-4d44-b6d7-ea000b93e20d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c379675f-d1c8-4d44-b6d7-ea000b93e20d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf82c48c-1490-4a37-ace7-acfa8af5c18a {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-cf82c48c-1490-4a37-ace7-acfa8af5c18a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf82c48c-1490-4a37-ace7-acfa8af5c18a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f0ec657-85d9-4e28-b19b-1daae5d7761a {
  box-shadow:4px 4px 7px 1px rgba(0, 0, 0, 0.21);
margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
border-top-width: 25px;
border-left-width: 25px;
border-bottom-width: 25px;
border-right-width: 25px;
border-color: rgba(244, 244, 244, 1);
border-style: solid;
max-width: 1000px;
}

#s-f7dcea83-7822-46a2-966f-fbd30f4868ea {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-f7dcea83-7822-46a2-966f-fbd30f4868ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7dcea83-7822-46a2-966f-fbd30f4868ea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-caff11e4-552e-48c3-83e6-3b6c1df00f31 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-caff11e4-552e-48c3-83e6-3b6c1df00f31"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-caff11e4-552e-48c3-83e6-3b6c1df00f31"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-caff11e4-552e-48c3-83e6-3b6c1df00f31"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-caff11e4-552e-48c3-83e6-3b6c1df00f31"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-2e7f9d3a-190c-4cae-875a-a68c807a61bc {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 500px;
}








#s-2e7f9d3a-190c-4cae-875a-a68c807a61bc > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-2e7f9d3a-190c-4cae-875a-a68c807a61bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0359454d-db94-48eb-b128-431dc3abf975 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-0359454d-db94-48eb-b128-431dc3abf975 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  
  
  
  text-align: right;
}



#s-3cda3508-94c8-4fa7-b87c-e7db5372ab41 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-3cda3508-94c8-4fa7-b87c-e7db5372ab41 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3cda3508-94c8-4fa7-b87c-e7db5372ab41 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3cda3508-94c8-4fa7-b87c-e7db5372ab41 {
  
}
}@media (max-width: 767px){#s-3cda3508-94c8-4fa7-b87c-e7db5372ab41 {
  
}
}
#s-107de823-3cc7-490d-8aa8-f0b2e63580e9 {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.15);
max-width: 500px;
text-align: left;
opacity: 1;
}







  #s-107de823-3cc7-490d-8aa8-f0b2e63580e9 img.shogun-image {
    

    
    
    
  }


#s-107de823-3cc7-490d-8aa8-f0b2e63580e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d74c745-cb59-4ad1-87c6-063244e89661 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4d74c745-cb59-4ad1-87c6-063244e89661 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d74c745-cb59-4ad1-87c6-063244e89661.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8afa0ea-0453-4ada-a9c4-1a47b9bc3ba2 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-b8afa0ea-0453-4ada-a9c4-1a47b9bc3ba2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b8afa0ea-0453-4ada-a9c4-1a47b9bc3ba2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b8afa0ea-0453-4ada-a9c4-1a47b9bc3ba2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b8afa0ea-0453-4ada-a9c4-1a47b9bc3ba2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-fd9e9114-797b-4c5d-a45f-d0c86eac7bd0 {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.15);
max-width: 500px;
text-align: left;
}







  #s-fd9e9114-797b-4c5d-a45f-d0c86eac7bd0 img.shogun-image {
    

    
    
    
  }


#s-fd9e9114-797b-4c5d-a45f-d0c86eac7bd0 .shogun-image-content {
  
    align-items: center;
  
}

#s-4a79491e-e6a2-4b92-bdc3-9c452f04db3f {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 500px;
}








#s-4a79491e-e6a2-4b92-bdc3-9c452f04db3f > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-4a79491e-e6a2-4b92-bdc3-9c452f04db3f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f1818d6-8a05-4d8e-b941-76f66ddee4ae {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-9f1818d6-8a05-4d8e-b941-76f66ddee4ae {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9f1818d6-8a05-4d8e-b941-76f66ddee4ae {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9f1818d6-8a05-4d8e-b941-76f66ddee4ae {
  
}
}@media (max-width: 767px){#s-9f1818d6-8a05-4d8e-b941-76f66ddee4ae {
  
}
}
#s-9f1818d6-8a05-4d8e-b941-76f66ddee4ae .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  
  
  
  
}



#s-0fc66004-c7ef-4488-b310-45b018fa8e76 {
  border-style: solid;
margin-top: 5px;
margin-left: 30px;
margin-bottom: 5px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-0fc66004-c7ef-4488-b310-45b018fa8e76 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0fc66004-c7ef-4488-b310-45b018fa8e76 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0fc66004-c7ef-4488-b310-45b018fa8e76 {
  
}
}@media (max-width: 767px){#s-0fc66004-c7ef-4488-b310-45b018fa8e76 {
  
}
}
#s-76b88037-467c-48d8-aa65-8df946230e23 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-76b88037-467c-48d8-aa65-8df946230e23 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76b88037-467c-48d8-aa65-8df946230e23.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d8a0ffe7-c125-4767-aa8e-527d1533467f {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 600px;
background-position: center center;
}








#s-d8a0ffe7-c125-4767-aa8e-527d1533467f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8a0ffe7-c125-4767-aa8e-527d1533467f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bb25e5b-b124-456e-ba8f-6d438c174a86 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0bb25e5b-b124-456e-ba8f-6d438c174a86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bb25e5b-b124-456e-ba8f-6d438c174a86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62da5889-966b-4bac-8a9f-f69166c406ff {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-62da5889-966b-4bac-8a9f-f69166c406ff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-62da5889-966b-4bac-8a9f-f69166c406ff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-62da5889-966b-4bac-8a9f-f69166c406ff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-62da5889-966b-4bac-8a9f-f69166c406ff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8a155a78-795b-41f7-be06-4ab1e7aa579a {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 500px;
}








#s-8a155a78-795b-41f7-be06-4ab1e7aa579a > .shg-box-overlay {
  background-color: rgba(244, 244, 244, 1);
  opacity: 0;
}#s-8a155a78-795b-41f7-be06-4ab1e7aa579a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d69958d-465d-4cd1-8543-86a1d64bacc1 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-9d69958d-465d-4cd1-8543-86a1d64bacc1 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  
  
  
  text-align: right;
}



#s-54b76939-e323-461a-be12-fba795cf9e69 {
  border-style: solid;
margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-54b76939-e323-461a-be12-fba795cf9e69 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-54b76939-e323-461a-be12-fba795cf9e69 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-54b76939-e323-461a-be12-fba795cf9e69 {
  
}
}@media (max-width: 767px){#s-54b76939-e323-461a-be12-fba795cf9e69 {
  
}
}
#s-d11e009b-f35f-4e43-a4e5-ae87e7531668 {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.21);
margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: right;
}







  #s-d11e009b-f35f-4e43-a4e5-ae87e7531668 img.shogun-image {
    

    
    
    
  }


#s-d11e009b-f35f-4e43-a4e5-ae87e7531668 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-0e50cb02-bcbf-4be7-b7e8-ea9e465145e4 {
  min-height: 500px;
background-attachment: scroll;
}








#s-0e50cb02-bcbf-4be7-b7e8-ea9e465145e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e50cb02-bcbf-4be7-b7e8-ea9e465145e4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-009c77ea-b7d8-4472-b5f9-ea60efb3c318 {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-009c77ea-b7d8-4472-b5f9-ea60efb3c318 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-009c77ea-b7d8-4472-b5f9-ea60efb3c318.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-72eb47b7-a6dd-4aeb-9fa0-f975f57a03c7 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-72eb47b7-a6dd-4aeb-9fa0-f975f57a03c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-72eb47b7-a6dd-4aeb-9fa0-f975f57a03c7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-72eb47b7-a6dd-4aeb-9fa0-f975f57a03c7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-72eb47b7-a6dd-4aeb-9fa0-f975f57a03c7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c255a7e1-0906-45c5-abb2-2c85064f9f66 {
  box-shadow:1px 15px 20px 1px rgba(0, 0, 0, 0.15);
max-width: 500px;
text-align: left;
}







  #s-c255a7e1-0906-45c5-abb2-2c85064f9f66 img.shogun-image {
    

    
    
    
  }


#s-c255a7e1-0906-45c5-abb2-2c85064f9f66 .shogun-image-content {
  
    align-items: center;
  
}

#s-5a8d5d7d-359f-4acc-837a-847372732aae {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 500px;
}








#s-5a8d5d7d-359f-4acc-837a-847372732aae > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-5a8d5d7d-359f-4acc-837a-847372732aae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0ddf654-7fa9-4078-ab5e-869a449a2c31 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-c0ddf654-7fa9-4078-ab5e-869a449a2c31 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c0ddf654-7fa9-4078-ab5e-869a449a2c31 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c0ddf654-7fa9-4078-ab5e-869a449a2c31 {
  
}
}@media (max-width: 767px){#s-c0ddf654-7fa9-4078-ab5e-869a449a2c31 {
  
}
}
#s-c0ddf654-7fa9-4078-ab5e-869a449a2c31 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Saira";
  font-style:  normal ;
  
  
  
  
}



#s-cc4bb7c9-4fbc-4725-9f39-5d9685cbf197 {
  border-style: solid;
margin-top: 5px;
margin-left: 30px;
margin-bottom: 5px;
margin-right: 30px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-cc4bb7c9-4fbc-4725-9f39-5d9685cbf197 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cc4bb7c9-4fbc-4725-9f39-5d9685cbf197 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cc4bb7c9-4fbc-4725-9f39-5d9685cbf197 {
  
}
}@media (max-width: 767px){#s-cc4bb7c9-4fbc-4725-9f39-5d9685cbf197 {
  
}
}
#s-040f5305-87ec-4427-9bd4-1b1259c39b09 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-040f5305-87ec-4427-9bd4-1b1259c39b09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-040f5305-87ec-4427-9bd4-1b1259c39b09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e89c598f-36d7-45fb-aea1-fbd8edbab774 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 600px;
background-position: center center;
}








#s-e89c598f-36d7-45fb-aea1-fbd8edbab774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e89c598f-36d7-45fb-aea1-fbd8edbab774.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 {
  display: none;
}
#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4, #wrap-s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 { display: none !important; }}@media (max-width: 767px){#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 {
  display: none;
}
#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4, #wrap-s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 { display: none !important; }}







#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d22a29cb-0155-4b25-8a1c-7ccaca9f14c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e02c1b44-a740-4267-8b77-348e196808b0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(244, 244, 244, 1);
}

#s-e02c1b44-a740-4267-8b77-348e196808b0 .shogun-heading-component h1 {
  color: #000;
  font-weight:  200 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-3c7b8023-0645-4a84-9a9a-bcd64f7061c3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 800px;
}

#s-3c7b8023-0645-4a84-9a9a-bcd64f7061c3 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-3c7b8023-0645-4a84-9a9a-bcd64f7061c3 .shg-sld-nav-button.shg-sld-left,
#s-3c7b8023-0645-4a84-9a9a-bcd64f7061c3 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f4beec61-5e6c-4b17-9416-8cde9add7b1d {
  text-align: center;
}







  #s-f4beec61-5e6c-4b17-9416-8cde9add7b1d img.shogun-image {
    

    
    
    
  }


#s-f4beec61-5e6c-4b17-9416-8cde9add7b1d .shogun-image-content {
  
    align-items: center;
  
}

#s-cad9789b-7729-41ca-bc45-67c7827c1cdc {
  text-align: center;
}







  #s-cad9789b-7729-41ca-bc45-67c7827c1cdc img.shogun-image {
    

    
    
    
  }


#s-cad9789b-7729-41ca-bc45-67c7827c1cdc .shogun-image-content {
  
    align-items: center;
  
}

#s-00a09ffe-f8d9-4d6d-b488-116f377e9362 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-00a09ffe-f8d9-4d6d-b488-116f377e9362 img.shogun-image {
    

    
    
    
  }


#s-00a09ffe-f8d9-4d6d-b488-116f377e9362 .shogun-image-content {
  
    align-items: center;
  
}

#s-43a6eff3-75c1-4012-9fe3-d18b1fb935f7 {
  margin-top: 24px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
opacity: 1;
}
@media (min-width: 1200px){#s-43a6eff3-75c1-4012-9fe3-d18b1fb935f7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-43a6eff3-75c1-4012-9fe3-d18b1fb935f7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-43a6eff3-75c1-4012-9fe3-d18b1fb935f7 {
  
}
}@media (max-width: 767px){#s-43a6eff3-75c1-4012-9fe3-d18b1fb935f7 {
  
}
}
#s-914ee7dd-d1a5-4dc5-b6fc-25b68fb92dc2 {
  margin-top: 24px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
opacity: 1;
}
@media (min-width: 1200px){#s-914ee7dd-d1a5-4dc5-b6fc-25b68fb92dc2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-914ee7dd-d1a5-4dc5-b6fc-25b68fb92dc2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-914ee7dd-d1a5-4dc5-b6fc-25b68fb92dc2 {
  
}
}@media (max-width: 767px){#s-914ee7dd-d1a5-4dc5-b6fc-25b68fb92dc2 {
  
}
}
#s-251655ee-fb94-4d18-9838-94097f4c2be5 {
  margin-top: 24px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
opacity: 1;
}
@media (min-width: 1200px){#s-251655ee-fb94-4d18-9838-94097f4c2be5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-251655ee-fb94-4d18-9838-94097f4c2be5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-251655ee-fb94-4d18-9838-94097f4c2be5 {
  
}
}@media (max-width: 767px){#s-251655ee-fb94-4d18-9838-94097f4c2be5 {
  
}
}
#s-275061fb-d663-4df7-aeb7-1c22e33a99a2 {
  margin-left: 50px;
margin-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-275061fb-d663-4df7-aeb7-1c22e33a99a2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-275061fb-d663-4df7-aeb7-1c22e33a99a2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-275061fb-d663-4df7-aeb7-1c22e33a99a2 {
  
}
}@media (max-width: 767px){#s-275061fb-d663-4df7-aeb7-1c22e33a99a2 {
  
}
}
#s-0c3c9c98-3b3c-4630-805d-ea5df268c8f7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(244, 244, 244, 1);
}

#s-0c3c9c98-3b3c-4630-805d-ea5df268c8f7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  200 ;
  font-family: "Saira";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-ca52ff2b-7a1b-4f44-a4dc-3ff7154980f9 {
  margin-top: 56px;
margin-left: 40px;
margin-bottom: 56px;
margin-right: 40px;
}

@media (min-width: 0px) {
[id="s-ca52ff2b-7a1b-4f44-a4dc-3ff7154980f9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca52ff2b-7a1b-4f44-a4dc-3ff7154980f9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 32.0px);
}

}

@media (min-width: 992px) {
[id="s-ca52ff2b-7a1b-4f44-a4dc-3ff7154980f9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 32.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca52ff2b-7a1b-4f44-a4dc-3ff7154980f9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 32.0px);
}

}

#s-2f59753b-dba9-4ed6-844c-77946bcd63ac {
  text-align: center;
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac {
  max-width:  100%;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom,
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac {
  max-width:  100%;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom,
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac {
  max-width:  100%;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom,
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac {
  max-width:  100%;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom,
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac {
  max-width:  100%;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom,
.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f59753b-dba9-4ed6-844c-77946bcd63ac img.shogun-image {
  width: 100%;
}



}
#s-dc598118-833e-4e21-8209-19e2f0ee3fbd {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dc598118-833e-4e21-8209-19e2f0ee3fbd .shg-product-title-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-1986fed6-6ade-4727-9b70-d8306bce7b34 {
  text-align: center;
}

#s-1986fed6-6ade-4727-9b70-d8306bce7b34 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
}

#s-1986fed6-6ade-4727-9b70-d8306bce7b34 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
  font-size: 16px;
}

#s-1986fed6-6ade-4727-9b70-d8306bce7b34 .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-71aeb363-88b9-403c-b69e-eeca4641aad5 {
  border-style: solid;
margin-top: 8px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-71aeb363-88b9-403c-b69e-eeca4641aad5:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-71aeb363-88b9-403c-b69e-eeca4641aad5:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-71aeb363-88b9-403c-b69e-eeca4641aad5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-71aeb363-88b9-403c-b69e-eeca4641aad5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-71aeb363-88b9-403c-b69e-eeca4641aad5 {
  
}
}@media (max-width: 767px){#s-71aeb363-88b9-403c-b69e-eeca4641aad5 {
  
}
}


#s-71aeb363-88b9-403c-b69e-eeca4641aad5 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-71aeb363-88b9-403c-b69e-eeca4641aad5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-71aeb363-88b9-403c-b69e-eeca4641aad5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-71aeb363-88b9-403c-b69e-eeca4641aad5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb {
  text-align: center;
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb {
  max-width:  100%;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom,
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb {
  max-width:  100%;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom,
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb {
  max-width:  100%;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom,
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb {
  max-width:  100%;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom,
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb {
  max-width:  100%;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom,
.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac8496a5-4ca5-4d5e-b954-91c4dc2f26fb img.shogun-image {
  width: 100%;
}



}
#s-923f68c8-4f9e-4599-8039-1097292e78f3 {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-923f68c8-4f9e-4599-8039-1097292e78f3 .shg-product-title-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-10d4cd75-90a0-4def-91ba-f44b95196d5a {
  text-align: center;
}

#s-10d4cd75-90a0-4def-91ba-f44b95196d5a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
}

#s-10d4cd75-90a0-4def-91ba-f44b95196d5a .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
  font-size: 16px;
}

#s-10d4cd75-90a0-4def-91ba-f44b95196d5a .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-a41b47bc-e7f0-41db-a1c0-ea614f3b6535 {
  border-style: solid;
margin-top: 8px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535 {
  
}
}@media (max-width: 767px){#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535 {
  
}
}


#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-a41b47bc-e7f0-41db-a1c0-ea614f3b6535.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3ad4b156-446f-4f09-966f-e9e518328c51 {
  text-align: center;
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 {
  max-width:  100%;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom,
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 {
  max-width:  100%;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom,
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 {
  max-width:  100%;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom,
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 {
  max-width:  100%;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom,
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 {
  max-width:  100%;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom,
.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  max-width: 80% !important;
  
}

.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3ad4b156-446f-4f09-966f-e9e518328c51 img.shogun-image {
  width: 100%;
}



}
#s-274b92eb-4027-448f-848f-d3fdd347a614 {
  margin-top: 16px;
margin-bottom: 16px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-274b92eb-4027-448f-848f-d3fdd347a614 .shg-product-title-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-e03291ee-b66e-4c75-a89e-2b5b83233270 {
  text-align: center;
}

#s-e03291ee-b66e-4c75-a89e-2b5b83233270 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
}

#s-e03291ee-b66e-4c75-a89e-2b5b83233270 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto;
  font-style:  normal ;
  font-size: 16px;
}

#s-e03291ee-b66e-4c75-a89e-2b5b83233270 .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-498334c8-1300-4f51-ae2a-96ae2df6b99f {
  border-style: solid;
margin-top: 8px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 8px;
padding-left: 0px;
padding-bottom: 8px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 16px;
text-align: center;
background-color: rgba(255, 199, 51, 1);
font-size: 18px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-498334c8-1300-4f51-ae2a-96ae2df6b99f:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-498334c8-1300-4f51-ae2a-96ae2df6b99f:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-498334c8-1300-4f51-ae2a-96ae2df6b99f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-498334c8-1300-4f51-ae2a-96ae2df6b99f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-498334c8-1300-4f51-ae2a-96ae2df6b99f {
  
}
}@media (max-width: 767px){#s-498334c8-1300-4f51-ae2a-96ae2df6b99f {
  
}
}


#s-498334c8-1300-4f51-ae2a-96ae2df6b99f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-498334c8-1300-4f51-ae2a-96ae2df6b99f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-498334c8-1300-4f51-ae2a-96ae2df6b99f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}

#s-498334c8-1300-4f51-ae2a-96ae2df6b99f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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