*
* ---------------------------------------------
* 				Icon animations
* ---------------------------------------------
*/
.ty-icon-spin {
  -moz-animation: spin 0.5s infinite linear;
  -webkit-animation: spin 0.5s infinite linear;
  animation: spin 0.5s infinite linear;
  display: inline-block;
}

.ty-icon-spin-single {
  -moz-animation: spin 0.4s 1 linear;
  -webkit-animation: spin 0.4s 1 linear;
  animation: spin 0.4s 1 linear;
  display: inline-block;
}

.ty-icon-spin-reverse {
  -moz-animation: spin-reverse 0.5s infinite linear;
  -webkit-animation: spin-reverse 0.5s infinite linear;
  animation: spin-reverse 0.5s infinite linear;
  display: inline-block;
}

.ty-icon-spin-reverse-single {
  -moz-animation: spin-reverse 0.4s 1 linear;
  -webkit-animation: spin-reverse 0.4s 1 linear;
  animation: spin-reverse 0.4s 1 linear;
  display: inline-block;
}

.ty-icon-bounce {
  -moz-animation: bounce 1s infinite ease-in-out;
  -webkit-animation: bounce 1s infinite ease-in-out;
  animation: bounce 1s infinite ease-in-out;
  display: inline-block;
}

.ty-icon-pulse {
  -moz-animation: pulse 1s infinite ease-in-out;
  -webkit-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
  display: inline-block;
}

/*
* ---------------------------------------------
* 					Animations
* ---------------------------------------------
*/
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes spin-reverse {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}
@keyframes spin-reverse {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-359deg);
    -ms-transform: rotate(-359deg);
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}
@-moz-keyframes bounce {
  50%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce {
  50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  50%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes flip-v {
  0% {
    -moz-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -moz-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}
@-webkit-keyframes flip-v {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}
@keyframes flip-v {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}
@-moz-keyframes flip-h {
  0% {
    -moz-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
@-webkit-keyframes flip-h {
  0% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
@keyframes flip-h {
  0% {
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@font-face {
  font-family: "TrustYou Iconic";
  src: url("../fonts/trustyou-iconic.eot");
  src: url("../fonts/trustyou-iconic.eot?#iefix") format("embedded-opentype"), url("../fonts/trustyou-iconic.woff") format("woff"), url("../fonts/trustyou-iconic.ttf") format("truetype"), url("../fonts/trustyou-iconic.svg#trustyou-iconic") format("svg");
  font-weight: normal;
  font-style: normal;
}
.ty-icon {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "TrustYou Iconic" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
}
.ty-icon.ty-icon-blank:before {
  content: " ";
}
.ty-icon.ty-icon-earth:before {
  content: "\61";
}
.ty-icon.ty-icon-map:before {
  content: "\62";
}
.ty-icon.ty-icon-directions:before {
  content: "\63";
}
.ty-icon.ty-icon-map-marker:before {
  content: "\64";
}
.ty-icon.ty-icon-gps:before {
  content: "\65";
}
.ty-icon.ty-icon-swimming:before {
  content: "\66";
}
.ty-icon.ty-icon-cycling:before {
  content: "\67";
}
.ty-icon.ty-icon-car:before {
  content: "\68";
}
.ty-icon.ty-icon-bus:before {
  content: "\69";
}
.ty-icon.ty-icon-train:before {
  content: "\6a";
}
.ty-icon.ty-icon-airplane:before {
  content: "\6b";
}
.ty-icon.ty-icon-building:before {
  content: "\6c";
}
.ty-icon.ty-icon-museum:before {
  content: "\6d";
}
.ty-icon.ty-icon-home:before {
  content: "\6e";
}
.ty-icon.ty-icon-lake-house:before {
  content: "\6f";
}
.ty-icon.ty-icon-bed:before {
  content: "\70";
}
.ty-icon.ty-icon-call-bell:before {
  content: "\71";
}
.ty-icon.ty-icon-bell:before {
  content: "\72";
}
.ty-icon.ty-icon-cards:before {
  content: "\73";
}
.ty-icon.ty-icon-crown:before {
  content: "\74";
}
.ty-icon.ty-icon-golf:before {
  content: "\75";
}
.ty-icon.ty-icon-heart:before {
  content: "\76";
}
.ty-icon.ty-icon-leaf:before {
  content: "\77";
}
.ty-icon.ty-icon-pet:before {
  content: "\79";
}
.ty-icon.ty-icon-tag:before {
  content: "\7a";
}
.ty-icon.ty-icon-snowflake:before {
  content: "\42";
}
.ty-icon.ty-icon-tuxedo:before {
  content: "\43";
}
.ty-icon.ty-icon-group:before {
  content: "\45";
}
.ty-icon.ty-icon-family:before {
  content: "\46";
}
.ty-icon.ty-icon-single:before {
  content: "\47";
}
.ty-icon.ty-icon-tree-pine:before {
  content: "\48";
}
.ty-icon.ty-icon-tree-palm:before {
  content: "\49";
}
.ty-icon.ty-icon-cigar:before {
  content: "\4a";
}
.ty-icon.ty-icon-glass-beer:before {
  content: "\4b";
}
.ty-icon.ty-icon-glass-wine:before {
  content: "\4c";
}
.ty-icon.ty-icon-glass-martini:before {
  content: "\4d";
}
.ty-icon.ty-icon-food:before {
  content: "\4e";
}
.ty-icon.ty-icon-trophy:before {
  content: "\4f";
}
.ty-icon.ty-icon-glasses:before {
  content: "\50";
}
.ty-icon.ty-icon-credit-card:before {
  content: "\51";
}
.ty-icon.ty-icon-dollar:before {
  content: "\52";
}
.ty-icon.ty-icon-euro:before {
  content: "\53";
}
.ty-icon.ty-icon-alarm:before {
  content: "\54";
}
.ty-icon.ty-icon-clock:before {
  content: "\55";
}
.ty-icon.ty-icon-hourglass:before {
  content: "\56";
}
.ty-icon.ty-icon-calendar:before {
  content: "\57";
}
.ty-icon.ty-icon-gauge:before {
  content: "\58";
}
.ty-icon.ty-icon-wifi:before {
  content: "\59";
}
.ty-icon.ty-icon-rss:before {
  content: "\5a";
}
.ty-icon.ty-icon-cart:before {
  content: "\30";
}
.ty-icon.ty-icon-key:before {
  content: "\33";
}
.ty-icon.ty-icon-trash:before {
  content: "\34";
}
.ty-icon.ty-icon-save:before {
  content: "\35";
}
.ty-icon.ty-icon-print:before {
  content: "\36";
}
.ty-icon.ty-icon-flag:before {
  content: "\38";
}
.ty-icon.ty-icon-pushpin:before {
  content: "\39";
}
.ty-icon.ty-icon-star:before {
  content: "\21";
}
.ty-icon.ty-icon-badge:before {
  content: "\22";
}
.ty-icon.ty-icon-code:before {
  content: "\23";
}
.ty-icon.ty-icon-language:before {
  content: "\24";
}
.ty-icon.ty-icon-translate:before {
  content: "\25";
}
.ty-icon.ty-icon-info:before {
  content: "\26";
}
.ty-icon.ty-icon-info-o:before {
  content: "\27";
}
.ty-icon.ty-icon-help:before {
  content: "\28";
}
.ty-icon.ty-icon-help-o:before {
  content: "\29";
}
.ty-icon.ty-icon-warning:before {
  content: "\2a";
}
.ty-icon.ty-icon-settings:before {
  content: "\2b";
}
.ty-icon.ty-icon-widget:before {
  content: "\2c";
}
.ty-icon.ty-icon-tools:before {
  content: "\2d";
}
.ty-icon.ty-icon-pencil:before {
  content: "\2e";
}
.ty-icon.ty-icon-inbox-empty:before {
  content: "\2f";
}
.ty-icon.ty-icon-inbox:before {
  content: "\3a";
}
.ty-icon.ty-icon-tiles:before {
  content: "\3b";
}
.ty-icon.ty-icon-tiles-off:before {
  content: "\3c";
}
.ty-icon.ty-icon-user:before {
  content: "\3d";
}
.ty-icon.ty-icon-users:before {
  content: "\3e";
}
.ty-icon.ty-icon-chart-pie:before {
  content: "\40";
}
.ty-icon.ty-icon-chart-bar:before {
  content: "\5b";
}
.ty-icon.ty-icon-chart-line:before {
  content: "\5d";
}
.ty-icon.ty-icon-comment:before {
  content: "\5f";
}
.ty-icon.ty-icon-comments:before {
  content: "\60";
}
.ty-icon.ty-icon-video:before {
  content: "\7b";
}
.ty-icon.ty-icon-image:before {
  content: "\7c";
}
.ty-icon.ty-icon-images:before {
  content: "\7d";
}
.ty-icon.ty-icon-bookmark:before {
  content: "\7e";
}
.ty-icon.ty-icon-folder:before {
  content: "\5c";
}
.ty-icon.ty-icon-folder-open:before {
  content: "\e000";
}
.ty-icon.ty-icon-file:before {
  content: "\e001";
}
.ty-icon.ty-icon-file-check:before {
  content: "\e002";
}
.ty-icon.ty-icon-file-edit:before {
  content: "\e004";
}
.ty-icon.ty-icon-copy:before {
  content: "\e008";
}
.ty-icon.ty-icon-cut:before {
  content: "\e009";
}
.ty-icon.ty-icon-paste:before {
  content: "\e00a";
}
.ty-icon.ty-icon-reply:before {
  content: "\e00f";
}
.ty-icon.ty-icon-reply-all:before {
  content: "\e010";
}
.ty-icon.ty-icon-reply-plus:before {
  content: "\e011";
}
.ty-icon.ty-icon-forward:before {
  content: "\e012";
}
.ty-icon.ty-icon-compare:before {
  content: "\e013";
}
.ty-icon.ty-icon-expand:before {
  content: "\e014";
}
.ty-icon.ty-icon-contract:before {
  content: "\e015";
}
.ty-icon.ty-icon-move:before {
  content: "\e016";
}
.ty-icon.ty-icon-merge:before {
  content: "\e017";
}
.ty-icon.ty-icon-undo:before {
  content: "\e018";
}
.ty-icon.ty-icon-redo:before {
  content: "\e019";
}
.ty-icon.ty-icon-refresh:before {
  content: "\e01a";
}
.ty-icon.ty-icon-retweet:before {
  content: "\e01b";
}
.ty-icon.ty-icon-share:before {
  content: "\e01c";
}
.ty-icon.ty-icon-link:before {
  content: "\e01d";
}
.ty-icon.ty-icon-paperclip:before {
  content: "\e01f";
}
.ty-icon.ty-icon-sign-in:before {
  content: "\e020";
}
.ty-icon.ty-icon-sign-out:before {
  content: "\e021";
}
.ty-icon.ty-icon-zoom-in:before {
  content: "\e022";
}
.ty-icon.ty-icon-zoom-out:before {
  content: "\e023";
}
.ty-icon.ty-icon-search:before {
  content: "\e024";
}
.ty-icon.ty-icon-grid:before {
  content: "\e025";
}
.ty-icon.ty-icon-list:before {
  content: "\e026";
}
.ty-icon.ty-icon-menu:before {
  content: "\e027";
}
.ty-icon.ty-icon-more:before {
  content: "\e028";
}
.ty-icon.ty-icon-more-alt:before {
  content: "\e029";
}
.ty-icon.ty-icon-grab:before {
  content: "\e02a";
}
.ty-icon.ty-icon-grab-alt:before {
  content: "\e02b";
}
.ty-icon.ty-icon-check:before {
  content: "\e02c";
}
.ty-icon.ty-icon-check-o:before {
  content: "\e02d";
}
.ty-icon.ty-icon-denied:before {
  content: "\e02e";
}
.ty-icon.ty-icon-remove:before {
  content: "\e02f";
}
.ty-icon.ty-icon-remove-o:before {
  content: "\e030";
}
.ty-icon.ty-icon-plus:before {
  content: "\e031";
}
.ty-icon.ty-icon-minus:before {
  content: "\e032";
}
.ty-icon.ty-icon-chevron-down:before {
  content: "\e033";
}
.ty-icon.ty-icon-chevron-up:before {
  content: "\e034";
}
.ty-icon.ty-icon-chevron-left:before {
  content: "\e035";
}
.ty-icon.ty-icon-arrow-up:before {
  content: "\e038";
}
.ty-icon.ty-icon-arrow-left:before {
  content: "\e039";
}
.ty-icon.ty-icon-arrow-right:before {
  content: "\e03a";
}
.ty-icon.ty-icon-caret-down:before {
  content: "\e03b";
}
.ty-icon.ty-icon-caret-up:before {
  content: "\e03c";
}
.ty-icon.ty-icon-caret-left:before {
  content: "\e03d";
}
.ty-icon.ty-icon-caret-right:before {
  content: "\e03e";
}
.ty-icon.ty-icon-preview:before {
  content: "\e03f";
}
.ty-icon.ty-icon-preview-off:before {
  content: "\e040";
}
.ty-icon.ty-icon-female:before {
  content: "\e041";
}
.ty-icon.ty-icon-male:before {
  content: "\e042";
}
.ty-icon.ty-icon-gender:before {
  content: "\e043";
}
.ty-icon.ty-icon-checkbox:before {
  content: "\e044";
}
.ty-icon.ty-icon-checkbox-on:before {
  content: "\e045";
}
.ty-icon.ty-icon-checkbox-intermediate:before {
  content: "\e046";
}
.ty-icon.ty-icon-radio:before {
  content: "\e047";
}
.ty-icon.ty-icon-radio-on:before {
  content: "\e048";
}
.ty-icon.ty-icon-excel:before {
  content: "\e049";
}
.ty-icon.ty-icon-word:before {
  content: "\e04a";
}
.ty-icon.ty-icon-pdf:before {
  content: "\e04b";
}
.ty-icon.ty-icon-trustyou:before {
  content: "\e04c";
}
.ty-icon.ty-icon-facebook:before {
  content: "\e04d";
}
.ty-icon.ty-icon-facebook-alt:before {
  content: "\e04e";
}
.ty-icon.ty-icon-twitter:before {
  content: "\e04f";
}
.ty-icon.ty-icon-google-adwords:before {
  content: "\e051";
}
.ty-icon.ty-icon-instagram:before {
  content: "\e053";
}
.ty-icon.ty-icon-foursquare:before {
  content: "\e054";
}
.ty-icon.ty-icon-pinterest:before {
  content: "\e055";
}
.ty-icon.ty-icon-github:before {
  content: "\e056";
}
.ty-icon.ty-icon-google:before {
  content: "\e052";
}
.ty-icon.ty-icon-google-plus:before {
  content: "\e050";
}
.ty-icon.ty-icon-couple:before {
  content: "\44";
}
.ty-icon.ty-icon-survey:before {
  content: "\3f";
}
.ty-icon.ty-icon-meta-review:before {
  content: "\32";
}
.ty-icon.ty-icon-unlock:before {
  content: "\5e";
}
.ty-icon.ty-icon-lock:before {
  content: "\e058";
}
.ty-icon.ty-icon-child:before {
  content: "\e059";
}
.ty-icon.ty-icon-gym:before {
  content: "\e05a";
}
.ty-icon.ty-icon-window:before {
  content: "\e05b";
}
.ty-icon.ty-icon-terrace:before {
  content: "\e05c";
}
.ty-icon.ty-icon-microphone:before {
  content: "\e05d";
}
.ty-icon.ty-icon-handshake:before {
  content: "\e05e";
}
.ty-icon.ty-icon-coffee:before {
  content: "\e05f";
}
.ty-icon.ty-icon-housekeeping:before {
  content: "\e060";
}
.ty-icon.ty-icon-room-service:before {
  content: "\e061";
}
.ty-icon.ty-icon-hiking:before {
  content: "\e062";
}
.ty-icon.ty-icon-road:before {
  content: "\e063";
}
.ty-icon.ty-icon-box:before {
  content: "\31";
}
.ty-icon.ty-icon-graduation-cap:before {
  content: "\e064";
}
.ty-icon.ty-icon-headset:before {
  content: "\e065";
}
.ty-icon.ty-icon-smartphone:before {
  content: "\e066";
}
.ty-icon.ty-icon-branch:before {
  content: "\e067";
}
.ty-icon.ty-icon-shuffle:before {
  content: "\e068";
}
.ty-icon.ty-icon-ribbon:before {
  content: "\e069";
}
.ty-icon.ty-icon-email:before {
  content: "\e00c";
}
.ty-icon.ty-icon-desktop:before {
  content: "\e06a";
}
.ty-icon.ty-icon-reply-pending:before {
  content: "\e06b";
}
.ty-icon.ty-icon-comment-broken:before {
  content: "\e06c";
}
.ty-icon.ty-icon-food-drink:before {
  content: "\e06e";
}
.ty-icon.ty-icon-calendar-clock:before {
  content: "\e06f";
}
.ty-icon.ty-icon-task:before {
  content: "\e070";
}
.ty-icon.ty-icon-file-csv:before {
  content: "\e005";
}
.ty-icon.ty-icon-file-doc:before {
  content: "\e006";
}
.ty-icon.ty-icon-file-pdf:before {
  content: "\e007";
}
.ty-icon.ty-icon-file-xls:before {
  content: "\e06d";
}
.ty-icon.ty-icon-piggy-bank:before {
  content: "\e071";
}
.ty-icon.ty-icon-running:before {
  content: "\e072";
}
.ty-icon.ty-icon-fruit:before {
  content: "\e073";
}
.ty-icon.ty-icon-compass:before {
  content: "\e074";
}
.ty-icon.ty-icon-profile:before {
  content: "\e076";
}
.ty-icon.ty-icon-history:before {
  content: "\e077";
}
.ty-icon.ty-icon-review:before {
  content: "\e078";
}
.ty-icon.ty-icon-review-edit:before {
  content: "\e079";
}
.ty-icon.ty-icon-reviews:before {
  content: "\e07a";
}
.ty-icon.ty-icon-review-denied:before {
  content: "\e07b";
}
.ty-icon.ty-icon-review-clock:before {
  content: "\e07c";
}
.ty-icon.ty-icon-review-reply:before {
  content: "\e07d";
}
.ty-icon.ty-icon-signal:before {
  content: "\e07e";
}
.ty-icon.ty-icon-emoji-negative:before {
  content: "\e075";
}
.ty-icon.ty-icon-emoji-neutral:before {
  content: "\e07f";
}
.ty-icon.ty-icon-emoji-positive:before {
  content: "\e080";
}
.ty-icon.ty-icon-arrow-down:before {
  content: "\e037";
}
.ty-icon.ty-icon-chevron-right:before {
  content: "\e036";
}
.ty-icon.ty-icon-survey-alt:before {
  content: "\e057";
}
.ty-icon.ty-icon-database-search:before {
  content: "\e082";
}
.ty-icon.ty-icon-circle:before {
  content: "\e083";
}
.ty-icon.ty-icon-bell-check:before {
  content: "\e087";
}
.ty-icon.ty-icon-font-search:before {
  content: "\e088";
}
.ty-icon.ty-icon-user-search:before {
  content: "\e089";
}
.ty-icon.ty-icon-user-search-none:before {
  content: "\e08a";
}
.ty-icon.ty-icon-comment-click:before {
  content: "\e08b";
}
.ty-icon.ty-icon-comment-search-none:before {
  content: "\e08c";
}
.ty-icon.ty-icon-calendar-search-none:before {
  content: "\e081";
}
.ty-icon.ty-icon-database:before {
  content: "\e084";
}
.ty-icon.ty-icon-comment-check:before {
  content: "\e08d";
}
.ty-icon.ty-icon-export:before {
  content: "\e00b";
}
.ty-icon.ty-icon-file-add:before {
  content: "\e003";
}
.ty-icon.ty-icon-report:before {
  content: "\e08e";
}
.ty-icon.ty-icon-review-search-none:before {
  content: "\e08f";
}
.ty-icon.ty-icon-review-click:before {
  content: "\e090";
}
.ty-icon.ty-icon-suitcase:before {
  content: "\41";
}
.ty-icon.ty-icon-unlink:before {
  content: "\e01e";
}
.ty-icon.ty-icon-lotus:before {
  content: "\78";
}
.ty-icon.ty-icon-book:before {
  content: "\e091";
}
.ty-icon.ty-icon-play:before {
  content: "\e085";
}
.ty-icon.ty-icon-pause:before {
  content: "\e086";
}
.ty-icon.ty-icon-play-o:before {
  content: "\e092";
}
.ty-icon.ty-icon-pause-o:before {
  content: "\e093";
}
.ty-icon.ty-icon-gift:before {
  content: "\e094";
}
.ty-icon.ty-icon-traveler:before {
  content: "\e095";
}
.ty-icon.ty-icon-bullhorn:before {
  content: "\e096";
}
.ty-icon.ty-icon-filter:before {
  content: "\37";
}
.ty-icon.ty-icon-download:before {
  content: "\e00d";
}
.ty-icon.ty-icon-upload:before {
  content: "\e00e";
}
.ty-icon.ty-icon-cursor-click:before {
  content: "\e097";
}
.ty-icon.ty-icon-keyboard:before {
  content: "\e098";
}
.ty-icon.ty-icon-funnel:before {
  content: "\e099";
}
.ty-icon.ty-icon-satisfaction:before {
  content: "\e09a";
}
.ty-icon.ty-icon-revenue:before {
  content: "\e09b";
}
.ty-icon.ty-icon-review-distribution:before {
  content: "\e09c";
}
.ty-icon.ty-icon-distribution:before {
  content: "\e09d";
}
.ty-icon.ty-icon-puzzle:before {
  content: "\e09e";
}
.ty-icon.ty-icon-template:before {
  content: "\e09f";
}
.ty-icon.ty-icon-paper-plane:before {
  content: "\e0a0";
}
.ty-icon.ty-icon-spinner:before {
  content: "\e0a1";
}
.ty-icon.ty-icon-shield:before {
  content: "\e0a2";
}
.ty-icon.ty-icon-target:before {
  content: "\e0a3";
}

.is-exported .ty-icon {
  font-family: Arial, Helvetica, sans-serif;
}
.is-exported .ty-icon.ty-icon-caret-down:before {
  content: '\25BE';
}
.is-exported .ty-icon.ty-icon-caret-up:before {
  content: '\25B4';
}
.is-exported .ty-icon.ty-icon-caret-right:before {
  content: '\25B8';
}
.is-exported .ty-icon.ty-icon-caret-left:before {
  content: '\25C2';
}
.is-exported .ty-icon.ty-icon-arrow-down:before {
  content: '\2193';
}
.is-exported .ty-icon.ty-icon-arrow-up:before {
  content: '\2191';
}
.is-exported .ty-icon.ty-icon-arrow-right:before {
  content: '\2192';
}
.is-exported .ty-icon.ty-icon-arrow-left:before {
  content: '\21';
}
.is-exported .ty-icon.ty-icon-minus:before {
  content: '-';
}
