@font-face {
    font-family: 'joicons';
    src: url('fonts/joicons.eot?71414677');
    src: url('fonts/joicons.eot?71414677#iefix') format('embedded-opentype'),
        url('fonts/joicons.woff?71414677') format('woff'),
        url('fonts/joicons.ttf?71414677') format('truetype'),
        url('fonts/joicons.svg?71414677#joicons') format('svg');
    font-weight: 400;
    font-style: normal;
}
/* 
* Visby CF 2.1w
* Types:
* - Bold
* Replaced source: Bold with ExtraBold because of thickness problem 
*/
@font-face {
    font-family: 'Visby CF';
    src: url('fonts/VisbyCF-Bold.eot');
    src: url('fonts/VisbyCF-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/VisbyCF-Bold.woff2') format('woff2'),
        url('fonts/VisbyCF-Bold.woff') format('woff'),
        url('fonts/VisbyCF-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Visby CF';
    src: url('fonts/VisbyCF-ExtraBold.eot');
    src: url('fonts/VisbyCF-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/VisbyCF-ExtraBold.woff2') format('woff2'),
        url('fonts/VisbyCF-ExtraBold.woff') format('woff'),
        url('fonts/VisbyCF-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    text-rendering: optimizeLegibility;
}
/*
* Lato Web Fonts 2.015
* Types:
* - Light
* - Regular
* - Regular Italic
* - Bold
* - Bold Italic
*/
@font-face {
    font-family: 'Lato';
    src: url('fonts/LatoLatin-Regular.eot'); /* IE9 Compat Modes */
    src: url('fonts/LatoLatin-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('fonts/LatoLatin-Regular.woff2') format('woff2'), /* Modern Browsers */
        url('fonts/LatoLatin-Regular.woff') format('woff'), /* Modern Browsers */
        url('fonts/LatoLatin-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/LatoLatin-Bold.eot'); /* IE9 Compat Modes */
    src: url('fonts/LatoLatin-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('fonts/LatoLatin-Bold.woff2') format('woff2'), /* Modern Browsers */
        url('fonts/LatoLatin-Bold.woff') format('woff'), /* Modern Browsers */
        url('fonts/LatoLatin-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: 'Lato';
    src: url('fonts/LatoLatin-Light.eot'); /* IE9 Compat Modes */
    src: url('fonts/LatoLatin-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('fonts/LatoLatin-Light.woff2') format('woff2'), /* Modern Browsers */
        url('fonts/LatoLatin-Light.woff') format('woff'), /* Modern Browsers */
        url('fonts/LatoLatin-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: 'Lato';
    src: url('fonts/LatoLatin-Italic.eot'); /* IE9 Compat Modes */
    src: url('fonts/LatoLatin-Italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('fonts/LatoLatin-Italic.woff2') format('woff2'), /* Modern Browsers */
        url('fonts/LatoLatin-Italic.woff') format('woff'), /* Modern Browsers */
        url('fonts/LatoLatin-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: 'Lato';
    src: url('fonts/LatoLatin-BoldItalic.eot'); /* IE9 Compat Modes */
    src: url('fonts/LatoLatin-BoldItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('fonts/LatoLatin-BoldItalic.woff2') format('woff2'), /* Modern Browsers */
        url('fonts/LatoLatin-BoldItalic.woff') format('woff'), /* Modern Browsers */
        url('fonts/LatoLatin-BoldItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 700;
    text-rendering: optimizeLegibility;
}

.animate-spin {
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
    display: inline-block;
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-webkit-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-o-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "joicons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before { content: '\e800'; } /* '' */
.icon-twitter:before { content: '\e801'; } /* '' */
.icon-gplus:before { content: '\e802'; } /* '' */
.icon-tumblr:before { content: '\e803'; } /* '' */
.icon-whatsapp:before { content: '\e804'; } /* '' */
.icon-search:before { content: '\e805'; } /* '' */
.icon-menu:before { content: '\e806'; } /* '' */
.icon-mail-alt:before { content: '\e807'; } /* '' */
.icon-spin3:before { content: '\e808'; } /* '' */
.icon-chat:before { content: '\e809'; } /* '' */
.icon-cancel:before { content: '\e80a'; } /* '' */
.icon-instagram:before { content: '\e80b'; } /* '' */
.icon-linkedin:before { content: '\e80c'; } /* '' */
.icon-pinterest:before { content: '\e80d'; } /* '' */
.icon-rss:before { content: '\e80e'; } /* '' */
.icon-cog:before { content: '\e80f'; } /* '' */
.icon-circle:before { content: '\e810'; } /* '' */
.icon-wechat:before { content: '\e811'; } /* '' */
.icon-circle-empty:before { content: '\e812'; } /* '' */
.icon-minus:before { content: '\e813'; } /* '' */
.icon-plus:before { content: '\e814'; } /* '' */
.icon-info:before { content: '\e815'; } /* '' */
.icon-home:before { content: '\e816'; } /* '' */
.icon-spin4:before { content: '\e817'; } /* '' */
.icon-down-open-mini:before { content: '\e818'; } /* '' */
.icon-left-open-mini:before { content: '\e819'; } /* '' */
.icon-right-open-mini:before { content: '\e81a'; } /* '' */
.icon-up-open-mini:before { content: '\e81b'; } /* '' */
.icon-eye:before { content: '\e81c'; } /* '' */
.icon-tag:before { content: '\e81d'; } /* '' */
.icon-play:before { content: '\e81e'; } /* '' */
.icon-android:before { content: '\e81f'; } /* '' */
.icon-gplus2015:before { content: '\e820'; } /* '' */
.icon-line2015:before { content: '\e821'; } /* '' */