/** Shopify CDN: Minification failed

Line 25:8 Expected identifier but found whitespace
Line 25:10 Unexpected "{"
Line 25:19 Expected ":"
Line 26:19 Expected identifier but found whitespace
Line 26:21 Unexpected "{"
Line 26:30 Expected ":"
Line 28:16 Expected identifier but found whitespace
Line 28:18 Unexpected "{"
Line 28:27 Expected ":"
Line 28:55 Expected ":"
... and 6 more hidden warnings

**/
.share-button__button {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 500;
  color: {{ section.settings.button_text_color }};
  background-color: {{ section.settings.button_bg_color }};
  border: none;
  border-radius: {{ section.settings.border_radius }}px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  max-width: max-content;

 
}
.share-button .icon-share.svg {
  background-color: {{ section.settings.button_bg_color }};
  width: 20px;
  height: 20px;
  color: {{ section.settings.button_text_color }};
}
.share-button__button:hover {
  transform: scale(1.05);
}

.share-button__button:active {
  background-color: #990000;
  transform: scale(0.97);
}
