/* Expand buttons when on mobile device */
/* container for expand links */
.mobile-expand {
    padding: 3px;
    display: inline-block;
}

@media only screen and (max-width: 600px) { 
    
 /* button - accent 2 */
    a.link-expand.fs_style_36 {
      width: 100%;
    }
    
/* button - hollow primary */
    a.link-expand.fs_style_33 {
      width: 100%;
    }

    /* button - primary */
    a.link-expand.fs_style_34 {
      width: 100%;
    }
    
    /* button - on dark 2 */
    a.link-expand.fs_style_38 {
      width: 100%;
    }

/* button - link */
    a.link-expand.fs_style_42 {
      width: 100%;
    }
    
    /* Expand link container */
    .mobile-expand {
      display: block;
    }
  }
