/* 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. */
/* Some icons are set up directly within CSS, while some are set up from within html <i> tags */
/* Currently there are two sets of fonts, "journey" and a big set of 490 icons that we call "IcoMoon490Icons" */
/* The IcoMoon490Icons font was provided by icomoon.io under the following license: http://www.gnu.org/licenses/gpl.html */

@font-face {
  font-family: 'journey';
  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-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 */
}

i.journey-icon-login::before 	{content: "\e902";} /* top links */
i.journey-icon-search::before 	{content: "\e918";font-size:larger;position:relative;top:2px;} /* top links */
i.journey-icon-register::before {content: "\e904";} /* top links */
i.journey-icon-clock::before {content: "\e915";} /* top links */
i.journey-icon-search2::before 	{content: "\e912";} /* top links */
i.journey-icon-home::before 	{content: "\e91C";}

@font-face {
  font-family: 'IcoMoon490Icons';
  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-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.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";}

@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^="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.icomoon-linear-login::before 	{content: "\e80f";font-weight:400;} /* top links */
i.icomoon-linear-register::before {content: "\e82a";font-weight:400;}
i.icomoon-linear-search::before {content: "\e86f";font-weight:400;}