/* 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 called "icomoon" */

@font-face {
    font-family: 'journey';
    src:  url('../fonts/journey.eot?yb1miw');
    src:
            url('../fonts/journey.eot?yb1miw#iefix') format('embedded-opentype'),
            url('../fonts/journey.ttf?yb1miw') format('truetype'),
            url('../fonts/journey.woff?yb1miw') format('woff'),
            url('../fonts/journey.svg?yb1miw#journey') format('svg');
}

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: "\e903";} /* top links */
i.journey-icon-register::before {content: "\e904";} /* top links */

i.journey-icon-instagram::before {  content: "\e90b";}
i.journey-icon-linkedin::before {  content: "\e90c";}
i.journey-icon-twitter::before {  content: "\e90d";}
i.journey-icon-youtube::before {  content: "\e90e";}
i.journey-icon-facebook::before { content: "\e90f";}

/*

.journey-icon-arrow-right::before {  content: "\e900";} // slide show < and > *
.journey-icon-arrow-left::before {  content: "\e901";}
.journey-icon-location::before {  content: "\e905";} // Service time and location *
.journey-icon-service-times::before {  content: "\e906";}
.journey-icon-news::before {  content: "\e908";} // 3 Big buttons *
.journey-icon-events::before {  content: "\e910";}
.journey-icon-media::before {  content: "\e907";}
.journey-icon-googleplus::before {  content: "\e909";}
.journey-icon-vimeo::before {  content: "\e90a";}
.journey-icon-searchbox::before {  content: "\e911";}
.journey-icon-search-mobile::before {  content: "\e912";}
.journey-icon-dd-up::before {  content: "\e913";}
.journey-icon-dd-down::before {  content: "\e914";}
*/

@font-face {
    font-family: 'IcoMoon490Icons';
    src:  url('../fonts/IcoMoon490Icons.ttf');
    src:  url('../fonts/IcoMoon490Icons.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";}
