/* Google fonts are downloaded at the start of style.css (_bass.scss within sass) */
/* You can see 100s of google fonts at https://fonts.google.com */

/* Template CSS to allow font characters to be used as icons. */
/* (C)2018 Endis Ltd. No permission is given to use this code, except on an Endis website. */

/* Some icons are set up directly within CSS, while some are set up from within html <i> tags */
/* Currently there are 3 sets of fonts, "journey" and sets from IcoMoon */
/* We also have a smaller set of 12 IcoMoon icons as a separate font file. */

/* The free IcoMoon fonts were provided by https://icomoon.io/ under the following license: http://www.gnu.org/licenses/gpl.html */

@font-face {
  font-family: 'journey'; /* we keep this name, as is used throughout our css */
  src:  url('../fonts/journey.ttf') format('truetype');
}

i[class^="journey-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'journey' !important;
}

@font-face {
  font-family: 'IcoMoon490Icons'; /* we keep the 490 name, as is used throughout our css */
  src:  url('../fonts/IcoMoon12icons.ttf') format('truetype');
}

i[class^="icomoon-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'IcoMoon490Icons' !important;
}

@font-face {
  font-family: 'IcoMoonLinear';
  src:  url('../fonts/IcoMoonLinearIcons.ttf') format('truetype');
}

i[class^="icomoon-linear-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'IcoMoonLinear' !important;
}

/* Set default font properties for all icon-fonts. */
i[class^="journey-icon-"], i[class^="icomoon-icon-"], i[class^="icomoon-linear-"] {
  font-style: normal; /* default value */
  font-weight: normal; /* default value */
  font-variant: normal; /* default value */
  text-transform: none; /* default value */
  line-height: 1; /* sets the line height to equal the current font size, so there is no extra vertical padding */
}

i.journey-icon-login::before 	{content: "\e902";} /* top links */
i.journey-icon-search::before 	{content: "\e903";}
i.journey-icon-register::before {content: "\e904";}

i.icomoon-icon-facebook::after 	{content: "\ea90";} /* Social media icons */
i.icomoon-icon-twitter::after 	{content: "\ea96";}
i.icomoon-icon-vimeo::after 	{content: "\eaa0";}
i.icomoon-icon-youtube::after 	{content: "\ea9d";}
i.icomoon-icon-instagram::after {content: "\ea92";}

i.icomoon-linear-login::before 	{content: "\e80f"; font-weight:700;} /* top links */
i.icomoon-linear-register::before {content: "\e82a"; font-weight:700;}
i.icomoon-linear-search::before {content: "\e86f"; font-weight:700;}
