/**
 * Google’s Material Symbols family includes these stylistic variants:

 * "Default" (Material Symbols)	
 * - Supports all font variation settings (FILL, wght, GRAD, opsz)

 * "Outlined"	(Material Symbols Outlined)
 * - Only outlined; does not support FILL

 * "Rounded" (Material Symbols Rounded)	
 * - Rounded corners; limited icon set

 * "Sharp" (Material Symbols Sharp)
 * - Sharp corners; limited icon set
 */

/**
 * PHP script to generate ::before icons blocks:

$result = file_get_contents('https://raw.githubusercontent.com/google/material-design-icons/refs/heads/master/variablefont/MaterialSymbolsOutlined%5BFILL%2CGRAD%2Copsz%2Cwght%5D.codepoints');
$css = '';
foreach (explode("\n", $result) as $line) {
  $line = trim($line);
  if ($line != '') { 
    $split = explode(' ', $line);
    $name = $split[0];
    $codepoint = $split[1];

    if (is_numeric(substr($name, 0, 1))) {
      $name = 'd' . $name;
    }

    $css .= '.symbol.' . str_replace('_', '-', $name) . '::before {' . "\n";
    $css .= "\t" . 'content: "\\' . $codepoint . '";' . "\n";
    $css .= '}' . "\n\n";
  }
}

echo $css;

 */

@font-face {
  font-family: 'Material Symbols';
  font-style: normal;
  font-weight: 100 200 300 400 500 600 700;
  src: url(../fonts/material-symbols/regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 200 300 400 500 600 700;
  src: url(../fonts/material-symbols/outlined.woff2) format('woff2');
}
@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 200 300 400 500 600 700;
  src: url(../fonts/material-symbols/rounded.woff2) format('woff2');
}
@font-face {
  font-family: 'Material Symbols Sharp';
  font-style: normal;
  font-weight: 100 200 300 400 500 600 700;
  src: url(../fonts/material-symbols/sharp.woff2) format('woff2');
}

.symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Material Symbols';
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.symbol.outline,
.symbol.outlined {
  font-family: 'Material Symbols Outlined';
}

.symbol.round,
.symbol.rounded {
  font-family: 'Material Symbols Rounded';
}

.symbol.sharp {
  font-family: 'Material Symbols Sharp';
}

.symbol.fill, .symbol.fill::before,
.symbol.filled, .symbol.filled::before {
  font-variation-settings: 'FILL' 1;
}

.symbol.strong, .symbol.strong::before,
.symbol.bold, .symbol.bold::before {
  font-variation-settings: 'GRAD' 200;
}

.symbol.weight-100, .symbol.weight-100::before { font-weight: 100; font-variation-settings: 'wght' 100; }
.symbol.weight-200, .symbol.weight-200::before { font-weight: 200; font-variation-settings: 'wght' 200; }
.symbol.weight-300, .symbol.weight-300::before { font-weight: 300; font-variation-settings: 'wght' 300; }
.symbol.weight-400, .symbol.weight-400::before { font-weight: 400; font-variation-settings: 'wght' 400; }
.symbol.weight-500, .symbol.weight-500::before { font-weight: 500; font-variation-settings: 'wght' 500; }
.symbol.weight-600, .symbol.weight-600::before { font-weight: 600; font-variation-settings: 'wght' 600; }
.symbol.weight-700, .symbol.weight-700::before { font-weight: 700; font-variation-settings: 'wght' 700; }

/**
 * Font sizes
 */

.symbol.size-14 { font-size: 14px; font-variation-settings: 'opsz' 14; }
.symbol.size-15 { font-size: 15px; font-variation-settings: 'opsz' 15; }
.symbol.size-16 { font-size: 16px; font-variation-settings: 'opsz' 16; }
.symbol.size-17 { font-size: 17px; font-variation-settings: 'opsz' 17; }
.symbol.size-18 { font-size: 18px; font-variation-settings: 'opsz' 18; }
.symbol.size-19 { font-size: 19px; font-variation-settings: 'opsz' 19; }
.symbol.size-20 { font-size: 20px; font-variation-settings: 'opsz' 20; }
.symbol.size-21 { font-size: 21px; font-variation-settings: 'opsz' 21; }
.symbol.size-22 { font-size: 22px; font-variation-settings: 'opsz' 22; }
.symbol.size-23 { font-size: 23px; font-variation-settings: 'opsz' 23; }
.symbol.size-24 { font-size: 24px; font-variation-settings: 'opsz' 24; }
.symbol.size-25 { font-size: 25px; font-variation-settings: 'opsz' 25; }
.symbol.size-26 { font-size: 26px; font-variation-settings: 'opsz' 26; }
.symbol.size-27 { font-size: 27px; font-variation-settings: 'opsz' 27; }
.symbol.size-28 { font-size: 28px; font-variation-settings: 'opsz' 28; }
.symbol.size-29 { font-size: 29px; font-variation-settings: 'opsz' 29; }
.symbol.size-30 { font-size: 30px; font-variation-settings: 'opsz' 30; }
.symbol.size-31 { font-size: 31px; font-variation-settings: 'opsz' 31; }
.symbol.size-32 { font-size: 32px; font-variation-settings: 'opsz' 32; }
.symbol.size-33 { font-size: 33px; font-variation-settings: 'opsz' 33; }
.symbol.size-34 { font-size: 34px; font-variation-settings: 'opsz' 34; }
.symbol.size-35 { font-size: 35px; font-variation-settings: 'opsz' 35; }
.symbol.size-36 { font-size: 36px; font-variation-settings: 'opsz' 36; }
.symbol.size-37 { font-size: 37px; font-variation-settings: 'opsz' 37; }
.symbol.size-38 { font-size: 38px; font-variation-settings: 'opsz' 38; }
.symbol.size-39 { font-size: 39px; font-variation-settings: 'opsz' 39; }
.symbol.size-40 { font-size: 40px; font-variation-settings: 'opsz' 40; }
.symbol.size-41 { font-size: 41px; font-variation-settings: 'opsz' 41; }
.symbol.size-42 { font-size: 42px; font-variation-settings: 'opsz' 42; }
.symbol.size-43 { font-size: 43px; font-variation-settings: 'opsz' 43; }
.symbol.size-44 { font-size: 44px; font-variation-settings: 'opsz' 44; }
.symbol.size-45 { font-size: 45px; font-variation-settings: 'opsz' 45; }
.symbol.size-46 { font-size: 46px; font-variation-settings: 'opsz' 46; }
.symbol.size-47 { font-size: 47px; font-variation-settings: 'opsz' 47; }
.symbol.size-48 { font-size: 48px; font-variation-settings: 'opsz' 48; }
.symbol.size-49 { font-size: 49px; font-variation-settings: 'opsz' 49; }
.symbol.size-50 { font-size: 50px; font-variation-settings: 'opsz' 50; }
.symbol.size-51 { font-size: 51px; font-variation-settings: 'opsz' 51; }
.symbol.size-52 { font-size: 52px; font-variation-settings: 'opsz' 52; }
.symbol.size-53 { font-size: 53px; font-variation-settings: 'opsz' 53; }
.symbol.size-54 { font-size: 54px; font-variation-settings: 'opsz' 54; }
.symbol.size-55 { font-size: 55px; font-variation-settings: 'opsz' 55; }
.symbol.size-56 { font-size: 56px; font-variation-settings: 'opsz' 56; }
.symbol.size-57 { font-size: 57px; font-variation-settings: 'opsz' 57; }
.symbol.size-58 { font-size: 58px; font-variation-settings: 'opsz' 58; }
.symbol.size-59 { font-size: 59px; font-variation-settings: 'opsz' 59; }
.symbol.size-60 { font-size: 60px; font-variation-settings: 'opsz' 60; }
.symbol.size-61 { font-size: 61px; font-variation-settings: 'opsz' 61; }
.symbol.size-62 { font-size: 62px; font-variation-settings: 'opsz' 62; }
.symbol.size-63 { font-size: 63px; font-variation-settings: 'opsz' 63; }
.symbol.size-64 { font-size: 64px; font-variation-settings: 'opsz' 64; }

/**
 * Symbols selectors to codepoints converter blocks
 */

.symbol.d10k::before {
	content: "\e951";
}

.symbol.d10mp::before {
	content: "\e952";
}

.symbol.d11mp::before {
	content: "\e953";
}

.symbol.d123::before {
	content: "\eb8d";
}

.symbol.d12mp::before {
	content: "\e954";
}

.symbol.d13mp::before {
	content: "\e955";
}

.symbol.d14mp::before {
	content: "\e956";
}

.symbol.d15mp::before {
	content: "\e957";
}

.symbol.d16mp::before {
	content: "\e958";
}

.symbol.d17mp::before {
	content: "\e959";
}

.symbol.d18-up-rating::before {
	content: "\f8fd";
}

.symbol.d18mp::before {
	content: "\e95a";
}

.symbol.d19mp::before {
	content: "\e95b";
}

.symbol.d1k::before {
	content: "\e95c";
}

.symbol.d1k-plus::before {
	content: "\e95d";
}

.symbol.d1x-mobiledata::before {
	content: "\efcd";
}

.symbol.d1x-mobiledata-badge::before {
	content: "\f7f1";
}

.symbol.d20mp::before {
	content: "\e95e";
}

.symbol.d21mp::before {
	content: "\e95f";
}

.symbol.d22mp::before {
	content: "\e960";
}

.symbol.d23mp::before {
	content: "\e961";
}

.symbol.d24fps-select::before {
	content: "\f3f2";
}

.symbol.d24mp::before {
	content: "\e962";
}

.symbol.d2d::before {
	content: "\ef37";
}

.symbol.d2k::before {
	content: "\e963";
}

.symbol.d2k-plus::before {
	content: "\e964";
}

.symbol.d2mp::before {
	content: "\e965";
}

.symbol.d30fps::before {
	content: "\efce";
}

.symbol.d30fps-select::before {
	content: "\efcf";
}

.symbol.d360::before {
	content: "\e577";
}

.symbol.d3d::before {
	content: "\ed38";
}

.symbol.d3d-rotation::before {
	content: "\e84d";
}

.symbol.d3g-mobiledata::before {
	content: "\efd0";
}

.symbol.d3g-mobiledata-badge::before {
	content: "\f7f0";
}

.symbol.d3k::before {
	content: "\e966";
}

.symbol.d3k-plus::before {
	content: "\e967";
}

.symbol.d3mp::before {
	content: "\e968";
}

.symbol.d3p::before {
	content: "\efd1";
}

.symbol.d4g-mobiledata::before {
	content: "\efd2";
}

.symbol.d4g-mobiledata-badge::before {
	content: "\f7ef";
}

.symbol.d4g-plus-mobiledata::before {
	content: "\efd3";
}

.symbol.d4k::before {
	content: "\e072";
}

.symbol.d4k-plus::before {
	content: "\e969";
}

.symbol.d4mp::before {
	content: "\e96a";
}

.symbol.d50mp::before {
	content: "\f6f3";
}

.symbol.d5g::before {
	content: "\ef38";
}

.symbol.d5g-mobiledata-badge::before {
	content: "\f7ee";
}

.symbol.d5k::before {
	content: "\e96b";
}

.symbol.d5k-plus::before {
	content: "\e96c";
}

.symbol.d5mp::before {
	content: "\e96d";
}

.symbol.d60fps::before {
	content: "\efd4";
}

.symbol.d60fps-select::before {
	content: "\efd5";
}

.symbol.d6-ft-apart::before {
	content: "\f21e";
}

.symbol.d6k::before {
	content: "\e96e";
}

.symbol.d6k-plus::before {
	content: "\e96f";
}

.symbol.d6mp::before {
	content: "\e970";
}

.symbol.d7k::before {
	content: "\e971";
}

.symbol.d7k-plus::before {
	content: "\e972";
}

.symbol.d7mp::before {
	content: "\e973";
}

.symbol.d8k::before {
	content: "\e974";
}

.symbol.d8k-plus::before {
	content: "\e975";
}

.symbol.d8mp::before {
	content: "\e976";
}

.symbol.d9k::before {
	content: "\e977";
}

.symbol.d9k-plus::before {
	content: "\e978";
}

.symbol.d9mp::before {
	content: "\e979";
}

.symbol.abc::before {
	content: "\eb94";
}

.symbol.ac-unit::before {
	content: "\eb3b";
}

.symbol.access-alarm::before {
	content: "\e855";
}

.symbol.access-alarms::before {
	content: "\e855";
}

.symbol.access-time::before {
	content: "\efd6";
}

.symbol.access-time-filled::before {
	content: "\efd6";
}

.symbol.accessibility::before {
	content: "\e84e";
}

.symbol.accessibility-new::before {
	content: "\e92c";
}

.symbol.accessible::before {
	content: "\e914";
}

.symbol.accessible-forward::before {
	content: "\e934";
}

.symbol.accessible-menu::before {
	content: "\f34e";
}

.symbol.account-balance::before {
	content: "\e84f";
}

.symbol.account-balance-wallet::before {
	content: "\e850";
}

.symbol.account-box::before {
	content: "\e851";
}

.symbol.account-child::before {
	content: "\e852";
}

.symbol.account-child-invert::before {
	content: "\e659";
}

.symbol.account-circle::before {
	content: "\f20b";
}

.symbol.account-circle-filled::before {
	content: "\f20b";
}

.symbol.account-circle-off::before {
	content: "\f7b3";
}

.symbol.account-tree::before {
	content: "\e97a";
}

.symbol.action-key::before {
	content: "\f502";
}

.symbol.activity-zone::before {
	content: "\e1e6";
}

.symbol.acupuncture::before {
	content: "\f2c4";
}

.symbol.acute::before {
	content: "\e4cb";
}

.symbol.ad::before {
	content: "\e65a";
}

.symbol.ad-group::before {
	content: "\e65b";
}

.symbol.ad-group-off::before {
	content: "\eae5";
}

.symbol.ad-off::before {
	content: "\f7b2";
}

.symbol.ad-units::before {
	content: "\f2eb";
}

.symbol.adaptive-audio-mic::before {
	content: "\f4cc";
}

.symbol.adaptive-audio-mic-off::before {
	content: "\f4cb";
}

.symbol.adb::before {
	content: "\e60e";
}

.symbol.add::before {
	content: "\e145";
}

.symbol.add-2::before {
	content: "\f3dd";
}

.symbol.add-a-photo::before {
	content: "\e439";
}

.symbol.add-ad::before {
	content: "\e72a";
}

.symbol.add-alarm::before {
	content: "\e856";
}

.symbol.add-alert::before {
	content: "\e003";
}

.symbol.add-box::before {
	content: "\e146";
}

.symbol.add-business::before {
	content: "\e729";
}

.symbol.add-call::before {
	content: "\f0b7";
}

.symbol.add-card::before {
	content: "\eb86";
}

.symbol.add-chart::before {
	content: "\ef3c";
}

.symbol.add-circle::before {
	content: "\e3ba";
}

.symbol.add-circle-outline::before {
	content: "\e3ba";
}

.symbol.add-column-left::before {
	content: "\f425";
}

.symbol.add-column-right::before {
	content: "\f424";
}

.symbol.add-comment::before {
	content: "\e266";
}

.symbol.add-diamond::before {
	content: "\f49c";
}

.symbol.add-home::before {
	content: "\f8eb";
}

.symbol.add-home-work::before {
	content: "\f8ed";
}

.symbol.add-ic-call::before {
	content: "\f0b7";
}

.symbol.add-link::before {
	content: "\e178";
}

.symbol.add-location::before {
	content: "\e567";
}

.symbol.add-location-alt::before {
	content: "\ef3a";
}

.symbol.add-moderator::before {
	content: "\e97d";
}

.symbol.add-notes::before {
	content: "\e091";
}

.symbol.add-photo-alternate::before {
	content: "\e43e";
}

.symbol.add-reaction::before {
	content: "\e1d3";
}

.symbol.add-road::before {
	content: "\ef3b";
}

.symbol.add-row-above::before {
	content: "\f423";
}

.symbol.add-row-below::before {
	content: "\f422";
}

.symbol.add-shopping-cart::before {
	content: "\e854";
}

.symbol.add-task::before {
	content: "\f23a";
}

.symbol.add-to-drive::before {
	content: "\e65c";
}

.symbol.add-to-home-screen::before {
	content: "\f2b9";
}

.symbol.add-to-photos::before {
	content: "\e39d";
}

.symbol.add-to-queue::before {
	content: "\e05c";
}

.symbol.add-triangle::before {
	content: "\f48e";
}

.symbol.addchart::before {
	content: "\ef3c";
}

.symbol.adf-scanner::before {
	content: "\eada";
}

.symbol.adjust::before {
	content: "\e39e";
}

.symbol.admin-meds::before {
	content: "\e48d";
}

.symbol.admin-panel-settings::before {
	content: "\ef3d";
}

.symbol.ads-click::before {
	content: "\e762";
}

.symbol.agender::before {
	content: "\f888";
}

.symbol.agriculture::before {
	content: "\ea79";
}

.symbol.air::before {
	content: "\efd8";
}

.symbol.air-freshener::before {
	content: "\e2ca";
}

.symbol.air-purifier::before {
	content: "\e97e";
}

.symbol.air-purifier-gen::before {
	content: "\e829";
}

.symbol.airline-seat-flat::before {
	content: "\e630";
}

.symbol.airline-seat-flat-angled::before {
	content: "\e631";
}

.symbol.airline-seat-individual-suite::before {
	content: "\e632";
}

.symbol.airline-seat-legroom-extra::before {
	content: "\e633";
}

.symbol.airline-seat-legroom-normal::before {
	content: "\e634";
}

.symbol.airline-seat-legroom-reduced::before {
	content: "\e635";
}

.symbol.airline-seat-recline-extra::before {
	content: "\e636";
}

.symbol.airline-seat-recline-normal::before {
	content: "\e637";
}

.symbol.airline-stops::before {
	content: "\e7d0";
}

.symbol.airlines::before {
	content: "\e7ca";
}

.symbol.airplane-ticket::before {
	content: "\efd9";
}

.symbol.airplanemode-active::before {
	content: "\e53d";
}

.symbol.airplanemode-inactive::before {
	content: "\e194";
}

.symbol.airplay::before {
	content: "\e055";
}

.symbol.airport-shuttle::before {
	content: "\eb3c";
}

.symbol.airware::before {
	content: "\f154";
}

.symbol.airwave::before {
	content: "\f154";
}

.symbol.alarm::before {
	content: "\e855";
}

.symbol.alarm-add::before {
	content: "\e856";
}

.symbol.alarm-off::before {
	content: "\e857";
}

.symbol.alarm-on::before {
	content: "\e858";
}

.symbol.alarm-pause::before {
	content: "\f35b";
}

.symbol.alarm-smart-wake::before {
	content: "\f6b0";
}

.symbol.album::before {
	content: "\e019";
}

.symbol.align-center::before {
	content: "\e356";
}

.symbol.align-end::before {
	content: "\f797";
}

.symbol.align-flex-center::before {
	content: "\f796";
}

.symbol.align-flex-end::before {
	content: "\f795";
}

.symbol.align-flex-start::before {
	content: "\f794";
}

.symbol.align-horizontal-center::before {
	content: "\e00f";
}

.symbol.align-horizontal-left::before {
	content: "\e00d";
}

.symbol.align-horizontal-right::before {
	content: "\e010";
}

.symbol.align-items-stretch::before {
	content: "\f793";
}

.symbol.align-justify-center::before {
	content: "\f792";
}

.symbol.align-justify-flex-end::before {
	content: "\f791";
}

.symbol.align-justify-flex-start::before {
	content: "\f790";
}

.symbol.align-justify-space-around::before {
	content: "\f78f";
}

.symbol.align-justify-space-between::before {
	content: "\f78e";
}

.symbol.align-justify-space-even::before {
	content: "\f78d";
}

.symbol.align-justify-stretch::before {
	content: "\f78c";
}

.symbol.align-self-stretch::before {
	content: "\f78b";
}

.symbol.align-space-around::before {
	content: "\f78a";
}

.symbol.align-space-between::before {
	content: "\f789";
}

.symbol.align-space-even::before {
	content: "\f788";
}

.symbol.align-start::before {
	content: "\f787";
}

.symbol.align-stretch::before {
	content: "\f786";
}

.symbol.align-vertical-bottom::before {
	content: "\e015";
}

.symbol.align-vertical-center::before {
	content: "\e011";
}

.symbol.align-vertical-top::before {
	content: "\e00c";
}

.symbol.all-inbox::before {
	content: "\e97f";
}

.symbol.all-inclusive::before {
	content: "\eb3d";
}

.symbol.all-match::before {
	content: "\e093";
}

.symbol.all-out::before {
	content: "\e90b";
}

.symbol.allergies::before {
	content: "\e094";
}

.symbol.allergy::before {
	content: "\e64e";
}

.symbol.alt-route::before {
	content: "\f184";
}

.symbol.alternate-email::before {
	content: "\e0e6";
}

.symbol.altitude::before {
	content: "\f873";
}

.symbol.ambient-screen::before {
	content: "\f6c4";
}

.symbol.ambulance::before {
	content: "\f803";
}

.symbol.amend::before {
	content: "\f802";
}

.symbol.amp-stories::before {
	content: "\ea13";
}

.symbol.analytics::before {
	content: "\ef3e";
}

.symbol.anchor::before {
	content: "\f1cd";
}

.symbol.android::before {
	content: "\e859";
}

.symbol.android-cell-4-bar::before {
	content: "\ef06";
}

.symbol.android-cell-4-bar-alert::before {
	content: "\ef09";
}

.symbol.android-cell-4-bar-off::before {
	content: "\ef08";
}

.symbol.android-cell-4-bar-plus::before {
	content: "\ef07";
}

.symbol.android-cell-5-bar::before {
	content: "\ef02";
}

.symbol.android-cell-5-bar-alert::before {
	content: "\ef05";
}

.symbol.android-cell-5-bar-off::before {
	content: "\ef04";
}

.symbol.android-cell-5-bar-plus::before {
	content: "\ef03";
}

.symbol.android-cell-dual-4-bar::before {
	content: "\ef0d";
}

.symbol.android-cell-dual-4-bar-alert::before {
	content: "\ef0f";
}

.symbol.android-cell-dual-4-bar-plus::before {
	content: "\ef0e";
}

.symbol.android-cell-dual-5-bar::before {
	content: "\ef0a";
}

.symbol.android-cell-dual-5-bar-alert::before {
	content: "\ef0c";
}

.symbol.android-cell-dual-5-bar-plus::before {
	content: "\ef0b";
}

.symbol.android-wifi-3-bar::before {
	content: "\ef16";
}

.symbol.android-wifi-3-bar-alert::before {
	content: "\ef1b";
}

.symbol.android-wifi-3-bar-lock::before {
	content: "\ef1a";
}

.symbol.android-wifi-3-bar-off::before {
	content: "\ef19";
}

.symbol.android-wifi-3-bar-plus::before {
	content: "\ef18";
}

.symbol.android-wifi-3-bar-question::before {
	content: "\ef17";
}

.symbol.android-wifi-4-bar::before {
	content: "\ef10";
}

.symbol.android-wifi-4-bar-alert::before {
	content: "\ef15";
}

.symbol.android-wifi-4-bar-lock::before {
	content: "\ef14";
}

.symbol.android-wifi-4-bar-off::before {
	content: "\ef13";
}

.symbol.android-wifi-4-bar-plus::before {
	content: "\ef12";
}

.symbol.android-wifi-4-bar-question::before {
	content: "\ef11";
}

.symbol.animated-images::before {
	content: "\f49a";
}

.symbol.animation::before {
	content: "\e71c";
}

.symbol.announcement::before {
	content: "\e87f";
}

.symbol.aod::before {
	content: "\f2e6";
}

.symbol.aod-tablet::before {
	content: "\f89f";
}

.symbol.aod-watch::before {
	content: "\f6ac";
}

.symbol.apartment::before {
	content: "\ea40";
}

.symbol.api::before {
	content: "\f1b7";
}

.symbol.apk-document::before {
	content: "\f88e";
}

.symbol.apk-install::before {
	content: "\f88f";
}

.symbol.app-badging::before {
	content: "\f72f";
}

.symbol.app-blocking::before {
	content: "\f2e5";
}

.symbol.app-promo::before {
	content: "\f2cd";
}

.symbol.app-registration::before {
	content: "\ef40";
}

.symbol.app-settings-alt::before {
	content: "\f2d9";
}

.symbol.app-shortcut::before {
	content: "\f2df";
}

.symbol.apparel::before {
	content: "\ef7b";
}

.symbol.approval::before {
	content: "\e982";
}

.symbol.approval-delegation::before {
	content: "\f84a";
}

.symbol.approval-delegation-off::before {
	content: "\f2c5";
}

.symbol.apps::before {
	content: "\e5c3";
}

.symbol.apps-outage::before {
	content: "\e7cc";
}

.symbol.aq::before {
	content: "\f55a";
}

.symbol.aq-indoor::before {
	content: "\f55b";
}

.symbol.ar-on-you::before {
	content: "\ef7c";
}

.symbol.ar-stickers::before {
	content: "\e983";
}

.symbol.architecture::before {
	content: "\ea3b";
}

.symbol.archive::before {
	content: "\e149";
}

.symbol.area-chart::before {
	content: "\e770";
}

.symbol.arming-countdown::before {
	content: "\e78a";
}

.symbol.arrow-and-edge::before {
	content: "\f5d7";
}

.symbol.arrow-back::before {
	content: "\e5c4";
}

.symbol.arrow-back-2::before {
	content: "\f43a";
}

.symbol.arrow-back-ios::before {
	content: "\e5e0";
}

.symbol.arrow-back-ios-new::before {
	content: "\e2ea";
}

.symbol.arrow-circle-down::before {
	content: "\f181";
}

.symbol.arrow-circle-left::before {
	content: "\eaa7";
}

.symbol.arrow-circle-right::before {
	content: "\eaaa";
}

.symbol.arrow-circle-up::before {
	content: "\f182";
}

.symbol.arrow-cool-down::before {
	content: "\f4b6";
}

.symbol.arrow-downward::before {
	content: "\e5db";
}

.symbol.arrow-downward-alt::before {
	content: "\e984";
}

.symbol.arrow-drop-down::before {
	content: "\e5c5";
}

.symbol.arrow-drop-down-circle::before {
	content: "\e5c6";
}

.symbol.arrow-drop-up::before {
	content: "\e5c7";
}

.symbol.arrow-forward::before {
	content: "\e5c8";
}

.symbol.arrow-forward-ios::before {
	content: "\e5e1";
}

.symbol.arrow-insert::before {
	content: "\f837";
}

.symbol.arrow-left::before {
	content: "\e5de";
}

.symbol.arrow-left-alt::before {
	content: "\ef7d";
}

.symbol.arrow-menu-close::before {
	content: "\f3d3";
}

.symbol.arrow-menu-open::before {
	content: "\f3d2";
}

.symbol.arrow-or-edge::before {
	content: "\f5d6";
}

.symbol.arrow-outward::before {
	content: "\f8ce";
}

.symbol.arrow-range::before {
	content: "\f69b";
}

.symbol.arrow-right::before {
	content: "\e5df";
}

.symbol.arrow-right-alt::before {
	content: "\e941";
}

.symbol.arrow-selector-tool::before {
	content: "\f82f";
}

.symbol.arrow-shape-up::before {
	content: "\eef6";
}

.symbol.arrow-shape-up-stack::before {
	content: "\eef7";
}

.symbol.arrow-shape-up-stack-2::before {
	content: "\eef8";
}

.symbol.arrow-split::before {
	content: "\ea04";
}

.symbol.arrow-top-left::before {
	content: "\f72e";
}

.symbol.arrow-top-right::before {
	content: "\f72d";
}

.symbol.arrow-upload-progress::before {
	content: "\f3f4";
}

.symbol.arrow-upload-ready::before {
	content: "\f3f5";
}

.symbol.arrow-upward::before {
	content: "\e5d8";
}

.symbol.arrow-upward-alt::before {
	content: "\e986";
}

.symbol.arrow-warm-up::before {
	content: "\f4b5";
}

.symbol.arrows-input::before {
	content: "\f394";
}

.symbol.arrows-more-down::before {
	content: "\f8ab";
}

.symbol.arrows-more-up::before {
	content: "\f8ac";
}

.symbol.arrows-output::before {
	content: "\f393";
}

.symbol.arrows-outward::before {
	content: "\f72c";
}

.symbol.art-track::before {
	content: "\e060";
}

.symbol.article::before {
	content: "\ef42";
}

.symbol.article-person::before {
	content: "\f368";
}

.symbol.article-shortcut::before {
	content: "\f587";
}

.symbol.artist::before {
	content: "\e01a";
}

.symbol.aspect-ratio::before {
	content: "\e85b";
}

.symbol.assessment::before {
	content: "\f0cc";
}

.symbol.assignment::before {
	content: "\e85d";
}

.symbol.assignment-add::before {
	content: "\f848";
}

.symbol.assignment-ind::before {
	content: "\e85e";
}

.symbol.assignment-late::before {
	content: "\e85f";
}

.symbol.assignment-return::before {
	content: "\e860";
}

.symbol.assignment-returned::before {
	content: "\e861";
}

.symbol.assignment-turned-in::before {
	content: "\e862";
}

.symbol.assist-walker::before {
	content: "\f8d5";
}

.symbol.assistant::before {
	content: "\e39f";
}

.symbol.assistant-device::before {
	content: "\e987";
}

.symbol.assistant-direction::before {
	content: "\e988";
}

.symbol.assistant-navigation::before {
	content: "\e989";
}

.symbol.assistant-on-hub::before {
	content: "\f6c1";
}

.symbol.assistant-photo::before {
	content: "\f0c6";
}

.symbol.assured-workload::before {
	content: "\eb6f";
}

.symbol.asterisk::before {
	content: "\f525";
}

.symbol.astrophotography-auto::before {
	content: "\f1d9";
}

.symbol.astrophotography-off::before {
	content: "\f1da";
}

.symbol.atm::before {
	content: "\e573";
}

.symbol.atr::before {
	content: "\ebc7";
}

.symbol.attach-email::before {
	content: "\ea5e";
}

.symbol.attach-file::before {
	content: "\e226";
}

.symbol.attach-file-add::before {
	content: "\f841";
}

.symbol.attach-file-off::before {
	content: "\f4d9";
}

.symbol.attach-money::before {
	content: "\e227";
}

.symbol.attachment::before {
	content: "\e2bc";
}

.symbol.attractions::before {
	content: "\ea52";
}

.symbol.attribution::before {
	content: "\efdb";
}

.symbol.audio-description::before {
	content: "\f58c";
}

.symbol.audio-file::before {
	content: "\eb82";
}

.symbol.audio-video-receiver::before {
	content: "\f5d3";
}

.symbol.audiotrack::before {
	content: "\e405";
}

.symbol.auto-activity-zone::before {
	content: "\f8ad";
}

.symbol.auto-awesome::before {
	content: "\e65f";
}

.symbol.auto-awesome-mosaic::before {
	content: "\e660";
}

.symbol.auto-awesome-motion::before {
	content: "\e661";
}

.symbol.auto-delete::before {
	content: "\ea4c";
}

.symbol.auto-detect-voice::before {
	content: "\f83e";
}

.symbol.auto-draw-solid::before {
	content: "\e98a";
}

.symbol.auto-fix::before {
	content: "\e663";
}

.symbol.auto-fix-high::before {
	content: "\e663";
}

.symbol.auto-fix-normal::before {
	content: "\e664";
}

.symbol.auto-fix-off::before {
	content: "\e665";
}

.symbol.auto-graph::before {
	content: "\e4fb";
}

.symbol.auto-label::before {
	content: "\f6be";
}

.symbol.auto-meeting-room::before {
	content: "\f6bf";
}

.symbol.auto-mode::before {
	content: "\ec20";
}

.symbol.auto-read-pause::before {
	content: "\f219";
}

.symbol.auto-read-play::before {
	content: "\f216";
}

.symbol.auto-schedule::before {
	content: "\e214";
}

.symbol.auto-stories::before {
	content: "\e666";
}

.symbol.auto-stories-off::before {
	content: "\f267";
}

.symbol.auto-timer::before {
	content: "\ef7f";
}

.symbol.auto-towing::before {
	content: "\e71e";
}

.symbol.auto-transmission::before {
	content: "\f53f";
}

.symbol.auto-videocam::before {
	content: "\f6c0";
}

.symbol.autofps-select::before {
	content: "\efdc";
}

.symbol.automation::before {
	content: "\f421";
}

.symbol.autopause::before {
	content: "\f6b6";
}

.symbol.autopay::before {
	content: "\f84b";
}

.symbol.autoplay::before {
	content: "\f6b5";
}

.symbol.autorenew::before {
	content: "\e863";
}

.symbol.autostop::before {
	content: "\f682";
}

.symbol.av1::before {
	content: "\f4b0";
}

.symbol.av-timer::before {
	content: "\e01b";
}

.symbol.avc::before {
	content: "\f4af";
}

.symbol.avg-pace::before {
	content: "\f6bb";
}

.symbol.avg-time::before {
	content: "\f813";
}

.symbol.award-meal::before {
	content: "\f241";
}

.symbol.award-star::before {
	content: "\f612";
}

.symbol.azm::before {
	content: "\f6ec";
}

.symbol.baby-changing-station::before {
	content: "\f19b";
}

.symbol.back-hand::before {
	content: "\e764";
}

.symbol.back-to-tab::before {
	content: "\f72b";
}

.symbol.background-dot-large::before {
	content: "\f79e";
}

.symbol.background-dot-small::before {
	content: "\f514";
}

.symbol.background-grid-small::before {
	content: "\f79d";
}

.symbol.background-replace::before {
	content: "\f20a";
}

.symbol.backlight-high::before {
	content: "\f7ed";
}

.symbol.backlight-high-off::before {
	content: "\f4ef";
}

.symbol.backlight-low::before {
	content: "\f7ec";
}

.symbol.backpack::before {
	content: "\f19c";
}

.symbol.backspace::before {
	content: "\e14a";
}

.symbol.backup::before {
	content: "\e864";
}

.symbol.backup-table::before {
	content: "\ef43";
}

.symbol.badge::before {
	content: "\ea67";
}

.symbol.badge-critical-battery::before {
	content: "\f156";
}

.symbol.badminton::before {
	content: "\f2a8";
}

.symbol.bakery-dining::before {
	content: "\ea53";
}

.symbol.balance::before {
	content: "\eaf6";
}

.symbol.balcony::before {
	content: "\e58f";
}

.symbol.ballot::before {
	content: "\e172";
}

.symbol.bar-chart::before {
	content: "\e26b";
}

.symbol.bar-chart-4-bars::before {
	content: "\f681";
}

.symbol.bar-chart-off::before {
	content: "\f411";
}

.symbol.barcode::before {
	content: "\e70b";
}

.symbol.barcode-reader::before {
	content: "\f85c";
}

.symbol.barcode-scanner::before {
	content: "\e70c";
}

.symbol.barefoot::before {
	content: "\f871";
}

.symbol.batch-prediction::before {
	content: "\f0f5";
}

.symbol.bath-bedrock::before {
	content: "\f286";
}

.symbol.bath-outdoor::before {
	content: "\f6fb";
}

.symbol.bath-private::before {
	content: "\f6fa";
}

.symbol.bath-public-large::before {
	content: "\f6f9";
}

.symbol.bath-soak::before {
	content: "\f2a0";
}

.symbol.bathroom::before {
	content: "\efdd";
}

.symbol.bathtub::before {
	content: "\ea41";
}

.symbol.battery-0-bar::before {
	content: "\ebdc";
}

.symbol.battery-1-bar::before {
	content: "\f09c";
}

.symbol.battery-20::before {
	content: "\f09c";
}

.symbol.battery-2-bar::before {
	content: "\f09d";
}

.symbol.battery-30::before {
	content: "\f09d";
}

.symbol.battery-3-bar::before {
	content: "\f09e";
}

.symbol.battery-4-bar::before {
	content: "\f09f";
}

.symbol.battery-50::before {
	content: "\f09e";
}

.symbol.battery-5-bar::before {
	content: "\f0a0";
}

.symbol.battery-60::before {
	content: "\f09f";
}

.symbol.battery-6-bar::before {
	content: "\f0a1";
}

.symbol.battery-80::before {
	content: "\f0a0";
}

.symbol.battery-90::before {
	content: "\f0a1";
}

.symbol.battery-alert::before {
	content: "\e19c";
}

.symbol.battery-android-0::before {
	content: "\f30d";
}

.symbol.battery-android-1::before {
	content: "\f30c";
}

.symbol.battery-android-2::before {
	content: "\f30b";
}

.symbol.battery-android-3::before {
	content: "\f30a";
}

.symbol.battery-android-4::before {
	content: "\f309";
}

.symbol.battery-android-5::before {
	content: "\f308";
}

.symbol.battery-android-6::before {
	content: "\f307";
}

.symbol.battery-android-alert::before {
	content: "\f306";
}

.symbol.battery-android-bolt::before {
	content: "\f305";
}

.symbol.battery-android-frame-1::before {
	content: "\f257";
}

.symbol.battery-android-frame-2::before {
	content: "\f256";
}

.symbol.battery-android-frame-3::before {
	content: "\f255";
}

.symbol.battery-android-frame-4::before {
	content: "\f254";
}

.symbol.battery-android-frame-5::before {
	content: "\f253";
}

.symbol.battery-android-frame-6::before {
	content: "\f252";
}

.symbol.battery-android-frame-alert::before {
	content: "\f251";
}

.symbol.battery-android-frame-bolt::before {
	content: "\f250";
}

.symbol.battery-android-frame-full::before {
	content: "\f24f";
}

.symbol.battery-android-frame-plus::before {
	content: "\f24e";
}

.symbol.battery-android-frame-question::before {
	content: "\f24d";
}

.symbol.battery-android-frame-share::before {
	content: "\f24c";
}

.symbol.battery-android-frame-shield::before {
	content: "\f24b";
}

.symbol.battery-android-full::before {
	content: "\f304";
}

.symbol.battery-android-plus::before {
	content: "\f303";
}

.symbol.battery-android-question::before {
	content: "\f302";
}

.symbol.battery-android-share::before {
	content: "\f301";
}

.symbol.battery-android-shield::before {
	content: "\f300";
}

.symbol.battery-change::before {
	content: "\f7eb";
}

.symbol.battery-charging-20::before {
	content: "\f0a2";
}

.symbol.battery-charging-30::before {
	content: "\f0a3";
}

.symbol.battery-charging-50::before {
	content: "\f0a4";
}

.symbol.battery-charging-60::before {
	content: "\f0a5";
}

.symbol.battery-charging-80::before {
	content: "\f0a6";
}

.symbol.battery-charging-90::before {
	content: "\f0a7";
}

.symbol.battery-charging-full::before {
	content: "\e1a3";
}

.symbol.battery-error::before {
	content: "\f7ea";
}

.symbol.battery-full::before {
	content: "\e1a5";
}

.symbol.battery-full-alt::before {
	content: "\f13b";
}

.symbol.battery-horiz-000::before {
	content: "\f8ae";
}

.symbol.battery-horiz-050::before {
	content: "\f8af";
}

.symbol.battery-horiz-075::before {
	content: "\f8b0";
}

.symbol.battery-low::before {
	content: "\f155";
}

.symbol.battery-plus::before {
	content: "\f7e9";
}

.symbol.battery-profile::before {
	content: "\e206";
}

.symbol.battery-saver::before {
	content: "\efde";
}

.symbol.battery-share::before {
	content: "\f67e";
}

.symbol.battery-status-good::before {
	content: "\f67d";
}

.symbol.battery-std::before {
	content: "\e1a5";
}

.symbol.battery-unknown::before {
	content: "\e1a6";
}

.symbol.battery-vert-005::before {
	content: "\f8b1";
}

.symbol.battery-vert-020::before {
	content: "\f8b2";
}

.symbol.battery-vert-050::before {
	content: "\f8b3";
}

.symbol.battery-very-low::before {
	content: "\f156";
}

.symbol.beach-access::before {
	content: "\eb3e";
}

.symbol.bed::before {
	content: "\efdf";
}

.symbol.bedroom-baby::before {
	content: "\efe0";
}

.symbol.bedroom-child::before {
	content: "\efe1";
}

.symbol.bedroom-parent::before {
	content: "\efe2";
}

.symbol.bedtime::before {
	content: "\f159";
}

.symbol.bedtime-off::before {
	content: "\eb76";
}

.symbol.beenhere::before {
	content: "\e52d";
}

.symbol.beer-meal::before {
	content: "\f285";
}

.symbol.bento::before {
	content: "\f1f4";
}

.symbol.bia::before {
	content: "\f6eb";
}

.symbol.bid-landscape::before {
	content: "\e678";
}

.symbol.bid-landscape-disabled::before {
	content: "\ef81";
}

.symbol.bigtop-updates::before {
	content: "\e669";
}

.symbol.bike-dock::before {
	content: "\f47b";
}

.symbol.bike-lane::before {
	content: "\f47a";
}

.symbol.bike-scooter::before {
	content: "\ef45";
}

.symbol.biotech::before {
	content: "\ea3a";
}

.symbol.blanket::before {
	content: "\e828";
}

.symbol.blender::before {
	content: "\efe3";
}

.symbol.blind::before {
	content: "\f8d6";
}

.symbol.blinds::before {
	content: "\e286";
}

.symbol.blinds-closed::before {
	content: "\ec1f";
}

.symbol.block::before {
	content: "\f08c";
}

.symbol.blood-pressure::before {
	content: "\e097";
}

.symbol.bloodtype::before {
	content: "\efe4";
}

.symbol.bluetooth::before {
	content: "\e1a7";
}

.symbol.bluetooth-audio::before {
	content: "\e60f";
}

.symbol.bluetooth-connected::before {
	content: "\e1a8";
}

.symbol.bluetooth-disabled::before {
	content: "\e1a9";
}

.symbol.bluetooth-drive::before {
	content: "\efe5";
}

.symbol.bluetooth-searching::before {
	content: "\e60f";
}

.symbol.blur-circular::before {
	content: "\e3a2";
}

.symbol.blur-linear::before {
	content: "\e3a3";
}

.symbol.blur-medium::before {
	content: "\e84c";
}

.symbol.blur-off::before {
	content: "\e3a4";
}

.symbol.blur-on::before {
	content: "\e3a5";
}

.symbol.blur-short::before {
	content: "\e8cf";
}

.symbol.boat-bus::before {
	content: "\f36d";
}

.symbol.boat-railway::before {
	content: "\f36c";
}

.symbol.body-fat::before {
	content: "\e098";
}

.symbol.body-system::before {
	content: "\e099";
}

.symbol.bolt::before {
	content: "\ea0b";
}

.symbol.bomb::before {
	content: "\f568";
}

.symbol.book::before {
	content: "\e86e";
}

.symbol.book-2::before {
	content: "\f53e";
}

.symbol.book-3::before {
	content: "\f53d";
}

.symbol.book-4::before {
	content: "\f53c";
}

.symbol.book-5::before {
	content: "\f53b";
}

.symbol.book-6::before {
	content: "\f3df";
}

.symbol.book-online::before {
	content: "\f2e4";
}

.symbol.book-ribbon::before {
	content: "\f3e7";
}

.symbol.bookmark::before {
	content: "\e8e7";
}

.symbol.bookmark-add::before {
	content: "\e598";
}

.symbol.bookmark-added::before {
	content: "\e599";
}

.symbol.bookmark-bag::before {
	content: "\f410";
}

.symbol.bookmark-border::before {
	content: "\e8e7";
}

.symbol.bookmark-check::before {
	content: "\f457";
}

.symbol.bookmark-flag::before {
	content: "\f456";
}

.symbol.bookmark-heart::before {
	content: "\f455";
}

.symbol.bookmark-manager::before {
	content: "\f7b1";
}

.symbol.bookmark-remove::before {
	content: "\e59a";
}

.symbol.bookmark-star::before {
	content: "\f454";
}

.symbol.bookmarks::before {
	content: "\e98b";
}

.symbol.books-movies-and-music::before {
	content: "\ef82";
}

.symbol.border-all::before {
	content: "\e228";
}

.symbol.border-bottom::before {
	content: "\e229";
}

.symbol.border-clear::before {
	content: "\e22a";
}

.symbol.border-color::before {
	content: "\e22b";
}

.symbol.border-horizontal::before {
	content: "\e22c";
}

.symbol.border-inner::before {
	content: "\e22d";
}

.symbol.border-left::before {
	content: "\e22e";
}

.symbol.border-outer::before {
	content: "\e22f";
}

.symbol.border-right::before {
	content: "\e230";
}

.symbol.border-style::before {
	content: "\e231";
}

.symbol.border-top::before {
	content: "\e232";
}

.symbol.border-vertical::before {
	content: "\e233";
}

.symbol.borg::before {
	content: "\f40d";
}

.symbol.bottom-app-bar::before {
	content: "\e730";
}

.symbol.bottom-drawer::before {
	content: "\e72d";
}

.symbol.bottom-navigation::before {
	content: "\e98c";
}

.symbol.bottom-panel-close::before {
	content: "\f72a";
}

.symbol.bottom-panel-open::before {
	content: "\f729";
}

.symbol.bottom-right-click::before {
	content: "\f684";
}

.symbol.bottom-sheets::before {
	content: "\e98d";
}

.symbol.box::before {
	content: "\f5a4";
}

.symbol.box-add::before {
	content: "\f5a5";
}

.symbol.box-edit::before {
	content: "\f5a6";
}

.symbol.boy::before {
	content: "\eb67";
}

.symbol.brand-awareness::before {
	content: "\e98e";
}

.symbol.brand-family::before {
	content: "\f4f1";
}

.symbol.branding-watermark::before {
	content: "\e06b";
}

.symbol.breakfast-dining::before {
	content: "\ea54";
}

.symbol.breaking-news::before {
	content: "\ea08";
}

.symbol.breaking-news-alt-1::before {
	content: "\f0ba";
}

.symbol.breastfeeding::before {
	content: "\f856";
}

.symbol.brick::before {
	content: "\f388";
}

.symbol.briefcase-meal::before {
	content: "\f246";
}

.symbol.brightness-1::before {
	content: "\e3fa";
}

.symbol.brightness-2::before {
	content: "\f036";
}

.symbol.brightness-3::before {
	content: "\e3a8";
}

.symbol.brightness-4::before {
	content: "\e3a9";
}

.symbol.brightness-5::before {
	content: "\e3aa";
}

.symbol.brightness-6::before {
	content: "\e3ab";
}

.symbol.brightness-7::before {
	content: "\e3ac";
}

.symbol.brightness-alert::before {
	content: "\f5cf";
}

.symbol.brightness-auto::before {
	content: "\e1ab";
}

.symbol.brightness-empty::before {
	content: "\f7e8";
}

.symbol.brightness-high::before {
	content: "\e1ac";
}

.symbol.brightness-low::before {
	content: "\e1ad";
}

.symbol.brightness-medium::before {
	content: "\e1ae";
}

.symbol.bring-your-own-ip::before {
	content: "\e016";
}

.symbol.broadcast-on-home::before {
	content: "\f8f8";
}

.symbol.broadcast-on-personal::before {
	content: "\f8f9";
}

.symbol.broken-image::before {
	content: "\e3ad";
}

.symbol.browse::before {
	content: "\eb13";
}

.symbol.browse-activity::before {
	content: "\f8a5";
}

.symbol.browse-gallery::before {
	content: "\ebd1";
}

.symbol.browser-not-supported::before {
	content: "\ef47";
}

.symbol.browser-updated::before {
	content: "\e7cf";
}

.symbol.brunch-dining::before {
	content: "\ea73";
}

.symbol.brush::before {
	content: "\e3ae";
}

.symbol.bubble::before {
	content: "\ef83";
}

.symbol.bubble-chart::before {
	content: "\e6dd";
}

.symbol.bubbles::before {
	content: "\f64e";
}

.symbol.bucket-check::before {
	content: "\ef2a";
}

.symbol.bug-report::before {
	content: "\e868";
}

.symbol.build::before {
	content: "\f8cd";
}

.symbol.build-circle::before {
	content: "\ef48";
}

.symbol.bungalow::before {
	content: "\e591";
}

.symbol.burst-mode::before {
	content: "\e43c";
}

.symbol.bus-alert::before {
	content: "\e98f";
}

.symbol.bus-railway::before {
	content: "\f36b";
}

.symbol.business::before {
	content: "\e7ee";
}

.symbol.business-center::before {
	content: "\eb3f";
}

.symbol.business-chip::before {
	content: "\f84c";
}

.symbol.business-messages::before {
	content: "\ef84";
}

.symbol.buttons-alt::before {
	content: "\e72f";
}

.symbol.cabin::before {
	content: "\e589";
}

.symbol.cable::before {
	content: "\efe6";
}

.symbol.cable-car::before {
	content: "\f479";
}

.symbol.cached::before {
	content: "\e86a";
}

.symbol.cadence::before {
	content: "\f4b4";
}

.symbol.cake::before {
	content: "\e7e9";
}

.symbol.cake-add::before {
	content: "\f85b";
}

.symbol.calculate::before {
	content: "\ea5f";
}

.symbol.calendar-add-on::before {
	content: "\ef85";
}

.symbol.calendar-apps-script::before {
	content: "\f0bb";
}

.symbol.calendar-check::before {
	content: "\f243";
}

.symbol.calendar-clock::before {
	content: "\f540";
}

.symbol.calendar-lock::before {
	content: "\f242";
}

.symbol.calendar-meal::before {
	content: "\f296";
}

.symbol.calendar-meal-2::before {
	content: "\f240";
}

.symbol.calendar-month::before {
	content: "\ebcc";
}

.symbol.calendar-today::before {
	content: "\e935";
}

.symbol.calendar-view-day::before {
	content: "\e936";
}

.symbol.calendar-view-month::before {
	content: "\efe7";
}

.symbol.calendar-view-week::before {
	content: "\efe8";
}

.symbol.call::before {
	content: "\f0d4";
}

.symbol.call-end::before {
	content: "\f0bc";
}

.symbol.call-end-alt::before {
	content: "\f0bc";
}

.symbol.call-log::before {
	content: "\e08e";
}

.symbol.call-made::before {
	content: "\e0b2";
}

.symbol.call-merge::before {
	content: "\e0b3";
}

.symbol.call-missed::before {
	content: "\e0b4";
}

.symbol.call-missed-outgoing::before {
	content: "\e0e4";
}

.symbol.call-quality::before {
	content: "\f652";
}

.symbol.call-received::before {
	content: "\e0b5";
}

.symbol.call-split::before {
	content: "\e0b6";
}

.symbol.call-to-action::before {
	content: "\e06c";
}

.symbol.camera::before {
	content: "\e3af";
}

.symbol.camera-alt::before {
	content: "\e412";
}

.symbol.camera-enhance::before {
	content: "\e8fc";
}

.symbol.camera-front::before {
	content: "\f2c9";
}

.symbol.camera-indoor::before {
	content: "\efe9";
}

.symbol.camera-outdoor::before {
	content: "\efea";
}

.symbol.camera-rear::before {
	content: "\f2c8";
}

.symbol.camera-roll::before {
	content: "\e3b3";
}

.symbol.camera-video::before {
	content: "\f7a6";
}

.symbol.cameraswitch::before {
	content: "\efeb";
}

.symbol.campaign::before {
	content: "\ef49";
}

.symbol.camping::before {
	content: "\f8a2";
}

.symbol.cancel::before {
	content: "\e888";
}

.symbol.cancel-presentation::before {
	content: "\e0e9";
}

.symbol.cancel-schedule-send::before {
	content: "\ea39";
}

.symbol.candle::before {
	content: "\f588";
}

.symbol.candlestick-chart::before {
	content: "\ead4";
}

.symbol.cannabis::before {
	content: "\f2f3";
}

.symbol.captive-portal::before {
	content: "\f728";
}

.symbol.capture::before {
	content: "\f727";
}

.symbol.car-crash::before {
	content: "\ebf2";
}

.symbol.car-defrost-left::before {
	content: "\f344";
}

.symbol.car-defrost-low-left::before {
	content: "\f343";
}

.symbol.car-defrost-low-right::before {
	content: "\f342";
}

.symbol.car-defrost-mid-left::before {
	content: "\f278";
}

.symbol.car-defrost-mid-low-left::before {
	content: "\f341";
}

.symbol.car-defrost-mid-low-right::before {
	content: "\f277";
}

.symbol.car-defrost-mid-right::before {
	content: "\f340";
}

.symbol.car-defrost-right::before {
	content: "\f33f";
}

.symbol.car-fan-low-left::before {
	content: "\f33e";
}

.symbol.car-fan-low-mid-left::before {
	content: "\f33d";
}

.symbol.car-fan-low-right::before {
	content: "\f33c";
}

.symbol.car-fan-mid-left::before {
	content: "\f33b";
}

.symbol.car-fan-mid-low-right::before {
	content: "\f33a";
}

.symbol.car-fan-mid-right::before {
	content: "\f339";
}

.symbol.car-fan-recirculate::before {
	content: "\f338";
}

.symbol.car-gear::before {
	content: "\f337";
}

.symbol.car-lock::before {
	content: "\f336";
}

.symbol.car-mirror-heat::before {
	content: "\f335";
}

.symbol.car-rental::before {
	content: "\ea55";
}

.symbol.car-repair::before {
	content: "\ea56";
}

.symbol.car-tag::before {
	content: "\f4e3";
}

.symbol.card-giftcard::before {
	content: "\e8f6";
}

.symbol.card-membership::before {
	content: "\e8f7";
}

.symbol.card-travel::before {
	content: "\e8f8";
}

.symbol.cardio-load::before {
	content: "\f4b9";
}

.symbol.cardiology::before {
	content: "\e09c";
}

.symbol.cards::before {
	content: "\e991";
}

.symbol.cards-star::before {
	content: "\f375";
}

.symbol.carpenter::before {
	content: "\f1f8";
}

.symbol.carry-on-bag::before {
	content: "\eb08";
}

.symbol.carry-on-bag-checked::before {
	content: "\eb0b";
}

.symbol.carry-on-bag-inactive::before {
	content: "\eb0a";
}

.symbol.carry-on-bag-question::before {
	content: "\eb09";
}

.symbol.cases::before {
	content: "\e992";
}

.symbol.casino::before {
	content: "\eb40";
}

.symbol.cast::before {
	content: "\e307";
}

.symbol.cast-connected::before {
	content: "\e308";
}

.symbol.cast-for-education::before {
	content: "\efec";
}

.symbol.cast-pause::before {
	content: "\f5f0";
}

.symbol.cast-warning::before {
	content: "\f5ef";
}

.symbol.castle::before {
	content: "\eab1";
}

.symbol.category::before {
	content: "\e574";
}

.symbol.category-search::before {
	content: "\f437";
}

.symbol.celebration::before {
	content: "\ea65";
}

.symbol.cell-merge::before {
	content: "\f82e";
}

.symbol.cell-tower::before {
	content: "\ebba";
}

.symbol.cell-wifi::before {
	content: "\e0ec";
}

.symbol.center-focus-strong::before {
	content: "\e3b4";
}

.symbol.center-focus-weak::before {
	content: "\e3b5";
}

.symbol.chair::before {
	content: "\efed";
}

.symbol.chair-alt::before {
	content: "\efee";
}

.symbol.chair-counter::before {
	content: "\f29f";
}

.symbol.chair-fireplace::before {
	content: "\f29e";
}

.symbol.chair-umbrella::before {
	content: "\f29d";
}

.symbol.chalet::before {
	content: "\e585";
}

.symbol.change-circle::before {
	content: "\e2e7";
}

.symbol.change-history::before {
	content: "\e86b";
}

.symbol.charger::before {
	content: "\e2ae";
}

.symbol.charging-station::before {
	content: "\f2e3";
}

.symbol.chart-data::before {
	content: "\e473";
}

.symbol.chat::before {
	content: "\e0c9";
}

.symbol.chat-add-on::before {
	content: "\f0f3";
}

.symbol.chat-apps-script::before {
	content: "\f0bd";
}

.symbol.chat-bubble::before {
	content: "\e0cb";
}

.symbol.chat-bubble-outline::before {
	content: "\e0cb";
}

.symbol.chat-error::before {
	content: "\f7ac";
}

.symbol.chat-info::before {
	content: "\f52b";
}

.symbol.chat-paste-go::before {
	content: "\f6bd";
}

.symbol.chat-paste-go-2::before {
	content: "\f3cb";
}

.symbol.check::before {
	content: "\e5ca";
}

.symbol.check-box::before {
	content: "\e834";
}

.symbol.check-box-outline-blank::before {
	content: "\e835";
}

.symbol.check-circle::before {
	content: "\f0be";
}

.symbol.check-circle-filled::before {
	content: "\f0be";
}

.symbol.check-circle-outline::before {
	content: "\f0be";
}

.symbol.check-circle-unread::before {
	content: "\f27e";
}

.symbol.check-in-out::before {
	content: "\f6f6";
}

.symbol.check-indeterminate-small::before {
	content: "\f88a";
}

.symbol.check-small::before {
	content: "\f88b";
}

.symbol.checkbook::before {
	content: "\e70d";
}

.symbol.checked-bag::before {
	content: "\eb0c";
}

.symbol.checked-bag-question::before {
	content: "\eb0d";
}

.symbol.checklist::before {
	content: "\e6b1";
}

.symbol.checklist-rtl::before {
	content: "\e6b3";
}

.symbol.checkroom::before {
	content: "\f19e";
}

.symbol.cheer::before {
	content: "\f6a8";
}

.symbol.chef-hat::before {
	content: "\f357";
}

.symbol.chess::before {
	content: "\f5e7";
}

.symbol.chess-bishop::before {
	content: "\f261";
}

.symbol.chess-bishop-2::before {
	content: "\f262";
}

.symbol.chess-king::before {
	content: "\f25f";
}

.symbol.chess-king-2::before {
	content: "\f260";
}

.symbol.chess-knight::before {
	content: "\f25e";
}

.symbol.chess-pawn::before {
	content: "\f3b6";
}

.symbol.chess-pawn-2::before {
	content: "\f25d";
}

.symbol.chess-queen::before {
	content: "\f25c";
}

.symbol.chess-rook::before {
	content: "\f25b";
}

.symbol.chevron-backward::before {
	content: "\f46b";
}

.symbol.chevron-forward::before {
	content: "\f46a";
}

.symbol.chevron-left::before {
	content: "\e5cb";
}

.symbol.chevron-right::before {
	content: "\e5cc";
}

.symbol.child-care::before {
	content: "\eb41";
}

.symbol.child-friendly::before {
	content: "\eb42";
}

.symbol.child-hat::before {
	content: "\ef30";
}

.symbol.chip-extraction::before {
	content: "\f821";
}

.symbol.chips::before {
	content: "\e993";
}

.symbol.chrome-reader-mode::before {
	content: "\e86d";
}

.symbol.chromecast-2::before {
	content: "\f17b";
}

.symbol.chromecast-device::before {
	content: "\e83c";
}

.symbol.chronic::before {
	content: "\ebb2";
}

.symbol.church::before {
	content: "\eaae";
}

.symbol.cinematic-blur::before {
	content: "\f853";
}

.symbol.circle::before {
	content: "\ef4a";
}

.symbol.circle-notifications::before {
	content: "\e994";
}

.symbol.circles::before {
	content: "\e7ea";
}

.symbol.circles-ext::before {
	content: "\e7ec";
}

.symbol.clarify::before {
	content: "\f0bf";
}

.symbol.class::before {
	content: "\e86e";
}

.symbol.clean-hands::before {
	content: "\f21f";
}

.symbol.cleaning::before {
	content: "\e995";
}

.symbol.cleaning-bucket::before {
	content: "\f8b4";
}

.symbol.cleaning-services::before {
	content: "\f0ff";
}

.symbol.clear::before {
	content: "\e5cd";
}

.symbol.clear-all::before {
	content: "\e0b8";
}

.symbol.clear-day::before {
	content: "\f157";
}

.symbol.clear-night::before {
	content: "\f159";
}

.symbol.climate-mini-split::before {
	content: "\f8b5";
}

.symbol.clinical-notes::before {
	content: "\e09e";
}

.symbol.clock-arrow-down::before {
	content: "\f382";
}

.symbol.clock-arrow-up::before {
	content: "\f381";
}

.symbol.clock-loader-10::before {
	content: "\f726";
}

.symbol.clock-loader-20::before {
	content: "\f725";
}

.symbol.clock-loader-40::before {
	content: "\f724";
}

.symbol.clock-loader-60::before {
	content: "\f723";
}

.symbol.clock-loader-80::before {
	content: "\f722";
}

.symbol.clock-loader-90::before {
	content: "\f721";
}

.symbol.close::before {
	content: "\e5cd";
}

.symbol.close-fullscreen::before {
	content: "\f1cf";
}

.symbol.close-small::before {
	content: "\f508";
}

.symbol.closed-caption::before {
	content: "\e996";
}

.symbol.closed-caption-add::before {
	content: "\f4ae";
}

.symbol.closed-caption-disabled::before {
	content: "\f1dc";
}

.symbol.closed-caption-off::before {
	content: "\e996";
}

.symbol.cloud::before {
	content: "\f15c";
}

.symbol.cloud-alert::before {
	content: "\f3cc";
}

.symbol.cloud-circle::before {
	content: "\e2be";
}

.symbol.cloud-done::before {
	content: "\e2bf";
}

.symbol.cloud-download::before {
	content: "\e2c0";
}

.symbol.cloud-lock::before {
	content: "\f386";
}

.symbol.cloud-off::before {
	content: "\e2c1";
}

.symbol.cloud-queue::before {
	content: "\f15c";
}

.symbol.cloud-sync::before {
	content: "\eb5a";
}

.symbol.cloud-upload::before {
	content: "\e2c3";
}

.symbol.cloudy::before {
	content: "\f15c";
}

.symbol.cloudy-filled::before {
	content: "\f15c";
}

.symbol.cloudy-snowing::before {
	content: "\e810";
}

.symbol.co2::before {
	content: "\e7b0";
}

.symbol.co-present::before {
	content: "\eaf0";
}

.symbol.code::before {
	content: "\e86f";
}

.symbol.code-blocks::before {
	content: "\f84d";
}

.symbol.code-off::before {
	content: "\e4f3";
}

.symbol.coffee::before {
	content: "\efef";
}

.symbol.coffee-maker::before {
	content: "\eff0";
}

.symbol.cognition::before {
	content: "\e09f";
}

.symbol.cognition-2::before {
	content: "\f3b5";
}

.symbol.collapse-all::before {
	content: "\e944";
}

.symbol.collapse-content::before {
	content: "\f507";
}

.symbol.collections::before {
	content: "\e3d3";
}

.symbol.collections-bookmark::before {
	content: "\e431";
}

.symbol.color-lens::before {
	content: "\e40a";
}

.symbol.colorize::before {
	content: "\e3b8";
}

.symbol.colors::before {
	content: "\e997";
}

.symbol.combine-columns::before {
	content: "\f420";
}

.symbol.comedy-mask::before {
	content: "\f4d6";
}

.symbol.comic-bubble::before {
	content: "\f5dd";
}

.symbol.comment::before {
	content: "\e24c";
}

.symbol.comment-bank::before {
	content: "\ea4e";
}

.symbol.comments-disabled::before {
	content: "\e7a2";
}

.symbol.commit::before {
	content: "\eaf5";
}

.symbol.communication::before {
	content: "\e27c";
}

.symbol.communities::before {
	content: "\eb16";
}

.symbol.communities-filled::before {
	content: "\eb16";
}

.symbol.commute::before {
	content: "\e940";
}

.symbol.compare::before {
	content: "\e3b9";
}

.symbol.compare-arrows::before {
	content: "\e915";
}

.symbol.compass-calibration::before {
	content: "\e57c";
}

.symbol.component-exchange::before {
	content: "\f1e7";
}

.symbol.compost::before {
	content: "\e761";
}

.symbol.compress::before {
	content: "\e94d";
}

.symbol.computer::before {
	content: "\e31e";
}

.symbol.computer-arrow-up::before {
	content: "\f2f7";
}

.symbol.computer-cancel::before {
	content: "\f2f6";
}

.symbol.concierge::before {
	content: "\f561";
}

.symbol.conditions::before {
	content: "\e0a0";
}

.symbol.confirmation-number::before {
	content: "\e638";
}

.symbol.congenital::before {
	content: "\e0a1";
}

.symbol.connect-without-contact::before {
	content: "\f223";
}

.symbol.connected-tv::before {
	content: "\e998";
}

.symbol.connecting-airports::before {
	content: "\e7c9";
}

.symbol.construction::before {
	content: "\ea3c";
}

.symbol.contact-emergency::before {
	content: "\f8d1";
}

.symbol.contact-mail::before {
	content: "\e0d0";
}

.symbol.contact-page::before {
	content: "\f22e";
}

.symbol.contact-phone::before {
	content: "\f0c0";
}

.symbol.contact-phone-filled::before {
	content: "\f0c0";
}

.symbol.contact-support::before {
	content: "\e94c";
}

.symbol.contactless::before {
	content: "\ea71";
}

.symbol.contactless-off::before {
	content: "\f858";
}

.symbol.contacts::before {
	content: "\e0ba";
}

.symbol.contacts-product::before {
	content: "\e999";
}

.symbol.content-copy::before {
	content: "\e14d";
}

.symbol.content-cut::before {
	content: "\e14e";
}

.symbol.content-paste::before {
	content: "\e14f";
}

.symbol.content-paste-go::before {
	content: "\ea8e";
}

.symbol.content-paste-off::before {
	content: "\e4f8";
}

.symbol.content-paste-search::before {
	content: "\ea9b";
}

.symbol.contextual-token::before {
	content: "\f486";
}

.symbol.contextual-token-add::before {
	content: "\f485";
}

.symbol.contract::before {
	content: "\f5a0";
}

.symbol.contract-delete::before {
	content: "\f5a2";
}

.symbol.contract-edit::before {
	content: "\f5a1";
}

.symbol.contrast::before {
	content: "\eb37";
}

.symbol.contrast-circle::before {
	content: "\f49f";
}

.symbol.contrast-rtl-off::before {
	content: "\ec72";
}

.symbol.contrast-square::before {
	content: "\f4a0";
}

.symbol.control-camera::before {
	content: "\e074";
}

.symbol.control-point::before {
	content: "\e3ba";
}

.symbol.control-point-duplicate::before {
	content: "\e3bb";
}

.symbol.controller-gen::before {
	content: "\e83d";
}

.symbol.conversation::before {
	content: "\ef2f";
}

.symbol.conversion-path::before {
	content: "\f0c1";
}

.symbol.conversion-path-off::before {
	content: "\f7b4";
}

.symbol.convert-to-text::before {
	content: "\f41f";
}

.symbol.conveyor-belt::before {
	content: "\f867";
}

.symbol.cookie::before {
	content: "\eaac";
}

.symbol.cookie-off::before {
	content: "\f79a";
}

.symbol.cooking::before {
	content: "\e2b6";
}

.symbol.cool-to-dry::before {
	content: "\e276";
}

.symbol.copy-all::before {
	content: "\e2ec";
}

.symbol.copyright::before {
	content: "\e90c";
}

.symbol.coronavirus::before {
	content: "\f221";
}

.symbol.corporate-fare::before {
	content: "\f1d0";
}

.symbol.cottage::before {
	content: "\e587";
}

.symbol.counter-0::before {
	content: "\f785";
}

.symbol.counter-1::before {
	content: "\f784";
}

.symbol.counter-2::before {
	content: "\f783";
}

.symbol.counter-3::before {
	content: "\f782";
}

.symbol.counter-4::before {
	content: "\f781";
}

.symbol.counter-5::before {
	content: "\f780";
}

.symbol.counter-6::before {
	content: "\f77f";
}

.symbol.counter-7::before {
	content: "\f77e";
}

.symbol.counter-8::before {
	content: "\f77d";
}

.symbol.counter-9::before {
	content: "\f77c";
}

.symbol.countertops::before {
	content: "\f1f7";
}

.symbol.create::before {
	content: "\f097";
}

.symbol.create-new-folder::before {
	content: "\e2cc";
}

.symbol.credit-card::before {
	content: "\e8a1";
}

.symbol.credit-card-clock::before {
	content: "\f438";
}

.symbol.credit-card-gear::before {
	content: "\f52d";
}

.symbol.credit-card-heart::before {
	content: "\f52c";
}

.symbol.credit-card-off::before {
	content: "\e4f4";
}

.symbol.credit-score::before {
	content: "\eff1";
}

.symbol.crib::before {
	content: "\e588";
}

.symbol.crisis-alert::before {
	content: "\ebe9";
}

.symbol.crop::before {
	content: "\e3be";
}

.symbol.crop-16-9::before {
	content: "\e3bc";
}

.symbol.crop-3-2::before {
	content: "\e3bd";
}

.symbol.crop-5-4::before {
	content: "\e3bf";
}

.symbol.crop-7-5::before {
	content: "\e3c0";
}

.symbol.crop-9-16::before {
	content: "\f549";
}

.symbol.crop-din::before {
	content: "\e3c6";
}

.symbol.crop-free::before {
	content: "\e3c2";
}

.symbol.crop-landscape::before {
	content: "\e3c3";
}

.symbol.crop-original::before {
	content: "\e3f4";
}

.symbol.crop-portrait::before {
	content: "\e3c5";
}

.symbol.crop-rotate::before {
	content: "\e437";
}

.symbol.crop-square::before {
	content: "\e3c6";
}

.symbol.crossword::before {
	content: "\f5e5";
}

.symbol.crowdsource::before {
	content: "\eb18";
}

.symbol.crown::before {
	content: "\ecb3";
}

.symbol.cruelty-free::before {
	content: "\e799";
}

.symbol.css::before {
	content: "\eb93";
}

.symbol.csv::before {
	content: "\e6cf";
}

.symbol.currency-bitcoin::before {
	content: "\ebc5";
}

.symbol.currency-exchange::before {
	content: "\eb70";
}

.symbol.currency-franc::before {
	content: "\eafa";
}

.symbol.currency-lira::before {
	content: "\eaef";
}

.symbol.currency-pound::before {
	content: "\eaf1";
}

.symbol.currency-ruble::before {
	content: "\eaec";
}

.symbol.currency-rupee::before {
	content: "\eaf7";
}

.symbol.currency-rupee-circle::before {
	content: "\f460";
}

.symbol.currency-yen::before {
	content: "\eafb";
}

.symbol.currency-yuan::before {
	content: "\eaf9";
}

.symbol.curtains::before {
	content: "\ec1e";
}

.symbol.curtains-closed::before {
	content: "\ec1d";
}

.symbol.custom-typography::before {
	content: "\e732";
}

.symbol.cut::before {
	content: "\f08b";
}

.symbol.cycle::before {
	content: "\f854";
}

.symbol.cyclone::before {
	content: "\ebd5";
}

.symbol.dangerous::before {
	content: "\e99a";
}

.symbol.dark-mode::before {
	content: "\e51c";
}

.symbol.dashboard::before {
	content: "\e871";
}

.symbol.dashboard-2::before {
	content: "\f3ea";
}

.symbol.dashboard-customize::before {
	content: "\e99b";
}

.symbol.data-alert::before {
	content: "\f7f6";
}

.symbol.data-array::before {
	content: "\ead1";
}

.symbol.data-check::before {
	content: "\f7f2";
}

.symbol.data-exploration::before {
	content: "\e76f";
}

.symbol.data-info-alert::before {
	content: "\f7f5";
}

.symbol.data-loss-prevention::before {
	content: "\e2dc";
}

.symbol.data-object::before {
	content: "\ead3";
}

.symbol.data-saver-off::before {
	content: "\eff2";
}

.symbol.data-saver-on::before {
	content: "\eff3";
}

.symbol.data-table::before {
	content: "\e99c";
}

.symbol.data-thresholding::before {
	content: "\eb9f";
}

.symbol.data-usage::before {
	content: "\eff2";
}

.symbol.database::before {
	content: "\f20e";
}

.symbol.database-off::before {
	content: "\f414";
}

.symbol.database-search::before {
	content: "\f38e";
}

.symbol.database-upload::before {
	content: "\f3dc";
}

.symbol.dataset::before {
	content: "\f8ee";
}

.symbol.dataset-linked::before {
	content: "\f8ef";
}

.symbol.date-range::before {
	content: "\e916";
}

.symbol.deblur::before {
	content: "\eb77";
}

.symbol.deceased::before {
	content: "\e0a5";
}

.symbol.decimal-decrease::before {
	content: "\f82d";
}

.symbol.decimal-increase::before {
	content: "\f82c";
}

.symbol.deck::before {
	content: "\ea42";
}

.symbol.dehaze::before {
	content: "\e3c7";
}

.symbol.delete::before {
	content: "\e92e";
}

.symbol.delete-forever::before {
	content: "\e92b";
}

.symbol.delete-history::before {
	content: "\f518";
}

.symbol.delete-outline::before {
	content: "\e92e";
}

.symbol.delete-sweep::before {
	content: "\e16c";
}

.symbol.delivery-dining::before {
	content: "\eb28";
}

.symbol.delivery-truck-bolt::before {
	content: "\f3a2";
}

.symbol.delivery-truck-speed::before {
	content: "\f3a1";
}

.symbol.demography::before {
	content: "\e489";
}

.symbol.density-large::before {
	content: "\eba9";
}

.symbol.density-medium::before {
	content: "\eb9e";
}

.symbol.density-small::before {
	content: "\eba8";
}

.symbol.dentistry::before {
	content: "\e0a6";
}

.symbol.departure-board::before {
	content: "\e576";
}

.symbol.deployed-code::before {
	content: "\f720";
}

.symbol.deployed-code-account::before {
	content: "\f51b";
}

.symbol.deployed-code-alert::before {
	content: "\f5f2";
}

.symbol.deployed-code-history::before {
	content: "\f5f3";
}

.symbol.deployed-code-update::before {
	content: "\f5f4";
}

.symbol.dermatology::before {
	content: "\e0a7";
}

.symbol.description::before {
	content: "\e873";
}

.symbol.deselect::before {
	content: "\ebb6";
}

.symbol.design-services::before {
	content: "\f10a";
}

.symbol.desk::before {
	content: "\f8f4";
}

.symbol.deskphone::before {
	content: "\f7fa";
}

.symbol.desktop-access-disabled::before {
	content: "\e99d";
}

.symbol.desktop-cloud::before {
	content: "\f3db";
}

.symbol.desktop-cloud-stack::before {
	content: "\f3be";
}

.symbol.desktop-landscape::before {
	content: "\f45e";
}

.symbol.desktop-landscape-add::before {
	content: "\f439";
}

.symbol.desktop-mac::before {
	content: "\e30b";
}

.symbol.desktop-portrait::before {
	content: "\f45d";
}

.symbol.desktop-windows::before {
	content: "\e30c";
}

.symbol.destruction::before {
	content: "\f585";
}

.symbol.details::before {
	content: "\e3c8";
}

.symbol.detection-and-zone::before {
	content: "\e29f";
}

.symbol.detector::before {
	content: "\e282";
}

.symbol.detector-alarm::before {
	content: "\e1f7";
}

.symbol.detector-battery::before {
	content: "\e204";
}

.symbol.detector-co::before {
	content: "\e2af";
}

.symbol.detector-offline::before {
	content: "\e223";
}

.symbol.detector-smoke::before {
	content: "\e285";
}

.symbol.detector-status::before {
	content: "\e1e8";
}

.symbol.developer-board::before {
	content: "\e30d";
}

.symbol.developer-board-off::before {
	content: "\e4ff";
}

.symbol.developer-guide::before {
	content: "\e99e";
}

.symbol.developer-mode::before {
	content: "\f2e2";
}

.symbol.developer-mode-tv::before {
	content: "\e874";
}

.symbol.device-band::before {
	content: "\f2f5";
}

.symbol.device-hub::before {
	content: "\e335";
}

.symbol.device-reset::before {
	content: "\e8b3";
}

.symbol.device-thermostat::before {
	content: "\e1ff";
}

.symbol.device-unknown::before {
	content: "\f2e1";
}

.symbol.devices::before {
	content: "\e326";
}

.symbol.devices-fold::before {
	content: "\ebde";
}

.symbol.devices-fold-2::before {
	content: "\f406";
}

.symbol.devices-off::before {
	content: "\f7a5";
}

.symbol.devices-other::before {
	content: "\e337";
}

.symbol.devices-wearables::before {
	content: "\f6ab";
}

.symbol.dew-point::before {
	content: "\f879";
}

.symbol.diagnosis::before {
	content: "\e0a8";
}

.symbol.diagonal-line::before {
	content: "\f41e";
}

.symbol.dialer-sip::before {
	content: "\e0bb";
}

.symbol.dialogs::before {
	content: "\e99f";
}

.symbol.dialpad::before {
	content: "\e0bc";
}

.symbol.diamond::before {
	content: "\ead5";
}

.symbol.diamond-shine::before {
	content: "\f2b2";
}

.symbol.dictionary::before {
	content: "\f539";
}

.symbol.difference::before {
	content: "\eb7d";
}

.symbol.digital-out-of-home::before {
	content: "\f1de";
}

.symbol.digital-wellbeing::before {
	content: "\ef86";
}

.symbol.dine-heart::before {
	content: "\f29c";
}

.symbol.dine-in::before {
	content: "\f295";
}

.symbol.dine-lamp::before {
	content: "\f29b";
}

.symbol.dining::before {
	content: "\eff4";
}

.symbol.dinner-dining::before {
	content: "\ea57";
}

.symbol.directions::before {
	content: "\e52e";
}

.symbol.directions-alt::before {
	content: "\f880";
}

.symbol.directions-alt-off::before {
	content: "\f881";
}

.symbol.directions-bike::before {
	content: "\e52f";
}

.symbol.directions-boat::before {
	content: "\eff5";
}

.symbol.directions-boat-filled::before {
	content: "\eff5";
}

.symbol.directions-bus::before {
	content: "\eff6";
}

.symbol.directions-bus-filled::before {
	content: "\eff6";
}

.symbol.directions-car::before {
	content: "\eff7";
}

.symbol.directions-car-filled::before {
	content: "\eff7";
}

.symbol.directions-off::before {
	content: "\f10f";
}

.symbol.directions-railway::before {
	content: "\eff8";
}

.symbol.directions-railway-2::before {
	content: "\f462";
}

.symbol.directions-railway-filled::before {
	content: "\eff8";
}

.symbol.directions-run::before {
	content: "\e566";
}

.symbol.directions-subway::before {
	content: "\effa";
}

.symbol.directions-subway-filled::before {
	content: "\effa";
}

.symbol.directions-transit::before {
	content: "\effa";
}

.symbol.directions-transit-filled::before {
	content: "\effa";
}

.symbol.directions-walk::before {
	content: "\e536";
}

.symbol.directory-sync::before {
	content: "\e394";
}

.symbol.dirty-lens::before {
	content: "\ef4b";
}

.symbol.disabled-by-default::before {
	content: "\f230";
}

.symbol.disabled-visible::before {
	content: "\e76e";
}

.symbol.disc-full::before {
	content: "\e610";
}

.symbol.discover-tune::before {
	content: "\e018";
}

.symbol.dishwasher::before {
	content: "\e9a0";
}

.symbol.dishwasher-gen::before {
	content: "\e832";
}

.symbol.display-external-input::before {
	content: "\f7e7";
}

.symbol.display-settings::before {
	content: "\eb97";
}

.symbol.distance::before {
	content: "\f6ea";
}

.symbol.diversity-1::before {
	content: "\f8d7";
}

.symbol.diversity-2::before {
	content: "\f8d8";
}

.symbol.diversity-3::before {
	content: "\f8d9";
}

.symbol.diversity-4::before {
	content: "\f857";
}

.symbol.dns::before {
	content: "\e875";
}

.symbol.do-disturb::before {
	content: "\f08c";
}

.symbol.do-disturb-alt::before {
	content: "\f08d";
}

.symbol.do-disturb-off::before {
	content: "\f08e";
}

.symbol.do-disturb-on::before {
	content: "\f08f";
}

.symbol.do-not-disturb::before {
	content: "\f08d";
}

.symbol.do-not-disturb-alt::before {
	content: "\f08c";
}

.symbol.do-not-disturb-off::before {
	content: "\f08e";
}

.symbol.do-not-disturb-on::before {
	content: "\f08f";
}

.symbol.do-not-disturb-on-total-silence::before {
	content: "\effb";
}

.symbol.do-not-step::before {
	content: "\f19f";
}

.symbol.do-not-touch::before {
	content: "\f1b0";
}

.symbol.dock::before {
	content: "\f2e0";
}

.symbol.dock-to-bottom::before {
	content: "\f7e6";
}

.symbol.dock-to-left::before {
	content: "\f7e5";
}

.symbol.dock-to-right::before {
	content: "\f7e4";
}

.symbol.docs::before {
	content: "\ea7d";
}

.symbol.docs-add-on::before {
	content: "\f0c2";
}

.symbol.docs-apps-script::before {
	content: "\f0c3";
}

.symbol.document-scanner::before {
	content: "\e5fa";
}

.symbol.document-search::before {
	content: "\f385";
}

.symbol.domain::before {
	content: "\e7ee";
}

.symbol.domain-add::before {
	content: "\eb62";
}

.symbol.domain-disabled::before {
	content: "\e0ef";
}

.symbol.domain-verification::before {
	content: "\ef4c";
}

.symbol.domain-verification-off::before {
	content: "\f7b0";
}

.symbol.domino-mask::before {
	content: "\f5e4";
}

.symbol.done::before {
	content: "\e876";
}

.symbol.done-all::before {
	content: "\e877";
}

.symbol.done-outline::before {
	content: "\e92f";
}

.symbol.donut-large::before {
	content: "\e917";
}

.symbol.donut-small::before {
	content: "\e918";
}

.symbol.door-back::before {
	content: "\effc";
}

.symbol.door-front::before {
	content: "\effd";
}

.symbol.door-open::before {
	content: "\e77c";
}

.symbol.door-sensor::before {
	content: "\e28a";
}

.symbol.door-sliding::before {
	content: "\effe";
}

.symbol.doorbell::before {
	content: "\efff";
}

.symbol.doorbell-3p::before {
	content: "\e1e7";
}

.symbol.doorbell-chime::before {
	content: "\e1f3";
}

.symbol.double-arrow::before {
	content: "\ea50";
}

.symbol.downhill-skiing::before {
	content: "\e509";
}

.symbol.download::before {
	content: "\f090";
}

.symbol.download-2::before {
	content: "\f523";
}

.symbol.download-done::before {
	content: "\f091";
}

.symbol.download-for-offline::before {
	content: "\f000";
}

.symbol.downloading::before {
	content: "\f001";
}

.symbol.draft::before {
	content: "\e66d";
}

.symbol.draft-orders::before {
	content: "\e7b3";
}

.symbol.drafts::before {
	content: "\e151";
}

.symbol.drag-click::before {
	content: "\f71f";
}

.symbol.drag-handle::before {
	content: "\e25d";
}

.symbol.drag-indicator::before {
	content: "\e945";
}

.symbol.drag-pan::before {
	content: "\f71e";
}

.symbol.draw::before {
	content: "\e746";
}

.symbol.draw-abstract::before {
	content: "\f7f8";
}

.symbol.draw-collage::before {
	content: "\f7f7";
}

.symbol.drawing-recognition::before {
	content: "\eb00";
}

.symbol.dresser::before {
	content: "\e210";
}

.symbol.drive-eta::before {
	content: "\eff7";
}

.symbol.drive-export::before {
	content: "\f41d";
}

.symbol.drive-file-move::before {
	content: "\e9a1";
}

.symbol.drive-file-move-outline::before {
	content: "\e9a1";
}

.symbol.drive-file-move-rtl::before {
	content: "\e9a1";
}

.symbol.drive-file-rename-outline::before {
	content: "\e9a2";
}

.symbol.drive-folder-upload::before {
	content: "\e9a3";
}

.symbol.drive-fusiontable::before {
	content: "\e678";
}

.symbol.drone::before {
	content: "\f25a";
}

.symbol.drone-2::before {
	content: "\f259";
}

.symbol.dropdown::before {
	content: "\e9a4";
}

.symbol.dropper-eye::before {
	content: "\f351";
}

.symbol.dry::before {
	content: "\f1b3";
}

.symbol.dry-cleaning::before {
	content: "\ea58";
}

.symbol.dual-screen::before {
	content: "\f6cf";
}

.symbol.duo::before {
	content: "\e9a5";
}

.symbol.dvr::before {
	content: "\e1b2";
}

.symbol.dynamic-feed::before {
	content: "\ea14";
}

.symbol.dynamic-form::before {
	content: "\f1bf";
}

.symbol.e911-avatar::before {
	content: "\f11a";
}

.symbol.e911-emergency::before {
	content: "\f119";
}

.symbol.e-mobiledata::before {
	content: "\f002";
}

.symbol.e-mobiledata-badge::before {
	content: "\f7e3";
}

.symbol.ear-sound::before {
	content: "\f356";
}

.symbol.earbud-case::before {
	content: "\f327";
}

.symbol.earbud-left::before {
	content: "\f326";
}

.symbol.earbud-right::before {
	content: "\f325";
}

.symbol.earbuds::before {
	content: "\f003";
}

.symbol.earbuds-2::before {
	content: "\f324";
}

.symbol.earbuds-battery::before {
	content: "\f004";
}

.symbol.early-on::before {
	content: "\e2ba";
}

.symbol.earthquake::before {
	content: "\f64f";
}

.symbol.east::before {
	content: "\f1df";
}

.symbol.ecg::before {
	content: "\f80f";
}

.symbol.ecg-heart::before {
	content: "\f6e9";
}

.symbol.eco::before {
	content: "\ea35";
}

.symbol.eda::before {
	content: "\f6e8";
}

.symbol.edgesensor-high::before {
	content: "\f2ef";
}

.symbol.edgesensor-low::before {
	content: "\f2ee";
}

.symbol.edit::before {
	content: "\f097";
}

.symbol.edit-arrow-down::before {
	content: "\f380";
}

.symbol.edit-arrow-up::before {
	content: "\f37f";
}

.symbol.edit-attributes::before {
	content: "\e578";
}

.symbol.edit-audio::before {
	content: "\f42d";
}

.symbol.edit-calendar::before {
	content: "\e742";
}

.symbol.edit-document::before {
	content: "\f88c";
}

.symbol.edit-location::before {
	content: "\e568";
}

.symbol.edit-location-alt::before {
	content: "\e1c5";
}

.symbol.edit-note::before {
	content: "\e745";
}

.symbol.edit-notifications::before {
	content: "\e525";
}

.symbol.edit-off::before {
	content: "\e950";
}

.symbol.edit-road::before {
	content: "\ef4d";
}

.symbol.edit-square::before {
	content: "\f88d";
}

.symbol.editor-choice::before {
	content: "\f528";
}

.symbol.egg::before {
	content: "\eacc";
}

.symbol.egg-alt::before {
	content: "\eac8";
}

.symbol.eject::before {
	content: "\e8fb";
}

.symbol.elderly::before {
	content: "\f21a";
}

.symbol.elderly-woman::before {
	content: "\eb69";
}

.symbol.electric-bike::before {
	content: "\eb1b";
}

.symbol.electric-bolt::before {
	content: "\ec1c";
}

.symbol.electric-car::before {
	content: "\eb1c";
}

.symbol.electric-meter::before {
	content: "\ec1b";
}

.symbol.electric-moped::before {
	content: "\eb1d";
}

.symbol.electric-rickshaw::before {
	content: "\eb1e";
}

.symbol.electric-scooter::before {
	content: "\eb1f";
}

.symbol.electrical-services::before {
	content: "\f102";
}

.symbol.elevation::before {
	content: "\f6e7";
}

.symbol.elevator::before {
	content: "\f1a0";
}

.symbol.email::before {
	content: "\e159";
}

.symbol.emergency::before {
	content: "\e1eb";
}

.symbol.emergency-heat::before {
	content: "\f15d";
}

.symbol.emergency-heat-2::before {
	content: "\f4e5";
}

.symbol.emergency-home::before {
	content: "\e82a";
}

.symbol.emergency-recording::before {
	content: "\ebf4";
}

.symbol.emergency-share::before {
	content: "\ebf6";
}

.symbol.emergency-share-off::before {
	content: "\f59e";
}

.symbol.emoji-emotions::before {
	content: "\ea22";
}

.symbol.emoji-events::before {
	content: "\ea23";
}

.symbol.emoji-flags::before {
	content: "\f0c6";
}

.symbol.emoji-food-beverage::before {
	content: "\ea1b";
}

.symbol.emoji-language::before {
	content: "\f4cd";
}

.symbol.emoji-nature::before {
	content: "\ea1c";
}

.symbol.emoji-objects::before {
	content: "\ea24";
}

.symbol.emoji-people::before {
	content: "\ea1d";
}

.symbol.emoji-symbols::before {
	content: "\ea1e";
}

.symbol.emoji-transportation::before {
	content: "\ea1f";
}

.symbol.emoticon::before {
	content: "\e5f3";
}

.symbol.empty-dashboard::before {
	content: "\f844";
}

.symbol.enable::before {
	content: "\f188";
}

.symbol.encrypted::before {
	content: "\e593";
}

.symbol.encrypted-add::before {
	content: "\f429";
}

.symbol.encrypted-add-circle::before {
	content: "\f42a";
}

.symbol.encrypted-minus-circle::before {
	content: "\f428";
}

.symbol.encrypted-off::before {
	content: "\f427";
}

.symbol.endocrinology::before {
	content: "\e0a9";
}

.symbol.energy::before {
	content: "\e9a6";
}

.symbol.energy-program-saving::before {
	content: "\f15f";
}

.symbol.energy-program-time-used::before {
	content: "\f161";
}

.symbol.energy-savings-leaf::before {
	content: "\ec1a";
}

.symbol.engineering::before {
	content: "\ea3d";
}

.symbol.enhanced-encryption::before {
	content: "\e63f";
}

.symbol.ent::before {
	content: "\e0aa";
}

.symbol.enterprise::before {
	content: "\e70e";
}

.symbol.enterprise-off::before {
	content: "\eb4d";
}

.symbol.equal::before {
	content: "\f77b";
}

.symbol.equalizer::before {
	content: "\e01d";
}

.symbol.eraser-size-1::before {
	content: "\f3fc";
}

.symbol.eraser-size-2::before {
	content: "\f3fb";
}

.symbol.eraser-size-3::before {
	content: "\f3fa";
}

.symbol.eraser-size-4::before {
	content: "\f3f9";
}

.symbol.eraser-size-5::before {
	content: "\f3f8";
}

.symbol.error::before {
	content: "\f8b6";
}

.symbol.error-circle-rounded::before {
	content: "\f8b6";
}

.symbol.error-med::before {
	content: "\e49b";
}

.symbol.error-outline::before {
	content: "\f8b6";
}

.symbol.escalator::before {
	content: "\f1a1";
}

.symbol.escalator-warning::before {
	content: "\f1ac";
}

.symbol.euro::before {
	content: "\ea15";
}

.symbol.euro-symbol::before {
	content: "\e926";
}

.symbol.ev-charger::before {
	content: "\e56d";
}

.symbol.ev-mobiledata-badge::before {
	content: "\f7e2";
}

.symbol.ev-shadow::before {
	content: "\ef8f";
}

.symbol.ev-shadow-add::before {
	content: "\f580";
}

.symbol.ev-shadow-minus::before {
	content: "\f57f";
}

.symbol.ev-station::before {
	content: "\e56d";
}

.symbol.event::before {
	content: "\e878";
}

.symbol.event-available::before {
	content: "\e614";
}

.symbol.event-busy::before {
	content: "\e615";
}

.symbol.event-list::before {
	content: "\f683";
}

.symbol.event-note::before {
	content: "\e616";
}

.symbol.event-repeat::before {
	content: "\eb7b";
}

.symbol.event-seat::before {
	content: "\e903";
}

.symbol.event-upcoming::before {
	content: "\f238";
}

.symbol.exclamation::before {
	content: "\f22f";
}

.symbol.exercise::before {
	content: "\f6e6";
}

.symbol.exit-to-app::before {
	content: "\e879";
}

.symbol.expand::before {
	content: "\e94f";
}

.symbol.expand-all::before {
	content: "\e946";
}

.symbol.expand-circle-down::before {
	content: "\e7cd";
}

.symbol.expand-circle-right::before {
	content: "\f591";
}

.symbol.expand-circle-up::before {
	content: "\f5d2";
}

.symbol.expand-content::before {
	content: "\f830";
}

.symbol.expand-less::before {
	content: "\e5ce";
}

.symbol.expand-more::before {
	content: "\e5cf";
}

.symbol.expansion-panels::before {
	content: "\ef90";
}

.symbol.expension-panels::before {
	content: "\ef90";
}

.symbol.experiment::before {
	content: "\e686";
}

.symbol.explicit::before {
	content: "\e01e";
}

.symbol.explore::before {
	content: "\e87a";
}

.symbol.explore-nearby::before {
	content: "\e538";
}

.symbol.explore-off::before {
	content: "\e9a8";
}

.symbol.explosion::before {
	content: "\f685";
}

.symbol.export-notes::before {
	content: "\e0ac";
}

.symbol.exposure::before {
	content: "\e3f6";
}

.symbol.exposure-neg-1::before {
	content: "\e3cb";
}

.symbol.exposure-neg-2::before {
	content: "\e3cc";
}

.symbol.exposure-plus-1::before {
	content: "\e800";
}

.symbol.exposure-plus-2::before {
	content: "\e3ce";
}

.symbol.exposure-zero::before {
	content: "\e3cf";
}

.symbol.extension::before {
	content: "\e87b";
}

.symbol.extension-off::before {
	content: "\e4f5";
}

.symbol.eye-tracking::before {
	content: "\f4c9";
}

.symbol.eyeglasses::before {
	content: "\f6ee";
}

.symbol.eyeglasses-2::before {
	content: "\f2c7";
}

.symbol.eyeglasses-2-sound::before {
	content: "\f265";
}

.symbol.face::before {
	content: "\f008";
}

.symbol.face-2::before {
	content: "\f8da";
}

.symbol.face-3::before {
	content: "\f8db";
}

.symbol.face-4::before {
	content: "\f8dc";
}

.symbol.face-5::before {
	content: "\f8dd";
}

.symbol.face-6::before {
	content: "\f8de";
}

.symbol.face-down::before {
	content: "\f402";
}

.symbol.face-left::before {
	content: "\f401";
}

.symbol.face-nod::before {
	content: "\f400";
}

.symbol.face-retouching-natural::before {
	content: "\ef4e";
}

.symbol.face-retouching-off::before {
	content: "\f007";
}

.symbol.face-right::before {
	content: "\f3ff";
}

.symbol.face-shake::before {
	content: "\f3fe";
}

.symbol.face-unlock::before {
	content: "\f008";
}

.symbol.face-up::before {
	content: "\f3fd";
}

.symbol.fact-check::before {
	content: "\f0c5";
}

.symbol.factory::before {
	content: "\ebbc";
}

.symbol.falling::before {
	content: "\f60d";
}

.symbol.familiar-face-and-zone::before {
	content: "\e21c";
}

.symbol.family-history::before {
	content: "\e0ad";
}

.symbol.family-home::before {
	content: "\eb26";
}

.symbol.family-link::before {
	content: "\eb19";
}

.symbol.family-restroom::before {
	content: "\f1a2";
}

.symbol.family-star::before {
	content: "\f527";
}

.symbol.fan-focus::before {
	content: "\f334";
}

.symbol.fan-indirect::before {
	content: "\f333";
}

.symbol.farsight-digital::before {
	content: "\f559";
}

.symbol.fast-forward::before {
	content: "\e01f";
}

.symbol.fast-rewind::before {
	content: "\e020";
}

.symbol.fastfood::before {
	content: "\e57a";
}

.symbol.faucet::before {
	content: "\e278";
}

.symbol.favorite::before {
	content: "\e87e";
}

.symbol.favorite-border::before {
	content: "\e87e";
}

.symbol.fax::before {
	content: "\ead8";
}

.symbol.feature-search::before {
	content: "\e9a9";
}

.symbol.featured-play-list::before {
	content: "\e06d";
}

.symbol.featured-seasonal-and-gifts::before {
	content: "\ef91";
}

.symbol.featured-video::before {
	content: "\e06e";
}

.symbol.feed::before {
	content: "\f009";
}

.symbol.feedback::before {
	content: "\e87f";
}

.symbol.female::before {
	content: "\e590";
}

.symbol.femur::before {
	content: "\f891";
}

.symbol.femur-alt::before {
	content: "\f892";
}

.symbol.fence::before {
	content: "\f1f6";
}

.symbol.fertile::before {
	content: "\f6e5";
}

.symbol.festival::before {
	content: "\ea68";
}

.symbol.fiber-dvr::before {
	content: "\e05d";
}

.symbol.fiber-manual-record::before {
	content: "\e061";
}

.symbol.fiber-new::before {
	content: "\e05e";
}

.symbol.fiber-pin::before {
	content: "\e06a";
}

.symbol.fiber-smart-record::before {
	content: "\e062";
}

.symbol.file-copy::before {
	content: "\e173";
}

.symbol.file-copy-off::before {
	content: "\f4d8";
}

.symbol.file-download::before {
	content: "\f090";
}

.symbol.file-download-done::before {
	content: "\f091";
}

.symbol.file-download-off::before {
	content: "\e4fe";
}

.symbol.file-export::before {
	content: "\f3b2";
}

.symbol.file-json::before {
	content: "\f3bb";
}

.symbol.file-map::before {
	content: "\e2c5";
}

.symbol.file-map-stack::before {
	content: "\f3e2";
}

.symbol.file-open::before {
	content: "\eaf3";
}

.symbol.file-png::before {
	content: "\f3bc";
}

.symbol.file-present::before {
	content: "\ea0e";
}

.symbol.file-save::before {
	content: "\f17f";
}

.symbol.file-save-off::before {
	content: "\e505";
}

.symbol.file-upload::before {
	content: "\f09b";
}

.symbol.file-upload-off::before {
	content: "\f886";
}

.symbol.files::before {
	content: "\ea85";
}

.symbol.filter::before {
	content: "\e3d3";
}

.symbol.filter-1::before {
	content: "\e3d0";
}

.symbol.filter-2::before {
	content: "\e3d1";
}

.symbol.filter-3::before {
	content: "\e3d2";
}

.symbol.filter-4::before {
	content: "\e3d4";
}

.symbol.filter-5::before {
	content: "\e3d5";
}

.symbol.filter-6::before {
	content: "\e3d6";
}

.symbol.filter-7::before {
	content: "\e3d7";
}

.symbol.filter-8::before {
	content: "\e3d8";
}

.symbol.filter-9::before {
	content: "\e3d9";
}

.symbol.filter-9-plus::before {
	content: "\e3da";
}

.symbol.filter-alt::before {
	content: "\ef4f";
}

.symbol.filter-alt-off::before {
	content: "\eb32";
}

.symbol.filter-arrow-right::before {
	content: "\f3d1";
}

.symbol.filter-b-and-w::before {
	content: "\e3db";
}

.symbol.filter-center-focus::before {
	content: "\e3dc";
}

.symbol.filter-drama::before {
	content: "\e3dd";
}

.symbol.filter-frames::before {
	content: "\e3de";
}

.symbol.filter-hdr::before {
	content: "\e3df";
}

.symbol.filter-list::before {
	content: "\e152";
}

.symbol.filter-list-alt::before {
	content: "\e94e";
}

.symbol.filter-list-off::before {
	content: "\eb57";
}

.symbol.filter-none::before {
	content: "\e3e0";
}

.symbol.filter-retrolux::before {
	content: "\e3e1";
}

.symbol.filter-tilt-shift::before {
	content: "\e3e2";
}

.symbol.filter-vintage::before {
	content: "\e3e3";
}

.symbol.finance::before {
	content: "\e6bf";
}

.symbol.finance-chip::before {
	content: "\f84e";
}

.symbol.finance-mode::before {
	content: "\ef92";
}

.symbol.find-in-page::before {
	content: "\e880";
}

.symbol.find-replace::before {
	content: "\e881";
}

.symbol.fingerprint::before {
	content: "\e90d";
}

.symbol.fingerprint-off::before {
	content: "\f49d";
}

.symbol.fire-extinguisher::before {
	content: "\f1d8";
}

.symbol.fire-hydrant::before {
	content: "\f1a3";
}

.symbol.fire-truck::before {
	content: "\f8f2";
}

.symbol.fireplace::before {
	content: "\ea43";
}

.symbol.first-page::before {
	content: "\e5dc";
}

.symbol.fit-page::before {
	content: "\f77a";
}

.symbol.fit-page-height::before {
	content: "\f397";
}

.symbol.fit-page-width::before {
	content: "\f396";
}

.symbol.fit-screen::before {
	content: "\ea10";
}

.symbol.fit-width::before {
	content: "\f779";
}

.symbol.fitness-center::before {
	content: "\eb43";
}

.symbol.fitness-tracker::before {
	content: "\f463";
}

.symbol.flag::before {
	content: "\f0c6";
}

.symbol.flag-2::before {
	content: "\f40f";
}

.symbol.flag-check::before {
	content: "\f3d8";
}

.symbol.flag-circle::before {
	content: "\eaf8";
}

.symbol.flag-filled::before {
	content: "\f0c6";
}

.symbol.flaky::before {
	content: "\ef50";
}

.symbol.flare::before {
	content: "\e3e4";
}

.symbol.flash-auto::before {
	content: "\e3e5";
}

.symbol.flash-off::before {
	content: "\e3e6";
}

.symbol.flash-on::before {
	content: "\e3e7";
}

.symbol.flashlight-off::before {
	content: "\f00a";
}

.symbol.flashlight-on::before {
	content: "\f00b";
}

.symbol.flatware::before {
	content: "\f00c";
}

.symbol.flex-direction::before {
	content: "\f778";
}

.symbol.flex-no-wrap::before {
	content: "\f777";
}

.symbol.flex-wrap::before {
	content: "\f776";
}

.symbol.flight::before {
	content: "\e539";
}

.symbol.flight-class::before {
	content: "\e7cb";
}

.symbol.flight-land::before {
	content: "\e904";
}

.symbol.flight-takeoff::before {
	content: "\e905";
}

.symbol.flights-and-hotels::before {
	content: "\e9ab";
}

.symbol.flightsmode::before {
	content: "\ef93";
}

.symbol.flip::before {
	content: "\e3e8";
}

.symbol.flip-camera-android::before {
	content: "\ea37";
}

.symbol.flip-camera-ios::before {
	content: "\ea38";
}

.symbol.flip-to-back::before {
	content: "\e882";
}

.symbol.flip-to-front::before {
	content: "\e883";
}

.symbol.float-landscape-2::before {
	content: "\f45c";
}

.symbol.float-portrait-2::before {
	content: "\f45b";
}

.symbol.flood::before {
	content: "\ebe6";
}

.symbol.floor::before {
	content: "\f6e4";
}

.symbol.floor-lamp::before {
	content: "\e21e";
}

.symbol.flourescent::before {
	content: "\f07d";
}

.symbol.flowchart::before {
	content: "\f38d";
}

.symbol.flowsheet::before {
	content: "\e0ae";
}

.symbol.fluid::before {
	content: "\e483";
}

.symbol.fluid-balance::before {
	content: "\f80d";
}

.symbol.fluid-med::before {
	content: "\f80c";
}

.symbol.fluorescent::before {
	content: "\f07d";
}

.symbol.flutter::before {
	content: "\f1dd";
}

.symbol.flutter-dash::before {
	content: "\e00b";
}

.symbol.flyover::before {
	content: "\f478";
}

.symbol.fmd-bad::before {
	content: "\f00e";
}

.symbol.fmd-good::before {
	content: "\f1db";
}

.symbol.foggy::before {
	content: "\e818";
}

.symbol.folded-hands::before {
	content: "\f5ed";
}

.symbol.folder::before {
	content: "\e2c7";
}

.symbol.folder-check::before {
	content: "\f3d7";
}

.symbol.folder-check-2::before {
	content: "\f3d6";
}

.symbol.folder-code::before {
	content: "\f3c8";
}

.symbol.folder-copy::before {
	content: "\ebbd";
}

.symbol.folder-data::before {
	content: "\f586";
}

.symbol.folder-delete::before {
	content: "\eb34";
}

.symbol.folder-eye::before {
	content: "\f3d5";
}

.symbol.folder-info::before {
	content: "\f395";
}

.symbol.folder-limited::before {
	content: "\f4e4";
}

.symbol.folder-managed::before {
	content: "\f775";
}

.symbol.folder-match::before {
	content: "\f3d4";
}

.symbol.folder-off::before {
	content: "\eb83";
}

.symbol.folder-open::before {
	content: "\e2c8";
}

.symbol.folder-shared::before {
	content: "\e2c9";
}

.symbol.folder-special::before {
	content: "\e617";
}

.symbol.folder-supervised::before {
	content: "\f774";
}

.symbol.folder-zip::before {
	content: "\eb2c";
}

.symbol.follow-the-signs::before {
	content: "\f222";
}

.symbol.font-download::before {
	content: "\e167";
}

.symbol.font-download-off::before {
	content: "\e4f9";
}

.symbol.food-bank::before {
	content: "\f1f2";
}

.symbol.foot-bones::before {
	content: "\f893";
}

.symbol.footprint::before {
	content: "\f87d";
}

.symbol.for-you::before {
	content: "\e9ac";
}

.symbol.forest::before {
	content: "\ea99";
}

.symbol.fork-left::before {
	content: "\eba0";
}

.symbol.fork-right::before {
	content: "\ebac";
}

.symbol.fork-spoon::before {
	content: "\f3e4";
}

.symbol.forklift::before {
	content: "\f868";
}

.symbol.format-align-center::before {
	content: "\e234";
}

.symbol.format-align-justify::before {
	content: "\e235";
}

.symbol.format-align-left::before {
	content: "\e236";
}

.symbol.format-align-right::before {
	content: "\e237";
}

.symbol.format-bold::before {
	content: "\e238";
}

.symbol.format-clear::before {
	content: "\e239";
}

.symbol.format-color-fill::before {
	content: "\e23a";
}

.symbol.format-color-reset::before {
	content: "\e23b";
}

.symbol.format-color-text::before {
	content: "\e23c";
}

.symbol.format-h1::before {
	content: "\f85d";
}

.symbol.format-h2::before {
	content: "\f85e";
}

.symbol.format-h3::before {
	content: "\f85f";
}

.symbol.format-h4::before {
	content: "\f860";
}

.symbol.format-h5::before {
	content: "\f861";
}

.symbol.format-h6::before {
	content: "\f862";
}

.symbol.format-image-left::before {
	content: "\f863";
}

.symbol.format-image-right::before {
	content: "\f864";
}

.symbol.format-indent-decrease::before {
	content: "\e23d";
}

.symbol.format-indent-increase::before {
	content: "\e23e";
}

.symbol.format-ink-highlighter::before {
	content: "\f82b";
}

.symbol.format-italic::before {
	content: "\e23f";
}

.symbol.format-letter-spacing::before {
	content: "\f773";
}

.symbol.format-letter-spacing-2::before {
	content: "\f618";
}

.symbol.format-letter-spacing-standard::before {
	content: "\f617";
}

.symbol.format-letter-spacing-wide::before {
	content: "\f616";
}

.symbol.format-letter-spacing-wider::before {
	content: "\f615";
}

.symbol.format-line-spacing::before {
	content: "\e240";
}

.symbol.format-list-bulleted::before {
	content: "\e241";
}

.symbol.format-list-bulleted-add::before {
	content: "\f849";
}

.symbol.format-list-numbered::before {
	content: "\e242";
}

.symbol.format-list-numbered-rtl::before {
	content: "\e267";
}

.symbol.format-overline::before {
	content: "\eb65";
}

.symbol.format-paint::before {
	content: "\e243";
}

.symbol.format-paragraph::before {
	content: "\f865";
}

.symbol.format-quote::before {
	content: "\e244";
}

.symbol.format-quote-off::before {
	content: "\f413";
}

.symbol.format-shapes::before {
	content: "\e25e";
}

.symbol.format-size::before {
	content: "\e245";
}

.symbol.format-strikethrough::before {
	content: "\e246";
}

.symbol.format-text-clip::before {
	content: "\f82a";
}

.symbol.format-text-overflow::before {
	content: "\f829";
}

.symbol.format-text-wrap::before {
	content: "\f828";
}

.symbol.format-textdirection-l-to-r::before {
	content: "\e247";
}

.symbol.format-textdirection-r-to-l::before {
	content: "\e248";
}

.symbol.format-textdirection-vertical::before {
	content: "\f4b8";
}

.symbol.format-underlined::before {
	content: "\e249";
}

.symbol.format-underlined-squiggle::before {
	content: "\f885";
}

.symbol.forms-add-on::before {
	content: "\f0c7";
}

.symbol.forms-apps-script::before {
	content: "\f0c8";
}

.symbol.fort::before {
	content: "\eaad";
}

.symbol.forum::before {
	content: "\e8af";
}

.symbol.forward::before {
	content: "\f57a";
}

.symbol.forward-10::before {
	content: "\e056";
}

.symbol.forward-30::before {
	content: "\e057";
}

.symbol.forward-5::before {
	content: "\e058";
}

.symbol.forward-circle::before {
	content: "\f6f5";
}

.symbol.forward-media::before {
	content: "\f6f4";
}

.symbol.forward-to-inbox::before {
	content: "\f187";
}

.symbol.foundation::before {
	content: "\f200";
}

.symbol.fragrance::before {
	content: "\f345";
}

.symbol.frame-inspect::before {
	content: "\f772";
}

.symbol.frame-person::before {
	content: "\f8a6";
}

.symbol.frame-person-mic::before {
	content: "\f4d5";
}

.symbol.frame-person-off::before {
	content: "\f7d1";
}

.symbol.frame-reload::before {
	content: "\f771";
}

.symbol.frame-source::before {
	content: "\f770";
}

.symbol.free-breakfast::before {
	content: "\eb44";
}

.symbol.free-cancellation::before {
	content: "\e748";
}

.symbol.front-hand::before {
	content: "\e769";
}

.symbol.front-loader::before {
	content: "\f869";
}

.symbol.full-coverage::before {
	content: "\eb12";
}

.symbol.full-hd::before {
	content: "\f58b";
}

.symbol.full-stacked-bar-chart::before {
	content: "\f212";
}

.symbol.fullscreen::before {
	content: "\e5d0";
}

.symbol.fullscreen-exit::before {
	content: "\e5d1";
}

.symbol.fullscreen-portrait::before {
	content: "\f45a";
}

.symbol.function::before {
	content: "\f866";
}

.symbol.functions::before {
	content: "\e24a";
}

.symbol.funicular::before {
	content: "\f477";
}

.symbol.g-mobiledata::before {
	content: "\f010";
}

.symbol.g-mobiledata-badge::before {
	content: "\f7e1";
}

.symbol.g-translate::before {
	content: "\e927";
}

.symbol.gallery-thumbnail::before {
	content: "\f86f";
}

.symbol.gamepad::before {
	content: "\e30f";
}

.symbol.games::before {
	content: "\e30f";
}

.symbol.garage::before {
	content: "\f011";
}

.symbol.garage-check::before {
	content: "\f28d";
}

.symbol.garage-door::before {
	content: "\e714";
}

.symbol.garage-home::before {
	content: "\e82d";
}

.symbol.garage-money::before {
	content: "\f28c";
}

.symbol.garden-cart::before {
	content: "\f8a9";
}

.symbol.gas-meter::before {
	content: "\ec19";
}

.symbol.gastroenterology::before {
	content: "\e0f1";
}

.symbol.gate::before {
	content: "\e277";
}

.symbol.gavel::before {
	content: "\e90e";
}

.symbol.general-device::before {
	content: "\e6de";
}

.symbol.generating-tokens::before {
	content: "\e749";
}

.symbol.genetics::before {
	content: "\e0f3";
}

.symbol.genres::before {
	content: "\e6ee";
}

.symbol.gesture::before {
	content: "\e155";
}

.symbol.gesture-select::before {
	content: "\f657";
}

.symbol.get-app::before {
	content: "\f090";
}

.symbol.gif::before {
	content: "\e908";
}

.symbol.gif-2::before {
	content: "\f40e";
}

.symbol.gif-box::before {
	content: "\e7a3";
}

.symbol.girl::before {
	content: "\eb68";
}

.symbol.gite::before {
	content: "\e58b";
}

.symbol.glass-cup::before {
	content: "\f6e3";
}

.symbol.globe::before {
	content: "\e64c";
}

.symbol.globe-asia::before {
	content: "\f799";
}

.symbol.globe-book::before {
	content: "\f3c9";
}

.symbol.globe-location-pin::before {
	content: "\f35d";
}

.symbol.globe-uk::before {
	content: "\f798";
}

.symbol.glucose::before {
	content: "\e4a0";
}

.symbol.glyphs::before {
	content: "\f8a3";
}

.symbol.go-to-line::before {
	content: "\f71d";
}

.symbol.golf-course::before {
	content: "\eb45";
}

.symbol.gondola-lift::before {
	content: "\f476";
}

.symbol.google-home-devices::before {
	content: "\e715";
}

.symbol.google-plus-reshare::before {
	content: "\f57a";
}

.symbol.google-tv-remote::before {
	content: "\f5db";
}

.symbol.google-wifi::before {
	content: "\f579";
}

.symbol.gpp-bad::before {
	content: "\f012";
}

.symbol.gpp-good::before {
	content: "\f013";
}

.symbol.gpp-maybe::before {
	content: "\f014";
}

.symbol.gps-fixed::before {
	content: "\e55c";
}

.symbol.gps-not-fixed::before {
	content: "\e1b7";
}

.symbol.gps-off::before {
	content: "\e1b6";
}

.symbol.grade::before {
	content: "\f09a";
}

.symbol.gradient::before {
	content: "\e3e9";
}

.symbol.grading::before {
	content: "\ea4f";
}

.symbol.grain::before {
	content: "\e3ea";
}

.symbol.graph-1::before {
	content: "\f3a0";
}

.symbol.graph-2::before {
	content: "\f39f";
}

.symbol.graph-3::before {
	content: "\f39e";
}

.symbol.graph-4::before {
	content: "\f39d";
}

.symbol.graph-5::before {
	content: "\f39c";
}

.symbol.graph-6::before {
	content: "\f39b";
}

.symbol.graph-7::before {
	content: "\f346";
}

.symbol.graphic-eq::before {
	content: "\e1b8";
}

.symbol.grass::before {
	content: "\f205";
}

.symbol.grid-3x3::before {
	content: "\f015";
}

.symbol.grid-3x3-off::before {
	content: "\f67c";
}

.symbol.grid-4x4::before {
	content: "\f016";
}

.symbol.grid-goldenratio::before {
	content: "\f017";
}

.symbol.grid-guides::before {
	content: "\f76f";
}

.symbol.grid-off::before {
	content: "\e3eb";
}

.symbol.grid-on::before {
	content: "\e3ec";
}

.symbol.grid-view::before {
	content: "\e9b0";
}

.symbol.grocery::before {
	content: "\ef97";
}

.symbol.group::before {
	content: "\ea21";
}

.symbol.group-add::before {
	content: "\e7f0";
}

.symbol.group-off::before {
	content: "\e747";
}

.symbol.group-remove::before {
	content: "\e7ad";
}

.symbol.group-search::before {
	content: "\f3ce";
}

.symbol.group-work::before {
	content: "\e886";
}

.symbol.grouped-bar-chart::before {
	content: "\f211";
}

.symbol.groups::before {
	content: "\f233";
}

.symbol.groups-2::before {
	content: "\f8df";
}

.symbol.groups-3::before {
	content: "\f8e0";
}

.symbol.guardian::before {
	content: "\f4c1";
}

.symbol.gynecology::before {
	content: "\e0f4";
}

.symbol.h-mobiledata::before {
	content: "\f018";
}

.symbol.h-mobiledata-badge::before {
	content: "\f7e0";
}

.symbol.h-plus-mobiledata::before {
	content: "\f019";
}

.symbol.h-plus-mobiledata-badge::before {
	content: "\f7df";
}

.symbol.hail::before {
	content: "\e9b1";
}

.symbol.hallway::before {
	content: "\e6f8";
}

.symbol.hanami-dango::before {
	content: "\f23f";
}

.symbol.hand-bones::before {
	content: "\f894";
}

.symbol.hand-gesture::before {
	content: "\ef9c";
}

.symbol.hand-gesture-off::before {
	content: "\f3f3";
}

.symbol.hand-meal::before {
	content: "\f294";
}

.symbol.hand-package::before {
	content: "\f293";
}

.symbol.handheld-controller::before {
	content: "\f4c6";
}

.symbol.handshake::before {
	content: "\ebcb";
}

.symbol.handwriting-recognition::before {
	content: "\eb02";
}

.symbol.handyman::before {
	content: "\f10b";
}

.symbol.hangout-video::before {
	content: "\e0c1";
}

.symbol.hangout-video-off::before {
	content: "\e0c2";
}

.symbol.hard-disk::before {
	content: "\f3da";
}

.symbol.hard-drive::before {
	content: "\f80e";
}

.symbol.hard-drive-2::before {
	content: "\f7a4";
}

.symbol.hardware::before {
	content: "\ea59";
}

.symbol.hd::before {
	content: "\e052";
}

.symbol.hdr-auto::before {
	content: "\f01a";
}

.symbol.hdr-auto-select::before {
	content: "\f01b";
}

.symbol.hdr-enhanced-select::before {
	content: "\ef51";
}

.symbol.hdr-off::before {
	content: "\e3ed";
}

.symbol.hdr-off-select::before {
	content: "\f01c";
}

.symbol.hdr-on::before {
	content: "\e3ee";
}

.symbol.hdr-on-select::before {
	content: "\f01d";
}

.symbol.hdr-plus::before {
	content: "\f01e";
}

.symbol.hdr-plus-off::before {
	content: "\e3ef";
}

.symbol.hdr-strong::before {
	content: "\e3f1";
}

.symbol.hdr-weak::before {
	content: "\e3f2";
}

.symbol.head-mounted-device::before {
	content: "\f4c5";
}

.symbol.headphones::before {
	content: "\f01f";
}

.symbol.headphones-battery::before {
	content: "\f020";
}

.symbol.headset::before {
	content: "\f01f";
}

.symbol.headset-mic::before {
	content: "\e311";
}

.symbol.headset-off::before {
	content: "\e33a";
}

.symbol.healing::before {
	content: "\e3f3";
}

.symbol.health-and-beauty::before {
	content: "\ef9d";
}

.symbol.health-and-safety::before {
	content: "\e1d5";
}

.symbol.health-cross::before {
	content: "\f2c3";
}

.symbol.health-metrics::before {
	content: "\f6e2";
}

.symbol.heap-snapshot-large::before {
	content: "\f76e";
}

.symbol.heap-snapshot-multiple::before {
	content: "\f76d";
}

.symbol.heap-snapshot-thumbnail::before {
	content: "\f76c";
}

.symbol.hearing::before {
	content: "\e023";
}

.symbol.hearing-aid::before {
	content: "\f464";
}

.symbol.hearing-aid-disabled::before {
	content: "\f3b0";
}

.symbol.hearing-aid-disabled-left::before {
	content: "\f2ec";
}

.symbol.hearing-aid-left::before {
	content: "\f2ed";
}

.symbol.hearing-disabled::before {
	content: "\f104";
}

.symbol.heart-broken::before {
	content: "\eac2";
}

.symbol.heart-check::before {
	content: "\f60a";
}

.symbol.heart-minus::before {
	content: "\f883";
}

.symbol.heart-plus::before {
	content: "\f884";
}

.symbol.heart-smile::before {
	content: "\f292";
}

.symbol.heat::before {
	content: "\f537";
}

.symbol.heat-pump::before {
	content: "\ec18";
}

.symbol.heat-pump-balance::before {
	content: "\e27e";
}

.symbol.height::before {
	content: "\ea16";
}

.symbol.helicopter::before {
	content: "\f60c";
}

.symbol.help::before {
	content: "\e8fd";
}

.symbol.help-center::before {
	content: "\f1c0";
}

.symbol.help-clinic::before {
	content: "\f810";
}

.symbol.help-outline::before {
	content: "\e8fd";
}

.symbol.hematology::before {
	content: "\e0f6";
}

.symbol.hevc::before {
	content: "\f021";
}

.symbol.hexagon::before {
	content: "\eb39";
}

.symbol.hide::before {
	content: "\ef9e";
}

.symbol.hide-image::before {
	content: "\f022";
}

.symbol.hide-source::before {
	content: "\f023";
}

.symbol.high-chair::before {
	content: "\f29a";
}

.symbol.high-density::before {
	content: "\f79c";
}

.symbol.high-quality::before {
	content: "\e024";
}

.symbol.high-res::before {
	content: "\f54b";
}

.symbol.highlight::before {
	content: "\e25f";
}

.symbol.highlight-alt::before {
	content: "\ef52";
}

.symbol.highlight-keyboard-focus::before {
	content: "\f510";
}

.symbol.highlight-mouse-cursor::before {
	content: "\f511";
}

.symbol.highlight-off::before {
	content: "\e888";
}

.symbol.highlight-text-cursor::before {
	content: "\f512";
}

.symbol.highlighter-size-1::before {
	content: "\f76b";
}

.symbol.highlighter-size-2::before {
	content: "\f76a";
}

.symbol.highlighter-size-3::before {
	content: "\f769";
}

.symbol.highlighter-size-4::before {
	content: "\f768";
}

.symbol.highlighter-size-5::before {
	content: "\f767";
}

.symbol.hiking::before {
	content: "\e50a";
}

.symbol.history::before {
	content: "\e8b3";
}

.symbol.history-2::before {
	content: "\f3e6";
}

.symbol.history-edu::before {
	content: "\ea3e";
}

.symbol.history-off::before {
	content: "\f4da";
}

.symbol.history-toggle-off::before {
	content: "\f17d";
}

.symbol.hive::before {
	content: "\eaa6";
}

.symbol.hls::before {
	content: "\eb8a";
}

.symbol.hls-off::before {
	content: "\eb8c";
}

.symbol.holiday-village::before {
	content: "\e58a";
}

.symbol.home::before {
	content: "\e9b2";
}

.symbol.home-and-garden::before {
	content: "\ef9f";
}

.symbol.home-app-logo::before {
	content: "\e295";
}

.symbol.home-filled::before {
	content: "\e9b2";
}

.symbol.home-health::before {
	content: "\e4b9";
}

.symbol.home-improvement-and-tools::before {
	content: "\efa0";
}

.symbol.home-iot-device::before {
	content: "\e283";
}

.symbol.home-max::before {
	content: "\f024";
}

.symbol.home-max-dots::before {
	content: "\e849";
}

.symbol.home-mini::before {
	content: "\f025";
}

.symbol.home-pin::before {
	content: "\f14d";
}

.symbol.home-repair-service::before {
	content: "\f100";
}

.symbol.home-speaker::before {
	content: "\f11c";
}

.symbol.home-storage::before {
	content: "\f86c";
}

.symbol.home-work::before {
	content: "\f030";
}

.symbol.horizontal-distribute::before {
	content: "\e014";
}

.symbol.horizontal-rule::before {
	content: "\f108";
}

.symbol.horizontal-split::before {
	content: "\e947";
}

.symbol.host::before {
	content: "\f3d9";
}

.symbol.hot-tub::before {
	content: "\eb46";
}

.symbol.hotel::before {
	content: "\e549";
}

.symbol.hotel-class::before {
	content: "\e743";
}

.symbol.hourglass::before {
	content: "\ebff";
}

.symbol.hourglass-arrow-down::before {
	content: "\f37e";
}

.symbol.hourglass-arrow-up::before {
	content: "\f37d";
}

.symbol.hourglass-bottom::before {
	content: "\ea5c";
}

.symbol.hourglass-disabled::before {
	content: "\ef53";
}

.symbol.hourglass-empty::before {
	content: "\e88b";
}

.symbol.hourglass-full::before {
	content: "\e88c";
}

.symbol.hourglass-pause::before {
	content: "\f38c";
}

.symbol.hourglass-top::before {
	content: "\ea5b";
}

.symbol.house::before {
	content: "\ea44";
}

.symbol.house-siding::before {
	content: "\f202";
}

.symbol.house-with-shield::before {
	content: "\e786";
}

.symbol.houseboat::before {
	content: "\e584";
}

.symbol.household-supplies::before {
	content: "\efa1";
}

.symbol.hov::before {
	content: "\f475";
}

.symbol.how-to-reg::before {
	content: "\e174";
}

.symbol.how-to-vote::before {
	content: "\e175";
}

.symbol.hr-resting::before {
	content: "\f6ba";
}

.symbol.html::before {
	content: "\eb7e";
}

.symbol.http::before {
	content: "\e902";
}

.symbol.https::before {
	content: "\e899";
}

.symbol.hub::before {
	content: "\e9f4";
}

.symbol.humerus::before {
	content: "\f895";
}

.symbol.humerus-alt::before {
	content: "\f896";
}

.symbol.humidity-high::before {
	content: "\f163";
}

.symbol.humidity-indoor::before {
	content: "\f558";
}

.symbol.humidity-low::before {
	content: "\f164";
}

.symbol.humidity-mid::before {
	content: "\f165";
}

.symbol.humidity-percentage::before {
	content: "\f87e";
}

.symbol.hvac::before {
	content: "\f10e";
}

.symbol.hvac-max-defrost::before {
	content: "\f332";
}

.symbol.ice-skating::before {
	content: "\e50b";
}

.symbol.icecream::before {
	content: "\ea69";
}

.symbol.id-card::before {
	content: "\f4ca";
}

.symbol.identity-aware-proxy::before {
	content: "\e2dd";
}

.symbol.identity-platform::before {
	content: "\ebb7";
}

.symbol.ifl::before {
	content: "\e025";
}

.symbol.iframe::before {
	content: "\f71b";
}

.symbol.iframe-off::before {
	content: "\f71c";
}

.symbol.image::before {
	content: "\e3f4";
}

.symbol.image-arrow-up::before {
	content: "\f317";
}

.symbol.image-aspect-ratio::before {
	content: "\e3f5";
}

.symbol.image-inset::before {
	content: "\f247";
}

.symbol.image-not-supported::before {
	content: "\f116";
}

.symbol.image-search::before {
	content: "\e43f";
}

.symbol.imagesearch-roller::before {
	content: "\e9b4";
}

.symbol.imagesmode::before {
	content: "\efa2";
}

.symbol.immunology::before {
	content: "\e0fb";
}

.symbol.import-contacts::before {
	content: "\e0e0";
}

.symbol.import-export::before {
	content: "\e8d5";
}

.symbol.important-devices::before {
	content: "\e912";
}

.symbol.in-home-mode::before {
	content: "\e833";
}

.symbol.inactive-order::before {
	content: "\e0fc";
}

.symbol.inbox::before {
	content: "\e156";
}

.symbol.inbox-customize::before {
	content: "\f859";
}

.symbol.inbox-text::before {
	content: "\f399";
}

.symbol.inbox-text-asterisk::before {
	content: "\f360";
}

.symbol.inbox-text-person::before {
	content: "\f35e";
}

.symbol.inbox-text-share::before {
	content: "\f35c";
}

.symbol.incomplete-circle::before {
	content: "\e79b";
}

.symbol.indeterminate-check-box::before {
	content: "\e909";
}

.symbol.indeterminate-question-box::before {
	content: "\f56d";
}

.symbol.info::before {
	content: "\e88e";
}

.symbol.info-i::before {
	content: "\f59b";
}

.symbol.infrared::before {
	content: "\f87c";
}

.symbol.ink-eraser::before {
	content: "\e6d0";
}

.symbol.ink-eraser-off::before {
	content: "\e7e3";
}

.symbol.ink-highlighter::before {
	content: "\e6d1";
}

.symbol.ink-highlighter-move::before {
	content: "\f524";
}

.symbol.ink-marker::before {
	content: "\e6d2";
}

.symbol.ink-pen::before {
	content: "\e6d3";
}

.symbol.ink-selection::before {
	content: "\ef52";
}

.symbol.inpatient::before {
	content: "\e0fe";
}

.symbol.input::before {
	content: "\e890";
}

.symbol.input-circle::before {
	content: "\f71a";
}

.symbol.insert-chart::before {
	content: "\f0cc";
}

.symbol.insert-chart-filled::before {
	content: "\f0cc";
}

.symbol.insert-chart-outlined::before {
	content: "\f0cc";
}

.symbol.insert-comment::before {
	content: "\e24c";
}

.symbol.insert-drive-file::before {
	content: "\e66d";
}

.symbol.insert-emoticon::before {
	content: "\ea22";
}

.symbol.insert-invitation::before {
	content: "\e878";
}

.symbol.insert-link::before {
	content: "\e250";
}

.symbol.insert-page-break::before {
	content: "\eaca";
}

.symbol.insert-photo::before {
	content: "\e3f4";
}

.symbol.insert-text::before {
	content: "\f827";
}

.symbol.insights::before {
	content: "\f092";
}

.symbol.install-desktop::before {
	content: "\eb71";
}

.symbol.install-mobile::before {
	content: "\f2cd";
}

.symbol.instant-mix::before {
	content: "\e026";
}

.symbol.integration-instructions::before {
	content: "\ef54";
}

.symbol.interactive-space::before {
	content: "\f7ff";
}

.symbol.interests::before {
	content: "\e7c8";
}

.symbol.interpreter-mode::before {
	content: "\e83b";
}

.symbol.inventory::before {
	content: "\e179";
}

.symbol.inventory-2::before {
	content: "\e1a1";
}

.symbol.invert-colors::before {
	content: "\e891";
}

.symbol.invert-colors-off::before {
	content: "\e0c4";
}

.symbol.ios::before {
	content: "\e027";
}

.symbol.ios-share::before {
	content: "\e6b8";
}

.symbol.iron::before {
	content: "\e583";
}

.symbol.iso::before {
	content: "\e3f6";
}

.symbol.jamboard-kiosk::before {
	content: "\e9b5";
}

.symbol.japanese-curry::before {
	content: "\f284";
}

.symbol.japanese-flag::before {
	content: "\f283";
}

.symbol.javascript::before {
	content: "\eb7c";
}

.symbol.join::before {
	content: "\f84f";
}

.symbol.join-full::before {
	content: "\f84f";
}

.symbol.join-inner::before {
	content: "\eaf4";
}

.symbol.join-left::before {
	content: "\eaf2";
}

.symbol.join-right::before {
	content: "\eaea";
}

.symbol.joystick::before {
	content: "\f5ee";
}

.symbol.jump-to-element::before {
	content: "\f719";
}

.symbol.kanji-alcohol::before {
	content: "\f23e";
}

.symbol.kayaking::before {
	content: "\e50c";
}

.symbol.kebab-dining::before {
	content: "\e842";
}

.symbol.keep::before {
	content: "\f026";
}

.symbol.keep-off::before {
	content: "\e6f9";
}

.symbol.keep-pin::before {
	content: "\f026";
}

.symbol.keep-public::before {
	content: "\f56f";
}

.symbol.kettle::before {
	content: "\e2b9";
}

.symbol.key::before {
	content: "\e73c";
}

.symbol.key-off::before {
	content: "\eb84";
}

.symbol.key-vertical::before {
	content: "\f51a";
}

.symbol.key-visualizer::before {
	content: "\f199";
}

.symbol.keyboard::before {
	content: "\e312";
}

.symbol.keyboard-alt::before {
	content: "\f028";
}

.symbol.keyboard-arrow-down::before {
	content: "\e313";
}

.symbol.keyboard-arrow-left::before {
	content: "\e314";
}

.symbol.keyboard-arrow-right::before {
	content: "\e315";
}

.symbol.keyboard-arrow-up::before {
	content: "\e316";
}

.symbol.keyboard-backspace::before {
	content: "\e317";
}

.symbol.keyboard-capslock::before {
	content: "\e318";
}

.symbol.keyboard-capslock-badge::before {
	content: "\f7de";
}

.symbol.keyboard-command-key::before {
	content: "\eae7";
}

.symbol.keyboard-control-key::before {
	content: "\eae6";
}

.symbol.keyboard-double-arrow-down::before {
	content: "\ead0";
}

.symbol.keyboard-double-arrow-left::before {
	content: "\eac3";
}

.symbol.keyboard-double-arrow-right::before {
	content: "\eac9";
}

.symbol.keyboard-double-arrow-up::before {
	content: "\eacf";
}

.symbol.keyboard-external-input::before {
	content: "\f7dd";
}

.symbol.keyboard-full::before {
	content: "\f7dc";
}

.symbol.keyboard-hide::before {
	content: "\e31a";
}

.symbol.keyboard-keys::before {
	content: "\f67b";
}

.symbol.keyboard-lock::before {
	content: "\f492";
}

.symbol.keyboard-lock-off::before {
	content: "\f491";
}

.symbol.keyboard-off::before {
	content: "\f67a";
}

.symbol.keyboard-onscreen::before {
	content: "\f7db";
}

.symbol.keyboard-option-key::before {
	content: "\eae8";
}

.symbol.keyboard-previous-language::before {
	content: "\f7da";
}

.symbol.keyboard-return::before {
	content: "\e31b";
}

.symbol.keyboard-tab::before {
	content: "\e31c";
}

.symbol.keyboard-tab-rtl::before {
	content: "\ec73";
}

.symbol.keyboard-voice::before {
	content: "\e31d";
}

.symbol.kid-star::before {
	content: "\f526";
}

.symbol.king-bed::before {
	content: "\ea45";
}

.symbol.kitchen::before {
	content: "\eb47";
}

.symbol.kitesurfing::before {
	content: "\e50d";
}

.symbol.lab-panel::before {
	content: "\e103";
}

.symbol.lab-profile::before {
	content: "\e104";
}

.symbol.lab-research::before {
	content: "\f80b";
}

.symbol.label::before {
	content: "\e893";
}

.symbol.label-important::before {
	content: "\e948";
}

.symbol.label-important-outline::before {
	content: "\e948";
}

.symbol.label-off::before {
	content: "\e9b6";
}

.symbol.label-outline::before {
	content: "\e893";
}

.symbol.labs::before {
	content: "\e105";
}

.symbol.lan::before {
	content: "\eb2f";
}

.symbol.landscape::before {
	content: "\e564";
}

.symbol.landscape-2::before {
	content: "\f4c4";
}

.symbol.landscape-2-edit::before {
	content: "\f310";
}

.symbol.landscape-2-off::before {
	content: "\f4c3";
}

.symbol.landslide::before {
	content: "\ebd7";
}

.symbol.language::before {
	content: "\e894";
}

.symbol.language-chinese-array::before {
	content: "\f766";
}

.symbol.language-chinese-cangjie::before {
	content: "\f765";
}

.symbol.language-chinese-dayi::before {
	content: "\f764";
}

.symbol.language-chinese-pinyin::before {
	content: "\f763";
}

.symbol.language-chinese-quick::before {
	content: "\f762";
}

.symbol.language-chinese-wubi::before {
	content: "\f761";
}

.symbol.language-french::before {
	content: "\f760";
}

.symbol.language-gb-english::before {
	content: "\f75f";
}

.symbol.language-international::before {
	content: "\f75e";
}

.symbol.language-japanese-kana::before {
	content: "\f513";
}

.symbol.language-korean-latin::before {
	content: "\f75d";
}

.symbol.language-pinyin::before {
	content: "\f75c";
}

.symbol.language-spanish::before {
	content: "\f5e9";
}

.symbol.language-us::before {
	content: "\f759";
}

.symbol.language-us-colemak::before {
	content: "\f75b";
}

.symbol.language-us-dvorak::before {
	content: "\f75a";
}

.symbol.laps::before {
	content: "\f6b9";
}

.symbol.laptop::before {
	content: "\e31e";
}

.symbol.laptop-car::before {
	content: "\f3cd";
}

.symbol.laptop-chromebook::before {
	content: "\e31f";
}

.symbol.laptop-mac::before {
	content: "\e320";
}

.symbol.laptop-windows::before {
	content: "\e321";
}

.symbol.lasso-select::before {
	content: "\eb03";
}

.symbol.last-page::before {
	content: "\e5dd";
}

.symbol.launch::before {
	content: "\e89e";
}

.symbol.laundry::before {
	content: "\e2a8";
}

.symbol.layers::before {
	content: "\e53b";
}

.symbol.layers-clear::before {
	content: "\e53c";
}

.symbol.lda::before {
	content: "\e106";
}

.symbol.leaderboard::before {
	content: "\f20c";
}

.symbol.leak-add::before {
	content: "\e3f8";
}

.symbol.leak-remove::before {
	content: "\e3f9";
}

.symbol.left-click::before {
	content: "\f718";
}

.symbol.left-panel-close::before {
	content: "\f717";
}

.symbol.left-panel-open::before {
	content: "\f716";
}

.symbol.legend-toggle::before {
	content: "\f11b";
}

.symbol.lens::before {
	content: "\e3fa";
}

.symbol.lens-blur::before {
	content: "\f029";
}

.symbol.letter-switch::before {
	content: "\f758";
}

.symbol.library-add::before {
	content: "\e03c";
}

.symbol.library-add-check::before {
	content: "\e9b7";
}

.symbol.library-books::before {
	content: "\e02f";
}

.symbol.library-music::before {
	content: "\e030";
}

.symbol.license::before {
	content: "\eb04";
}

.symbol.lift-to-talk::before {
	content: "\efa3";
}

.symbol.light::before {
	content: "\f02a";
}

.symbol.light-group::before {
	content: "\e28b";
}

.symbol.light-mode::before {
	content: "\e518";
}

.symbol.light-off::before {
	content: "\e9b8";
}

.symbol.lightbulb::before {
	content: "\e90f";
}

.symbol.lightbulb-2::before {
	content: "\f3e3";
}

.symbol.lightbulb-circle::before {
	content: "\ebfe";
}

.symbol.lightbulb-outline::before {
	content: "\e90f";
}

.symbol.lightning-stand::before {
	content: "\efa4";
}

.symbol.line-axis::before {
	content: "\ea9a";
}

.symbol.line-curve::before {
	content: "\f757";
}

.symbol.line-end::before {
	content: "\f826";
}

.symbol.line-end-arrow::before {
	content: "\f81d";
}

.symbol.line-end-arrow-notch::before {
	content: "\f81c";
}

.symbol.line-end-circle::before {
	content: "\f81b";
}

.symbol.line-end-diamond::before {
	content: "\f81a";
}

.symbol.line-end-square::before {
	content: "\f819";
}

.symbol.line-start::before {
	content: "\f825";
}

.symbol.line-start-arrow::before {
	content: "\f818";
}

.symbol.line-start-arrow-notch::before {
	content: "\f817";
}

.symbol.line-start-circle::before {
	content: "\f816";
}

.symbol.line-start-diamond::before {
	content: "\f815";
}

.symbol.line-start-square::before {
	content: "\f814";
}

.symbol.line-style::before {
	content: "\e919";
}

.symbol.line-weight::before {
	content: "\e91a";
}

.symbol.linear-scale::before {
	content: "\e260";
}

.symbol.link::before {
	content: "\e250";
}

.symbol.link-off::before {
	content: "\e16f";
}

.symbol.linked-camera::before {
	content: "\e438";
}

.symbol.linked-services::before {
	content: "\f535";
}

.symbol.liquor::before {
	content: "\ea60";
}

.symbol.list::before {
	content: "\e896";
}

.symbol.list-alt::before {
	content: "\e0ee";
}

.symbol.list-alt-add::before {
	content: "\f756";
}

.symbol.list-alt-check::before {
	content: "\f3de";
}

.symbol.lists::before {
	content: "\e9b9";
}

.symbol.live-help::before {
	content: "\e0c6";
}

.symbol.live-tv::before {
	content: "\e63a";
}

.symbol.living::before {
	content: "\f02b";
}

.symbol.local-activity::before {
	content: "\e553";
}

.symbol.local-airport::before {
	content: "\e53d";
}

.symbol.local-atm::before {
	content: "\e53e";
}

.symbol.local-bar::before {
	content: "\e540";
}

.symbol.local-cafe::before {
	content: "\eb44";
}

.symbol.local-car-wash::before {
	content: "\e542";
}

.symbol.local-convenience-store::before {
	content: "\e543";
}

.symbol.local-dining::before {
	content: "\e561";
}

.symbol.local-drink::before {
	content: "\e544";
}

.symbol.local-fire-department::before {
	content: "\ef55";
}

.symbol.local-florist::before {
	content: "\e545";
}

.symbol.local-gas-station::before {
	content: "\e546";
}

.symbol.local-grocery-store::before {
	content: "\e8cc";
}

.symbol.local-hospital::before {
	content: "\e548";
}

.symbol.local-hotel::before {
	content: "\e549";
}

.symbol.local-laundry-service::before {
	content: "\e54a";
}

.symbol.local-library::before {
	content: "\e54b";
}

.symbol.local-mall::before {
	content: "\e54c";
}

.symbol.local-movies::before {
	content: "\e8da";
}

.symbol.local-offer::before {
	content: "\f05b";
}

.symbol.local-parking::before {
	content: "\e54f";
}

.symbol.local-pharmacy::before {
	content: "\e550";
}

.symbol.local-phone::before {
	content: "\f0d4";
}

.symbol.local-pizza::before {
	content: "\e552";
}

.symbol.local-play::before {
	content: "\e553";
}

.symbol.local-police::before {
	content: "\ef56";
}

.symbol.local-post-office::before {
	content: "\e554";
}

.symbol.local-printshop::before {
	content: "\e8ad";
}

.symbol.local-see::before {
	content: "\e557";
}

.symbol.local-shipping::before {
	content: "\e558";
}

.symbol.local-taxi::before {
	content: "\e559";
}

.symbol.location-automation::before {
	content: "\f14f";
}

.symbol.location-away::before {
	content: "\f150";
}

.symbol.location-chip::before {
	content: "\f850";
}

.symbol.location-city::before {
	content: "\e7f1";
}

.symbol.location-disabled::before {
	content: "\e1b6";
}

.symbol.location-home::before {
	content: "\f152";
}

.symbol.location-off::before {
	content: "\e0c7";
}

.symbol.location-on::before {
	content: "\f1db";
}

.symbol.location-pin::before {
	content: "\f1db";
}

.symbol.location-searching::before {
	content: "\e1b7";
}

.symbol.locator-tag::before {
	content: "\f8c1";
}

.symbol.lock::before {
	content: "\e899";
}

.symbol.lock-clock::before {
	content: "\ef57";
}

.symbol.lock-open::before {
	content: "\e898";
}

.symbol.lock-open-circle::before {
	content: "\f361";
}

.symbol.lock-open-right::before {
	content: "\f656";
}

.symbol.lock-outline::before {
	content: "\e899";
}

.symbol.lock-person::before {
	content: "\f8f3";
}

.symbol.lock-reset::before {
	content: "\eade";
}

.symbol.login::before {
	content: "\ea77";
}

.symbol.logo-dev::before {
	content: "\ead6";
}

.symbol.logout::before {
	content: "\e9ba";
}

.symbol.looks::before {
	content: "\e3fc";
}

.symbol.looks-3::before {
	content: "\e3fb";
}

.symbol.looks-4::before {
	content: "\e3fd";
}

.symbol.looks-5::before {
	content: "\e3fe";
}

.symbol.looks-6::before {
	content: "\e3ff";
}

.symbol.looks-one::before {
	content: "\e400";
}

.symbol.looks-two::before {
	content: "\e401";
}

.symbol.loop::before {
	content: "\e863";
}

.symbol.loupe::before {
	content: "\e402";
}

.symbol.low-density::before {
	content: "\f79b";
}

.symbol.low-priority::before {
	content: "\e16d";
}

.symbol.lowercase::before {
	content: "\f48a";
}

.symbol.loyalty::before {
	content: "\e89a";
}

.symbol.lte-mobiledata::before {
	content: "\f02c";
}

.symbol.lte-mobiledata-badge::before {
	content: "\f7d9";
}

.symbol.lte-plus-mobiledata::before {
	content: "\f02d";
}

.symbol.lte-plus-mobiledata-badge::before {
	content: "\f7d8";
}

.symbol.luggage::before {
	content: "\f235";
}

.symbol.lunch-dining::before {
	content: "\ea61";
}

.symbol.lyrics::before {
	content: "\ec0b";
}

.symbol.macro-auto::before {
	content: "\f6f2";
}

.symbol.macro-off::before {
	content: "\f8d2";
}

.symbol.magic-button::before {
	content: "\f136";
}

.symbol.magic-exchange::before {
	content: "\f7f4";
}

.symbol.magic-tether::before {
	content: "\f7d7";
}

.symbol.magnification-large::before {
	content: "\f83d";
}

.symbol.magnification-small::before {
	content: "\f83c";
}

.symbol.magnify-docked::before {
	content: "\f7d6";
}

.symbol.magnify-fullscreen::before {
	content: "\f7d5";
}

.symbol.mail::before {
	content: "\e159";
}

.symbol.mail-lock::before {
	content: "\ec0a";
}

.symbol.mail-off::before {
	content: "\f48b";
}

.symbol.mail-outline::before {
	content: "\e159";
}

.symbol.mail-shield::before {
	content: "\f249";
}

.symbol.male::before {
	content: "\e58e";
}

.symbol.man::before {
	content: "\e4eb";
}

.symbol.man-2::before {
	content: "\f8e1";
}

.symbol.man-3::before {
	content: "\f8e2";
}

.symbol.man-4::before {
	content: "\f8e3";
}

.symbol.manage-accounts::before {
	content: "\f02e";
}

.symbol.manage-history::before {
	content: "\ebe7";
}

.symbol.manage-search::before {
	content: "\f02f";
}

.symbol.manga::before {
	content: "\f5e3";
}

.symbol.manufacturing::before {
	content: "\e726";
}

.symbol.map::before {
	content: "\e55b";
}

.symbol.map-pin-heart::before {
	content: "\f298";
}

.symbol.map-pin-review::before {
	content: "\f297";
}

.symbol.map-search::before {
	content: "\f3ca";
}

.symbol.maps-home-work::before {
	content: "\f030";
}

.symbol.maps-ugc::before {
	content: "\ef58";
}

.symbol.margin::before {
	content: "\e9bb";
}

.symbol.mark-as-unread::before {
	content: "\e9bc";
}

.symbol.mark-chat-read::before {
	content: "\f18b";
}

.symbol.mark-chat-unread::before {
	content: "\f189";
}

.symbol.mark-email-read::before {
	content: "\f18c";
}

.symbol.mark-email-unread::before {
	content: "\f18a";
}

.symbol.mark-unread-chat-alt::before {
	content: "\eb9d";
}

.symbol.markdown::before {
	content: "\f552";
}

.symbol.markdown-copy::before {
	content: "\f553";
}

.symbol.markdown-paste::before {
	content: "\f554";
}

.symbol.markunread::before {
	content: "\e159";
}

.symbol.markunread-mailbox::before {
	content: "\e89b";
}

.symbol.masked-transitions::before {
	content: "\e72e";
}

.symbol.masked-transitions-add::before {
	content: "\f42b";
}

.symbol.masks::before {
	content: "\f218";
}

.symbol.massage::before {
	content: "\f2c2";
}

.symbol.match-case::before {
	content: "\f6f1";
}

.symbol.match-case-off::before {
	content: "\f36f";
}

.symbol.match-word::before {
	content: "\f6f0";
}

.symbol.matter::before {
	content: "\e907";
}

.symbol.maximize::before {
	content: "\e930";
}

.symbol.meal-dinner::before {
	content: "\f23d";
}

.symbol.meal-lunch::before {
	content: "\f23c";
}

.symbol.measuring-tape::before {
	content: "\f6af";
}

.symbol.media-bluetooth-off::before {
	content: "\f031";
}

.symbol.media-bluetooth-on::before {
	content: "\f032";
}

.symbol.media-link::before {
	content: "\f83f";
}

.symbol.media-output::before {
	content: "\f4f2";
}

.symbol.media-output-off::before {
	content: "\f4f3";
}

.symbol.mediation::before {
	content: "\efa7";
}

.symbol.medical-information::before {
	content: "\ebed";
}

.symbol.medical-mask::before {
	content: "\f80a";
}

.symbol.medical-services::before {
	content: "\f109";
}

.symbol.medication::before {
	content: "\f033";
}

.symbol.medication-liquid::before {
	content: "\ea87";
}

.symbol.meeting-room::before {
	content: "\eb4f";
}

.symbol.memory::before {
	content: "\e322";
}

.symbol.memory-alt::before {
	content: "\f7a3";
}

.symbol.menstrual-health::before {
	content: "\f6e1";
}

.symbol.menu::before {
	content: "\e5d2";
}

.symbol.menu-book::before {
	content: "\ea19";
}

.symbol.menu-book-2::before {
	content: "\f291";
}

.symbol.menu-open::before {
	content: "\e9bd";
}

.symbol.merge::before {
	content: "\eb98";
}

.symbol.merge-type::before {
	content: "\e252";
}

.symbol.message::before {
	content: "\e0c9";
}

.symbol.metabolism::before {
	content: "\e10b";
}

.symbol.metro::before {
	content: "\f474";
}

.symbol.mfg-nest-yale-lock::before {
	content: "\f11d";
}

.symbol.mic::before {
	content: "\e31d";
}

.symbol.mic-alert::before {
	content: "\f392";
}

.symbol.mic-double::before {
	content: "\f5d1";
}

.symbol.mic-external-off::before {
	content: "\ef59";
}

.symbol.mic-external-on::before {
	content: "\ef5a";
}

.symbol.mic-none::before {
	content: "\e31d";
}

.symbol.mic-off::before {
	content: "\e02b";
}

.symbol.microbiology::before {
	content: "\e10c";
}

.symbol.microwave::before {
	content: "\f204";
}

.symbol.microwave-gen::before {
	content: "\e847";
}

.symbol.military-tech::before {
	content: "\ea3f";
}

.symbol.mimo::before {
	content: "\e9be";
}

.symbol.mimo-disconnect::before {
	content: "\e9bf";
}

.symbol.mindfulness::before {
	content: "\f6e0";
}

.symbol.minimize::before {
	content: "\e931";
}

.symbol.minor-crash::before {
	content: "\ebf1";
}

.symbol.mintmark::before {
	content: "\efa9";
}

.symbol.missed-video-call::before {
	content: "\f0ce";
}

.symbol.missed-video-call-filled::before {
	content: "\f0ce";
}

.symbol.missing-controller::before {
	content: "\e701";
}

.symbol.mist::before {
	content: "\e188";
}

.symbol.mitre::before {
	content: "\f547";
}

.symbol.mixture-med::before {
	content: "\e4c8";
}

.symbol.mms::before {
	content: "\e618";
}

.symbol.mobile::before {
	content: "\e7ba";
}

.symbol.mobile-2::before {
	content: "\f2db";
}

.symbol.mobile-3::before {
	content: "\f2da";
}

.symbol.mobile-alert::before {
	content: "\f2d3";
}

.symbol.mobile-arrow-down::before {
	content: "\f2cd";
}

.symbol.mobile-arrow-right::before {
	content: "\f2d2";
}

.symbol.mobile-arrow-up-right::before {
	content: "\f2b9";
}

.symbol.mobile-block::before {
	content: "\f2e5";
}

.symbol.mobile-camera::before {
	content: "\f44e";
}

.symbol.mobile-camera-front::before {
	content: "\f2c9";
}

.symbol.mobile-camera-rear::before {
	content: "\f2c8";
}

.symbol.mobile-cancel::before {
	content: "\f2ea";
}

.symbol.mobile-cast::before {
	content: "\f2cc";
}

.symbol.mobile-charge::before {
	content: "\f2e3";
}

.symbol.mobile-chat::before {
	content: "\f79f";
}

.symbol.mobile-check::before {
	content: "\f073";
}

.symbol.mobile-code::before {
	content: "\f2e2";
}

.symbol.mobile-dots::before {
	content: "\f2d0";
}

.symbol.mobile-friendly::before {
	content: "\f073";
}

.symbol.mobile-gear::before {
	content: "\f2d9";
}

.symbol.mobile-hand::before {
	content: "\f323";
}

.symbol.mobile-hand-left::before {
	content: "\f313";
}

.symbol.mobile-hand-left-off::before {
	content: "\f312";
}

.symbol.mobile-hand-off::before {
	content: "\f314";
}

.symbol.mobile-info::before {
	content: "\f2dc";
}

.symbol.mobile-landscape::before {
	content: "\ed3e";
}

.symbol.mobile-layout::before {
	content: "\f2bf";
}

.symbol.mobile-lock-landscape::before {
	content: "\f2d8";
}

.symbol.mobile-lock-portrait::before {
	content: "\f2be";
}

.symbol.mobile-loupe::before {
	content: "\f322";
}

.symbol.mobile-menu::before {
	content: "\f2d1";
}

.symbol.mobile-off::before {
	content: "\e201";
}

.symbol.mobile-question::before {
	content: "\f2e1";
}

.symbol.mobile-rotate::before {
	content: "\f2d5";
}

.symbol.mobile-rotate-lock::before {
	content: "\f2d6";
}

.symbol.mobile-screen-share::before {
	content: "\f2df";
}

.symbol.mobile-screensaver::before {
	content: "\f321";
}

.symbol.mobile-sensor-hi::before {
	content: "\f2ef";
}

.symbol.mobile-sensor-lo::before {
	content: "\f2ee";
}

.symbol.mobile-share::before {
	content: "\f2df";
}

.symbol.mobile-share-stack::before {
	content: "\f2de";
}

.symbol.mobile-sound::before {
	content: "\f2e8";
}

.symbol.mobile-sound-2::before {
	content: "\f318";
}

.symbol.mobile-sound-off::before {
	content: "\f7aa";
}

.symbol.mobile-speaker::before {
	content: "\f320";
}

.symbol.mobile-text::before {
	content: "\f2eb";
}

.symbol.mobile-text-2::before {
	content: "\f2e6";
}

.symbol.mobile-ticket::before {
	content: "\f2e4";
}

.symbol.mobile-vibrate::before {
	content: "\f2cb";
}

.symbol.mobile-wrench::before {
	content: "\f2b0";
}

.symbol.mobiledata-off::before {
	content: "\f034";
}

.symbol.mode::before {
	content: "\f097";
}

.symbol.mode-comment::before {
	content: "\e253";
}

.symbol.mode-cool::before {
	content: "\f166";
}

.symbol.mode-cool-off::before {
	content: "\f167";
}

.symbol.mode-dual::before {
	content: "\f557";
}

.symbol.mode-edit::before {
	content: "\f097";
}

.symbol.mode-edit-outline::before {
	content: "\f097";
}

.symbol.mode-fan::before {
	content: "\f168";
}

.symbol.mode-fan-off::before {
	content: "\ec17";
}

.symbol.mode-heat::before {
	content: "\f16a";
}

.symbol.mode-heat-cool::before {
	content: "\f16b";
}

.symbol.mode-heat-off::before {
	content: "\f16d";
}

.symbol.mode-night::before {
	content: "\f036";
}

.symbol.mode-of-travel::before {
	content: "\e7ce";
}

.symbol.mode-off-on::before {
	content: "\f16f";
}

.symbol.mode-standby::before {
	content: "\f037";
}

.symbol.model-training::before {
	content: "\f0cf";
}

.symbol.modeling::before {
	content: "\f3aa";
}

.symbol.monetization-on::before {
	content: "\e263";
}

.symbol.money::before {
	content: "\e57d";
}

.symbol.money-bag::before {
	content: "\f3ee";
}

.symbol.money-off::before {
	content: "\f038";
}

.symbol.money-off-csred::before {
	content: "\f038";
}

.symbol.money-range::before {
	content: "\f245";
}

.symbol.monitor::before {
	content: "\ef5b";
}

.symbol.monitor-heart::before {
	content: "\eaa2";
}

.symbol.monitor-weight::before {
	content: "\f039";
}

.symbol.monitor-weight-gain::before {
	content: "\f6df";
}

.symbol.monitor-weight-loss::before {
	content: "\f6de";
}

.symbol.monitoring::before {
	content: "\f190";
}

.symbol.monochrome-photos::before {
	content: "\e403";
}

.symbol.monorail::before {
	content: "\f473";
}

.symbol.mood::before {
	content: "\ea22";
}

.symbol.mood-bad::before {
	content: "\e7f3";
}

.symbol.moon-stars::before {
	content: "\f34f";
}

.symbol.mop::before {
	content: "\e28d";
}

.symbol.moped::before {
	content: "\eb28";
}

.symbol.moped-package::before {
	content: "\f28b";
}

.symbol.more::before {
	content: "\e619";
}

.symbol.more-down::before {
	content: "\f196";
}

.symbol.more-horiz::before {
	content: "\e5d3";
}

.symbol.more-time::before {
	content: "\ea5d";
}

.symbol.more-up::before {
	content: "\f197";
}

.symbol.more-vert::before {
	content: "\e5d4";
}

.symbol.mosque::before {
	content: "\eab2";
}

.symbol.motion-blur::before {
	content: "\f0d0";
}

.symbol.motion-mode::before {
	content: "\f842";
}

.symbol.motion-photos-auto::before {
	content: "\f03a";
}

.symbol.motion-photos-off::before {
	content: "\e9c0";
}

.symbol.motion-photos-on::before {
	content: "\e9c1";
}

.symbol.motion-photos-pause::before {
	content: "\f227";
}

.symbol.motion-photos-paused::before {
	content: "\f227";
}

.symbol.motion-play::before {
	content: "\f40b";
}

.symbol.motion-sensor-active::before {
	content: "\e792";
}

.symbol.motion-sensor-alert::before {
	content: "\e784";
}

.symbol.motion-sensor-idle::before {
	content: "\e783";
}

.symbol.motion-sensor-urgent::before {
	content: "\e78e";
}

.symbol.motorcycle::before {
	content: "\e91b";
}

.symbol.mountain-flag::before {
	content: "\f5e2";
}

.symbol.mountain-steam::before {
	content: "\f282";
}

.symbol.mouse::before {
	content: "\e323";
}

.symbol.mouse-lock::before {
	content: "\f490";
}

.symbol.mouse-lock-off::before {
	content: "\f48f";
}

.symbol.move::before {
	content: "\e740";
}

.symbol.move-down::before {
	content: "\eb61";
}

.symbol.move-group::before {
	content: "\f715";
}

.symbol.move-item::before {
	content: "\f1ff";
}

.symbol.move-location::before {
	content: "\e741";
}

.symbol.move-selection-down::before {
	content: "\f714";
}

.symbol.move-selection-left::before {
	content: "\f713";
}

.symbol.move-selection-right::before {
	content: "\f712";
}

.symbol.move-selection-up::before {
	content: "\f711";
}

.symbol.move-to-inbox::before {
	content: "\e168";
}

.symbol.move-up::before {
	content: "\eb64";
}

.symbol.moved-location::before {
	content: "\e594";
}

.symbol.movie::before {
	content: "\e404";
}

.symbol.movie-creation::before {
	content: "\e404";
}

.symbol.movie-edit::before {
	content: "\f840";
}

.symbol.movie-filter::before {
	content: "\e43a";
}

.symbol.movie-info::before {
	content: "\e02d";
}

.symbol.movie-off::before {
	content: "\f499";
}

.symbol.movie-speaker::before {
	content: "\f2a3";
}

.symbol.moving::before {
	content: "\e501";
}

.symbol.moving-beds::before {
	content: "\e73d";
}

.symbol.moving-ministry::before {
	content: "\e73e";
}

.symbol.mp::before {
	content: "\e9c3";
}

.symbol.multicooker::before {
	content: "\e293";
}

.symbol.multiline-chart::before {
	content: "\e6df";
}

.symbol.multimodal-hand-eye::before {
	content: "\f41b";
}

.symbol.multiple-airports::before {
	content: "\efab";
}

.symbol.multiple-stop::before {
	content: "\f1b9";
}

.symbol.museum::before {
	content: "\ea36";
}

.symbol.music-cast::before {
	content: "\eb1a";
}

.symbol.music-history::before {
	content: "\f2c1";
}

.symbol.music-note::before {
	content: "\e405";
}

.symbol.music-note-add::before {
	content: "\f391";
}

.symbol.music-off::before {
	content: "\e440";
}

.symbol.music-video::before {
	content: "\e063";
}

.symbol.my-location::before {
	content: "\e55c";
}

.symbol.mystery::before {
	content: "\f5e1";
}

.symbol.nat::before {
	content: "\ef5c";
}

.symbol.nature::before {
	content: "\e406";
}

.symbol.nature-people::before {
	content: "\e407";
}

.symbol.navigate-before::before {
	content: "\e5cb";
}

.symbol.navigate-next::before {
	content: "\e5cc";
}

.symbol.navigation::before {
	content: "\e55d";
}

.symbol.near-me::before {
	content: "\e569";
}

.symbol.near-me-disabled::before {
	content: "\f1ef";
}

.symbol.nearby::before {
	content: "\e6b7";
}

.symbol.nearby-error::before {
	content: "\f03b";
}

.symbol.nearby-off::before {
	content: "\f03c";
}

.symbol.nephrology::before {
	content: "\e10d";
}

.symbol.nest-audio::before {
	content: "\ebbf";
}

.symbol.nest-cam-floodlight::before {
	content: "\f8b7";
}

.symbol.nest-cam-indoor::before {
	content: "\f11e";
}

.symbol.nest-cam-iq::before {
	content: "\f11f";
}

.symbol.nest-cam-iq-outdoor::before {
	content: "\f120";
}

.symbol.nest-cam-magnet-mount::before {
	content: "\f8b8";
}

.symbol.nest-cam-outdoor::before {
	content: "\f121";
}

.symbol.nest-cam-stand::before {
	content: "\f8b9";
}

.symbol.nest-cam-wall-mount::before {
	content: "\f8ba";
}

.symbol.nest-cam-wired-stand::before {
	content: "\ec16";
}

.symbol.nest-clock-farsight-analog::before {
	content: "\f8bb";
}

.symbol.nest-clock-farsight-digital::before {
	content: "\f8bc";
}

.symbol.nest-connect::before {
	content: "\f122";
}

.symbol.nest-detect::before {
	content: "\f123";
}

.symbol.nest-display::before {
	content: "\f124";
}

.symbol.nest-display-max::before {
	content: "\f125";
}

.symbol.nest-doorbell-visitor::before {
	content: "\f8bd";
}

.symbol.nest-eco-leaf::before {
	content: "\f8be";
}

.symbol.nest-farsight-cool::before {
	content: "\f27d";
}

.symbol.nest-farsight-dual::before {
	content: "\f27c";
}

.symbol.nest-farsight-eco::before {
	content: "\f27b";
}

.symbol.nest-farsight-heat::before {
	content: "\f27a";
}

.symbol.nest-farsight-seasonal::before {
	content: "\f279";
}

.symbol.nest-farsight-weather::before {
	content: "\f8bf";
}

.symbol.nest-found-savings::before {
	content: "\f8c0";
}

.symbol.nest-gale-wifi::before {
	content: "\f579";
}

.symbol.nest-heat-link-e::before {
	content: "\f126";
}

.symbol.nest-heat-link-gen-3::before {
	content: "\f127";
}

.symbol.nest-hello-doorbell::before {
	content: "\e82c";
}

.symbol.nest-locator-tag::before {
	content: "\f8c1";
}

.symbol.nest-mini::before {
	content: "\e789";
}

.symbol.nest-multi-room::before {
	content: "\f8c2";
}

.symbol.nest-protect::before {
	content: "\e68e";
}

.symbol.nest-remote::before {
	content: "\f5db";
}

.symbol.nest-remote-comfort-sensor::before {
	content: "\f12a";
}

.symbol.nest-secure-alarm::before {
	content: "\f12b";
}

.symbol.nest-sunblock::before {
	content: "\f8c3";
}

.symbol.nest-tag::before {
	content: "\f8c1";
}

.symbol.nest-thermostat::before {
	content: "\e68f";
}

.symbol.nest-thermostat-e-eu::before {
	content: "\f12d";
}

.symbol.nest-thermostat-gen-3::before {
	content: "\f12e";
}

.symbol.nest-thermostat-sensor::before {
	content: "\f12f";
}

.symbol.nest-thermostat-sensor-eu::before {
	content: "\f130";
}

.symbol.nest-thermostat-zirconium-eu::before {
	content: "\f131";
}

.symbol.nest-true-radiant::before {
	content: "\f8c4";
}

.symbol.nest-wake-on-approach::before {
	content: "\f8c5";
}

.symbol.nest-wake-on-press::before {
	content: "\f8c6";
}

.symbol.nest-wifi-gale::before {
	content: "\f132";
}

.symbol.nest-wifi-mistral::before {
	content: "\f133";
}

.symbol.nest-wifi-point::before {
	content: "\f134";
}

.symbol.nest-wifi-point-vento::before {
	content: "\f134";
}

.symbol.nest-wifi-pro::before {
	content: "\f56b";
}

.symbol.nest-wifi-pro-2::before {
	content: "\f56a";
}

.symbol.nest-wifi-router::before {
	content: "\f133";
}

.symbol.network-cell::before {
	content: "\e1b9";
}

.symbol.network-check::before {
	content: "\e640";
}

.symbol.network-intel-node::before {
	content: "\f371";
}

.symbol.network-intelligence::before {
	content: "\efac";
}

.symbol.network-intelligence-history::before {
	content: "\f5f6";
}

.symbol.network-intelligence-update::before {
	content: "\f5f5";
}

.symbol.network-locked::before {
	content: "\e61a";
}

.symbol.network-manage::before {
	content: "\f7ab";
}

.symbol.network-node::before {
	content: "\f56e";
}

.symbol.network-ping::before {
	content: "\ebca";
}

.symbol.network-wifi::before {
	content: "\e1ba";
}

.symbol.network-wifi-1-bar::before {
	content: "\ebe4";
}

.symbol.network-wifi-1-bar-locked::before {
	content: "\f58f";
}

.symbol.network-wifi-2-bar::before {
	content: "\ebd6";
}

.symbol.network-wifi-2-bar-locked::before {
	content: "\f58e";
}

.symbol.network-wifi-3-bar::before {
	content: "\ebe1";
}

.symbol.network-wifi-3-bar-locked::before {
	content: "\f58d";
}

.symbol.network-wifi-locked::before {
	content: "\f532";
}

.symbol.neurology::before {
	content: "\e10e";
}

.symbol.new-label::before {
	content: "\e609";
}

.symbol.new-releases::before {
	content: "\ef76";
}

.symbol.new-window::before {
	content: "\f710";
}

.symbol.news::before {
	content: "\e032";
}

.symbol.newsmode::before {
	content: "\efad";
}

.symbol.newspaper::before {
	content: "\eb81";
}

.symbol.newsstand::before {
	content: "\e9c4";
}

.symbol.next-plan::before {
	content: "\ef5d";
}

.symbol.next-week::before {
	content: "\e16a";
}

.symbol.nfc::before {
	content: "\e1bb";
}

.symbol.nfc-off::before {
	content: "\f369";
}

.symbol.night-shelter::before {
	content: "\f1f1";
}

.symbol.night-sight-auto::before {
	content: "\f1d7";
}

.symbol.night-sight-auto-off::before {
	content: "\f1f9";
}

.symbol.night-sight-max::before {
	content: "\f6c3";
}

.symbol.nightlife::before {
	content: "\ea62";
}

.symbol.nightlight::before {
	content: "\f03d";
}

.symbol.nightlight-round::before {
	content: "\f03d";
}

.symbol.nights-stay::before {
	content: "\ea46";
}

.symbol.no-accounts::before {
	content: "\f03e";
}

.symbol.no-adult-content::before {
	content: "\f8fe";
}

.symbol.no-backpack::before {
	content: "\f237";
}

.symbol.no-crash::before {
	content: "\ebf0";
}

.symbol.no-drinks::before {
	content: "\f1a5";
}

.symbol.no-encryption::before {
	content: "\f03f";
}

.symbol.no-encryption-gmailerrorred::before {
	content: "\f03f";
}

.symbol.no-flash::before {
	content: "\f1a6";
}

.symbol.no-food::before {
	content: "\f1a7";
}

.symbol.no-luggage::before {
	content: "\f23b";
}

.symbol.no-meals::before {
	content: "\f1d6";
}

.symbol.no-meeting-room::before {
	content: "\eb4e";
}

.symbol.no-photography::before {
	content: "\f1a8";
}

.symbol.no-sim::before {
	content: "\e1ce";
}

.symbol.no-sound::before {
	content: "\e710";
}

.symbol.no-stroller::before {
	content: "\f1af";
}

.symbol.no-transfer::before {
	content: "\f1d5";
}

.symbol.noise-aware::before {
	content: "\ebec";
}

.symbol.noise-control-off::before {
	content: "\ebf3";
}

.symbol.noise-control-on::before {
	content: "\f8a8";
}

.symbol.nordic-walking::before {
	content: "\e50e";
}

.symbol.north::before {
	content: "\f1e0";
}

.symbol.north-east::before {
	content: "\f1e1";
}

.symbol.north-west::before {
	content: "\f1e2";
}

.symbol.not-accessible::before {
	content: "\f0fe";
}

.symbol.not-accessible-forward::before {
	content: "\f54a";
}

.symbol.not-interested::before {
	content: "\f08c";
}

.symbol.not-listed-location::before {
	content: "\e575";
}

.symbol.not-started::before {
	content: "\f0d1";
}

.symbol.note::before {
	content: "\e66d";
}

.symbol.note-add::before {
	content: "\e89c";
}

.symbol.note-alt::before {
	content: "\f040";
}

.symbol.note-stack::before {
	content: "\f562";
}

.symbol.note-stack-add::before {
	content: "\f563";
}

.symbol.notes::before {
	content: "\e26c";
}

.symbol.notification-add::before {
	content: "\e399";
}

.symbol.notification-important::before {
	content: "\e004";
}

.symbol.notification-multiple::before {
	content: "\e6c2";
}

.symbol.notification-settings::before {
	content: "\f367";
}

.symbol.notification-sound::before {
	content: "\f353";
}

.symbol.notifications::before {
	content: "\e7f5";
}

.symbol.notifications-active::before {
	content: "\e7f7";
}

.symbol.notifications-none::before {
	content: "\e7f5";
}

.symbol.notifications-off::before {
	content: "\e7f6";
}

.symbol.notifications-paused::before {
	content: "\e7f8";
}

.symbol.notifications-unread::before {
	content: "\f4fe";
}

.symbol.numbers::before {
	content: "\eac7";
}

.symbol.nutrition::before {
	content: "\e110";
}

.symbol.ods::before {
	content: "\e6e8";
}

.symbol.odt::before {
	content: "\e6e9";
}

.symbol.offline-bolt::before {
	content: "\e932";
}

.symbol.offline-pin::before {
	content: "\e90a";
}

.symbol.offline-pin-off::before {
	content: "\f4d0";
}

.symbol.offline-share::before {
	content: "\f2de";
}

.symbol.oil-barrel::before {
	content: "\ec15";
}

.symbol.okonomiyaki::before {
	content: "\f281";
}

.symbol.on-device-training::before {
	content: "\ebfd";
}

.symbol.on-hub-device::before {
	content: "\e6c3";
}

.symbol.oncology::before {
	content: "\e114";
}

.symbol.ondemand-video::before {
	content: "\e63a";
}

.symbol.online-prediction::before {
	content: "\f0eb";
}

.symbol.onsen::before {
	content: "\f6f8";
}

.symbol.opacity::before {
	content: "\e91c";
}

.symbol.open-in-browser::before {
	content: "\e89d";
}

.symbol.open-in-full::before {
	content: "\f1ce";
}

.symbol.open-in-new::before {
	content: "\e89e";
}

.symbol.open-in-new-down::before {
	content: "\f70f";
}

.symbol.open-in-new-off::before {
	content: "\e4f6";
}

.symbol.open-in-phone::before {
	content: "\f2d2";
}

.symbol.open-jam::before {
	content: "\efae";
}

.symbol.open-run::before {
	content: "\f4b7";
}

.symbol.open-with::before {
	content: "\e89f";
}

.symbol.ophthalmology::before {
	content: "\e115";
}

.symbol.oral-disease::before {
	content: "\e116";
}

.symbol.orbit::before {
	content: "\f426";
}

.symbol.order-approve::before {
	content: "\f812";
}

.symbol.order-play::before {
	content: "\f811";
}

.symbol.orders::before {
	content: "\eb14";
}

.symbol.orthopedics::before {
	content: "\f897";
}

.symbol.other-admission::before {
	content: "\e47b";
}

.symbol.other-houses::before {
	content: "\e58c";
}

.symbol.outbound::before {
	content: "\e1ca";
}

.symbol.outbox::before {
	content: "\ef5f";
}

.symbol.outbox-alt::before {
	content: "\eb17";
}

.symbol.outdoor-garden::before {
	content: "\e205";
}

.symbol.outdoor-grill::before {
	content: "\ea47";
}

.symbol.outgoing-mail::before {
	content: "\f0d2";
}

.symbol.outlet::before {
	content: "\f1d4";
}

.symbol.outlined-flag::before {
	content: "\f0c6";
}

.symbol.outpatient::before {
	content: "\e118";
}

.symbol.outpatient-med::before {
	content: "\e119";
}

.symbol.output::before {
	content: "\ebbe";
}

.symbol.output-circle::before {
	content: "\f70e";
}

.symbol.oven::before {
	content: "\e9c7";
}

.symbol.oven-gen::before {
	content: "\e843";
}

.symbol.overview::before {
	content: "\e4a7";
}

.symbol.overview-key::before {
	content: "\f7d4";
}

.symbol.owl::before {
	content: "\f3b4";
}

.symbol.oxygen-saturation::before {
	content: "\e4de";
}

.symbol.p2p::before {
	content: "\f52a";
}

.symbol.pace::before {
	content: "\f6b8";
}

.symbol.pacemaker::before {
	content: "\e656";
}

.symbol.package::before {
	content: "\e48f";
}

.symbol.package-2::before {
	content: "\f569";
}

.symbol.padding::before {
	content: "\e9c8";
}

.symbol.padel::before {
	content: "\f2a7";
}

.symbol.page-control::before {
	content: "\e731";
}

.symbol.page-footer::before {
	content: "\f383";
}

.symbol.page-header::before {
	content: "\f384";
}

.symbol.page-info::before {
	content: "\f614";
}

.symbol.page-menu-ios::before {
	content: "\eefb";
}

.symbol.pageless::before {
	content: "\f509";
}

.symbol.pages::before {
	content: "\e7f9";
}

.symbol.pageview::before {
	content: "\e8a0";
}

.symbol.paid::before {
	content: "\f041";
}

.symbol.palette::before {
	content: "\e40a";
}

.symbol.pallet::before {
	content: "\f86a";
}

.symbol.pan-tool::before {
	content: "\e925";
}

.symbol.pan-tool-alt::before {
	content: "\ebb9";
}

.symbol.pan-zoom::before {
	content: "\f655";
}

.symbol.panorama::before {
	content: "\e40b";
}

.symbol.panorama-fish-eye::before {
	content: "\e40c";
}

.symbol.panorama-horizontal::before {
	content: "\e40d";
}

.symbol.panorama-photosphere::before {
	content: "\e9c9";
}

.symbol.panorama-vertical::before {
	content: "\e40e";
}

.symbol.panorama-wide-angle::before {
	content: "\e40f";
}

.symbol.paragliding::before {
	content: "\e50f";
}

.symbol.parent-child-dining::before {
	content: "\f22d";
}

.symbol.park::before {
	content: "\ea63";
}

.symbol.parking-meter::before {
	content: "\f28a";
}

.symbol.parking-sign::before {
	content: "\f289";
}

.symbol.parking-valet::before {
	content: "\f288";
}

.symbol.partly-cloudy-day::before {
	content: "\f172";
}

.symbol.partly-cloudy-night::before {
	content: "\f174";
}

.symbol.partner-exchange::before {
	content: "\f7f9";
}

.symbol.partner-heart::before {
	content: "\ef2e";
}

.symbol.partner-reports::before {
	content: "\efaf";
}

.symbol.party-mode::before {
	content: "\e7fa";
}

.symbol.passkey::before {
	content: "\f87f";
}

.symbol.password::before {
	content: "\f042";
}

.symbol.password-2::before {
	content: "\f4a9";
}

.symbol.password-2-off::before {
	content: "\f4a8";
}

.symbol.patient-list::before {
	content: "\e653";
}

.symbol.pattern::before {
	content: "\f043";
}

.symbol.pause::before {
	content: "\e034";
}

.symbol.pause-circle::before {
	content: "\e1a2";
}

.symbol.pause-circle-filled::before {
	content: "\e1a2";
}

.symbol.pause-circle-outline::before {
	content: "\e1a2";
}

.symbol.pause-presentation::before {
	content: "\e0ea";
}

.symbol.payment::before {
	content: "\e8a1";
}

.symbol.payment-arrow-down::before {
	content: "\f2c0";
}

.symbol.payment-card::before {
	content: "\f2a1";
}

.symbol.payments::before {
	content: "\ef63";
}

.symbol.pedal-bike::before {
	content: "\eb29";
}

.symbol.pediatrics::before {
	content: "\e11d";
}

.symbol.pen-size-1::before {
	content: "\f755";
}

.symbol.pen-size-2::before {
	content: "\f754";
}

.symbol.pen-size-3::before {
	content: "\f753";
}

.symbol.pen-size-4::before {
	content: "\f752";
}

.symbol.pen-size-5::before {
	content: "\f751";
}

.symbol.pending::before {
	content: "\ef64";
}

.symbol.pending-actions::before {
	content: "\f1bb";
}

.symbol.pentagon::before {
	content: "\eb50";
}

.symbol.people::before {
	content: "\ea21";
}

.symbol.people-alt::before {
	content: "\ea21";
}

.symbol.people-outline::before {
	content: "\ea21";
}

.symbol.percent::before {
	content: "\eb58";
}

.symbol.percent-discount::before {
	content: "\f244";
}

.symbol.performance-max::before {
	content: "\e51a";
}

.symbol.pergola::before {
	content: "\e203";
}

.symbol.perm-camera-mic::before {
	content: "\e8a2";
}

.symbol.perm-contact-calendar::before {
	content: "\e8a3";
}

.symbol.perm-data-setting::before {
	content: "\e8a4";
}

.symbol.perm-device-information::before {
	content: "\f2dc";
}

.symbol.perm-identity::before {
	content: "\f0d3";
}

.symbol.perm-media::before {
	content: "\e8a7";
}

.symbol.perm-phone-msg::before {
	content: "\e8a8";
}

.symbol.perm-scan-wifi::before {
	content: "\e8a9";
}

.symbol.person::before {
	content: "\f0d3";
}

.symbol.person-2::before {
	content: "\f8e4";
}

.symbol.person-3::before {
	content: "\f8e5";
}

.symbol.person-4::before {
	content: "\f8e6";
}

.symbol.person-add::before {
	content: "\ea4d";
}

.symbol.person-add-alt::before {
	content: "\ea4d";
}

.symbol.person-add-disabled::before {
	content: "\e9cb";
}

.symbol.person-alert::before {
	content: "\f567";
}

.symbol.person-apron::before {
	content: "\f5a3";
}

.symbol.person-book::before {
	content: "\f5e8";
}

.symbol.person-cancel::before {
	content: "\f566";
}

.symbol.person-celebrate::before {
	content: "\f7fe";
}

.symbol.person-check::before {
	content: "\f565";
}

.symbol.person-edit::before {
	content: "\f4fa";
}

.symbol.person-filled::before {
	content: "\f0d3";
}

.symbol.person-heart::before {
	content: "\f290";
}

.symbol.person-off::before {
	content: "\e510";
}

.symbol.person-outline::before {
	content: "\f0d3";
}

.symbol.person-pin::before {
	content: "\e55a";
}

.symbol.person-pin-circle::before {
	content: "\e56a";
}

.symbol.person-play::before {
	content: "\f7fd";
}

.symbol.person-raised-hand::before {
	content: "\f59a";
}

.symbol.person-remove::before {
	content: "\ef66";
}

.symbol.person-search::before {
	content: "\f106";
}

.symbol.person-shield::before {
	content: "\e384";
}

.symbol.personal-bag::before {
	content: "\eb0e";
}

.symbol.personal-bag-off::before {
	content: "\eb0f";
}

.symbol.personal-bag-question::before {
	content: "\eb10";
}

.symbol.personal-injury::before {
	content: "\e6da";
}

.symbol.personal-places::before {
	content: "\e703";
}

.symbol.personal-video::before {
	content: "\e63b";
}

.symbol.pest-control::before {
	content: "\f0fa";
}

.symbol.pest-control-rodent::before {
	content: "\f0fd";
}

.symbol.pet-supplies::before {
	content: "\efb1";
}

.symbol.pets::before {
	content: "\e91d";
}

.symbol.phishing::before {
	content: "\ead7";
}

.symbol.phone::before {
	content: "\f0d4";
}

.symbol.phone-alt::before {
	content: "\f0d4";
}

.symbol.phone-android::before {
	content: "\f2db";
}

.symbol.phone-bluetooth-speaker::before {
	content: "\e61b";
}

.symbol.phone-callback::before {
	content: "\e649";
}

.symbol.phone-disabled::before {
	content: "\e9cc";
}

.symbol.phone-enabled::before {
	content: "\e9cd";
}

.symbol.phone-forwarded::before {
	content: "\e61c";
}

.symbol.phone-in-talk::before {
	content: "\e61d";
}

.symbol.phone-iphone::before {
	content: "\f2da";
}

.symbol.phone-locked::before {
	content: "\e61e";
}

.symbol.phone-missed::before {
	content: "\e61f";
}

.symbol.phone-paused::before {
	content: "\e620";
}

.symbol.phonelink::before {
	content: "\e326";
}

.symbol.phonelink-erase::before {
	content: "\f2ea";
}

.symbol.phonelink-lock::before {
	content: "\f2be";
}

.symbol.phonelink-off::before {
	content: "\f7a5";
}

.symbol.phonelink-ring::before {
	content: "\f2e8";
}

.symbol.phonelink-ring-off::before {
	content: "\f7aa";
}

.symbol.phonelink-setup::before {
	content: "\f2d9";
}

.symbol.photo::before {
	content: "\e432";
}

.symbol.photo-album::before {
	content: "\e411";
}

.symbol.photo-auto-merge::before {
	content: "\f530";
}

.symbol.photo-camera::before {
	content: "\e412";
}

.symbol.photo-camera-back::before {
	content: "\ef68";
}

.symbol.photo-camera-front::before {
	content: "\ef69";
}

.symbol.photo-filter::before {
	content: "\e43b";
}

.symbol.photo-frame::before {
	content: "\f0d9";
}

.symbol.photo-library::before {
	content: "\e413";
}

.symbol.photo-prints::before {
	content: "\efb2";
}

.symbol.photo-size-select-actual::before {
	content: "\e432";
}

.symbol.photo-size-select-large::before {
	content: "\e433";
}

.symbol.photo-size-select-small::before {
	content: "\e434";
}

.symbol.php::before {
	content: "\eb8f";
}

.symbol.physical-therapy::before {
	content: "\e11e";
}

.symbol.piano::before {
	content: "\e521";
}

.symbol.piano-off::before {
	content: "\e520";
}

.symbol.pickleball::before {
	content: "\f2a6";
}

.symbol.picture-as-pdf::before {
	content: "\e415";
}

.symbol.picture-in-picture::before {
	content: "\e8aa";
}

.symbol.picture-in-picture-alt::before {
	content: "\e911";
}

.symbol.picture-in-picture-center::before {
	content: "\f550";
}

.symbol.picture-in-picture-large::before {
	content: "\f54f";
}

.symbol.picture-in-picture-medium::before {
	content: "\f54e";
}

.symbol.picture-in-picture-mobile::before {
	content: "\f517";
}

.symbol.picture-in-picture-off::before {
	content: "\f52f";
}

.symbol.picture-in-picture-small::before {
	content: "\f54d";
}

.symbol.pie-chart::before {
	content: "\f0da";
}

.symbol.pie-chart-filled::before {
	content: "\f0da";
}

.symbol.pie-chart-outline::before {
	content: "\f0da";
}

.symbol.pie-chart-outlined::before {
	content: "\f0da";
}

.symbol.pill::before {
	content: "\e11f";
}

.symbol.pill-off::before {
	content: "\f809";
}

.symbol.pin::before {
	content: "\f045";
}

.symbol.pin-drop::before {
	content: "\e55e";
}

.symbol.pin-end::before {
	content: "\e767";
}

.symbol.pin-invoke::before {
	content: "\e763";
}

.symbol.pinboard::before {
	content: "\f3ab";
}

.symbol.pinboard-unread::before {
	content: "\f3ac";
}

.symbol.pinch::before {
	content: "\eb38";
}

.symbol.pinch-zoom-in::before {
	content: "\f1fa";
}

.symbol.pinch-zoom-out::before {
	content: "\f1fb";
}

.symbol.pip::before {
	content: "\f64d";
}

.symbol.pip-exit::before {
	content: "\f70d";
}

.symbol.pivot-table-chart::before {
	content: "\e9ce";
}

.symbol.place::before {
	content: "\f1db";
}

.symbol.place-item::before {
	content: "\f1f0";
}

.symbol.plagiarism::before {
	content: "\ea5a";
}

.symbol.plane-contrails::before {
	content: "\f2ac";
}

.symbol.planet::before {
	content: "\f387";
}

.symbol.planner-banner-ad-pt::before {
	content: "\e692";
}

.symbol.planner-review::before {
	content: "\e694";
}

.symbol.play-arrow::before {
	content: "\e037";
}

.symbol.play-circle::before {
	content: "\e1c4";
}

.symbol.play-disabled::before {
	content: "\ef6a";
}

.symbol.play-for-work::before {
	content: "\e906";
}

.symbol.play-lesson::before {
	content: "\f047";
}

.symbol.play-music::before {
	content: "\e6ee";
}

.symbol.play-pause::before {
	content: "\f137";
}

.symbol.play-shapes::before {
	content: "\f7fc";
}

.symbol.playground::before {
	content: "\f28e";
}

.symbol.playground-2::before {
	content: "\f28f";
}

.symbol.playing-cards::before {
	content: "\f5dc";
}

.symbol.playlist-add::before {
	content: "\e03b";
}

.symbol.playlist-add-check::before {
	content: "\e065";
}

.symbol.playlist-add-check-circle::before {
	content: "\e7e6";
}

.symbol.playlist-add-circle::before {
	content: "\e7e5";
}

.symbol.playlist-play::before {
	content: "\e05f";
}

.symbol.playlist-remove::before {
	content: "\eb80";
}

.symbol.plug-connect::before {
	content: "\f35a";
}

.symbol.plumbing::before {
	content: "\f107";
}

.symbol.plus-one::before {
	content: "\e800";
}

.symbol.podcasts::before {
	content: "\f048";
}

.symbol.podiatry::before {
	content: "\e120";
}

.symbol.podium::before {
	content: "\f7fb";
}

.symbol.point-of-sale::before {
	content: "\f17e";
}

.symbol.point-scan::before {
	content: "\f70c";
}

.symbol.poker-chip::before {
	content: "\f49b";
}

.symbol.policy::before {
	content: "\ea17";
}

.symbol.policy-alert::before {
	content: "\f407";
}

.symbol.poll::before {
	content: "\f0cc";
}

.symbol.polyline::before {
	content: "\ebbb";
}

.symbol.polymer::before {
	content: "\e8ab";
}

.symbol.pool::before {
	content: "\eb48";
}

.symbol.portable-wifi-off::before {
	content: "\f087";
}

.symbol.portrait::before {
	content: "\e851";
}

.symbol.position-bottom-left::before {
	content: "\f70b";
}

.symbol.position-bottom-right::before {
	content: "\f70a";
}

.symbol.position-top-right::before {
	content: "\f709";
}

.symbol.post::before {
	content: "\e705";
}

.symbol.post-add::before {
	content: "\ea20";
}

.symbol.potted-plant::before {
	content: "\f8aa";
}

.symbol.power::before {
	content: "\e63c";
}

.symbol.power-input::before {
	content: "\e336";
}

.symbol.power-off::before {
	content: "\e646";
}

.symbol.power-rounded::before {
	content: "\f8c7";
}

.symbol.power-settings-circle::before {
	content: "\f418";
}

.symbol.power-settings-new::before {
	content: "\f8c7";
}

.symbol.prayer-times::before {
	content: "\f838";
}

.symbol.precision-manufacturing::before {
	content: "\f049";
}

.symbol.pregnancy::before {
	content: "\f5f1";
}

.symbol.pregnant-woman::before {
	content: "\f5f1";
}

.symbol.preliminary::before {
	content: "\e7d8";
}

.symbol.prescriptions::before {
	content: "\e121";
}

.symbol.present-to-all::before {
	content: "\e0df";
}

.symbol.preview::before {
	content: "\f1c5";
}

.symbol.preview-off::before {
	content: "\f7af";
}

.symbol.price-change::before {
	content: "\f04a";
}

.symbol.price-check::before {
	content: "\f04b";
}

.symbol.print::before {
	content: "\e8ad";
}

.symbol.print-add::before {
	content: "\f7a2";
}

.symbol.print-connect::before {
	content: "\f7a1";
}

.symbol.print-disabled::before {
	content: "\e9cf";
}

.symbol.print-error::before {
	content: "\f7a0";
}

.symbol.print-lock::before {
	content: "\f651";
}

.symbol.priority::before {
	content: "\e19f";
}

.symbol.priority-high::before {
	content: "\e645";
}

.symbol.privacy::before {
	content: "\f148";
}

.symbol.privacy-tip::before {
	content: "\f0dc";
}

.symbol.private-connectivity::before {
	content: "\e744";
}

.symbol.problem::before {
	content: "\e122";
}

.symbol.procedure::before {
	content: "\e651";
}

.symbol.process-chart::before {
	content: "\f855";
}

.symbol.production-quantity-limits::before {
	content: "\e1d1";
}

.symbol.productivity::before {
	content: "\e296";
}

.symbol.progress-activity::before {
	content: "\e9d0";
}

.symbol.prompt-suggestion::before {
	content: "\f4f6";
}

.symbol.propane::before {
	content: "\ec14";
}

.symbol.propane-tank::before {
	content: "\ec13";
}

.symbol.psychiatry::before {
	content: "\e123";
}

.symbol.psychology::before {
	content: "\ea4a";
}

.symbol.psychology-alt::before {
	content: "\f8ea";
}

.symbol.public::before {
	content: "\e80b";
}

.symbol.public-off::before {
	content: "\f1ca";
}

.symbol.publish::before {
	content: "\e255";
}

.symbol.published-with-changes::before {
	content: "\f232";
}

.symbol.pulmonology::before {
	content: "\e124";
}

.symbol.pulse-alert::before {
	content: "\f501";
}

.symbol.punch-clock::before {
	content: "\eaa8";
}

.symbol.push-pin::before {
	content: "\f10d";
}

.symbol.qr-code::before {
	content: "\ef6b";
}

.symbol.qr-code-2::before {
	content: "\e00a";
}

.symbol.qr-code-2-add::before {
	content: "\f658";
}

.symbol.qr-code-scanner::before {
	content: "\f206";
}

.symbol.query-builder::before {
	content: "\efd6";
}

.symbol.query-stats::before {
	content: "\e4fc";
}

.symbol.question-answer::before {
	content: "\e8af";
}

.symbol.question-exchange::before {
	content: "\f7f3";
}

.symbol.question-mark::before {
	content: "\eb8b";
}

.symbol.queue::before {
	content: "\e03c";
}

.symbol.queue-music::before {
	content: "\e03d";
}

.symbol.queue-play-next::before {
	content: "\e066";
}

.symbol.quick-phrases::before {
	content: "\e7d1";
}

.symbol.quick-reference::before {
	content: "\e46e";
}

.symbol.quick-reference-all::before {
	content: "\f801";
}

.symbol.quick-reorder::before {
	content: "\eb15";
}

.symbol.quickreply::before {
	content: "\ef6c";
}

.symbol.quiet-time::before {
	content: "\f159";
}

.symbol.quiet-time-active::before {
	content: "\eb76";
}

.symbol.quiz::before {
	content: "\f04c";
}

.symbol.r-mobiledata::before {
	content: "\f04d";
}

.symbol.radar::before {
	content: "\f04e";
}

.symbol.radio::before {
	content: "\e03e";
}

.symbol.radio-button-checked::before {
	content: "\e837";
}

.symbol.radio-button-partial::before {
	content: "\f560";
}

.symbol.radio-button-unchecked::before {
	content: "\e836";
}

.symbol.radiology::before {
	content: "\e125";
}

.symbol.railway-alert::before {
	content: "\e9d1";
}

.symbol.railway-alert-2::before {
	content: "\f461";
}

.symbol.rainy::before {
	content: "\f176";
}

.symbol.rainy-heavy::before {
	content: "\f61f";
}

.symbol.rainy-light::before {
	content: "\f61e";
}

.symbol.rainy-snow::before {
	content: "\f61d";
}

.symbol.ramen-dining::before {
	content: "\ea64";
}

.symbol.ramp-left::before {
	content: "\eb9c";
}

.symbol.ramp-right::before {
	content: "\eb96";
}

.symbol.range-hood::before {
	content: "\e1ea";
}

.symbol.rate-review::before {
	content: "\e560";
}

.symbol.rate-review-rtl::before {
	content: "\e706";
}

.symbol.raven::before {
	content: "\f555";
}

.symbol.raw-off::before {
	content: "\f04f";
}

.symbol.raw-on::before {
	content: "\f050";
}

.symbol.read-more::before {
	content: "\ef6d";
}

.symbol.readiness-score::before {
	content: "\f6dd";
}

.symbol.real-estate-agent::before {
	content: "\e73a";
}

.symbol.rear-camera::before {
	content: "\f6c2";
}

.symbol.rebase::before {
	content: "\f845";
}

.symbol.rebase-edit::before {
	content: "\f846";
}

.symbol.receipt::before {
	content: "\e8b0";
}

.symbol.receipt-long::before {
	content: "\ef6e";
}

.symbol.receipt-long-off::before {
	content: "\f40a";
}

.symbol.recent-actors::before {
	content: "\e03f";
}

.symbol.recent-patient::before {
	content: "\f808";
}

.symbol.recenter::before {
	content: "\f4c0";
}

.symbol.recommend::before {
	content: "\e9d2";
}

.symbol.record-voice-over::before {
	content: "\e91f";
}

.symbol.rectangle::before {
	content: "\eb54";
}

.symbol.recycling::before {
	content: "\e760";
}

.symbol.redeem::before {
	content: "\e8f6";
}

.symbol.redo::before {
	content: "\e15a";
}

.symbol.reduce-capacity::before {
	content: "\f21c";
}

.symbol.refresh::before {
	content: "\e5d5";
}

.symbol.regular-expression::before {
	content: "\f750";
}

.symbol.relax::before {
	content: "\f6dc";
}

.symbol.release-alert::before {
	content: "\f654";
}

.symbol.remember-me::before {
	content: "\f051";
}

.symbol.reminder::before {
	content: "\e6c6";
}

.symbol.reminders-alt::before {
	content: "\e6c6";
}

.symbol.remote-gen::before {
	content: "\e83e";
}

.symbol.remove::before {
	content: "\e15b";
}

.symbol.remove-circle::before {
	content: "\f08f";
}

.symbol.remove-circle-outline::before {
	content: "\f08f";
}

.symbol.remove-done::before {
	content: "\e9d3";
}

.symbol.remove-from-queue::before {
	content: "\e067";
}

.symbol.remove-moderator::before {
	content: "\e9d4";
}

.symbol.remove-red-eye::before {
	content: "\e8f4";
}

.symbol.remove-road::before {
	content: "\ebfc";
}

.symbol.remove-selection::before {
	content: "\e9d5";
}

.symbol.remove-shopping-cart::before {
	content: "\e928";
}

.symbol.reopen-window::before {
	content: "\f708";
}

.symbol.reorder::before {
	content: "\e8fe";
}

.symbol.repartition::before {
	content: "\f8e8";
}

.symbol.repeat::before {
	content: "\e040";
}

.symbol.repeat-on::before {
	content: "\e9d6";
}

.symbol.repeat-one::before {
	content: "\e041";
}

.symbol.repeat-one-on::before {
	content: "\e9d7";
}

.symbol.replace-audio::before {
	content: "\f451";
}

.symbol.replace-image::before {
	content: "\f450";
}

.symbol.replace-video::before {
	content: "\f44f";
}

.symbol.replay::before {
	content: "\e042";
}

.symbol.replay-10::before {
	content: "\e059";
}

.symbol.replay-30::before {
	content: "\e05a";
}

.symbol.replay-5::before {
	content: "\e05b";
}

.symbol.replay-circle-filled::before {
	content: "\e9d8";
}

.symbol.reply::before {
	content: "\e15e";
}

.symbol.reply-all::before {
	content: "\e15f";
}

.symbol.report::before {
	content: "\f052";
}

.symbol.report-gmailerrorred::before {
	content: "\f052";
}

.symbol.report-off::before {
	content: "\e170";
}

.symbol.report-problem::before {
	content: "\f083";
}

.symbol.request-page::before {
	content: "\f22c";
}

.symbol.request-quote::before {
	content: "\f1b6";
}

.symbol.reset-brightness::before {
	content: "\f482";
}

.symbol.reset-exposure::before {
	content: "\f266";
}

.symbol.reset-focus::before {
	content: "\f481";
}

.symbol.reset-image::before {
	content: "\f824";
}

.symbol.reset-iso::before {
	content: "\f480";
}

.symbol.reset-settings::before {
	content: "\f47f";
}

.symbol.reset-shadow::before {
	content: "\f47e";
}

.symbol.reset-shutter-speed::before {
	content: "\f47d";
}

.symbol.reset-tv::before {
	content: "\e9d9";
}

.symbol.reset-white-balance::before {
	content: "\f47c";
}

.symbol.reset-wrench::before {
	content: "\f56c";
}

.symbol.resize::before {
	content: "\f707";
}

.symbol.respiratory-rate::before {
	content: "\e127";
}

.symbol.responsive-layout::before {
	content: "\e9da";
}

.symbol.rest-area::before {
	content: "\f22a";
}

.symbol.restart-alt::before {
	content: "\f053";
}

.symbol.restaurant::before {
	content: "\e56c";
}

.symbol.restaurant-menu::before {
	content: "\e561";
}

.symbol.restore::before {
	content: "\e8b3";
}

.symbol.restore-from-trash::before {
	content: "\e938";
}

.symbol.restore-page::before {
	content: "\e929";
}

.symbol.resume::before {
	content: "\f7d0";
}

.symbol.reviews::before {
	content: "\f07c";
}

.symbol.rewarded-ads::before {
	content: "\efb6";
}

.symbol.rheumatology::before {
	content: "\e128";
}

.symbol.rib-cage::before {
	content: "\f898";
}

.symbol.rice-bowl::before {
	content: "\f1f5";
}

.symbol.right-click::before {
	content: "\f706";
}

.symbol.right-panel-close::before {
	content: "\f705";
}

.symbol.right-panel-open::before {
	content: "\f704";
}

.symbol.ring-volume::before {
	content: "\f0dd";
}

.symbol.ring-volume-filled::before {
	content: "\f0dd";
}

.symbol.ripples::before {
	content: "\e9db";
}

.symbol.road::before {
	content: "\f472";
}

.symbol.robot::before {
	content: "\f882";
}

.symbol.robot-2::before {
	content: "\f5d0";
}

.symbol.rocket::before {
	content: "\eba5";
}

.symbol.rocket-launch::before {
	content: "\eb9b";
}

.symbol.roller-shades::before {
	content: "\ec12";
}

.symbol.roller-shades-closed::before {
	content: "\ec11";
}

.symbol.roller-skating::before {
	content: "\ebcd";
}

.symbol.roofing::before {
	content: "\f201";
}

.symbol.room::before {
	content: "\f1db";
}

.symbol.room-preferences::before {
	content: "\f1b8";
}

.symbol.room-service::before {
	content: "\eb49";
}

.symbol.rotate-90-degrees-ccw::before {
	content: "\e418";
}

.symbol.rotate-90-degrees-cw::before {
	content: "\eaab";
}

.symbol.rotate-auto::before {
	content: "\f417";
}

.symbol.rotate-left::before {
	content: "\e419";
}

.symbol.rotate-right::before {
	content: "\e41a";
}

.symbol.roundabout-left::before {
	content: "\eb99";
}

.symbol.roundabout-right::before {
	content: "\eba3";
}

.symbol.rounded-corner::before {
	content: "\e920";
}

.symbol.route::before {
	content: "\eacd";
}

.symbol.router::before {
	content: "\e328";
}

.symbol.router-off::before {
	content: "\f2f4";
}

.symbol.routine::before {
	content: "\e20c";
}

.symbol.rowing::before {
	content: "\e921";
}

.symbol.rss-feed::before {
	content: "\e0e5";
}

.symbol.rsvp::before {
	content: "\f055";
}

.symbol.rtt::before {
	content: "\e9ad";
}

.symbol.rubric::before {
	content: "\eb27";
}

.symbol.rule::before {
	content: "\f1c2";
}

.symbol.rule-folder::before {
	content: "\f1c9";
}

.symbol.rule-settings::before {
	content: "\f64c";
}

.symbol.run-circle::before {
	content: "\ef6f";
}

.symbol.running-with-errors::before {
	content: "\e51d";
}

.symbol.rv-hookup::before {
	content: "\e642";
}

.symbol.safety-check::before {
	content: "\ebef";
}

.symbol.safety-check-off::before {
	content: "\f59d";
}

.symbol.safety-divider::before {
	content: "\e1cc";
}

.symbol.sailing::before {
	content: "\e502";
}

.symbol.salinity::before {
	content: "\f876";
}

.symbol.sanitizer::before {
	content: "\f21d";
}

.symbol.satellite::before {
	content: "\e562";
}

.symbol.satellite-alt::before {
	content: "\eb3a";
}

.symbol.sauna::before {
	content: "\f6f7";
}

.symbol.save::before {
	content: "\e161";
}

.symbol.save-alt::before {
	content: "\f090";
}

.symbol.save-as::before {
	content: "\eb60";
}

.symbol.save-clock::before {
	content: "\f398";
}

.symbol.saved-search::before {
	content: "\ea11";
}

.symbol.savings::before {
	content: "\e2eb";
}

.symbol.scale::before {
	content: "\eb5f";
}

.symbol.scan::before {
	content: "\f74e";
}

.symbol.scan-delete::before {
	content: "\f74f";
}

.symbol.scanner::before {
	content: "\e329";
}

.symbol.scatter-plot::before {
	content: "\e268";
}

.symbol.scene::before {
	content: "\e2a7";
}

.symbol.schedule::before {
	content: "\efd6";
}

.symbol.schedule-send::before {
	content: "\ea0a";
}

.symbol.schema::before {
	content: "\e4fd";
}

.symbol.school::before {
	content: "\e80c";
}

.symbol.science::before {
	content: "\ea4b";
}

.symbol.science-off::before {
	content: "\f542";
}

.symbol.scooter::before {
	content: "\f471";
}

.symbol.score::before {
	content: "\e269";
}

.symbol.scoreboard::before {
	content: "\ebd0";
}

.symbol.screen-lock-landscape::before {
	content: "\f2d8";
}

.symbol.screen-lock-portrait::before {
	content: "\f2be";
}

.symbol.screen-lock-rotation::before {
	content: "\f2d6";
}

.symbol.screen-record::before {
	content: "\f679";
}

.symbol.screen-rotation::before {
	content: "\f2d5";
}

.symbol.screen-rotation-alt::before {
	content: "\ebee";
}

.symbol.screen-rotation-up::before {
	content: "\f678";
}

.symbol.screen-search-desktop::before {
	content: "\ef70";
}

.symbol.screen-share::before {
	content: "\e0e2";
}

.symbol.screenshot::before {
	content: "\f056";
}

.symbol.screenshot-frame::before {
	content: "\f677";
}

.symbol.screenshot-frame-2::before {
	content: "\f374";
}

.symbol.screenshot-keyboard::before {
	content: "\f7d3";
}

.symbol.screenshot-monitor::before {
	content: "\ec08";
}

.symbol.screenshot-region::before {
	content: "\f7d2";
}

.symbol.screenshot-tablet::before {
	content: "\f697";
}

.symbol.script::before {
	content: "\f45f";
}

.symbol.scrollable-header::before {
	content: "\e9dc";
}

.symbol.scuba-diving::before {
	content: "\ebce";
}

.symbol.sd::before {
	content: "\e9dd";
}

.symbol.sd-card::before {
	content: "\e623";
}

.symbol.sd-card-alert::before {
	content: "\f057";
}

.symbol.sd-storage::before {
	content: "\e623";
}

.symbol.sdk::before {
	content: "\e720";
}

.symbol.search::before {
	content: "\e8b6";
}

.symbol.search-activity::before {
	content: "\f3e5";
}

.symbol.search-check::before {
	content: "\f800";
}

.symbol.search-check-2::before {
	content: "\f469";
}

.symbol.search-gear::before {
	content: "\eefa";
}

.symbol.search-hands-free::before {
	content: "\e696";
}

.symbol.search-insights::before {
	content: "\f4bc";
}

.symbol.search-off::before {
	content: "\ea76";
}

.symbol.seat-cool-left::before {
	content: "\f331";
}

.symbol.seat-cool-right::before {
	content: "\f330";
}

.symbol.seat-heat-left::before {
	content: "\f32f";
}

.symbol.seat-heat-right::before {
	content: "\f32e";
}

.symbol.seat-vent-left::before {
	content: "\f32d";
}

.symbol.seat-vent-right::before {
	content: "\f32c";
}

.symbol.security::before {
	content: "\e32a";
}

.symbol.security-key::before {
	content: "\f503";
}

.symbol.security-update::before {
	content: "\f2cd";
}

.symbol.security-update-good::before {
	content: "\f073";
}

.symbol.security-update-warning::before {
	content: "\f2d3";
}

.symbol.segment::before {
	content: "\e94b";
}

.symbol.select::before {
	content: "\f74d";
}

.symbol.select-all::before {
	content: "\e162";
}

.symbol.select-check-box::before {
	content: "\f1fe";
}

.symbol.select-to-speak::before {
	content: "\f7cf";
}

.symbol.select-window::before {
	content: "\e6fa";
}

.symbol.select-window-2::before {
	content: "\f4c8";
}

.symbol.select-window-off::before {
	content: "\e506";
}

.symbol.self-care::before {
	content: "\f86d";
}

.symbol.self-improvement::before {
	content: "\ea78";
}

.symbol.sell::before {
	content: "\f05b";
}

.symbol.send::before {
	content: "\e163";
}

.symbol.send-and-archive::before {
	content: "\ea0c";
}

.symbol.send-money::before {
	content: "\e8b7";
}

.symbol.send-time-extension::before {
	content: "\eadb";
}

.symbol.send-to-mobile::before {
	content: "\f2d2";
}

.symbol.sensor-door::before {
	content: "\f1b5";
}

.symbol.sensor-occupied::before {
	content: "\ec10";
}

.symbol.sensor-window::before {
	content: "\f1b4";
}

.symbol.sensors::before {
	content: "\e51e";
}

.symbol.sensors-krx::before {
	content: "\f556";
}

.symbol.sensors-krx-off::before {
	content: "\f515";
}

.symbol.sensors-off::before {
	content: "\e51f";
}

.symbol.sentiment-calm::before {
	content: "\f6a7";
}

.symbol.sentiment-content::before {
	content: "\f6a6";
}

.symbol.sentiment-dissatisfied::before {
	content: "\e811";
}

.symbol.sentiment-excited::before {
	content: "\f6a5";
}

.symbol.sentiment-extremely-dissatisfied::before {
	content: "\f194";
}

.symbol.sentiment-frustrated::before {
	content: "\f6a4";
}

.symbol.sentiment-neutral::before {
	content: "\e812";
}

.symbol.sentiment-sad::before {
	content: "\f6a3";
}

.symbol.sentiment-satisfied::before {
	content: "\e813";
}

.symbol.sentiment-satisfied-alt::before {
	content: "\e813";
}

.symbol.sentiment-stressed::before {
	content: "\f6a2";
}

.symbol.sentiment-very-dissatisfied::before {
	content: "\e814";
}

.symbol.sentiment-very-satisfied::before {
	content: "\e815";
}

.symbol.sentiment-worried::before {
	content: "\f6a1";
}

.symbol.serif::before {
	content: "\f4ac";
}

.symbol.server-person::before {
	content: "\f3bd";
}

.symbol.service-toolbox::before {
	content: "\e717";
}

.symbol.set-meal::before {
	content: "\f1ea";
}

.symbol.settings::before {
	content: "\e8b8";
}

.symbol.settings-accessibility::before {
	content: "\f05d";
}

.symbol.settings-account-box::before {
	content: "\f835";
}

.symbol.settings-alert::before {
	content: "\f143";
}

.symbol.settings-applications::before {
	content: "\e8b9";
}

.symbol.settings-b-roll::before {
	content: "\f625";
}

.symbol.settings-backup-restore::before {
	content: "\e8ba";
}

.symbol.settings-bluetooth::before {
	content: "\e8bb";
}

.symbol.settings-brightness::before {
	content: "\e8bd";
}

.symbol.settings-cell::before {
	content: "\f2d1";
}

.symbol.settings-cinematic-blur::before {
	content: "\f624";
}

.symbol.settings-ethernet::before {
	content: "\e8be";
}

.symbol.settings-heart::before {
	content: "\f522";
}

.symbol.settings-input-antenna::before {
	content: "\e8bf";
}

.symbol.settings-input-component::before {
	content: "\e8c1";
}

.symbol.settings-input-composite::before {
	content: "\e8c1";
}

.symbol.settings-input-hdmi::before {
	content: "\e8c2";
}

.symbol.settings-input-svideo::before {
	content: "\e8c3";
}

.symbol.settings-motion-mode::before {
	content: "\f833";
}

.symbol.settings-night-sight::before {
	content: "\f832";
}

.symbol.settings-overscan::before {
	content: "\e8c4";
}

.symbol.settings-panorama::before {
	content: "\f831";
}

.symbol.settings-phone::before {
	content: "\e8c5";
}

.symbol.settings-photo-camera::before {
	content: "\f834";
}

.symbol.settings-power::before {
	content: "\e8c6";
}

.symbol.settings-remote::before {
	content: "\e8c7";
}

.symbol.settings-seating::before {
	content: "\ef2d";
}

.symbol.settings-slow-motion::before {
	content: "\f623";
}

.symbol.settings-suggest::before {
	content: "\f05e";
}

.symbol.settings-system-daydream::before {
	content: "\e1c3";
}

.symbol.settings-timelapse::before {
	content: "\f622";
}

.symbol.settings-video-camera::before {
	content: "\f621";
}

.symbol.settings-voice::before {
	content: "\e8c8";
}

.symbol.settop-component::before {
	content: "\e2ac";
}

.symbol.severe-cold::before {
	content: "\ebd3";
}

.symbol.shadow::before {
	content: "\e9df";
}

.symbol.shadow-add::before {
	content: "\f584";
}

.symbol.shadow-minus::before {
	content: "\f583";
}

.symbol.shape-line::before {
	content: "\f8d3";
}

.symbol.shape-recognition::before {
	content: "\eb01";
}

.symbol.shapes::before {
	content: "\e602";
}

.symbol.share::before {
	content: "\e80d";
}

.symbol.share-eta::before {
	content: "\e5f7";
}

.symbol.share-location::before {
	content: "\f05f";
}

.symbol.share-off::before {
	content: "\f6cb";
}

.symbol.share-reviews::before {
	content: "\f8a4";
}

.symbol.share-windows::before {
	content: "\f613";
}

.symbol.shaved-ice::before {
	content: "\f225";
}

.symbol.sheets-rtl::before {
	content: "\f823";
}

.symbol.shelf-auto-hide::before {
	content: "\f703";
}

.symbol.shelf-position::before {
	content: "\f702";
}

.symbol.shelves::before {
	content: "\f86e";
}

.symbol.shield::before {
	content: "\e9e0";
}

.symbol.shield-lock::before {
	content: "\f686";
}

.symbol.shield-locked::before {
	content: "\f592";
}

.symbol.shield-moon::before {
	content: "\eaa9";
}

.symbol.shield-person::before {
	content: "\f650";
}

.symbol.shield-question::before {
	content: "\f529";
}

.symbol.shield-toggle::before {
	content: "\f2ad";
}

.symbol.shield-watch::before {
	content: "\f30f";
}

.symbol.shield-with-heart::before {
	content: "\e78f";
}

.symbol.shield-with-house::before {
	content: "\e78d";
}

.symbol.shift::before {
	content: "\e5f2";
}

.symbol.shift-lock::before {
	content: "\f7ae";
}

.symbol.shift-lock-off::before {
	content: "\f483";
}

.symbol.shop::before {
	content: "\e8c9";
}

.symbol.shop-2::before {
	content: "\e8ca";
}

.symbol.shop-two::before {
	content: "\e8ca";
}

.symbol.shopping-bag::before {
	content: "\f1cc";
}

.symbol.shopping-bag-speed::before {
	content: "\f39a";
}

.symbol.shopping-basket::before {
	content: "\e8cb";
}

.symbol.shopping-cart::before {
	content: "\e8cc";
}

.symbol.shopping-cart-checkout::before {
	content: "\eb88";
}

.symbol.shopping-cart-off::before {
	content: "\f4f7";
}

.symbol.shoppingmode::before {
	content: "\efb7";
}

.symbol.short-stay::before {
	content: "\e4d0";
}

.symbol.short-text::before {
	content: "\e261";
}

.symbol.shortcut::before {
	content: "\f57a";
}

.symbol.show-chart::before {
	content: "\e6e1";
}

.symbol.shower::before {
	content: "\f061";
}

.symbol.shuffle::before {
	content: "\e043";
}

.symbol.shuffle-on::before {
	content: "\e9e1";
}

.symbol.shutter-speed::before {
	content: "\e43d";
}

.symbol.shutter-speed-add::before {
	content: "\f57e";
}

.symbol.shutter-speed-minus::before {
	content: "\f57d";
}

.symbol.sick::before {
	content: "\f220";
}

.symbol.side-navigation::before {
	content: "\e9e2";
}

.symbol.sign-language::before {
	content: "\ebe5";
}

.symbol.sign-language-2::before {
	content: "\f258";
}

.symbol.signal-cellular-0-bar::before {
	content: "\f0a8";
}

.symbol.signal-cellular-1-bar::before {
	content: "\f0a9";
}

.symbol.signal-cellular-2-bar::before {
	content: "\f0aa";
}

.symbol.signal-cellular-3-bar::before {
	content: "\f0ab";
}

.symbol.signal-cellular-4-bar::before {
	content: "\e1c8";
}

.symbol.signal-cellular-add::before {
	content: "\f7a9";
}

.symbol.signal-cellular-alt::before {
	content: "\e202";
}

.symbol.signal-cellular-alt-1-bar::before {
	content: "\ebdf";
}

.symbol.signal-cellular-alt-2-bar::before {
	content: "\ebe3";
}

.symbol.signal-cellular-connected-no-internet-0-bar::before {
	content: "\f0ac";
}

.symbol.signal-cellular-connected-no-internet-4-bar::before {
	content: "\e1cd";
}

.symbol.signal-cellular-no-sim::before {
	content: "\e1ce";
}

.symbol.signal-cellular-nodata::before {
	content: "\f062";
}

.symbol.signal-cellular-null::before {
	content: "\e1cf";
}

.symbol.signal-cellular-off::before {
	content: "\e1d0";
}

.symbol.signal-cellular-pause::before {
	content: "\f5a7";
}

.symbol.signal-disconnected::before {
	content: "\f239";
}

.symbol.signal-wifi-0-bar::before {
	content: "\f0b0";
}

.symbol.signal-wifi-4-bar::before {
	content: "\f065";
}

.symbol.signal-wifi-4-bar-lock::before {
	content: "\e1e1";
}

.symbol.signal-wifi-bad::before {
	content: "\f064";
}

.symbol.signal-wifi-connected-no-internet-4::before {
	content: "\f064";
}

.symbol.signal-wifi-off::before {
	content: "\e1da";
}

.symbol.signal-wifi-statusbar-4-bar::before {
	content: "\f065";
}

.symbol.signal-wifi-statusbar-not-connected::before {
	content: "\f0ef";
}

.symbol.signal-wifi-statusbar-null::before {
	content: "\f067";
}

.symbol.signature::before {
	content: "\f74c";
}

.symbol.signpost::before {
	content: "\eb91";
}

.symbol.sim-card::before {
	content: "\e32b";
}

.symbol.sim-card-alert::before {
	content: "\f057";
}

.symbol.sim-card-download::before {
	content: "\f068";
}

.symbol.simulation::before {
	content: "\f3e1";
}

.symbol.single-bed::before {
	content: "\ea48";
}

.symbol.sip::before {
	content: "\f069";
}

.symbol.siren::before {
	content: "\f3a7";
}

.symbol.siren-check::before {
	content: "\f3a6";
}

.symbol.siren-open::before {
	content: "\f3a5";
}

.symbol.siren-question::before {
	content: "\f3a4";
}

.symbol.skateboarding::before {
	content: "\e511";
}

.symbol.skeleton::before {
	content: "\f899";
}

.symbol.skillet::before {
	content: "\f543";
}

.symbol.skillet-cooktop::before {
	content: "\f544";
}

.symbol.skip-next::before {
	content: "\e044";
}

.symbol.skip-previous::before {
	content: "\e045";
}

.symbol.skull::before {
	content: "\f89a";
}

.symbol.skull-list::before {
	content: "\f370";
}

.symbol.slab-serif::before {
	content: "\f4ab";
}

.symbol.sledding::before {
	content: "\e512";
}

.symbol.sleep::before {
	content: "\e213";
}

.symbol.sleep-score::before {
	content: "\f6b7";
}

.symbol.slide-library::before {
	content: "\f822";
}

.symbol.sliders::before {
	content: "\e9e3";
}

.symbol.slideshow::before {
	content: "\e41b";
}

.symbol.slow-motion-video::before {
	content: "\e068";
}

.symbol.smart-button::before {
	content: "\f1c1";
}

.symbol.smart-card-reader::before {
	content: "\f4a5";
}

.symbol.smart-card-reader-off::before {
	content: "\f4a6";
}

.symbol.smart-display::before {
	content: "\f06a";
}

.symbol.smart-outlet::before {
	content: "\e844";
}

.symbol.smart-screen::before {
	content: "\f2d0";
}

.symbol.smart-toy::before {
	content: "\f06c";
}

.symbol.smartphone::before {
	content: "\e7ba";
}

.symbol.smartphone-camera::before {
	content: "\f44e";
}

.symbol.smb-share::before {
	content: "\f74b";
}

.symbol.smoke-free::before {
	content: "\eb4a";
}

.symbol.smoking-rooms::before {
	content: "\eb4b";
}

.symbol.sms::before {
	content: "\e625";
}

.symbol.sms-failed::before {
	content: "\e87f";
}

.symbol.snippet-folder::before {
	content: "\f1c7";
}

.symbol.snooze::before {
	content: "\e046";
}

.symbol.snowboarding::before {
	content: "\e513";
}

.symbol.snowing::before {
	content: "\e80f";
}

.symbol.snowing-heavy::before {
	content: "\f61c";
}

.symbol.snowmobile::before {
	content: "\e503";
}

.symbol.snowshoeing::before {
	content: "\e514";
}

.symbol.soap::before {
	content: "\f1b2";
}

.symbol.soba::before {
	content: "\ef36";
}

.symbol.social-distance::before {
	content: "\e1cb";
}

.symbol.social-leaderboard::before {
	content: "\f6a0";
}

.symbol.solar-power::before {
	content: "\ec0f";
}

.symbol.solo-dining::before {
	content: "\ef35";
}

.symbol.sort::before {
	content: "\e164";
}

.symbol.sort-by-alpha::before {
	content: "\e053";
}

.symbol.sos::before {
	content: "\ebf7";
}

.symbol.sound-detection-dog-barking::before {
	content: "\f149";
}

.symbol.sound-detection-glass-break::before {
	content: "\f14a";
}

.symbol.sound-detection-loud-sound::before {
	content: "\f14b";
}

.symbol.sound-sampler::before {
	content: "\f6b4";
}

.symbol.soup-kitchen::before {
	content: "\e7d3";
}

.symbol.source::before {
	content: "\f1c8";
}

.symbol.source-environment::before {
	content: "\e527";
}

.symbol.source-notes::before {
	content: "\e12d";
}

.symbol.south::before {
	content: "\f1e3";
}

.symbol.south-america::before {
	content: "\e7e4";
}

.symbol.south-east::before {
	content: "\f1e4";
}

.symbol.south-west::before {
	content: "\f1e5";
}

.symbol.spa::before {
	content: "\eb4c";
}

.symbol.space-bar::before {
	content: "\e256";
}

.symbol.space-dashboard::before {
	content: "\e66b";
}

.symbol.spatial-audio::before {
	content: "\ebeb";
}

.symbol.spatial-audio-off::before {
	content: "\ebe8";
}

.symbol.spatial-speaker::before {
	content: "\f4cf";
}

.symbol.spatial-tracking::before {
	content: "\ebea";
}

.symbol.speaker::before {
	content: "\e32d";
}

.symbol.speaker-group::before {
	content: "\e32e";
}

.symbol.speaker-notes::before {
	content: "\e8cd";
}

.symbol.speaker-notes-off::before {
	content: "\e92a";
}

.symbol.speaker-phone::before {
	content: "\e0d2";
}

.symbol.special-character::before {
	content: "\f74a";
}

.symbol.specific-gravity::before {
	content: "\f872";
}

.symbol.speech-to-text::before {
	content: "\f8a7";
}

.symbol.speed::before {
	content: "\e9e4";
}

.symbol.speed-0-25::before {
	content: "\f4d4";
}

.symbol.speed-0-2x::before {
	content: "\f498";
}

.symbol.speed-0-5::before {
	content: "\f4e2";
}

.symbol.speed-0-5x::before {
	content: "\f497";
}

.symbol.speed-0-75::before {
	content: "\f4d3";
}

.symbol.speed-0-7x::before {
	content: "\f496";
}

.symbol.speed-1-2::before {
	content: "\f4e1";
}

.symbol.speed-1-25::before {
	content: "\f4d2";
}

.symbol.speed-1-2x::before {
	content: "\f495";
}

.symbol.speed-1-5::before {
	content: "\f4e0";
}

.symbol.speed-1-5x::before {
	content: "\f494";
}

.symbol.speed-1-75::before {
	content: "\f4d1";
}

.symbol.speed-1-7x::before {
	content: "\f493";
}

.symbol.speed-2x::before {
	content: "\f4eb";
}

.symbol.speed-camera::before {
	content: "\f470";
}

.symbol.spellcheck::before {
	content: "\e8ce";
}

.symbol.split-scene::before {
	content: "\f3bf";
}

.symbol.split-scene-down::before {
	content: "\f2ff";
}

.symbol.split-scene-left::before {
	content: "\f2fe";
}

.symbol.split-scene-right::before {
	content: "\f2fd";
}

.symbol.split-scene-up::before {
	content: "\f2fc";
}

.symbol.splitscreen::before {
	content: "\f06d";
}

.symbol.splitscreen-add::before {
	content: "\f4fd";
}

.symbol.splitscreen-bottom::before {
	content: "\f676";
}

.symbol.splitscreen-landscape::before {
	content: "\f459";
}

.symbol.splitscreen-left::before {
	content: "\f675";
}

.symbol.splitscreen-portrait::before {
	content: "\f458";
}

.symbol.splitscreen-right::before {
	content: "\f674";
}

.symbol.splitscreen-top::before {
	content: "\f673";
}

.symbol.splitscreen-vertical-add::before {
	content: "\f4fc";
}

.symbol.spo2::before {
	content: "\f6db";
}

.symbol.spoke::before {
	content: "\e9a7";
}

.symbol.sports::before {
	content: "\ea30";
}

.symbol.sports-and-outdoors::before {
	content: "\efb8";
}

.symbol.sports-bar::before {
	content: "\f1f3";
}

.symbol.sports-baseball::before {
	content: "\ea51";
}

.symbol.sports-basketball::before {
	content: "\ea26";
}

.symbol.sports-cricket::before {
	content: "\ea27";
}

.symbol.sports-esports::before {
	content: "\ea28";
}

.symbol.sports-football::before {
	content: "\ea29";
}

.symbol.sports-golf::before {
	content: "\ea2a";
}

.symbol.sports-gymnastics::before {
	content: "\ebc4";
}

.symbol.sports-handball::before {
	content: "\ea33";
}

.symbol.sports-hockey::before {
	content: "\ea2b";
}

.symbol.sports-kabaddi::before {
	content: "\ea34";
}

.symbol.sports-martial-arts::before {
	content: "\eae9";
}

.symbol.sports-mma::before {
	content: "\ea2c";
}

.symbol.sports-motorsports::before {
	content: "\ea2d";
}

.symbol.sports-rugby::before {
	content: "\ea2e";
}

.symbol.sports-score::before {
	content: "\f06e";
}

.symbol.sports-soccer::before {
	content: "\ea2f";
}

.symbol.sports-tennis::before {
	content: "\ea32";
}

.symbol.sports-volleyball::before {
	content: "\ea31";
}

.symbol.sprinkler::before {
	content: "\e29a";
}

.symbol.sprint::before {
	content: "\f81f";
}

.symbol.square::before {
	content: "\eb36";
}

.symbol.square-dot::before {
	content: "\f3b3";
}

.symbol.square-foot::before {
	content: "\ea49";
}

.symbol.ssid-chart::before {
	content: "\eb66";
}

.symbol.stack::before {
	content: "\f609";
}

.symbol.stack-group::before {
	content: "\f359";
}

.symbol.stack-hexagon::before {
	content: "\f41c";
}

.symbol.stack-off::before {
	content: "\f608";
}

.symbol.stack-star::before {
	content: "\f607";
}

.symbol.stacked-bar-chart::before {
	content: "\e9e6";
}

.symbol.stacked-email::before {
	content: "\e6c7";
}

.symbol.stacked-inbox::before {
	content: "\e6c9";
}

.symbol.stacked-line-chart::before {
	content: "\f22b";
}

.symbol.stacks::before {
	content: "\f500";
}

.symbol.stadia-controller::before {
	content: "\f135";
}

.symbol.stadium::before {
	content: "\eb90";
}

.symbol.stairs::before {
	content: "\f1a9";
}

.symbol.stairs-2::before {
	content: "\f46c";
}

.symbol.star::before {
	content: "\f09a";
}

.symbol.star-border::before {
	content: "\f09a";
}

.symbol.star-border-purple500::before {
	content: "\f09a";
}

.symbol.star-half::before {
	content: "\e839";
}

.symbol.star-outline::before {
	content: "\f09a";
}

.symbol.star-purple500::before {
	content: "\f09a";
}

.symbol.star-rate::before {
	content: "\f0ec";
}

.symbol.star-rate-half::before {
	content: "\ec45";
}

.symbol.star-shine::before {
	content: "\f31d";
}

.symbol.stars::before {
	content: "\e8d0";
}

.symbol.stars-2::before {
	content: "\f31c";
}

.symbol.start::before {
	content: "\e089";
}

.symbol.stat-0::before {
	content: "\e697";
}

.symbol.stat-1::before {
	content: "\e698";
}

.symbol.stat-2::before {
	content: "\e699";
}

.symbol.stat-3::before {
	content: "\e69a";
}

.symbol.stat-minus-1::before {
	content: "\e69b";
}

.symbol.stat-minus-2::before {
	content: "\e69c";
}

.symbol.stat-minus-3::before {
	content: "\e69d";
}

.symbol.stay-current-landscape::before {
	content: "\ed3e";
}

.symbol.stay-current-portrait::before {
	content: "\e7ba";
}

.symbol.stay-primary-landscape::before {
	content: "\ed3e";
}

.symbol.stay-primary-portrait::before {
	content: "\f2d3";
}

.symbol.steering-wheel-heat::before {
	content: "\f32b";
}

.symbol.step::before {
	content: "\f6fe";
}

.symbol.step-into::before {
	content: "\f701";
}

.symbol.step-out::before {
	content: "\f700";
}

.symbol.step-over::before {
	content: "\f6ff";
}

.symbol.steppers::before {
	content: "\e9e7";
}

.symbol.steps::before {
	content: "\f6da";
}

.symbol.stethoscope::before {
	content: "\f805";
}

.symbol.stethoscope-arrow::before {
	content: "\f807";
}

.symbol.stethoscope-check::before {
	content: "\f806";
}

.symbol.sticky-note::before {
	content: "\e9e8";
}

.symbol.sticky-note-2::before {
	content: "\f1fc";
}

.symbol.stock-media::before {
	content: "\f570";
}

.symbol.stockpot::before {
	content: "\f545";
}

.symbol.stop::before {
	content: "\e047";
}

.symbol.stop-circle::before {
	content: "\ef71";
}

.symbol.stop-screen-share::before {
	content: "\e0e3";
}

.symbol.storage::before {
	content: "\e1db";
}

.symbol.store::before {
	content: "\e8d1";
}

.symbol.store-mall-directory::before {
	content: "\e8d1";
}

.symbol.storefront::before {
	content: "\ea12";
}

.symbol.storm::before {
	content: "\f070";
}

.symbol.straight::before {
	content: "\eb95";
}

.symbol.straighten::before {
	content: "\e41c";
}

.symbol.strategy::before {
	content: "\f5df";
}

.symbol.stream::before {
	content: "\e9e9";
}

.symbol.stream-apps::before {
	content: "\f79f";
}

.symbol.streetview::before {
	content: "\e56e";
}

.symbol.stress-management::before {
	content: "\f6d9";
}

.symbol.strikethrough-s::before {
	content: "\e257";
}

.symbol.stroke-full::before {
	content: "\f749";
}

.symbol.stroke-partial::before {
	content: "\f748";
}

.symbol.stroller::before {
	content: "\f1ae";
}

.symbol.style::before {
	content: "\e41d";
}

.symbol.styler::before {
	content: "\e273";
}

.symbol.stylus::before {
	content: "\f604";
}

.symbol.stylus-brush::before {
	content: "\f366";
}

.symbol.stylus-fountain-pen::before {
	content: "\f365";
}

.symbol.stylus-highlighter::before {
	content: "\f364";
}

.symbol.stylus-laser-pointer::before {
	content: "\f747";
}

.symbol.stylus-note::before {
	content: "\f603";
}

.symbol.stylus-pen::before {
	content: "\f363";
}

.symbol.stylus-pencil::before {
	content: "\f362";
}

.symbol.subdirectory-arrow-left::before {
	content: "\e5d9";
}

.symbol.subdirectory-arrow-right::before {
	content: "\e5da";
}

.symbol.subheader::before {
	content: "\e9ea";
}

.symbol.subject::before {
	content: "\e8d2";
}

.symbol.subscript::before {
	content: "\f111";
}

.symbol.subscriptions::before {
	content: "\e064";
}

.symbol.subtitles::before {
	content: "\e048";
}

.symbol.subtitles-gear::before {
	content: "\f355";
}

.symbol.subtitles-off::before {
	content: "\ef72";
}

.symbol.subway::before {
	content: "\e56f";
}

.symbol.subway-walk::before {
	content: "\f287";
}

.symbol.summarize::before {
	content: "\f071";
}

.symbol.sunny::before {
	content: "\e81a";
}

.symbol.sunny-snowing::before {
	content: "\e819";
}

.symbol.superscript::before {
	content: "\f112";
}

.symbol.supervised-user-circle::before {
	content: "\e939";
}

.symbol.supervised-user-circle-off::before {
	content: "\f60e";
}

.symbol.supervisor-account::before {
	content: "\e8d3";
}

.symbol.support::before {
	content: "\ef73";
}

.symbol.support-agent::before {
	content: "\f0e2";
}

.symbol.surfing::before {
	content: "\e515";
}

.symbol.surgical::before {
	content: "\e131";
}

.symbol.surround-sound::before {
	content: "\e049";
}

.symbol.swap-calls::before {
	content: "\e0d7";
}

.symbol.swap-driving-apps::before {
	content: "\e69e";
}

.symbol.swap-driving-apps-wheel::before {
	content: "\e69f";
}

.symbol.swap-horiz::before {
	content: "\e8d4";
}

.symbol.swap-horizontal-circle::before {
	content: "\e933";
}

.symbol.swap-vert::before {
	content: "\e8d5";
}

.symbol.swap-vertical-circle::before {
	content: "\e8d6";
}

.symbol.sweep::before {
	content: "\e6ac";
}

.symbol.swipe::before {
	content: "\e9ec";
}

.symbol.swipe-down::before {
	content: "\eb53";
}

.symbol.swipe-down-alt::before {
	content: "\eb30";
}

.symbol.swipe-left::before {
	content: "\eb59";
}

.symbol.swipe-left-alt::before {
	content: "\eb33";
}

.symbol.swipe-right::before {
	content: "\eb52";
}

.symbol.swipe-right-alt::before {
	content: "\eb56";
}

.symbol.swipe-up::before {
	content: "\eb2e";
}

.symbol.swipe-up-alt::before {
	content: "\eb35";
}

.symbol.swipe-vertical::before {
	content: "\eb51";
}

.symbol.switch::before {
	content: "\e1f4";
}

.symbol.switch-access::before {
	content: "\f6fd";
}

.symbol.switch-access-2::before {
	content: "\f506";
}

.symbol.switch-access-3::before {
	content: "\f34d";
}

.symbol.switch-access-shortcut::before {
	content: "\e7e1";
}

.symbol.switch-access-shortcut-add::before {
	content: "\e7e2";
}

.symbol.switch-account::before {
	content: "\e9ed";
}

.symbol.switch-camera::before {
	content: "\e41e";
}

.symbol.switch-left::before {
	content: "\f1d1";
}

.symbol.switch-right::before {
	content: "\f1d2";
}

.symbol.switch-video::before {
	content: "\e41f";
}

.symbol.switches::before {
	content: "\e733";
}

.symbol.sword-rose::before {
	content: "\f5de";
}

.symbol.swords::before {
	content: "\f889";
}

.symbol.symptoms::before {
	content: "\e132";
}

.symbol.synagogue::before {
	content: "\eab0";
}

.symbol.sync::before {
	content: "\e627";
}

.symbol.sync-alt::before {
	content: "\ea18";
}

.symbol.sync-arrow-down::before {
	content: "\f37c";
}

.symbol.sync-arrow-up::before {
	content: "\f37b";
}

.symbol.sync-desktop::before {
	content: "\f41a";
}

.symbol.sync-disabled::before {
	content: "\e628";
}

.symbol.sync-lock::before {
	content: "\eaee";
}

.symbol.sync-problem::before {
	content: "\e629";
}

.symbol.sync-saved-locally::before {
	content: "\f820";
}

.symbol.sync-saved-locally-off::before {
	content: "\f264";
}

.symbol.syringe::before {
	content: "\e133";
}

.symbol.system-security-update::before {
	content: "\f2cd";
}

.symbol.system-security-update-good::before {
	content: "\f073";
}

.symbol.system-security-update-warning::before {
	content: "\f2d3";
}

.symbol.system-update::before {
	content: "\f2cd";
}

.symbol.system-update-alt::before {
	content: "\e8d7";
}

.symbol.tab::before {
	content: "\e8d8";
}

.symbol.tab-close::before {
	content: "\f745";
}

.symbol.tab-close-inactive::before {
	content: "\f3d0";
}

.symbol.tab-close-right::before {
	content: "\f746";
}

.symbol.tab-duplicate::before {
	content: "\f744";
}

.symbol.tab-group::before {
	content: "\f743";
}

.symbol.tab-inactive::before {
	content: "\f43b";
}

.symbol.tab-move::before {
	content: "\f742";
}

.symbol.tab-new-right::before {
	content: "\f741";
}

.symbol.tab-recent::before {
	content: "\f740";
}

.symbol.tab-search::before {
	content: "\f2f2";
}

.symbol.tab-unselected::before {
	content: "\e8d9";
}

.symbol.table::before {
	content: "\f191";
}

.symbol.table-bar::before {
	content: "\ead2";
}

.symbol.table-chart::before {
	content: "\e265";
}

.symbol.table-chart-view::before {
	content: "\f6ef";
}

.symbol.table-convert::before {
	content: "\f3c7";
}

.symbol.table-edit::before {
	content: "\f3c6";
}

.symbol.table-eye::before {
	content: "\f466";
}

.symbol.table-lamp::before {
	content: "\e1f2";
}

.symbol.table-large::before {
	content: "\f299";
}

.symbol.table-restaurant::before {
	content: "\eac6";
}

.symbol.table-rows::before {
	content: "\f101";
}

.symbol.table-rows-narrow::before {
	content: "\f73f";
}

.symbol.table-sign::before {
	content: "\ef2c";
}

.symbol.table-view::before {
	content: "\f1be";
}

.symbol.tablet::before {
	content: "\e32f";
}

.symbol.tablet-android::before {
	content: "\e330";
}

.symbol.tablet-camera::before {
	content: "\f44d";
}

.symbol.tablet-mac::before {
	content: "\e331";
}

.symbol.tabs::before {
	content: "\e9ee";
}

.symbol.tactic::before {
	content: "\f564";
}

.symbol.tag::before {
	content: "\e9ef";
}

.symbol.tag-faces::before {
	content: "\ea22";
}

.symbol.takeout-dining::before {
	content: "\ea74";
}

.symbol.takeout-dining-2::before {
	content: "\ef34";
}

.symbol.tamper-detection-off::before {
	content: "\e82e";
}

.symbol.tamper-detection-on::before {
	content: "\f8c8";
}

.symbol.tap-and-play::before {
	content: "\f2cc";
}

.symbol.tapas::before {
	content: "\f1e9";
}

.symbol.target::before {
	content: "\e719";
}

.symbol.task::before {
	content: "\f075";
}

.symbol.task-alt::before {
	content: "\e2e6";
}

.symbol.tatami-seat::before {
	content: "\ef33";
}

.symbol.taunt::before {
	content: "\f69f";
}

.symbol.taxi-alert::before {
	content: "\ef74";
}

.symbol.team-dashboard::before {
	content: "\e013";
}

.symbol.temp-preferences-custom::before {
	content: "\f8c9";
}

.symbol.temp-preferences-eco::before {
	content: "\f8ca";
}

.symbol.temple-buddhist::before {
	content: "\eab3";
}

.symbol.temple-hindu::before {
	content: "\eaaf";
}

.symbol.tenancy::before {
	content: "\f0e3";
}

.symbol.terminal::before {
	content: "\eb8e";
}

.symbol.terrain::before {
	content: "\e564";
}

.symbol.text-ad::before {
	content: "\e728";
}

.symbol.text-compare::before {
	content: "\f3c5";
}

.symbol.text-decrease::before {
	content: "\eadd";
}

.symbol.text-fields::before {
	content: "\e262";
}

.symbol.text-fields-alt::before {
	content: "\e9f1";
}

.symbol.text-format::before {
	content: "\e165";
}

.symbol.text-increase::before {
	content: "\eae2";
}

.symbol.text-rotate-up::before {
	content: "\e93a";
}

.symbol.text-rotate-vertical::before {
	content: "\e93b";
}

.symbol.text-rotation-angledown::before {
	content: "\e93c";
}

.symbol.text-rotation-angleup::before {
	content: "\e93d";
}

.symbol.text-rotation-down::before {
	content: "\e93e";
}

.symbol.text-rotation-none::before {
	content: "\e93f";
}

.symbol.text-select-end::before {
	content: "\f73e";
}

.symbol.text-select-jump-to-beginning::before {
	content: "\f73d";
}

.symbol.text-select-jump-to-end::before {
	content: "\f73c";
}

.symbol.text-select-move-back-character::before {
	content: "\f73b";
}

.symbol.text-select-move-back-word::before {
	content: "\f73a";
}

.symbol.text-select-move-down::before {
	content: "\f739";
}

.symbol.text-select-move-forward-character::before {
	content: "\f738";
}

.symbol.text-select-move-forward-word::before {
	content: "\f737";
}

.symbol.text-select-move-up::before {
	content: "\f736";
}

.symbol.text-select-start::before {
	content: "\f735";
}

.symbol.text-snippet::before {
	content: "\f1c6";
}

.symbol.text-to-speech::before {
	content: "\f1bc";
}

.symbol.text-up::before {
	content: "\f49e";
}

.symbol.textsms::before {
	content: "\e625";
}

.symbol.texture::before {
	content: "\e421";
}

.symbol.texture-add::before {
	content: "\f57c";
}

.symbol.texture-minus::before {
	content: "\f57b";
}

.symbol.theater-comedy::before {
	content: "\ea66";
}

.symbol.theaters::before {
	content: "\e8da";
}

.symbol.thermometer::before {
	content: "\e846";
}

.symbol.thermometer-add::before {
	content: "\f582";
}

.symbol.thermometer-gain::before {
	content: "\f6d8";
}

.symbol.thermometer-loss::before {
	content: "\f6d7";
}

.symbol.thermometer-minus::before {
	content: "\f581";
}

.symbol.thermostat::before {
	content: "\f076";
}

.symbol.thermostat-arrow-down::before {
	content: "\f37a";
}

.symbol.thermostat-arrow-up::before {
	content: "\f379";
}

.symbol.thermostat-auto::before {
	content: "\f077";
}

.symbol.thermostat-carbon::before {
	content: "\f178";
}

.symbol.things-to-do::before {
	content: "\eb2a";
}

.symbol.thread-unread::before {
	content: "\f4f9";
}

.symbol.threat-intelligence::before {
	content: "\eaed";
}

.symbol.thumb-down::before {
	content: "\f578";
}

.symbol.thumb-down-alt::before {
	content: "\f578";
}

.symbol.thumb-down-filled::before {
	content: "\f578";
}

.symbol.thumb-down-off::before {
	content: "\f578";
}

.symbol.thumb-down-off-alt::before {
	content: "\f578";
}

.symbol.thumb-up::before {
	content: "\f577";
}

.symbol.thumb-up-alt::before {
	content: "\f577";
}

.symbol.thumb-up-filled::before {
	content: "\f577";
}

.symbol.thumb-up-off::before {
	content: "\f577";
}

.symbol.thumb-up-off-alt::before {
	content: "\f577";
}

.symbol.thumbnail-bar::before {
	content: "\f734";
}

.symbol.thumbs-up-double::before {
	content: "\eefc";
}

.symbol.thumbs-up-down::before {
	content: "\e8dd";
}

.symbol.thunderstorm::before {
	content: "\ebdb";
}

.symbol.tibia::before {
	content: "\f89b";
}

.symbol.tibia-alt::before {
	content: "\f89c";
}

.symbol.tile-large::before {
	content: "\f3c3";
}

.symbol.tile-medium::before {
	content: "\f3c2";
}

.symbol.tile-small::before {
	content: "\f3c1";
}

.symbol.time-auto::before {
	content: "\f0e4";
}

.symbol.time-to-leave::before {
	content: "\eff7";
}

.symbol.timelapse::before {
	content: "\e422";
}

.symbol.timeline::before {
	content: "\e922";
}

.symbol.timer::before {
	content: "\e425";
}

.symbol.timer-1::before {
	content: "\f2af";
}

.symbol.timer-10::before {
	content: "\e423";
}

.symbol.timer-10-alt-1::before {
	content: "\efbf";
}

.symbol.timer-10-select::before {
	content: "\f07a";
}

.symbol.timer-2::before {
	content: "\f2ae";
}

.symbol.timer-3::before {
	content: "\e424";
}

.symbol.timer-3-alt-1::before {
	content: "\efc0";
}

.symbol.timer-3-select::before {
	content: "\f07b";
}

.symbol.timer-5::before {
	content: "\f4b1";
}

.symbol.timer-5-shutter::before {
	content: "\f4b2";
}

.symbol.timer-arrow-down::before {
	content: "\f378";
}

.symbol.timer-arrow-up::before {
	content: "\f377";
}

.symbol.timer-off::before {
	content: "\e426";
}

.symbol.timer-pause::before {
	content: "\f4bb";
}

.symbol.timer-play::before {
	content: "\f4ba";
}

.symbol.tips-and-updates::before {
	content: "\e79a";
}

.symbol.tire-repair::before {
	content: "\ebc8";
}

.symbol.title::before {
	content: "\e264";
}

.symbol.titlecase::before {
	content: "\f489";
}

.symbol.toast::before {
	content: "\efc1";
}

.symbol.toc::before {
	content: "\e8de";
}

.symbol.today::before {
	content: "\e8df";
}

.symbol.toggle-off::before {
	content: "\e9f5";
}

.symbol.toggle-on::before {
	content: "\e9f6";
}

.symbol.token::before {
	content: "\ea25";
}

.symbol.toll::before {
	content: "\e8e0";
}

.symbol.tonality::before {
	content: "\e427";
}

.symbol.tonality-2::before {
	content: "\f2b4";
}

.symbol.toolbar::before {
	content: "\e9f7";
}

.symbol.tools-flat-head::before {
	content: "\f8cb";
}

.symbol.tools-installation-kit::before {
	content: "\e2ab";
}

.symbol.tools-ladder::before {
	content: "\e2cb";
}

.symbol.tools-level::before {
	content: "\e77b";
}

.symbol.tools-phillips::before {
	content: "\f8cc";
}

.symbol.tools-pliers-wire-stripper::before {
	content: "\e2aa";
}

.symbol.tools-power-drill::before {
	content: "\e1e9";
}

.symbol.tools-wrench::before {
	content: "\f8cd";
}

.symbol.tooltip::before {
	content: "\e9f8";
}

.symbol.tooltip-2::before {
	content: "\f3ed";
}

.symbol.top-panel-close::before {
	content: "\f733";
}

.symbol.top-panel-open::before {
	content: "\f732";
}

.symbol.topic::before {
	content: "\f1c8";
}

.symbol.tornado::before {
	content: "\e199";
}

.symbol.total-dissolved-solids::before {
	content: "\f877";
}

.symbol.touch-app::before {
	content: "\e913";
}

.symbol.touch-double::before {
	content: "\f38b";
}

.symbol.touch-long::before {
	content: "\f38a";
}

.symbol.touch-triple::before {
	content: "\f389";
}

.symbol.touchpad-mouse::before {
	content: "\f687";
}

.symbol.touchpad-mouse-off::before {
	content: "\f4e6";
}

.symbol.tour::before {
	content: "\ef75";
}

.symbol.toys::before {
	content: "\e332";
}

.symbol.toys-and-games::before {
	content: "\efc2";
}

.symbol.toys-fan::before {
	content: "\f887";
}

.symbol.track-changes::before {
	content: "\e8e1";
}

.symbol.trackpad-input::before {
	content: "\f4c7";
}

.symbol.trackpad-input-2::before {
	content: "\f409";
}

.symbol.trackpad-input-3::before {
	content: "\f408";
}

.symbol.traffic::before {
	content: "\e565";
}

.symbol.traffic-jam::before {
	content: "\f46f";
}

.symbol.trail-length::before {
	content: "\eb5e";
}

.symbol.trail-length-medium::before {
	content: "\eb63";
}

.symbol.trail-length-short::before {
	content: "\eb6d";
}

.symbol.train::before {
	content: "\e570";
}

.symbol.tram::before {
	content: "\e571";
}

.symbol.transcribe::before {
	content: "\f8ec";
}

.symbol.transfer-within-a-station::before {
	content: "\e572";
}

.symbol.transform::before {
	content: "\e428";
}

.symbol.transgender::before {
	content: "\e58d";
}

.symbol.transit-enterexit::before {
	content: "\e579";
}

.symbol.transit-ticket::before {
	content: "\f3f1";
}

.symbol.transition-chop::before {
	content: "\f50e";
}

.symbol.transition-dissolve::before {
	content: "\f50d";
}

.symbol.transition-fade::before {
	content: "\f50c";
}

.symbol.transition-push::before {
	content: "\f50b";
}

.symbol.transition-slide::before {
	content: "\f50a";
}

.symbol.translate::before {
	content: "\e8e2";
}

.symbol.translate-indic::before {
	content: "\f263";
}

.symbol.transportation::before {
	content: "\e21d";
}

.symbol.travel::before {
	content: "\ef93";
}

.symbol.travel-explore::before {
	content: "\e2db";
}

.symbol.travel-luggage-and-bags::before {
	content: "\efc3";
}

.symbol.trending-down::before {
	content: "\e8e3";
}

.symbol.trending-flat::before {
	content: "\e8e4";
}

.symbol.trending-up::before {
	content: "\e8e5";
}

.symbol.trip::before {
	content: "\e6fb";
}

.symbol.trip-origin::before {
	content: "\e57b";
}

.symbol.trolley::before {
	content: "\f86b";
}

.symbol.trolley-cable-car::before {
	content: "\f46e";
}

.symbol.trophy::before {
	content: "\ea23";
}

.symbol.troubleshoot::before {
	content: "\e1d2";
}

.symbol.try::before {
	content: "\f07c";
}

.symbol.tsunami::before {
	content: "\ebd8";
}

.symbol.tsv::before {
	content: "\e6d6";
}

.symbol.tty::before {
	content: "\f1aa";
}

.symbol.tune::before {
	content: "\e429";
}

.symbol.tungsten::before {
	content: "\f07d";
}

.symbol.turn-left::before {
	content: "\eba6";
}

.symbol.turn-right::before {
	content: "\ebab";
}

.symbol.turn-sharp-left::before {
	content: "\eba7";
}

.symbol.turn-sharp-right::before {
	content: "\ebaa";
}

.symbol.turn-slight-left::before {
	content: "\eba4";
}

.symbol.turn-slight-right::before {
	content: "\eb9a";
}

.symbol.turned-in::before {
	content: "\e8e7";
}

.symbol.turned-in-not::before {
	content: "\e8e7";
}

.symbol.tv::before {
	content: "\e63b";
}

.symbol.tv-displays::before {
	content: "\f3ec";
}

.symbol.tv-gen::before {
	content: "\e830";
}

.symbol.tv-guide::before {
	content: "\e1dc";
}

.symbol.tv-next::before {
	content: "\f3eb";
}

.symbol.tv-off::before {
	content: "\e647";
}

.symbol.tv-options-edit-channels::before {
	content: "\e1dd";
}

.symbol.tv-options-input-settings::before {
	content: "\e1de";
}

.symbol.tv-remote::before {
	content: "\f5d9";
}

.symbol.tv-signin::before {
	content: "\e71b";
}

.symbol.tv-with-assistant::before {
	content: "\e785";
}

.symbol.two-pager::before {
	content: "\f51f";
}

.symbol.two-pager-store::before {
	content: "\f3c4";
}

.symbol.two-wheeler::before {
	content: "\e9f9";
}

.symbol.type-specimen::before {
	content: "\f8f0";
}

.symbol.u-turn-left::before {
	content: "\eba1";
}

.symbol.u-turn-right::before {
	content: "\eba2";
}

.symbol.udon::before {
	content: "\ef32";
}

.symbol.ulna-radius::before {
	content: "\f89d";
}

.symbol.ulna-radius-alt::before {
	content: "\f89e";
}

.symbol.umbrella::before {
	content: "\f1ad";
}

.symbol.unarchive::before {
	content: "\e169";
}

.symbol.undo::before {
	content: "\e166";
}

.symbol.unfold-less::before {
	content: "\e5d6";
}

.symbol.unfold-less-double::before {
	content: "\f8cf";
}

.symbol.unfold-more::before {
	content: "\e5d7";
}

.symbol.unfold-more-double::before {
	content: "\f8d0";
}

.symbol.ungroup::before {
	content: "\f731";
}

.symbol.universal-currency::before {
	content: "\e9fa";
}

.symbol.universal-currency-alt::before {
	content: "\e734";
}

.symbol.universal-local::before {
	content: "\e9fb";
}

.symbol.unknown-2::before {
	content: "\f49f";
}

.symbol.unknown-5::before {
	content: "\e6a5";
}

.symbol.unknown-7::before {
	content: "\f49e";
}

.symbol.unknown-document::before {
	content: "\f804";
}

.symbol.unknown-med::before {
	content: "\eabd";
}

.symbol.unlicense::before {
	content: "\eb05";
}

.symbol.unpaved-road::before {
	content: "\f46d";
}

.symbol.unpin::before {
	content: "\e6f9";
}

.symbol.unpublished::before {
	content: "\f236";
}

.symbol.unsubscribe::before {
	content: "\e0eb";
}

.symbol.upcoming::before {
	content: "\f07e";
}

.symbol.update::before {
	content: "\e923";
}

.symbol.update-disabled::before {
	content: "\e075";
}

.symbol.upgrade::before {
	content: "\f0fb";
}

.symbol.upi-pay::before {
	content: "\f3cf";
}

.symbol.upload::before {
	content: "\f09b";
}

.symbol.upload-2::before {
	content: "\f521";
}

.symbol.upload-file::before {
	content: "\e9fc";
}

.symbol.uppercase::before {
	content: "\f488";
}

.symbol.urology::before {
	content: "\e137";
}

.symbol.usb::before {
	content: "\e1e0";
}

.symbol.usb-off::before {
	content: "\e4fa";
}

.symbol.user-attributes::before {
	content: "\e708";
}

.symbol.vaccines::before {
	content: "\e138";
}

.symbol.vacuum::before {
	content: "\efc5";
}

.symbol.valve::before {
	content: "\e224";
}

.symbol.vape-free::before {
	content: "\ebc6";
}

.symbol.vaping-rooms::before {
	content: "\ebcf";
}

.symbol.variable-add::before {
	content: "\f51e";
}

.symbol.variable-insert::before {
	content: "\f51d";
}

.symbol.variable-remove::before {
	content: "\f51c";
}

.symbol.variables::before {
	content: "\f851";
}

.symbol.ventilator::before {
	content: "\e139";
}

.symbol.verified::before {
	content: "\ef76";
}

.symbol.verified-off::before {
	content: "\f30e";
}

.symbol.verified-user::before {
	content: "\f013";
}

.symbol.vertical-align-bottom::before {
	content: "\e258";
}

.symbol.vertical-align-center::before {
	content: "\e259";
}

.symbol.vertical-align-top::before {
	content: "\e25a";
}

.symbol.vertical-distribute::before {
	content: "\e076";
}

.symbol.vertical-shades::before {
	content: "\ec0e";
}

.symbol.vertical-shades-closed::before {
	content: "\ec0d";
}

.symbol.vertical-split::before {
	content: "\e949";
}

.symbol.vibration::before {
	content: "\f2cb";
}

.symbol.video-call::before {
	content: "\e070";
}

.symbol.video-camera-back::before {
	content: "\f07f";
}

.symbol.video-camera-back-add::before {
	content: "\f40c";
}

.symbol.video-camera-front::before {
	content: "\f080";
}

.symbol.video-camera-front-off::before {
	content: "\f83b";
}

.symbol.video-chat::before {
	content: "\f8a0";
}

.symbol.video-file::before {
	content: "\eb87";
}

.symbol.video-label::before {
	content: "\e071";
}

.symbol.video-library::before {
	content: "\e04a";
}

.symbol.video-search::before {
	content: "\efc6";
}

.symbol.video-settings::before {
	content: "\ea75";
}

.symbol.video-stable::before {
	content: "\f081";
}

.symbol.videocam::before {
	content: "\e04b";
}

.symbol.videocam-alert::before {
	content: "\f390";
}

.symbol.videocam-off::before {
	content: "\e04c";
}

.symbol.videogame-asset::before {
	content: "\e338";
}

.symbol.videogame-asset-off::before {
	content: "\e500";
}

.symbol.view-agenda::before {
	content: "\e8e9";
}

.symbol.view-apps::before {
	content: "\f376";
}

.symbol.view-array::before {
	content: "\e8ea";
}

.symbol.view-carousel::before {
	content: "\e8eb";
}

.symbol.view-column::before {
	content: "\e8ec";
}

.symbol.view-column-2::before {
	content: "\f847";
}

.symbol.view-comfy::before {
	content: "\e42a";
}

.symbol.view-comfy-alt::before {
	content: "\eb73";
}

.symbol.view-compact::before {
	content: "\e42b";
}

.symbol.view-compact-alt::before {
	content: "\eb74";
}

.symbol.view-cozy::before {
	content: "\eb75";
}

.symbol.view-day::before {
	content: "\e8ed";
}

.symbol.view-headline::before {
	content: "\e8ee";
}

.symbol.view-in-ar::before {
	content: "\efc9";
}

.symbol.view-in-ar-new::before {
	content: "\efc9";
}

.symbol.view-in-ar-off::before {
	content: "\f61b";
}

.symbol.view-kanban::before {
	content: "\eb7f";
}

.symbol.view-list::before {
	content: "\e8ef";
}

.symbol.view-module::before {
	content: "\e8f0";
}

.symbol.view-object-track::before {
	content: "\f432";
}

.symbol.view-quilt::before {
	content: "\e8f1";
}

.symbol.view-real-size::before {
	content: "\f4c2";
}

.symbol.view-sidebar::before {
	content: "\f114";
}

.symbol.view-stream::before {
	content: "\e8f2";
}

.symbol.view-timeline::before {
	content: "\eb85";
}

.symbol.view-week::before {
	content: "\e8f3";
}

.symbol.vignette::before {
	content: "\e435";
}

.symbol.vignette-2::before {
	content: "\f2b3";
}

.symbol.villa::before {
	content: "\e586";
}

.symbol.visibility::before {
	content: "\e8f4";
}

.symbol.visibility-lock::before {
	content: "\f653";
}

.symbol.visibility-off::before {
	content: "\e8f5";
}

.symbol.vital-signs::before {
	content: "\e650";
}

.symbol.vitals::before {
	content: "\e13b";
}

.symbol.vo2-max::before {
	content: "\f4aa";
}

.symbol.voice-chat::before {
	content: "\e62e";
}

.symbol.voice-over-off::before {
	content: "\e94a";
}

.symbol.voice-selection::before {
	content: "\f58a";
}

.symbol.voice-selection-off::before {
	content: "\f42c";
}

.symbol.voicemail::before {
	content: "\e0d9";
}

.symbol.voicemail-2::before {
	content: "\f352";
}

.symbol.volcano::before {
	content: "\ebda";
}

.symbol.volume-down::before {
	content: "\e04d";
}

.symbol.volume-down-alt::before {
	content: "\e79c";
}

.symbol.volume-mute::before {
	content: "\e04e";
}

.symbol.volume-off::before {
	content: "\e04f";
}

.symbol.volume-up::before {
	content: "\e050";
}

.symbol.volunteer-activism::before {
	content: "\ea70";
}

.symbol.voting-chip::before {
	content: "\f852";
}

.symbol.vpn-key::before {
	content: "\e0da";
}

.symbol.vpn-key-alert::before {
	content: "\f6cc";
}

.symbol.vpn-key-off::before {
	content: "\eb7a";
}

.symbol.vpn-lock::before {
	content: "\e62f";
}

.symbol.vpn-lock-2::before {
	content: "\f350";
}

.symbol.vr180-create2d::before {
	content: "\efca";
}

.symbol.vr180-create2d-off::before {
	content: "\f571";
}

.symbol.vrpano::before {
	content: "\f082";
}

.symbol.wall-art::before {
	content: "\efcb";
}

.symbol.wall-lamp::before {
	content: "\e2b4";
}

.symbol.wallet::before {
	content: "\f8ff";
}

.symbol.wallpaper::before {
	content: "\e1bc";
}

.symbol.wallpaper-slideshow::before {
	content: "\f672";
}

.symbol.wand-shine::before {
	content: "\f31f";
}

.symbol.wand-stars::before {
	content: "\f31e";
}

.symbol.ward::before {
	content: "\e13c";
}

.symbol.warehouse::before {
	content: "\ebb8";
}

.symbol.warning::before {
	content: "\f083";
}

.symbol.warning-amber::before {
	content: "\f083";
}

.symbol.warning-off::before {
	content: "\f7ad";
}

.symbol.wash::before {
	content: "\f1b1";
}

.symbol.washoku::before {
	content: "\f280";
}

.symbol.watch::before {
	content: "\e334";
}

.symbol.watch-arrow::before {
	content: "\f2ca";
}

.symbol.watch-button-press::before {
	content: "\f6aa";
}

.symbol.watch-check::before {
	content: "\f468";
}

.symbol.watch-later::before {
	content: "\efd6";
}

.symbol.watch-off::before {
	content: "\eae3";
}

.symbol.watch-screentime::before {
	content: "\f6ae";
}

.symbol.watch-vibration::before {
	content: "\f467";
}

.symbol.watch-wake::before {
	content: "\f6a9";
}

.symbol.water::before {
	content: "\f084";
}

.symbol.water-bottle::before {
	content: "\f69d";
}

.symbol.water-bottle-large::before {
	content: "\f69e";
}

.symbol.water-damage::before {
	content: "\f203";
}

.symbol.water-do::before {
	content: "\f870";
}

.symbol.water-drop::before {
	content: "\e798";
}

.symbol.water-ec::before {
	content: "\f875";
}

.symbol.water-full::before {
	content: "\f6d6";
}

.symbol.water-heater::before {
	content: "\e284";
}

.symbol.water-lock::before {
	content: "\f6ad";
}

.symbol.water-loss::before {
	content: "\f6d5";
}

.symbol.water-lux::before {
	content: "\f874";
}

.symbol.water-medium::before {
	content: "\f6d4";
}

.symbol.water-orp::before {
	content: "\f878";
}

.symbol.water-ph::before {
	content: "\f87a";
}

.symbol.water-pump::before {
	content: "\f5d8";
}

.symbol.water-voc::before {
	content: "\f87b";
}

.symbol.waterfall-chart::before {
	content: "\ea00";
}

.symbol.waves::before {
	content: "\e176";
}

.symbol.waving-hand::before {
	content: "\e766";
}

.symbol.wb-auto::before {
	content: "\e42c";
}

.symbol.wb-cloudy::before {
	content: "\f15c";
}

.symbol.wb-incandescent::before {
	content: "\e42e";
}

.symbol.wb-iridescent::before {
	content: "\f07d";
}

.symbol.wb-shade::before {
	content: "\ea01";
}

.symbol.wb-sunny::before {
	content: "\e430";
}

.symbol.wb-twilight::before {
	content: "\e1c6";
}

.symbol.wc::before {
	content: "\e63d";
}

.symbol.weather-hail::before {
	content: "\f67f";
}

.symbol.weather-mix::before {
	content: "\f60b";
}

.symbol.weather-snowy::before {
	content: "\e2cd";
}

.symbol.web::before {
	content: "\e051";
}

.symbol.web-asset::before {
	content: "\e069";
}

.symbol.web-asset-off::before {
	content: "\ef47";
}

.symbol.web-stories::before {
	content: "\e595";
}

.symbol.web-traffic::before {
	content: "\ea03";
}

.symbol.webhook::before {
	content: "\eb92";
}

.symbol.weekend::before {
	content: "\e16b";
}

.symbol.weight::before {
	content: "\e13d";
}

.symbol.west::before {
	content: "\f1e6";
}

.symbol.whatshot::before {
	content: "\e80e";
}

.symbol.wheelchair-pickup::before {
	content: "\f1ab";
}

.symbol.where-to-vote::before {
	content: "\e177";
}

.symbol.widget-medium::before {
	content: "\f3ba";
}

.symbol.widget-small::before {
	content: "\f3b9";
}

.symbol.widget-width::before {
	content: "\f3b8";
}

.symbol.widgets::before {
	content: "\e1bd";
}

.symbol.width::before {
	content: "\f730";
}

.symbol.width-full::before {
	content: "\f8f5";
}

.symbol.width-normal::before {
	content: "\f8f6";
}

.symbol.width-wide::before {
	content: "\f8f7";
}

.symbol.wifi::before {
	content: "\e63e";
}

.symbol.wifi-1-bar::before {
	content: "\e4ca";
}

.symbol.wifi-2-bar::before {
	content: "\e4d9";
}

.symbol.wifi-add::before {
	content: "\f7a8";
}

.symbol.wifi-calling::before {
	content: "\ef77";
}

.symbol.wifi-calling-1::before {
	content: "\f0e7";
}

.symbol.wifi-calling-2::before {
	content: "\f0f6";
}

.symbol.wifi-calling-3::before {
	content: "\f0e7";
}

.symbol.wifi-calling-bar-1::before {
	content: "\f44c";
}

.symbol.wifi-calling-bar-2::before {
	content: "\f44b";
}

.symbol.wifi-calling-bar-3::before {
	content: "\f44a";
}

.symbol.wifi-channel::before {
	content: "\eb6a";
}

.symbol.wifi-find::before {
	content: "\eb31";
}

.symbol.wifi-home::before {
	content: "\f671";
}

.symbol.wifi-lock::before {
	content: "\e1e1";
}

.symbol.wifi-notification::before {
	content: "\f670";
}

.symbol.wifi-off::before {
	content: "\e648";
}

.symbol.wifi-password::before {
	content: "\eb6b";
}

.symbol.wifi-protected-setup::before {
	content: "\f0fc";
}

.symbol.wifi-proxy::before {
	content: "\f7a7";
}

.symbol.wifi-tethering::before {
	content: "\e1e2";
}

.symbol.wifi-tethering-error::before {
	content: "\ead9";
}

.symbol.wifi-tethering-off::before {
	content: "\f087";
}

.symbol.wind-power::before {
	content: "\ec0c";
}

.symbol.window::before {
	content: "\f088";
}

.symbol.window-closed::before {
	content: "\e77e";
}

.symbol.window-open::before {
	content: "\e78c";
}

.symbol.window-sensor::before {
	content: "\e2bb";
}

.symbol.windshield-defrost-auto::before {
	content: "\f248";
}

.symbol.windshield-defrost-front::before {
	content: "\f32a";
}

.symbol.windshield-defrost-rear::before {
	content: "\f329";
}

.symbol.windshield-heat-front::before {
	content: "\f328";
}

.symbol.wine-bar::before {
	content: "\f1e8";
}

.symbol.woman::before {
	content: "\e13e";
}

.symbol.woman-2::before {
	content: "\f8e7";
}

.symbol.work::before {
	content: "\e943";
}

.symbol.work-alert::before {
	content: "\f5f7";
}

.symbol.work-history::before {
	content: "\ec09";
}

.symbol.work-off::before {
	content: "\e942";
}

.symbol.work-outline::before {
	content: "\e943";
}

.symbol.work-update::before {
	content: "\f5f8";
}

.symbol.workflow::before {
	content: "\ea04";
}

.symbol.workspace-premium::before {
	content: "\e7af";
}

.symbol.workspaces::before {
	content: "\ea0f";
}

.symbol.workspaces-outline::before {
	content: "\ea0f";
}

.symbol.wounds-injuries::before {
	content: "\e13f";
}

.symbol.wrap-text::before {
	content: "\e25b";
}

.symbol.wrist::before {
	content: "\f69c";
}

.symbol.wrong-location::before {
	content: "\ef78";
}

.symbol.wysiwyg::before {
	content: "\f1c3";
}

.symbol.yakitori::before {
	content: "\ef31";
}

.symbol.yard::before {
	content: "\f089";
}

.symbol.yoshoku::before {
	content: "\f27f";
}

.symbol.your-trips::before {
	content: "\eb2b";
}

.symbol.youtube-activity::before {
	content: "\f85a";
}

.symbol.youtube-searched-for::before {
	content: "\e8fa";
}

.symbol.zone-person-alert::before {
	content: "\e781";
}

.symbol.zone-person-idle::before {
	content: "\e77a";
}

.symbol.zone-person-urgent::before {
	content: "\e788";
}

.symbol.zoom-in::before {
	content: "\e8ff";
}

.symbol.zoom-in-map::before {
	content: "\eb2d";
}

.symbol.zoom-out::before {
	content: "\e900";
}

.symbol.zoom-out-map::before {
	content: "\e56b";
}