/* * Font Awesome 4.7 Patch for Tripadvisor
 */

/* 1. Load the old FA 4.7 font file from a CDN, 
      but give it a unique, custom name. */
@font-face {
  font-family: 'FontAwesome47Patch';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* 2. Target the exact class you're using. */
.fab.ms-tripadvisor::before {
  /* 3. Tell it to use our patched font, NOT the main .fab font */
  font-family: 'FontAwesome47Patch';
  
  /* 4. Use the unicode you wanted! */
  content: '\f262';
  
  /* 5. (Optional but good) Ensure it behaves like a FA icon */
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  vertical-align: -0.125em; /* Aligns it like other FA icons */
}