/**
 * Symbols: Buttons
 */
 .ohcf-button-primary,
 .ohcf-button-secondary {
     border-radius: 4px;
     box-sizing: border-box;
     color: #112F25;
     display: block;
     font-size: 1.125em;
     font-weight: 600;
     text-align: center;    
 }
 .ohcf-button-primary.ohcf-button-large,
 .ohcf-button-secondary.ohcf-button-large {
     height: 48px;
     line-height: 48px;
 }
 .ohcf-button-primary.ohcf-button-small,
 .ohcf-button-secondary.ohcf-button-small {
     height: 40px;
     line-height: 40px;
 }
 .ohcf-button-primary {
     background-color: #47C29B;
     box-shadow: 0 24px 24px -8px rgba(51,53,55,0.16);
 }
 .ohcf-button-secondary {
     background-color: #FFF;
     border: 2px solid #47C29B;
 }
 .ohcf-button-inline {
     display: inline-block;
     margin: 0 auto;
     padding: 0 28px;
     width: auto;
 }
 