/** Shopify CDN: Minification failed

Line 13:15 Unexpected "{"
Line 13:24 Expected ":"
Line 14:0 Unexpected "{"
Line 27:15 Unexpected "{"
Line 27:24 Expected ":"
Line 33:16 Unexpected "{"
Line 33:25 Expected ":"
Line 34:3 Unexpected "{"

**/
#js-fixed-btn-{{ section.id }}
{
 position: fixed;
 bottom: 100px; 
 right: 0;
 padding: 30px 40px;
 opacity: 0;
 transition: all 1s ease;
 z-index: 10;
 background-color:#fff;
 box-shadow: 0 0 9px #ccc;
 width: 280px;
}
 
#js-fixed-btn-{{ section.id }}.show {
   opacity: 1;
   transform: none;
}
 
 @media only screen and (max-width: 749px) {
 #js-fixed-btn-{{ section.id }}
   {
     width: 100%;
     bottom: 0; 
     padding: 5vw 5vw 15vw 5vw;

   }
}