diff --git a/README.md b/README.md index 1a99b58..4b2127f 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ _High Quality web friendly icons_ 'Boxicons' is a carefully designed open source iconset with 1000+ icons. It's crafted to look enrich your website/app experience. -_Announcing Boxicons v2.0.1!_ +_Announcing Boxicons v2.0.2!_ New icons added in regular, solid styles. -- 250+ icons added +- 35+ icons added - Improvements on the current icons - Corrections to comply with the Material system icon rules diff --git a/css/animations.css b/css/animations.css new file mode 100644 index 0000000..6225657 --- /dev/null +++ b/css/animations.css @@ -0,0 +1,386 @@ +@-webkit-keyframes spin +{ + 0% + { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% + { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes spin +{ + 0% + { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% + { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@-webkit-keyframes burst +{ + 0% + { + -webkit-transform: scale(1); + transform: scale(1); + + opacity: 1; + } + 90% + { + -webkit-transform: scale(1.5); + transform: scale(1.5); + + opacity: 0; + } +} +@keyframes burst +{ + 0% + { + -webkit-transform: scale(1); + transform: scale(1); + + opacity: 1; + } + 90% + { + -webkit-transform: scale(1.5); + transform: scale(1.5); + + opacity: 0; + } +} +@-webkit-keyframes flashing +{ + 0% + { + opacity: 1; + } + 45% + { + opacity: 0; + } + 90% + { + opacity: 1; + } +} +@keyframes flashing +{ + 0% + { + opacity: 1; + } + 45% + { + opacity: 0; + } + 90% + { + opacity: 1; + } +} +@-webkit-keyframes fade-left +{ + 0% + { + -webkit-transform: translateX(0); + transform: translateX(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + + opacity: 0; + } +} +@keyframes fade-left +{ + 0% + { + -webkit-transform: translateX(0); + transform: translateX(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + + opacity: 0; + } +} +@-webkit-keyframes fade-right +{ + 0% + { + -webkit-transform: translateX(0); + transform: translateX(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateX(20px); + transform: translateX(20px); + + opacity: 0; + } +} +@keyframes fade-right +{ + 0% + { + -webkit-transform: translateX(0); + transform: translateX(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateX(20px); + transform: translateX(20px); + + opacity: 0; + } +} +@-webkit-keyframes fade-up +{ + 0% + { + -webkit-transform: translateY(0); + transform: translateY(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + + opacity: 0; + } +} +@keyframes fade-up +{ + 0% + { + -webkit-transform: translateY(0); + transform: translateY(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + + opacity: 0; + } +} +@-webkit-keyframes fade-down +{ + 0% + { + -webkit-transform: translateY(0); + transform: translateY(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateY(20px); + transform: translateY(20px); + + opacity: 0; + } +} +@keyframes fade-down +{ + 0% + { + -webkit-transform: translateY(0); + transform: translateY(0); + + opacity: 1; + } + 75% + { + -webkit-transform: translateY(20px); + transform: translateY(20px); + + opacity: 0; + } +} +@-webkit-keyframes tada +{ + from + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% + { + -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); + transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); + } + + 30%, + 50%, + 70%, + 90% + { + -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); + transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); + } + + 40%, + 60%, + 80% + { + -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg); + transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg); + } + + to + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes tada +{ + from + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% + { + -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); + transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); + } + + 30%, + 50%, + 70%, + 90% + { + -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); + transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); + } + + 40%, + 60%, + 80% + { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + to + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +.bx-spin +{ + -webkit-animation: spin 2s linear infinite; + animation: spin 2s linear infinite; +} +.bx-spin-hover:hover +{ + -webkit-animation: spin 2s linear infinite; + animation: spin 2s linear infinite; +} + +.bx-tada +{ + -webkit-animation: tada 1.5s ease infinite; + animation: tada 1.5s ease infinite; +} +.bx-tada-hover:hover +{ + -webkit-animation: tada 1.5s ease infinite; + animation: tada 1.5s ease infinite; +} + +.bx-flashing +{ + -webkit-animation: flashing 1.5s infinite linear; + animation: flashing 1.5s infinite linear; +} +.bx-flashing-hover:hover +{ + -webkit-animation: flashing 1.5s infinite linear; + animation: flashing 1.5s infinite linear; +} + +.bx-burst +{ + -webkit-animation: burst 1.5s infinite linear; + animation: burst 1.5s infinite linear; +} +.bx-burst-hover:hover +{ + -webkit-animation: burst 1.5s infinite linear; + animation: burst 1.5s infinite linear; +} +.bx-fade-up +{ + -webkit-animation: fade-up 1.5s infinite linear; + animation: fade-up 1.5s infinite linear; +} +.bx-fade-up-hover:hover +{ + -webkit-animation: fade-up 1.5s infinite linear; + animation: fade-up 1.5s infinite linear; +} +.bx-fade-down +{ + -webkit-animation: fade-down 1.5s infinite linear; + animation: fade-down 1.5s infinite linear; +} +.bx-fade-down-hover:hover +{ + -webkit-animation: fade-down 1.5s infinite linear; + animation: fade-down 1.5s infinite linear; +} +.bx-fade-left +{ + -webkit-animation: fade-left 1.5s infinite linear; + animation: fade-left 1.5s infinite linear; +} +.bx-fade-left-hover:hover +{ + -webkit-animation: fade-left 1.5s infinite linear; + animation: fade-left 1.5s infinite linear; +} +.bx-fade-right +{ + -webkit-animation: fade-right 1.5s infinite linear; + animation: fade-right 1.5s infinite linear; +} +.bx-fade-right-hover:hover +{ + -webkit-animation: fade-right 1.5s infinite linear; + animation: fade-right 1.5s infinite linear; +} \ No newline at end of file diff --git a/css/boxicons.css b/css/boxicons.css index 446292c..d255a3d 100644 --- a/css/boxicons.css +++ b/css/boxicons.css @@ -522,3092 +522,3202 @@ border-radius: 50%; } - - .bxl-500px:before { - content: "\e900"; - } - .bxl-airbnb:before { - content: "\e901"; - } - .bxl-amazon:before { - content: "\e902"; - } - .bxl-android:before { - content: "\e903"; - } - .bxl-angular:before { - content: "\e904"; - } - .bxl-apple:before { - content: "\e905"; - } - .bxl-baidu:before { - content: "\e906"; - } - .bxl-behance:before { - content: "\e907"; - } - .bxl-bing:before { - content: "\e908"; - } - .bxl-bitcoin:before { - content: "\e909"; - } - .bxl-blogger:before { - content: "\e90a"; - } - .bxl-bootstrap:before { - content: "\e90b"; - } - .bxl-chrome:before { - content: "\e90c"; - } - .bxl-codepen:before { - content: "\e90d"; - } - .bxl-creative-commons:before { - content: "\e90e"; - } - .bxl-css3:before { - content: "\e90f"; - } - .bxl-dailymotion:before { - content: "\e910"; - } - .bxl-deviantart:before { - content: "\e911"; - } - .bxl-digg:before { - content: "\e912"; - } - .bxl-digitalocean:before { - content: "\e913"; - } - .bxl-discord:before { - content: "\e914"; - } - .bxl-discourse:before { - content: "\e915"; - } - .bxl-dribbble:before { - content: "\e916"; - } - .bxl-dropbox:before { - content: "\e917"; - } - .bxl-drupal:before { - content: "\e918"; - } - .bxl-ebay:before { - content: "\e919"; - } - .bxl-edge:before { - content: "\e91a"; - } - .bxl-facebook:before { - content: "\e91b"; - } - .bxl-facebook-square:before { - content: "\e91c"; - } - .bxl-firefox:before { - content: "\e91d"; - } - .bxl-flickr:before { - content: "\e91e"; - } - .bxl-flickr-square:before { - content: "\e91f"; - } - .bxl-foursquare:before { - content: "\e920"; - } - .bxl-git:before { - content: "\e921"; - } - .bxl-github:before { - content: "\e922"; - } - .bxl-google:before { - content: "\e923"; - } - .bxl-google-plus:before { - content: "\e924"; - } - .bxl-google-plus-circle:before { - content: "\e925"; - } - .bxl-html5:before { - content: "\e926"; - } - .bxl-instagram:before { - content: "\e927"; - } - .bxl-instagram-alt:before { - content: "\e928"; - } - .bxl-internet-explorer:before { - content: "\e929"; - } - .bxl-invision:before { - content: "\e92a"; - } - .bxl-javascript:before { - content: "\e92b"; - } - .bxl-joomla:before { - content: "\e92c"; - } - .bxl-jsfiddle:before { - content: "\e92d"; - } - .bxl-kickstarter:before { - content: "\e92e"; - } - .bxl-less:before { - content: "\e92f"; - } - .bxl-linkedin:before { - content: "\e930"; - } - .bxl-linkedin-square:before { - content: "\e931"; - } - .bxl-magento:before { - content: "\e932"; - } - .bxl-mailchimp:before { - content: "\e933"; - } - .bxl-mastercard:before { - content: "\e934"; - } - .bxl-medium:before { - content: "\e935"; - } - .bxl-medium-old:before { - content: "\e936"; - } - .bxl-medium-square:before { - content: "\e937"; - } - .bxl-messenger:before { - content: "\e938"; - } - .bxl-microsoft:before { - content: "\e939"; - } - .bxl-nodejs:before { - content: "\e93a"; - } - .bxl-opera:before { - content: "\e93b"; - } - .bxl-paypal:before { - content: "\e93c"; - } - .bxl-periscope:before { - content: "\e93d"; - } - .bxl-pinterest:before { - content: "\e93e"; - } - .bxl-play-store:before { - content: "\e93f"; - } - .bxl-pocket:before { - content: "\e940"; - } - .bxl-product-hunt:before { - content: "\e941"; - } - .bxl-quora:before { - content: "\e942"; - } - .bxl-react:before { - content: "\e943"; - } - .bxl-reddit:before { - content: "\e944"; - } - .bxl-redux:before { - content: "\e945"; - } - .bxl-sass:before { - content: "\e946"; - } - .bxl-shopify:before { - content: "\e947"; - } - .bxl-skype:before { - content: "\e948"; - } - .bxl-slack:before { - content: "\e949"; - } - .bxl-slack-old:before { - content: "\e94a"; - } - .bxl-snapchat:before { - content: "\e94b"; - } - .bxl-soundcloud:before { - content: "\e94c"; - } - .bxl-spotify:before { - content: "\e94d"; - } - .bxl-squarespace:before { - content: "\e94e"; - } - .bxl-stack-overflow:before { - content: "\e94f"; - } - .bxl-stripe:before { - content: "\e950"; - } - .bxl-telegram:before { - content: "\e951"; - } - .bxl-trello:before { - content: "\e952"; - } - .bxl-tumblr:before { - content: "\e953"; - } - .bxl-twitch:before { - content: "\e954"; - } - .bxl-twitter:before { - content: "\e955"; - } - .bxl-unsplash:before { - content: "\e956"; - } - .bxl-vimeo:before { - content: "\e957"; - } - .bxl-visa:before { - content: "\e958"; - } - .bxl-vk:before { - content: "\e959"; - } - .bxl-vuejs:before { - content: "\e95a"; - } - .bxl-whatsapp:before { - content: "\e95b"; - } - .bxl-whatsapp-square:before { - content: "\e95c"; - } - .bxl-wikipedia:before { - content: "\e95d"; - } - .bxl-windows:before { - content: "\e95e"; - } - .bxl-wix:before { - content: "\e95f"; - } - .bxl-wordpress:before { - content: "\e960"; - } - .bxl-yahoo:before { - content: "\e961"; - } - .bxl-yelp:before { - content: "\e962"; - } - .bxl-youtube:before { - content: "\e963"; - } - .bx-accessibility:before { - content: "\e964"; - } - .bx-adjust:before { - content: "\e965"; - } - .bx-alarm:before { - content: "\e966"; - } - .bx-alarm-off:before { - content: "\e967"; - } - .bx-album:before { - content: "\e968"; - } - .bx-align-justify:before { - content: "\e969"; - } - .bx-align-left:before { - content: "\e96a"; - } - .bx-align-middle:before { - content: "\e96b"; - } - .bx-align-right:before { - content: "\e96c"; - } - .bx-ambulance:before { - content: "\e96d"; - } - .bx-analyse:before { - content: "\e96e"; - } - .bx-anchor:before { - content: "\e96f"; - } - .bx-aperture:before { - content: "\e970"; - } - .bx-archive:before { - content: "\e971"; - } - .bx-area:before { - content: "\e972"; - } - .bx-arrow-back:before { - content: "\e973"; - } - .bx-at:before { - content: "\e974"; - } - .bx-award:before { - content: "\e975"; - } - .bx-badge:before { - content: "\e976"; - } - .bx-badge-check:before { - content: "\e977"; - } - .bx-ball:before { - content: "\e978"; - } - .bx-band-aid:before { - content: "\e979"; - } - .bx-bar-chart:before { - content: "\e97a"; - } - .bx-bar-chart-alt:before { - content: "\e97b"; - } - .bx-bar-chart-alt-2:before { - content: "\e97c"; - } - .bx-bar-chart-square:before { - content: "\e97d"; - } - .bx-barcode:before { - content: "\e97e"; - } - .bx-basket:before { - content: "\e97f"; - } - .bx-basketball:before { - content: "\e980"; - } - .bx-bath:before { - content: "\e981"; - } - .bx-battery:before { - content: "\e982"; - } - .bx-bed:before { - content: "\e983"; - } - .bx-bell:before { - content: "\e984"; - } - .bx-bell-minus:before { - content: "\e985"; - } - .bx-bell-off:before { - content: "\e986"; - } - .bx-bell-plus:before { - content: "\e987"; - } - .bx-bicycle:before { - content: "\e988"; - } - .bx-block:before { - content: "\e989"; - } - .bx-bluetooth:before { - content: "\e98a"; - } - .bx-body:before { - content: "\e98b"; - } - .bx-bold:before { - content: "\e98c"; - } - .bx-book:before { - content: "\e98d"; - } - .bx-book-bookmark:before { - content: "\e98e"; - } - .bx-book-content:before { - content: "\e98f"; - } - .bx-bookmark:before { - content: "\e990"; - } - .bx-bookmark-minus:before { - content: "\e991"; - } - .bx-bookmark-plus:before { - content: "\e992"; - } - .bx-bookmarks:before { - content: "\e993"; - } - .bx-book-open:before { - content: "\e994"; - } - .bx-border-all:before { - content: "\e995"; - } - .bx-border-bottom:before { - content: "\e996"; - } - .bx-border-left:before { - content: "\e997"; - } - .bx-border-right:before { - content: "\e998"; - } - .bx-border-top:before { - content: "\e999"; - } - .bx-bot:before { - content: "\e99a"; - } - .bx-bowling-ball:before { - content: "\e99b"; - } - .bx-box:before { - content: "\e99c"; - } - .bx-briefcase:before { - content: "\e99d"; - } - .bx-briefcase-alt:before { - content: "\e99e"; - } - .bx-briefcase-alt-2:before { - content: "\e99f"; - } - .bx-brightness:before { - content: "\e9a0"; - } - .bx-brightness-half:before { - content: "\e9a1"; - } - .bx-broadcast:before { - content: "\e9a2"; - } - .bx-brush:before { - content: "\e9a3"; - } - .bx-brush-alt:before { - content: "\e9a4"; - } - .bx-bug:before { - content: "\e9a5"; - } - .bx-bug-alt:before { - content: "\e9a6"; - } - .bx-building:before { - content: "\e9a7"; - } - .bx-building-house:before { - content: "\e9a8"; - } - .bx-buildings:before { - content: "\e9a9"; - } - .bx-bulb:before { - content: "\e9aa"; - } - .bx-bullseye:before { - content: "\e9ab"; - } - .bx-buoy:before { - content: "\e9ac"; - } - .bx-bus:before { - content: "\e9ad"; - } - .bx-calculator:before { - content: "\e9ae"; - } - .bx-calendar:before { - content: "\e9af"; - } - .bx-calendar-alt:before { - content: "\e9b0"; - } - .bx-calendar-check:before { - content: "\e9b1"; - } - .bx-calendar-event:before { - content: "\e9b2"; - } - .bx-calendar-minus:before { - content: "\e9b3"; - } - .bx-calendar-plus:before { - content: "\e9b4"; - } - .bx-calendar-x:before { - content: "\e9b5"; - } - .bx-camera:before { - content: "\e9b6"; - } - .bx-camera-off:before { - content: "\e9b7"; - } - .bx-captions:before { - content: "\e9b8"; - } - .bx-car:before { - content: "\e9b9"; - } - .bx-card:before { - content: "\e9ba"; - } - .bx-caret-down:before { - content: "\e9bb"; - } - .bx-caret-left:before { - content: "\e9bc"; - } - .bx-caret-right:before { - content: "\e9bd"; - } - .bx-caret-up:before { - content: "\e9be"; - } - .bx-carousel:before { - content: "\e9bf"; - } - .bx-cart:before { - content: "\e9c0"; - } - .bx-cart-alt:before { - content: "\e9c1"; - } - .bx-cast:before { - content: "\e9c2"; - } - .bx-certification:before { - content: "\e9c3"; - } - .bx-chalkboard:before { - content: "\e9c4"; - } - .bx-chart:before { - content: "\e9c5"; - } - .bx-chat:before { - content: "\e9c6"; - } - .bx-check:before { - content: "\e9c7"; - } - .bx-checkbox:before { - content: "\e9c8"; - } - .bx-checkbox-checked:before { - content: "\e9c9"; - } - .bx-checkbox-square:before { - content: "\e9ca"; - } - .bx-check-circle:before { - content: "\e9cb"; - } - .bx-check-double:before { - content: "\e9cc"; - } - .bx-check-square:before { - content: "\e9cd"; - } - .bx-chevron-down:before { - content: "\e9ce"; - } - .bx-chevron-left:before { - content: "\e9cf"; - } - .bx-chevron-right:before { - content: "\e9d0"; - } - .bx-chevrons-down:before { - content: "\e9d1"; - } - .bx-chevrons-left:before { - content: "\e9d2"; - } - .bx-chevrons-right:before { - content: "\e9d3"; - } - .bx-chevrons-up:before { - content: "\e9d4"; - } - .bx-chevron-up:before { - content: "\e9d5"; - } - .bx-chip:before { - content: "\e9d6"; - } - .bx-circle:before { - content: "\e9d7"; - } - .bx-clipboard:before { - content: "\e9d8"; - } - .bx-closet:before { - content: "\e9d9"; - } - .bx-cloud:before { - content: "\e9da"; - } - .bx-cloud-download:before { - content: "\e9db"; - } - .bx-cloud-drizzle:before { - content: "\e9dc"; - } - .bx-cloud-lightning:before { - content: "\e9dd"; - } - .bx-cloud-light-rain:before { - content: "\e9de"; - } - .bx-cloud-rain:before { - content: "\e9df"; - } - .bx-cloud-snow:before { - content: "\e9e0"; - } - .bx-cloud-upload:before { - content: "\e9e1"; - } - .bx-code:before { - content: "\e9e2"; - } - .bx-code-alt:before { - content: "\e9e3"; - } - .bx-code-block:before { - content: "\e9e4"; - } - .bx-code-curly:before { - content: "\e9e5"; - } - .bx-coffee:before { - content: "\e9e6"; - } - .bx-cog:before { - content: "\e9e7"; - } - .bx-collapse:before { - content: "\e9e8"; - } - .bx-collection:before { - content: "\e9e9"; - } - .bx-columns:before { - content: "\e9ea"; - } - .bx-command:before { - content: "\e9eb"; - } - .bx-comment:before { - content: "\e9ec"; - } - .bx-comment-dots:before { - content: "\e9ed"; - } - .bx-compass:before { - content: "\e9ee"; - } - .bx-conversation:before { - content: "\e9ef"; - } - .bx-copy:before { - content: "\e9f0"; - } - .bx-copy-alt:before { - content: "\e9f1"; - } - .bx-copyright:before { - content: "\e9f2"; - } - .bx-credit-card:before { - content: "\e9f3"; - } - .bx-credit-card-alt:before { - content: "\e9f4"; - } - .bx-crop:before { - content: "\e9f5"; - } - .bx-crosshair:before { - content: "\e9f6"; - } - .bx-crown:before { - content: "\e9f7"; - } - .bx-cube:before { - content: "\e9f8"; - } - .bx-cube-alt:before { - content: "\e9f9"; - } - .bx-cuboid:before { - content: "\e9fa"; - } - .bx-customize:before { - content: "\e9fb"; - } - .bx-cut:before { - content: "\e9fc"; - } - .bx-cycling:before { - content: "\e9fd"; - } - .bx-cylinder:before { - content: "\e9fe"; - } - .bx-dashboard:before { - content: "\e9ff"; - } - .bx-data:before { - content: "\ea00"; - } - .bx-desktop:before { - content: "\ea01"; - } - .bx-detail:before { - content: "\ea02"; - } - .bx-devices:before { - content: "\ea03"; - } - .bx-dialpad:before { - content: "\ea04"; - } - .bx-dialpad-alt:before { - content: "\ea05"; - } - .bx-diamond:before { - content: "\ea06"; - } - .bx-directions:before { - content: "\ea07"; - } - .bx-disc:before { - content: "\ea08"; - } - .bx-dislike:before { - content: "\ea09"; - } - .bx-dna:before { - content: "\ea0a"; - } - .bx-dock-bottom:before { - content: "\ea0b"; - } - .bx-dock-left:before { - content: "\ea0c"; - } - .bx-dock-right:before { - content: "\ea0d"; - } - .bx-dock-top:before { - content: "\ea0e"; - } - .bx-dollar:before { - content: "\ea0f"; - } - .bx-dollar-circle:before { - content: "\ea10"; - } - .bx-dots-horizontal:before { - content: "\ea11"; - } - .bx-dots-horizontal-rounded:before { - content: "\ea12"; - } - .bx-dots-vertical:before { - content: "\ea13"; - } - .bx-dots-vertical-rounded:before { - content: "\ea14"; - } - .bx-doughnut-chart:before { - content: "\ea15"; - } - .bx-down-arrow:before { - content: "\ea16"; - } - .bx-down-arrow-alt:before { - content: "\ea17"; - } - .bx-down-arrow-circle:before { - content: "\ea18"; - } - .bx-download:before { - content: "\ea19"; - } - .bx-downvote:before { - content: "\ea1a"; - } - .bx-droplet:before { - content: "\ea1b"; - } - .bx-dumbbell:before { - content: "\ea1c"; - } - .bx-duplicate:before { - content: "\ea1d"; - } - .bx-edit:before { - content: "\ea1e"; - } - .bx-edit-alt:before { - content: "\ea1f"; - } - .bx-envelope:before { - content: "\ea20"; - } - .bx-equalizer:before { - content: "\ea21"; - } - .bx-error:before { - content: "\ea22"; - } - .bx-error-alt:before { - content: "\ea23"; - } - .bx-error-circle:before { - content: "\ea24"; - } - .bx-exit-fullscreen:before { - content: "\ea25"; - } - .bx-expand:before { - content: "\ea26"; - } - .bx-export:before { - content: "\ea27"; - } - .bx-fast-forward:before { - content: "\ea28"; - } - .bx-fast-forward-circle:before { - content: "\ea29"; - } - .bx-female:before { - content: "\ea2a"; - } - .bx-file:before { - content: "\ea2b"; - } - .bx-file-blank:before { - content: "\ea2c"; - } - .bx-film:before { - content: "\ea2d"; - } - .bx-filter:before { - content: "\ea2e"; - } - .bx-filter-alt:before { - content: "\ea2f"; - } - .bx-fingerprint:before { - content: "\ea30"; - } - .bx-first-aid:before { - content: "\ea31"; - } - .bx-first-page:before { - content: "\ea32"; - } - .bx-flag:before { - content: "\ea33"; - } - .bx-folder:before { - content: "\ea34"; - } - .bx-folder-minus:before { - content: "\ea35"; - } - .bx-folder-open:before { - content: "\ea36"; - } - .bx-folder-plus:before { - content: "\ea37"; - } - .bx-font:before { - content: "\ea38"; - } - .bx-font-color:before { - content: "\ea39"; - } - .bx-font-family:before { - content: "\ea3a"; - } - .bx-font-size:before { - content: "\ea3b"; - } - .bx-football:before { - content: "\ea3c"; - } - .bx-fullscreen:before { - content: "\ea3d"; - } - .bx-gas-pump:before { - content: "\ea3e"; - } - .bx-ghost:before { - content: "\ea3f"; - } - .bx-gift:before { - content: "\ea40"; - } - .bx-git-branch:before { - content: "\ea41"; - } - .bx-git-commit:before { - content: "\ea42"; - } - .bx-git-compare:before { - content: "\ea43"; - } - .bx-git-merge:before { - content: "\ea44"; - } - .bx-git-pull-request:before { - content: "\ea45"; - } - .bx-git-repo-forked:before { - content: "\ea46"; - } - .bx-globe:before { - content: "\ea47"; - } - .bx-globe-alt:before { - content: "\ea48"; - } - .bx-grid:before { - content: "\ea49"; - } - .bx-grid-alt:before { - content: "\ea4a"; - } - .bx-grid-horizontal:before { - content: "\ea4b"; - } - .bx-grid-small:before { - content: "\ea4c"; - } - .bx-grid-vertical:before { - content: "\ea4d"; - } - .bx-group:before { - content: "\ea4e"; - } - .bx-handicap:before { - content: "\ea4f"; - } - .bx-hash:before { - content: "\ea50"; - } - .bx-hdd:before { - content: "\ea51"; - } - .bx-heading:before { - content: "\ea52"; - } - .bx-headphone:before { - content: "\ea53"; - } - .bx-heart:before { - content: "\ea54"; - } - .bx-help-circle:before { - content: "\ea55"; - } - .bx-hide:before { - content: "\ea56"; - } - .bx-highlight:before { - content: "\ea57"; - } - .bx-history:before { - content: "\ea58"; - } - .bx-hive:before { - content: "\ea59"; - } - .bx-home:before { - content: "\ea5a"; - } - .bx-home-alt:before { - content: "\ea5b"; - } - .bx-home-circle:before { - content: "\ea5c"; - } - .bx-horizontal-center:before { - content: "\ea5d"; - } - .bx-hotel:before { - content: "\ea5e"; - } - .bx-hourglass:before { - content: "\ea5f"; - } - .bx-id-card:before { - content: "\ea60"; - } - .bx-image:before { - content: "\ea61"; - } - .bx-images:before { - content: "\ea62"; - } - .bx-import:before { - content: "\ea63"; - } - .bx-infinite:before { - content: "\ea64"; - } - .bx-info-circle:before { - content: "\ea65"; - } - .bx-italic:before { - content: "\ea66"; - } - .bx-joystick:before { - content: "\ea67"; - } - .bx-joystick-alt:before { - content: "\ea68"; - } - .bx-joystick-button:before { - content: "\ea69"; - } - .bx-key:before { - content: "\ea6a"; - } - .bx-landscape:before { - content: "\ea6b"; - } - .bx-laptop:before { - content: "\ea6c"; - } - .bx-last-page:before { - content: "\ea6d"; - } - .bx-layer:before { - content: "\ea6e"; - } - .bx-layout:before { - content: "\ea6f"; - } - .bx-left-arrow:before { - content: "\ea70"; - } - .bx-left-arrow-alt:before { - content: "\ea71"; - } - .bx-left-arrow-circle:before { - content: "\ea72"; - } - .bx-left-down-arrow-circle:before { - content: "\ea73"; - } - .bx-left-indent:before { - content: "\ea74"; - } - .bx-left-top-arrow-circle:before { - content: "\ea75"; - } - .bx-like:before { - content: "\ea76"; - } - .bx-line-chart:before { - content: "\ea77"; - } - .bx-link:before { - content: "\ea78"; - } - .bx-link-alt:before { - content: "\ea79"; - } - .bx-link-external:before { - content: "\ea7a"; - } - .bx-list-check:before { - content: "\ea7b"; - } - .bx-list-ol:before { - content: "\ea7c"; - } - .bx-list-plus:before { - content: "\ea7d"; - } - .bx-list-ul:before { - content: "\ea7e"; - } - .bx-list-x:before { - content: "\ea7f"; - } - .bx-loader:before { - content: "\ea80"; - } - .bx-loader-alt:before { - content: "\ea81"; - } - .bx-loader-circle:before { - content: "\ea82"; - } - .bx-lock:before { - content: "\ea83"; - } - .bx-lock-alt:before { - content: "\ea84"; - } - .bx-lock-open:before { - content: "\ea85"; - } - .bx-lock-open-alt:before { - content: "\ea86"; - } - .bx-log-in:before { - content: "\ea87"; - } - .bx-log-in-circle:before { - content: "\ea88"; - } - .bx-log-out:before { - content: "\ea89"; - } - .bx-log-out-circle:before { - content: "\ea8a"; - } - .bx-magnet:before { - content: "\ea8b"; - } - .bx-mail-send:before { - content: "\ea8c"; - } - .bx-male:before { - content: "\ea8d"; - } - .bx-map:before { - content: "\ea8e"; - } - .bx-map-alt:before { - content: "\ea8f"; - } - .bx-map-pin:before { - content: "\ea90"; - } - .bx-memory-card:before { - content: "\ea91"; - } - .bx-menu:before { - content: "\ea92"; - } - .bx-menu-alt-left:before { - content: "\ea93"; - } - .bx-menu-alt-right:before { - content: "\ea94"; - } - .bx-message:before { - content: "\ea95"; - } - .bx-message-alt:before { - content: "\ea96"; - } - .bx-message-alt-dots:before { - content: "\ea97"; - } - .bx-message-dots:before { - content: "\ea98"; - } - .bx-message-rounded:before { - content: "\ea99"; - } - .bx-message-rounded-dots:before { - content: "\ea9a"; - } - .bx-message-square:before { - content: "\ea9b"; - } - .bx-message-square-dots:before { - content: "\ea9c"; - } - .bx-microphone:before { - content: "\ea9d"; - } - .bx-microphone-off:before { - content: "\ea9e"; - } - .bx-minus:before { - content: "\ea9f"; - } - .bx-minus-circle:before { - content: "\eaa0"; - } - .bx-mobile:before { - content: "\eaa1"; - } - .bx-mobile-alt:before { - content: "\eaa2"; - } - .bx-mobile-landscape:before { - content: "\eaa3"; - } - .bx-mobile-vibration:before { - content: "\eaa4"; - } - .bx-money:before { - content: "\eaa5"; - } - .bx-moon:before { - content: "\eaa6"; - } - .bx-mouse:before { - content: "\eaa7"; - } - .bx-mouse-alt:before { - content: "\eaa8"; - } - .bx-move:before { - content: "\eaa9"; - } - .bx-move-horizontal:before { - content: "\eaaa"; - } - .bx-move-vertical:before { - content: "\eaab"; - } - .bx-movie:before { - content: "\eaac"; - } - .bx-music:before { - content: "\eaad"; - } - .bx-navigation:before { - content: "\eaae"; - } - .bx-news:before { - content: "\eaaf"; - } - .bx-no-entry:before { - content: "\eab0"; - } - .bx-note:before { - content: "\eab1"; - } - .bx-notepad:before { - content: "\eab2"; - } - .bx-notification:before { - content: "\eab3"; - } - .bx-notification-off:before { - content: "\eab4"; - } - .bx-package:before { - content: "\eab5"; - } - .bx-paint:before { - content: "\eab6"; - } - .bx-paint-roll:before { - content: "\eab7"; - } - .bx-palette:before { - content: "\eab8"; - } - .bx-paperclip:before { - content: "\eab9"; - } - .bx-paper-plane:before { - content: "\eaba"; - } - .bx-paragraph:before { - content: "\eabb"; - } - .bx-paste:before { - content: "\eabc"; - } - .bx-pause:before { - content: "\eabd"; - } - .bx-pause-circle:before { - content: "\eabe"; - } - .bx-pen:before { - content: "\eabf"; - } - .bx-pencil:before { - content: "\eac0"; - } - .bx-phone:before { - content: "\eac1"; - } - .bx-phone-call:before { - content: "\eac2"; - } - .bx-phone-incoming:before { - content: "\eac3"; - } - .bx-phone-outgoing:before { - content: "\eac4"; - } - .bx-photo-album:before { - content: "\eac5"; - } - .bx-pie-chart:before { - content: "\eac6"; - } - .bx-pie-chart-alt:before { - content: "\eac7"; - } - .bx-pie-chart-alt-2:before { - content: "\eac8"; - } - .bx-pin:before { - content: "\eac9"; - } - .bx-planet:before { - content: "\eaca"; - } - .bx-play:before { - content: "\eacb"; - } - .bx-play-circle:before { - content: "\eacc"; - } - .bx-plug:before { - content: "\eacd"; - } - .bx-plus:before { - content: "\eace"; - } - .bx-plus-circle:before { - content: "\eacf"; - } - .bx-plus-medical:before { - content: "\ead0"; - } - .bx-poll:before { - content: "\ead1"; - } - .bx-polygon:before { - content: "\ead2"; - } - .bx-power-off:before { - content: "\ead3"; - } - .bx-printer:before { - content: "\ead4"; - } - .bx-pulse:before { - content: "\ead5"; - } - .bx-purchase-tag:before { - content: "\ead6"; - } - .bx-purchase-tag-alt:before { - content: "\ead7"; - } - .bx-pyramid:before { - content: "\ead8"; - } - .bx-question-mark:before { - content: "\ead9"; - } - .bx-radar:before { - content: "\eada"; - } - .bx-radio:before { - content: "\eadb"; - } - .bx-radio-circle:before { - content: "\eadc"; - } - .bx-radio-circle-marked:before { - content: "\eadd"; - } - .bx-receipt:before { - content: "\eade"; - } - .bx-rectangle:before { - content: "\eadf"; - } - .bx-redo:before { - content: "\eae0"; - } - .bx-rename:before { - content: "\eae1"; - } - .bx-repeat:before { - content: "\eae2"; - } - .bx-reply:before { - content: "\eae3"; - } - .bx-reply-all:before { - content: "\eae4"; - } - .bx-repost:before { - content: "\eae5"; - } - .bx-reset:before { - content: "\eae6"; - } - .bx-restaurant:before { - content: "\eae7"; - } - .bx-revision:before { - content: "\eae8"; - } - .bx-rewind:before { - content: "\eae9"; - } - .bx-rewind-circle:before { - content: "\eaea"; - } - .bx-right-arrow:before { - content: "\eaeb"; - } - .bx-right-arrow-alt:before { - content: "\eaec"; - } - .bx-right-arrow-circle:before { - content: "\eaed"; - } - .bx-right-down-arrow-circle:before { - content: "\eaee"; - } - .bx-right-indent:before { - content: "\eaef"; - } - .bx-right-top-arrow-circle:before { - content: "\eaf0"; - } - .bx-rocket:before { - content: "\eaf1"; - } - .bx-rotate-left:before { - content: "\eaf2"; - } - .bx-rotate-right:before { - content: "\eaf3"; - } - .bx-rss:before { - content: "\eaf4"; - } - .bx-ruler:before { - content: "\eaf5"; - } - .bx-run:before { - content: "\eaf6"; - } - .bx-save:before { - content: "\eaf7"; - } - .bx-screenshot:before { - content: "\eaf8"; - } - .bx-search:before { - content: "\eaf9"; - } - .bx-search-alt:before { - content: "\eafa"; - } - .bx-search-alt-2:before { - content: "\eafb"; - } - .bx-selection:before { - content: "\eafc"; - } - .bx-select-multiple:before { - content: "\eafd"; - } - .bx-send:before { - content: "\eafe"; - } - .bx-server:before { - content: "\eaff"; - } - .bx-shape-circle:before { - content: "\eb00"; - } - .bx-shape-square:before { - content: "\eb01"; - } - .bx-shape-triangle:before { - content: "\eb02"; - } - .bx-share:before { - content: "\eb03"; - } - .bx-share-alt:before { - content: "\eb04"; - } - .bx-shield:before { - content: "\eb05"; - } - .bx-shield-alt:before { - content: "\eb06"; - } - .bx-shield-alt-2:before { - content: "\eb07"; - } - .bx-shopping-bag:before { - content: "\eb08"; - } - .bx-show:before { - content: "\eb09"; - } - .bx-show-alt:before { - content: "\eb0a"; - } - .bx-shuffle:before { - content: "\eb0b"; - } - .bx-sidebar:before { - content: "\eb0c"; - } - .bx-sitemap:before { - content: "\eb0d"; - } - .bx-skip-next:before { - content: "\eb0e"; - } - .bx-skip-next-circle:before { - content: "\eb0f"; - } - .bx-skip-previous:before { - content: "\eb10"; - } - .bx-skip-previous-circle:before { - content: "\eb11"; - } - .bx-slider:before { - content: "\eb12"; - } - .bx-slider-alt:before { - content: "\eb13"; - } - .bx-slideshow:before { - content: "\eb14"; - } - .bx-sort:before { - content: "\eb15"; - } - .bx-sort-a-z:before { - content: "\eb16"; - } - .bx-sort-down:before { - content: "\eb17"; - } - .bx-sort-up:before { - content: "\eb18"; - } - .bx-sort-z-a:before { - content: "\eb19"; - } - .bx-spreadsheet:before { - content: "\eb1a"; - } - .bx-square:before { - content: "\eb1b"; - } - .bx-square-rounded:before { - content: "\eb1c"; - } - .bx-star:before { - content: "\eb1d"; - } - .bx-station:before { - content: "\eb1e"; - } - .bx-stats:before { - content: "\eb1f"; - } - .bx-stop:before { - content: "\eb20"; - } - .bx-stop-circle:before { - content: "\eb21"; - } - .bx-stopwatch:before { - content: "\eb22"; - } - .bx-store:before { - content: "\eb23"; - } - .bx-store-alt:before { - content: "\eb24"; - } - .bx-street-view:before { - content: "\eb25"; - } - .bx-strikethrough:before { - content: "\eb26"; - } - .bx-subdirectory-left:before { - content: "\eb27"; - } - .bx-subdirectory-right:before { - content: "\eb28"; - } - .bx-sun:before { - content: "\eb29"; - } - .bx-support:before { - content: "\eb2a"; - } - .bx-swim:before { - content: "\eb2b"; - } - .bx-sync:before { - content: "\eb2c"; - } - .bx-tab:before { - content: "\eb2d"; - } - .bx-table:before { - content: "\eb2e"; - } - .bx-tag:before { - content: "\eb2f"; - } - .bx-target-lock:before { - content: "\eb30"; - } - .bx-task:before { - content: "\eb31"; - } - .bx-taxi:before { - content: "\eb32"; - } - .bx-tennis-ball:before { - content: "\eb33"; - } - .bx-terminal:before { - content: "\eb34"; - } - .bx-test-tube:before { - content: "\eb35"; - } - .bx-text:before { - content: "\eb36"; - } - .bx-time:before { - content: "\eb37"; - } - .bx-time-five:before { - content: "\eb38"; - } - .bx-timer:before { - content: "\eb39"; - } - .bx-toggle-left:before { - content: "\eb3a"; - } - .bx-toggle-right:before { - content: "\eb3b"; - } - .bx-traffic-barrier:before { - content: "\eb3c"; - } - .bx-train:before { - content: "\eb3d"; - } - .bx-transfer:before { - content: "\eb3e"; - } - .bx-transfer-alt:before { - content: "\eb3f"; - } - .bx-trash:before { - content: "\eb40"; - } - .bx-trash-alt:before { - content: "\eb41"; - } - .bx-trending-down:before { - content: "\eb42"; - } - .bx-trending-up:before { - content: "\eb43"; - } - .bx-trophy:before { - content: "\eb44"; - } - .bx-truck:before { - content: "\eb45"; - } - .bx-tv:before { - content: "\eb46"; - } - .bx-underline:before { - content: "\eb47"; - } - .bx-undo:before { - content: "\eb48"; - } - .bx-unlink:before { - content: "\eb49"; - } - .bx-up-arrow:before { - content: "\eb4a"; - } - .bx-up-arrow-alt:before { - content: "\eb4b"; - } - .bx-up-arrow-circle:before { - content: "\eb4c"; - } - .bx-upload:before { - content: "\eb4d"; - } - .bx-upvote:before { - content: "\eb4e"; - } - .bx-usb:before { - content: "\eb4f"; - } - .bx-user:before { - content: "\eb50"; - } - .bx-user-check:before { - content: "\eb51"; - } - .bx-user-circle:before { - content: "\eb52"; - } - .bx-user-minus:before { - content: "\eb53"; - } - .bx-user-pin:before { - content: "\eb54"; - } - .bx-user-plus:before { - content: "\eb55"; - } - .bx-user-voice:before { - content: "\eb56"; - } - .bx-user-x:before { - content: "\eb57"; - } - .bx-vertical-center:before { - content: "\eb58"; - } - .bx-video:before { - content: "\eb59"; - } - .bx-video-off:before { - content: "\eb5a"; - } - .bx-video-plus:before { - content: "\eb5b"; - } - .bx-video-recording:before { - content: "\eb5c"; - } - .bx-voicemail:before { - content: "\eb5d"; - } - .bx-volume:before { - content: "\eb5e"; - } - .bx-volume-full:before { - content: "\eb5f"; - } - .bx-volume-low:before { - content: "\eb60"; - } - .bx-volume-mute:before { - content: "\eb61"; - } - .bx-walk:before { - content: "\eb62"; - } - .bx-wallet:before { - content: "\eb63"; - } - .bx-wallet-alt:before { - content: "\eb64"; - } - .bx-water:before { - content: "\eb65"; - } - .bx-wifi:before { - content: "\eb66"; - } - .bx-wifi-off:before { - content: "\eb67"; - } - .bx-wind:before { - content: "\eb68"; - } - .bx-window:before { - content: "\eb69"; - } - .bx-window-close:before { - content: "\eb6a"; - } - .bx-window-open:before { - content: "\eb6b"; - } - .bx-windows:before { - content: "\eb6c"; - } - .bx-world:before { - content: "\eb6d"; - } - .bx-wrench:before { - content: "\eb6e"; - } - .bx-x:before { - content: "\eb6f"; - } - .bx-x-circle:before { - content: "\eb70"; - } - .bx-zoom-in:before { - content: "\eb71"; - } - .bx-zoom-out:before { - content: "\eb72"; - } - .bxs-radio:before { - content: "\eb73"; - } - .bxs-chat:before { - content: "\eb74"; - } - .bxs-download:before { - content: "\eb75"; - } - .bxs-to-top:before { - content: "\eb76"; - } - .bxs-report:before { - content: "\eb77"; - } - .bxs-conversation:before { - content: "\eb78"; - } - .bxs-receipt:before { - content: "\eb79"; - } - .bxs-bookmark-plus:before { - content: "\eb7a"; - } - .bxs-bookmark-minus:before { - content: "\eb7b"; - } - .bxs-bookmarks:before { - content: "\eb7c"; - } - .bxs-layout:before { - content: "\eb7d"; - } - .bxs-quote-alt-left:before { - content: "\eb7e"; - } - .bxs-quote-alt-right:before { - content: "\eb7f"; - } - .bxs-mobile-vibration:before { - content: "\eb80"; - } - .bxs-rewind-circle:before { - content: "\eb81"; - } - .bxs-carousel:before { - content: "\eb82"; - } - .bxs-customize:before { - content: "\eb83"; - } - .bxs-fast-forward-circle:before { - content: "\eb84"; - } - .bxs-calendar-check:before { - content: "\eb85"; - } - .bxs-calendar-event:before { - content: "\eb86"; - } - .bxs-calendar-plus:before { - content: "\eb87"; - } - .bxs-calendar-alt:before { - content: "\eb88"; - } - .bxs-calendar-minus:before { - content: "\eb89"; - } - .bxs-calendar-x:before { - content: "\eb8a"; - } - .bxs-brush-alt:before { - content: "\eb8b"; - } - .bxs-calendar:before { - content: "\eb8c"; - } - .bxs-briefcase-alt-2:before { - content: "\eb8d"; - } - .bxs-brightness:before { - content: "\eb8e"; - } - .bxs-brightness-half:before { - content: "\eb8f"; - } - .bxs-adjust:before { - content: "\eb90"; - } - .bxs-adjust-alt:before { - content: "\eb91"; - } - .bxs-alarm:before { - content: "\eb92"; - } - .bxs-alarm-off:before { - content: "\eb93"; - } - .bxs-album:before { - content: "\eb94"; - } - .bxs-ambulance:before { - content: "\eb95"; - } - .bxs-analyse:before { - content: "\eb96"; - } - .bxs-archive:before { - content: "\eb97"; - } - .bxs-area:before { - content: "\eb98"; - } - .bxs-award:before { - content: "\eb99"; - } - .bxs-badge:before { - content: "\eb9a"; - } - .bxs-badge-check:before { - content: "\eb9b"; - } - .bxs-ball:before { - content: "\eb9c"; - } - .bxs-band-aid:before { - content: "\eb9d"; - } - .bxs-bank:before { - content: "\eb9e"; - } - .bxs-bar-chart-alt-2:before { - content: "\eb9f"; - } - .bxs-bar-chart-square:before { - content: "\eba0"; - } - .bxs-barcode:before { - content: "\eba1"; - } - .bxs-basket:before { - content: "\eba2"; - } - .bxs-bath:before { - content: "\eba3"; - } - .bxs-battery:before { - content: "\eba4"; - } - .bxs-battery-charging:before { - content: "\eba5"; - } - .bxs-battery-full:before { - content: "\eba6"; - } - .bxs-battery-low:before { - content: "\eba7"; - } - .bxs-bed:before { - content: "\eba8"; - } - .bxs-bell:before { - content: "\eba9"; - } - .bxs-bell-minus:before { - content: "\ebaa"; - } - .bxs-bell-off:before { - content: "\ebab"; - } - .bxs-bell-plus:before { - content: "\ebac"; - } - .bxs-bell-ring:before { - content: "\ebad"; - } - .bxs-bolt:before { - content: "\ebae"; - } - .bxs-book:before { - content: "\ebaf"; - } - .bxs-book-bookmark:before { - content: "\ebb0"; - } - .bxs-book-content:before { - content: "\ebb1"; - } - .bxs-bookmark:before { - content: "\ebb2"; - } - .bxs-bookmark-star:before { - content: "\ebb3"; - } - .bxs-book-open:before { - content: "\ebb4"; - } - .bxs-bot:before { - content: "\ebb5"; - } - .bxs-bowling-ball:before { - content: "\ebb6"; - } - .bxs-box:before { - content: "\ebb7"; - } - .bxs-briefcase:before { - content: "\ebb8"; - } - .bxs-briefcase-alt:before { - content: "\ebb9"; - } - .bxs-brush:before { - content: "\ebba"; - } - .bxs-bug:before { - content: "\ebbb"; - } - .bxs-bug-alt:before { - content: "\ebbc"; - } - .bxs-building:before { - content: "\ebbd"; - } - .bxs-building-house:before { - content: "\ebbe"; - } - .bxs-buildings:before { - content: "\ebbf"; - } - .bxs-bulb:before { - content: "\ebc0"; - } - .bxs-buoy:before { - content: "\ebc1"; - } - .bxs-bus:before { - content: "\ebc2"; - } - .bxs-calculator:before { - content: "\ebc3"; - } - .bxs-camera:before { - content: "\ebc4"; - } - .bxs-camera-off:before { - content: "\ebc5"; - } - .bxs-capsule:before { - content: "\ebc6"; - } - .bxs-captions:before { - content: "\ebc7"; - } - .bxs-car:before { - content: "\ebc8"; - } - .bxs-card:before { - content: "\ebc9"; - } - .bxs-cart:before { - content: "\ebca"; - } - .bxs-cart-alt:before { - content: "\ebcb"; - } - .bxs-categories:before { - content: "\ebcc"; - } - .bxs-certification:before { - content: "\ebcd"; - } - .bxs-chalkboard:before { - content: "\ebce"; - } - .bxs-chart:before { - content: "\ebcf"; - } - .bxs-checkbox:before { - content: "\ebd0"; - } - .bxs-checkbox-checked:before { - content: "\ebd1"; - } - .bxs-check-circle:before { - content: "\ebd2"; - } - .bxs-check-square:before { - content: "\ebd3"; - } - .bxs-chip:before { - content: "\ebd4"; - } - .bxs-circle:before { - content: "\ebd5"; - } - .bxs-cloud:before { - content: "\ebd6"; - } - .bxs-cloud-download:before { - content: "\ebd7"; - } - .bxs-cloud-lightning:before { - content: "\ebd8"; - } - .bxs-cloud-rain:before { - content: "\ebd9"; - } - .bxs-cloud-upload:before { - content: "\ebda"; - } - .bxs-coffee:before { - content: "\ebdb"; - } - .bxs-coffee-alt:before { - content: "\ebdc"; - } - .bxs-cog:before { - content: "\ebdd"; - } - .bxs-collection:before { - content: "\ebde"; - } - .bxs-color-fill:before { - content: "\ebdf"; - } - .bxs-comment:before { - content: "\ebe0"; - } - .bxs-comment-add:before { - content: "\ebe1"; - } - .bxs-comment-detail:before { - content: "\ebe2"; - } - .bxs-comment-dots:before { - content: "\ebe3"; - } - .bxs-comment-error:before { - content: "\ebe4"; - } - .bxs-compass:before { - content: "\ebe5"; - } - .bxs-component:before { - content: "\ebe6"; - } - .bxs-contact:before { - content: "\ebe7"; - } - .bxs-copy:before { - content: "\ebe8"; - } - .bxs-copy-alt:before { - content: "\ebe9"; - } - .bxs-coupon:before { - content: "\ebea"; - } - .bxs-credit-card:before { - content: "\ebeb"; - } - .bxs-credit-card-alt:before { - content: "\ebec"; - } - .bxs-crown:before { - content: "\ebed"; - } - .bxs-cube:before { - content: "\ebee"; - } - .bxs-cube-alt:before { - content: "\ebef"; - } - .bxs-cuboid:before { - content: "\ebf0"; - } - .bxs-cylinder:before { - content: "\ebf1"; - } - .bxs-dashboard:before { - content: "\ebf2"; - } - .bxs-data:before { - content: "\ebf3"; - } - .bxs-detail:before { - content: "\ebf4"; - } - .bxs-devices:before { - content: "\ebf5"; - } - .bxs-direction-left:before { - content: "\ebf6"; - } - .bxs-direction-right:before { - content: "\ebf7"; - } - .bxs-directions:before { - content: "\ebf8"; - } - .bxs-disc:before { - content: "\ebf9"; - } - .bxs-discount:before { - content: "\ebfa"; - } - .bxs-dislike:before { - content: "\ebfb"; - } - .bxs-dock-bottom:before { - content: "\ebfc"; - } - .bxs-dock-left:before { - content: "\ebfd"; - } - .bxs-dock-right:before { - content: "\ebfe"; - } - .bxs-dock-top:before { - content: "\ebff"; - } - .bxs-dollar-circle:before { - content: "\ec00"; - } - .bxs-doughnut-chart:before { - content: "\ec01"; - } - .bxs-down-arrow:before { - content: "\ec02"; - } - .bxs-down-arrow-circle:before { - content: "\ec03"; - } - .bxs-down-arrow-square:before { - content: "\ec04"; - } - .bxs-downvote:before { - content: "\ec05"; - } - .bxs-drink:before { - content: "\ec06"; - } - .bxs-droplet:before { - content: "\ec07"; - } - .bxs-droplet-half:before { - content: "\ec08"; - } - .bxs-duplicate:before { - content: "\ec09"; - } - .bxs-edit:before { - content: "\ec0a"; - } - .bxs-edit-alt:before { - content: "\ec0b"; - } - .bxs-eject:before { - content: "\ec0c"; - } - .bxs-envelope:before { - content: "\ec0d"; - } - .bxs-eraser:before { - content: "\ec0e"; - } - .bxs-error:before { - content: "\ec0f"; - } - .bxs-error-alt:before { - content: "\ec10"; - } - .bxs-error-circle:before { - content: "\ec11"; - } - .bxs-eyedropper:before { - content: "\ec12"; - } - .bxs-factory:before { - content: "\ec13"; - } - .bxs-file:before { - content: "\ec14"; - } - .bxs-file-blank:before { - content: "\ec15"; - } - .bxs-file-css:before { - content: "\ec16"; - } - .bxs-file-doc:before { - content: "\ec17"; - } - .bxs-file-gif:before { - content: "\ec18"; - } - .bxs-file-html:before { - content: "\ec19"; - } - .bxs-file-image:before { - content: "\ec1a"; - } - .bxs-file-jpg:before { - content: "\ec1b"; - } - .bxs-file-js:before { - content: "\ec1c"; - } - .bxs-file-json:before { - content: "\ec1d"; - } - .bxs-file-md:before { - content: "\ec1e"; - } - .bxs-file-pdf:before { - content: "\ec1f"; - } - .bxs-file-plus:before { - content: "\ec20"; - } - .bxs-file-png:before { - content: "\ec21"; - } - .bxs-file-txt:before { - content: "\ec22"; - } - .bxs-film:before { - content: "\ec23"; - } - .bxs-filter-alt:before { - content: "\ec24"; - } - .bxs-first-aid:before { - content: "\ec25"; - } - .bxs-flag:before { - content: "\ec26"; - } - .bxs-flag-alt:before { - content: "\ec27"; - } - .bxs-flame:before { - content: "\ec28"; - } - .bxs-flask:before { - content: "\ec29"; - } - .bxs-folder:before { - content: "\ec2a"; - } - .bxs-folder-minus:before { - content: "\ec2b"; - } - .bxs-folder-open:before { - content: "\ec2c"; - } - .bxs-folder-plus:before { - content: "\ec2d"; - } - .bxs-gas-pump:before { - content: "\ec2e"; - } - .bxs-ghost:before { - content: "\ec2f"; - } - .bxs-gift:before { - content: "\ec30"; - } - .bxs-graduation:before { - content: "\ec31"; - } - .bxs-grid:before { - content: "\ec32"; - } - .bxs-grid-alt:before { - content: "\ec33"; - } - .bxs-group:before { - content: "\ec34"; - } - .bxs-hdd:before { - content: "\ec35"; - } - .bxs-heart:before { - content: "\ec36"; - } - .bxs-help-circle:before { - content: "\ec37"; - } - .bxs-hide:before { - content: "\ec38"; - } - .bxs-home:before { - content: "\ec39"; - } - .bxs-home-circle:before { - content: "\ec3a"; - } - .bxs-hot:before { - content: "\ec3b"; - } - .bxs-hotel:before { - content: "\ec3c"; - } - .bxs-hourglass:before { - content: "\ec3d"; - } - .bxs-hourglass-bottom:before { - content: "\ec3e"; - } - .bxs-hourglass-top:before { - content: "\ec3f"; - } - .bxs-id-card:before { - content: "\ec40"; - } - .bxs-image:before { - content: "\ec41"; - } - .bxs-image-alt:before { - content: "\ec42"; - } - .bxs-inbox:before { - content: "\ec43"; - } - .bxs-info-circle:before { - content: "\ec44"; - } - .bxs-institution:before { - content: "\ec45"; - } - .bxs-joystick:before { - content: "\ec46"; - } - .bxs-joystick-alt:before { - content: "\ec47"; - } - .bxs-joystick-button:before { - content: "\ec48"; - } - .bxs-key:before { - content: "\ec49"; - } - .bxs-keyboard:before { - content: "\ec4a"; - } - .bxs-landmark:before { - content: "\ec4b"; - } - .bxs-landscape:before { - content: "\ec4c"; - } - .bxs-layer:before { - content: "\ec4d"; - } - .bxs-left-arrow:before { - content: "\ec4e"; - } - .bxs-left-arrow-circle:before { - content: "\ec4f"; - } - .bxs-left-arrow-square:before { - content: "\ec50"; - } - .bxs-left-down-arrow-circle:before { - content: "\ec51"; - } - .bxs-left-top-arrow-circle:before { - content: "\ec52"; - } - .bxs-like:before { - content: "\ec53"; - } - .bxs-lock:before { - content: "\ec54"; - } - .bxs-lock-alt:before { - content: "\ec55"; - } - .bxs-lock-open:before { - content: "\ec56"; - } - .bxs-lock-open-alt:before { - content: "\ec57"; - } - .bxs-log-in:before { - content: "\ec58"; - } - .bxs-log-in-circle:before { - content: "\ec59"; - } - .bxs-log-out:before { - content: "\ec5a"; - } - .bxs-log-out-circle:before { - content: "\ec5b"; - } - .bxs-magic-wand:before { - content: "\ec5c"; - } - .bxs-magnet:before { - content: "\ec5d"; - } - .bxs-map:before { - content: "\ec5e"; - } - .bxs-map-alt:before { - content: "\ec5f"; - } - .bxs-map-pin:before { - content: "\ec60"; - } - .bxs-megaphone:before { - content: "\ec61"; - } - .bxs-memory-card:before { - content: "\ec62"; - } - .bxs-message:before { - content: "\ec63"; - } - .bxs-message-alt:before { - content: "\ec64"; - } - .bxs-message-alt-dots:before { - content: "\ec65"; - } - .bxs-message-dots:before { - content: "\ec66"; - } - .bxs-message-rounded:before { - content: "\ec67"; - } - .bxs-message-rounded-dots:before { - content: "\ec68"; - } - .bxs-message-square:before { - content: "\ec69"; - } - .bxs-message-square-dots:before { - content: "\ec6a"; - } - .bxs-microphone:before { - content: "\ec6b"; - } - .bxs-microphone-alt:before { - content: "\ec6c"; - } - .bxs-microphone-off:before { - content: "\ec6d"; - } - .bxs-minus-circle:before { - content: "\ec6e"; - } - .bxs-minus-square:before { - content: "\ec6f"; - } - .bxs-mobile:before { - content: "\ec70"; - } - .bxs-moon:before { - content: "\ec71"; - } - .bxs-mouse:before { - content: "\ec72"; - } - .bxs-mouse-alt:before { - content: "\ec73"; - } - .bxs-movie:before { - content: "\ec74"; - } - .bxs-music:before { - content: "\ec75"; - } - .bxs-navigation:before { - content: "\ec76"; - } - .bxs-news:before { - content: "\ec77"; - } - .bxs-no-entry:before { - content: "\ec78"; - } - .bxs-note:before { - content: "\ec79"; - } - .bxs-notepad:before { - content: "\ec7a"; - } - .bxs-notification:before { - content: "\ec7b"; - } - .bxs-notification-off:before { - content: "\ec7c"; - } - .bxs-package:before { - content: "\ec7d"; - } - .bxs-paint:before { - content: "\ec7e"; - } - .bxs-paint-roll:before { - content: "\ec7f"; - } - .bxs-palette:before { - content: "\ec80"; - } - .bxs-paper-plane:before { - content: "\ec81"; - } - .bxs-parking:before { - content: "\ec82"; - } - .bxs-paste:before { - content: "\ec83"; - } - .bxs-pen:before { - content: "\ec84"; - } - .bxs-pencil:before { - content: "\ec85"; - } - .bxs-phone:before { - content: "\ec86"; - } - .bxs-phone-call:before { - content: "\ec87"; - } - .bxs-phone-incoming:before { - content: "\ec88"; - } - .bxs-phone-outgoing:before { - content: "\ec89"; - } - .bxs-photo-album:before { - content: "\ec8a"; - } - .bxs-pie-chart:before { - content: "\ec8b"; - } - .bxs-pie-chart-alt:before { - content: "\ec8c"; - } - .bxs-pie-chart-alt-2:before { - content: "\ec8d"; - } - .bxs-pin:before { - content: "\ec8e"; - } - .bxs-plane:before { - content: "\ec8f"; - } - .bxs-plane-alt:before { - content: "\ec90"; - } - .bxs-plane-land:before { - content: "\ec91"; - } - .bxs-planet:before { - content: "\ec92"; - } - .bxs-plane-take-off:before { - content: "\ec93"; - } - .bxs-playlist:before { - content: "\ec94"; - } - .bxs-plug:before { - content: "\ec95"; - } - .bxs-plus-circle:before { - content: "\ec96"; - } - .bxs-plus-square:before { - content: "\ec97"; - } - .bxs-polygon:before { - content: "\ec98"; - } - .bxs-printer:before { - content: "\ec99"; - } - .bxs-purchase-tag:before { - content: "\ec9a"; - } - .bxs-purchase-tag-alt:before { - content: "\ec9b"; - } - .bxs-pyramid:before { - content: "\ec9c"; - } - .bxs-quote-left:before { - content: "\ec9d"; - } - .bxs-quote-right:before { - content: "\ec9e"; - } - .bxs-quote-single-left:before { - content: "\ec9f"; - } - .bxs-quote-single-right:before { - content: "\eca0"; - } - .bxs-rectangle:before { - content: "\eca1"; - } - .bxs-rename:before { - content: "\eca2"; - } - .bxs-right-arrow:before { - content: "\eca3"; - } - .bxs-right-arrow-circle:before { - content: "\eca4"; - } - .bxs-right-arrow-square:before { - content: "\eca5"; - } - .bxs-right-down-arrow-circle:before { - content: "\eca6"; - } - .bxs-right-top-arrow-circle:before { - content: "\eca7"; - } - .bxs-rocket:before { - content: "\eca8"; - } - .bxs-ruler:before { - content: "\eca9"; - } - .bxs-save:before { - content: "\ecaa"; - } - .bxs-school:before { - content: "\ecab"; - } - .bxs-search:before { - content: "\ecac"; - } - .bxs-search-alt-2:before { - content: "\ecad"; - } - .bxs-select-multiple:before { - content: "\ecae"; - } - .bxs-send:before { - content: "\ecaf"; - } - .bxs-server:before { - content: "\ecb0"; - } - .bxs-share:before { - content: "\ecb1"; - } - .bxs-share-alt:before { - content: "\ecb2"; - } - .bxs-shield:before { - content: "\ecb3"; - } - .bxs-shield-alt-2:before { - content: "\ecb4"; - } - .bxs-ship:before { - content: "\ecb5"; - } - .bxs-shopping-bag:before { - content: "\ecb6"; - } - .bxs-shopping-bag-alt:before { - content: "\ecb7"; - } - .bxs-show:before { - content: "\ecb8"; - } - .bxs-skip-next-circle:before { - content: "\ecb9"; - } - .bxs-skip-previous-circle:before { - content: "\ecba"; - } - .bxs-skull:before { - content: "\ecbb"; - } - .bxs-slideshow:before { - content: "\ecbc"; - } - .bxs-smiley-happy:before { - content: "\ecbd"; - } - .bxs-smiley-meh:before { - content: "\ecbe"; - } - .bxs-smiley-sad:before { - content: "\ecbf"; - } - .bxs-sort-alt:before { - content: "\ecc0"; - } - .bxs-spreadsheet:before { - content: "\ecc1"; - } - .bxs-square:before { - content: "\ecc2"; - } - .bxs-square-rounded:before { - content: "\ecc3"; - } - .bxs-star:before { - content: "\ecc4"; - } - .bxs-star-half:before { - content: "\ecc5"; - } - .bxs-stopwatch:before { - content: "\ecc6"; - } - .bxs-store:before { - content: "\ecc7"; - } - .bxs-store-alt:before { - content: "\ecc8"; - } - .bxs-sun:before { - content: "\ecc9"; - } - .bxs-tag:before { - content: "\ecca"; - } - .bxs-tag-x:before { - content: "\eccb"; - } - .bxs-taxi:before { - content: "\eccc"; - } - .bxs-tennis-ball:before { - content: "\eccd"; - } - .bxs-terminal:before { - content: "\ecce"; - } - .bxs-thermometer:before { - content: "\eccf"; - } - .bxs-time:before { - content: "\ecd0"; - } - .bxs-time-five:before { - content: "\ecd1"; - } - .bxs-timer:before { - content: "\ecd2"; - } - .bxs-toggle-left:before { - content: "\ecd3"; - } - .bxs-toggle-right:before { - content: "\ecd4"; - } - .bxs-torch:before { - content: "\ecd5"; - } - .bxs-traffic:before { - content: "\ecd6"; - } - .bxs-traffic-barrier:before { - content: "\ecd7"; - } - .bxs-train:before { - content: "\ecd8"; - } - .bxs-trash:before { - content: "\ecd9"; - } - .bxs-trash-alt:before { - content: "\ecda"; - } - .bxs-tree:before { - content: "\ecdb"; - } - .bxs-trophy:before { - content: "\ecdc"; - } - .bxs-truck:before { - content: "\ecdd"; - } - .bxs-t-shirt:before { - content: "\ecde"; - } - .bxs-up-arrow:before { - content: "\ecdf"; - } - .bxs-up-arrow-circle:before { - content: "\ece0"; - } - .bxs-up-arrow-square:before { - content: "\ece1"; - } - .bxs-upvote:before { - content: "\ece2"; - } - .bxs-user:before { - content: "\ece3"; - } - .bxs-user-badge:before { - content: "\ece4"; - } - .bxs-user-check:before { - content: "\ece5"; - } - .bxs-user-circle:before { - content: "\ece6"; - } - .bxs-user-detail:before { - content: "\ece7"; - } - .bxs-user-minus:before { - content: "\ece8"; - } - .bxs-user-pin:before { - content: "\ece9"; - } - .bxs-user-plus:before { - content: "\ecea"; - } - .bxs-user-rectangle:before { - content: "\eceb"; - } - .bxs-user-voice:before { - content: "\ecec"; - } - .bxs-user-x:before { - content: "\eced"; - } - .bxs-vial:before { - content: "\ecee"; - } - .bxs-video:before { - content: "\ecef"; - } - .bxs-video-off:before { - content: "\ecf0"; - } - .bxs-video-plus:before { - content: "\ecf1"; - } - .bxs-video-recording:before { - content: "\ecf2"; - } - .bxs-videos:before { - content: "\ecf3"; - } - .bxs-volume:before { - content: "\ecf4"; - } - .bxs-volume-full:before { - content: "\ecf5"; - } - .bxs-volume-low:before { - content: "\ecf6"; - } - .bxs-volume-mute:before { - content: "\ecf7"; - } - .bxs-wallet:before { - content: "\ecf8"; - } - .bxs-wallet-alt:before { - content: "\ecf9"; - } - .bxs-watch:before { - content: "\ecfa"; - } - .bxs-watch-alt:before { - content: "\ecfb"; - } - .bxs-widget:before { - content: "\ecfc"; - } - .bxs-wine:before { - content: "\ecfd"; - } - .bxs-wrench:before { - content: "\ecfe"; - } - .bxs-x-circle:before { - content: "\ecff"; - } - .bxs-x-square:before { - content: "\ed00"; - } - .bxs-yin-yang:before { - content: "\ed01"; - } - .bxs-zap:before { - content: "\ed02"; - } - .bxs-zoom-in:before { - content: "\ed03"; - } - .bxs-zoom-out:before { - content: "\ed04"; - } - \ No newline at end of file + +.bxl-500px:before { + content: "\e900"; +} +.bxl-airbnb:before { + content: "\e901"; +} +.bxl-amazon:before { + content: "\e902"; +} +.bxl-android:before { + content: "\e903"; +} +.bxl-angular:before { + content: "\e904"; +} +.bxl-apple:before { + content: "\e905"; +} +.bxl-baidu:before { + content: "\e906"; +} +.bxl-behance:before { + content: "\e907"; +} +.bxl-bing:before { + content: "\e908"; +} +.bxl-bitcoin:before { + content: "\e909"; +} +.bxl-blogger:before { + content: "\e90a"; +} +.bxl-bootstrap:before { + content: "\e90b"; +} +.bxl-chrome:before { + content: "\e90c"; +} +.bxl-codepen:before { + content: "\e90d"; +} +.bxl-creative-commons:before { + content: "\e90e"; +} +.bxl-css3:before { + content: "\e90f"; +} +.bxl-dailymotion:before { + content: "\e910"; +} +.bxl-deviantart:before { + content: "\e911"; +} +.bxl-digg:before { + content: "\e912"; +} +.bxl-digitalocean:before { + content: "\e913"; +} +.bxl-discord:before { + content: "\e914"; +} +.bxl-discourse:before { + content: "\e915"; +} +.bxl-dribbble:before { + content: "\e916"; +} +.bxl-dropbox:before { + content: "\e917"; +} +.bxl-drupal:before { + content: "\e918"; +} +.bxl-ebay:before { + content: "\e919"; +} +.bxl-edge:before { + content: "\e91a"; +} +.bxl-facebook:before { + content: "\e91b"; +} +.bxl-facebook-square:before { + content: "\e91c"; +} +.bxl-firefox:before { + content: "\e91d"; +} +.bxl-flickr:before { + content: "\e91e"; +} +.bxl-flickr-square:before { + content: "\e91f"; +} +.bxl-foursquare:before { + content: "\e920"; +} +.bxl-git:before { + content: "\e921"; +} +.bxl-github:before { + content: "\e922"; +} +.bxl-google:before { + content: "\e923"; +} +.bxl-google-plus:before { + content: "\e924"; +} +.bxl-google-plus-circle:before { + content: "\e925"; +} +.bxl-html5:before { + content: "\e926"; +} +.bxl-instagram:before { + content: "\e927"; +} +.bxl-instagram-alt:before { + content: "\e928"; +} +.bxl-internet-explorer:before { + content: "\e929"; +} +.bxl-invision:before { + content: "\e92a"; +} +.bxl-javascript:before { + content: "\e92b"; +} +.bxl-joomla:before { + content: "\e92c"; +} +.bxl-jsfiddle:before { + content: "\e92d"; +} +.bxl-kickstarter:before { + content: "\e92e"; +} +.bxl-less:before { + content: "\e92f"; +} +.bxl-linkedin:before { + content: "\e930"; +} +.bxl-linkedin-square:before { + content: "\e931"; +} +.bxl-magento:before { + content: "\e932"; +} +.bxl-mailchimp:before { + content: "\e933"; +} +.bxl-mastercard:before { + content: "\e934"; +} +.bxl-medium:before { + content: "\e935"; +} +.bxl-medium-old:before { + content: "\e936"; +} +.bxl-medium-square:before { + content: "\e937"; +} +.bxl-messenger:before { + content: "\e938"; +} +.bxl-microsoft:before { + content: "\e939"; +} +.bxl-nodejs:before { + content: "\e93a"; +} +.bxl-opera:before { + content: "\e93b"; +} +.bxl-paypal:before { + content: "\e93c"; +} +.bxl-periscope:before { + content: "\e93d"; +} +.bxl-pinterest:before { + content: "\e93e"; +} +.bxl-play-store:before { + content: "\e93f"; +} +.bxl-pocket:before { + content: "\e940"; +} +.bxl-product-hunt:before { + content: "\e941"; +} +.bxl-quora:before { + content: "\e942"; +} +.bxl-react:before { + content: "\e943"; +} +.bxl-reddit:before { + content: "\e944"; +} +.bxl-redux:before { + content: "\e945"; +} +.bxl-sass:before { + content: "\e946"; +} +.bxl-shopify:before { + content: "\e947"; +} +.bxl-skype:before { + content: "\e948"; +} +.bxl-slack:before { + content: "\e949"; +} +.bxl-slack-old:before { + content: "\e94a"; +} +.bxl-snapchat:before { + content: "\e94b"; +} +.bxl-soundcloud:before { + content: "\e94c"; +} +.bxl-spotify:before { + content: "\e94d"; +} +.bxl-squarespace:before { + content: "\e94e"; +} +.bxl-stack-overflow:before { + content: "\e94f"; +} +.bxl-stripe:before { + content: "\e950"; +} +.bxl-telegram:before { + content: "\e951"; +} +.bxl-trello:before { + content: "\e952"; +} +.bxl-tumblr:before { + content: "\e953"; +} +.bxl-twitch:before { + content: "\e954"; +} +.bxl-twitter:before { + content: "\e955"; +} +.bxl-unsplash:before { + content: "\e956"; +} +.bxl-vimeo:before { + content: "\e957"; +} +.bxl-visa:before { + content: "\e958"; +} +.bxl-vk:before { + content: "\e959"; +} +.bxl-vuejs:before { + content: "\e95a"; +} +.bxl-whatsapp:before { + content: "\e95b"; +} +.bxl-whatsapp-square:before { + content: "\e95c"; +} +.bxl-wikipedia:before { + content: "\e95d"; +} +.bxl-windows:before { + content: "\e95e"; +} +.bxl-wix:before { + content: "\e95f"; +} +.bxl-wordpress:before { + content: "\e960"; +} +.bxl-yahoo:before { + content: "\e961"; +} +.bxl-yelp:before { + content: "\e962"; +} +.bxl-youtube:before { + content: "\e963"; +} +.bx-archive-in:before { + content: "\e964"; +} +.bx-archive-out:before { + content: "\e965"; +} +.bx-archive:before { + content: "\e966"; +} +.bx-tone:before { + content: "\e967"; +} +.bx-bolt-circle:before { + content: "\e968"; +} +.bx-check-shield:before { + content: "\e969"; +} +.bx-face:before { + content: "\e96a"; +} +.bx-file-find:before { + content: "\e96b"; +} +.bx-label:before { + content: "\e96c"; +} +.bx-exit:before { + content: "\e96d"; +} +.bx-extension:before { + content: "\e96e"; +} +.bx-cake:before { + content: "\e96f"; +} +.bx-dish:before { + content: "\e970"; +} +.bx-fridge:before { + content: "\e971"; +} +.bx-spa:before { + content: "\e972"; +} +.bx-image-add:before { + content: "\e973"; +} +.bx-image-alt:before { + content: "\e974"; +} +.bx-alarm-add:before { + content: "\e975"; +} +.bx-space-bar:before { + content: "\e976"; +} +.bx-add-to-queue:before { + content: "\e977"; +} +.bx-border-radius:before { + content: "\e978"; +} +.bx-map-alt:before { + content: "\e979"; +} +.bx-message-dots:before { + content: "\e97a"; +} +.bx-downvote:before { + content: "\e97b"; +} +.bx-upvote:before { + content: "\e97c"; +} +.bx-briefcase:before { + content: "\e97d"; +} +.bx-dollar:before { + content: "\e97e"; +} +.bx-wallet-alt:before { + content: "\e97f"; +} +.bx-shuffle:before { + content: "\e980"; +} +.bx-building-house:before { + content: "\e981"; +} +.bx-comment:before { + content: "\e982"; +} +.bx-comment-dots:before { + content: "\e983"; +} +.bx-book-content:before { + content: "\e984"; +} +.bx-chat:before { + content: "\e985"; +} +.bx-detail:before { + content: "\e986"; +} +.bx-message-rounded-dots:before { + content: "\e987"; +} +.bx-buildings:before { + content: "\e988"; +} +.bx-edit-alt:before { + content: "\e989"; +} +.bx-notepad:before { + content: "\e98a"; +} +.bx-briefcase-alt-2:before { + content: "\e98b"; +} +.bx-gas-pump:before { + content: "\e98c"; +} +.bx-sort-z-a:before { + content: "\e98d"; +} +.bx-brush-alt:before { + content: "\e98e"; +} +.bx-printer:before { + content: "\e98f"; +} +.bx-radio:before { + content: "\e990"; +} +.bx-sort-a-z:before { + content: "\e991"; +} +.bx-credit-card-alt:before { + content: "\e992"; +} +.bx-message-alt:before { + content: "\e993"; +} +.bx-message-alt-dots:before { + content: "\e994"; +} +.bx-id-card:before { + content: "\e995"; +} +.bx-move-horizontal:before { + content: "\e996"; +} +.bx-move-vertical:before { + content: "\e997"; +} +.bx-sort-down:before { + content: "\e998"; +} +.bx-sort-up:before { + content: "\e999"; +} +.bx-money:before { + content: "\e99a"; +} +.bx-movie:before { + content: "\e99b"; +} +.bx-code-block:before { + content: "\e99c"; +} +.bx-photo-album:before { + content: "\e99d"; +} +.bx-restaurant:before { + content: "\e99e"; +} +.bx-rewind-circle:before { + content: "\e99f"; +} +.bx-briefcase-alt:before { + content: "\e9a0"; +} +.bx-wallet:before { + content: "\e9a1"; +} +.bx-window-close:before { + content: "\e9a2"; +} +.bx-chalkboard:before { + content: "\e9a3"; +} +.bx-world:before { + content: "\e9a4"; +} +.bx-purchase-tag:before { + content: "\e9a5"; +} +.bx-hdd:before { + content: "\e9a6"; +} +.bx-rename:before { + content: "\e9a7"; +} +.bx-skip-previous-circle:before { + content: "\e9a8"; +} +.bx-chip:before { + content: "\e9a9"; +} +.bx-images:before { + content: "\e9aa"; +} +.bx-news:before { + content: "\e9ab"; +} +.bx-skip-next-circle:before { + content: "\e9ac"; +} +.bx-closet:before { + content: "\e9ad"; +} +.bx-ruler:before { + content: "\e9ae"; +} +.bx-tv:before { + content: "\e9af"; +} +.bx-battery:before { + content: "\e9b0"; +} +.bx-task:before { + content: "\e9b1"; +} +.bx-repeat:before { + content: "\e9b2"; +} +.bx-flag:before { + content: "\e9b3"; +} +.bx-repost:before { + content: "\e9b4"; +} +.bx-support:before { + content: "\e9b5"; +} +.bx-reply-all:before { + content: "\e9b6"; +} +.bx-subdirectory-left:before { + content: "\e9b7"; +} +.bx-subdirectory-right:before { + content: "\e9b8"; +} +.bx-reply:before { + content: "\e9b9"; +} +.bx-wrench:before { + content: "\e9ba"; +} +.bx-credit-card:before { + content: "\e9bb"; +} +.bx-notification:before { + content: "\e9bc"; +} +.bx-paragraph:before { + content: "\e9bd"; +} +.bx-diamond:before { + content: "\e9be"; +} +.bx-screenshot:before { + content: "\e9bf"; +} +.bx-sort:before { + content: "\e9c0"; +} +.bx-check:before { + content: "\e9c1"; +} +.bx-minus:before { + content: "\e9c2"; +} +.bx-x:before { + content: "\e9c3"; +} +.bx-plus:before { + content: "\e9c4"; +} +.bx-shopping-bag:before { + content: "\e9c5"; +} +.bx-edit:before { + content: "\e9c6"; +} +.bx-bold:before { + content: "\e9c7"; +} +.bx-columns:before { + content: "\e9c8"; +} +.bx-cut:before { + content: "\e9c9"; +} +.bx-font-family:before { + content: "\e9ca"; +} +.bx-crop:before { + content: "\e9cb"; +} +.bx-font-size:before { + content: "\e9cc"; +} +.bx-paste:before { + content: "\e9cd"; +} +.bx-underline:before { + content: "\e9ce"; +} +.bx-heading:before { + content: "\e9cf"; +} +.bx-italic:before { + content: "\e9d0"; +} +.bx-text:before { + content: "\e9d1"; +} +.bx-font:before { + content: "\e9d2"; +} +.bx-pulse:before { + content: "\e9d3"; +} +.bx-dashboard:before { + content: "\e9d4"; +} +.bx-desktop:before { + content: "\e9d5"; +} +.bx-sitemap:before { + content: "\e9d6"; +} +.bx-terminal:before { + content: "\e9d7"; +} +.bx-laptop:before { + content: "\e9d8"; +} +.bx-usb:before { + content: "\e9d9"; +} +.bx-windows:before { + content: "\e9da"; +} +.bx-message:before { + content: "\e9db"; +} +.bx-message-rounded:before { + content: "\e9dc"; +} +.bx-book-bookmark:before { + content: "\e9dd"; +} +.bx-mobile-alt:before { + content: "\e9de"; +} +.bx-tag:before { + content: "\e9df"; +} +.bx-book:before { + content: "\e9e0"; +} +.bx-bookmark-minus:before { + content: "\e9e1"; +} +.bx-bus:before { + content: "\e9e2"; +} +.bx-window:before { + content: "\e9e3"; +} +.bx-window-open:before { + content: "\e9e4"; +} +.bx-bookmark-plus:before { + content: "\e9e5"; +} +.bx-sidebar:before { + content: "\e9e6"; +} +.bx-table:before { + content: "\e9e7"; +} +.bx-clipboard:before { + content: "\e9e8"; +} +.bx-copy:before { + content: "\e9e9"; +} +.bx-play-circle:before { + content: "\e9ea"; +} +.bx-stop-circle:before { + content: "\e9eb"; +} +.bx-bookmarks:before { + content: "\e9ec"; +} +.bx-coffee:before { + content: "\e9ed"; +} +.bx-fast-forward-circle:before { + content: "\e9ee"; +} +.bx-rectangle:before { + content: "\e9ef"; +} +.bx-fullscreen:before { + content: "\e9f0"; +} +.bx-bookmark:before { + content: "\e9f1"; +} +.bx-accessibility:before { + content: "\e9f2"; +} +.bx-adjust:before { + content: "\e9f3"; +} +.bx-alarm:before { + content: "\e9f4"; +} +.bx-alarm-off:before { + content: "\e9f5"; +} +.bx-album:before { + content: "\e9f6"; +} +.bx-align-justify:before { + content: "\e9f7"; +} +.bx-align-left:before { + content: "\e9f8"; +} +.bx-align-middle:before { + content: "\e9f9"; +} +.bx-align-right:before { + content: "\e9fa"; +} +.bx-ambulance:before { + content: "\e9fb"; +} +.bx-analyse:before { + content: "\e9fc"; +} +.bx-anchor:before { + content: "\e9fd"; +} +.bx-aperture:before { + content: "\e9fe"; +} +.bx-area:before { + content: "\e9ff"; +} +.bx-arrow-back:before { + content: "\ea00"; +} +.bx-at:before { + content: "\ea01"; +} +.bx-award:before { + content: "\ea02"; +} +.bx-badge:before { + content: "\ea03"; +} +.bx-badge-check:before { + content: "\ea04"; +} +.bx-ball:before { + content: "\ea05"; +} +.bx-band-aid:before { + content: "\ea06"; +} +.bx-bar-chart:before { + content: "\ea07"; +} +.bx-bar-chart-alt:before { + content: "\ea08"; +} +.bx-bar-chart-alt-2:before { + content: "\ea09"; +} +.bx-bar-chart-square:before { + content: "\ea0a"; +} +.bx-barcode:before { + content: "\ea0b"; +} +.bx-basket:before { + content: "\ea0c"; +} +.bx-basketball:before { + content: "\ea0d"; +} +.bx-bath:before { + content: "\ea0e"; +} +.bx-bed:before { + content: "\ea0f"; +} +.bx-bell:before { + content: "\ea10"; +} +.bx-bell-minus:before { + content: "\ea11"; +} +.bx-bell-off:before { + content: "\ea12"; +} +.bx-bell-plus:before { + content: "\ea13"; +} +.bx-bicycle:before { + content: "\ea14"; +} +.bx-block:before { + content: "\ea15"; +} +.bx-bluetooth:before { + content: "\ea16"; +} +.bx-body:before { + content: "\ea17"; +} +.bx-book-open:before { + content: "\ea18"; +} +.bx-border-all:before { + content: "\ea19"; +} +.bx-border-bottom:before { + content: "\ea1a"; +} +.bx-border-left:before { + content: "\ea1b"; +} +.bx-border-right:before { + content: "\ea1c"; +} +.bx-border-top:before { + content: "\ea1d"; +} +.bx-bot:before { + content: "\ea1e"; +} +.bx-bowling-ball:before { + content: "\ea1f"; +} +.bx-box:before { + content: "\ea20"; +} +.bx-brightness:before { + content: "\ea21"; +} +.bx-brightness-half:before { + content: "\ea22"; +} +.bx-broadcast:before { + content: "\ea23"; +} +.bx-brush:before { + content: "\ea24"; +} +.bx-bug:before { + content: "\ea25"; +} +.bx-bug-alt:before { + content: "\ea26"; +} +.bx-building:before { + content: "\ea27"; +} +.bx-bulb:before { + content: "\ea28"; +} +.bx-bullseye:before { + content: "\ea29"; +} +.bx-buoy:before { + content: "\ea2a"; +} +.bx-calculator:before { + content: "\ea2b"; +} +.bx-calendar:before { + content: "\ea2c"; +} +.bx-calendar-alt:before { + content: "\ea2d"; +} +.bx-calendar-check:before { + content: "\ea2e"; +} +.bx-calendar-event:before { + content: "\ea2f"; +} +.bx-calendar-minus:before { + content: "\ea30"; +} +.bx-calendar-plus:before { + content: "\ea31"; +} +.bx-calendar-x:before { + content: "\ea32"; +} +.bx-camera:before { + content: "\ea33"; +} +.bx-camera-off:before { + content: "\ea34"; +} +.bx-captions:before { + content: "\ea35"; +} +.bx-car:before { + content: "\ea36"; +} +.bx-card:before { + content: "\ea37"; +} +.bx-caret-down:before { + content: "\ea38"; +} +.bx-caret-left:before { + content: "\ea39"; +} +.bx-caret-right:before { + content: "\ea3a"; +} +.bx-caret-up:before { + content: "\ea3b"; +} +.bx-carousel:before { + content: "\ea3c"; +} +.bx-cart:before { + content: "\ea3d"; +} +.bx-cart-alt:before { + content: "\ea3e"; +} +.bx-cast:before { + content: "\ea3f"; +} +.bx-certification:before { + content: "\ea40"; +} +.bx-chart:before { + content: "\ea41"; +} +.bx-checkbox:before { + content: "\ea42"; +} +.bx-checkbox-checked:before { + content: "\ea43"; +} +.bx-checkbox-square:before { + content: "\ea44"; +} +.bx-check-circle:before { + content: "\ea45"; +} +.bx-check-double:before { + content: "\ea46"; +} +.bx-check-square:before { + content: "\ea47"; +} +.bx-chevron-down:before { + content: "\ea48"; +} +.bx-chevron-left:before { + content: "\ea49"; +} +.bx-chevron-right:before { + content: "\ea4a"; +} +.bx-chevrons-down:before { + content: "\ea4b"; +} +.bx-chevrons-left:before { + content: "\ea4c"; +} +.bx-chevrons-right:before { + content: "\ea4d"; +} +.bx-chevrons-up:before { + content: "\ea4e"; +} +.bx-chevron-up:before { + content: "\ea4f"; +} +.bx-circle:before { + content: "\ea50"; +} +.bx-cloud:before { + content: "\ea51"; +} +.bx-cloud-download:before { + content: "\ea52"; +} +.bx-cloud-drizzle:before { + content: "\ea53"; +} +.bx-cloud-lightning:before { + content: "\ea54"; +} +.bx-cloud-light-rain:before { + content: "\ea55"; +} +.bx-cloud-rain:before { + content: "\ea56"; +} +.bx-cloud-snow:before { + content: "\ea57"; +} +.bx-cloud-upload:before { + content: "\ea58"; +} +.bx-code:before { + content: "\ea59"; +} +.bx-code-alt:before { + content: "\ea5a"; +} +.bx-code-curly:before { + content: "\ea5b"; +} +.bx-cog:before { + content: "\ea5c"; +} +.bx-collapse:before { + content: "\ea5d"; +} +.bx-collection:before { + content: "\ea5e"; +} +.bx-command:before { + content: "\ea5f"; +} +.bx-compass:before { + content: "\ea60"; +} +.bx-conversation:before { + content: "\ea61"; +} +.bx-copy-alt:before { + content: "\ea62"; +} +.bx-copyright:before { + content: "\ea63"; +} +.bx-crosshair:before { + content: "\ea64"; +} +.bx-crown:before { + content: "\ea65"; +} +.bx-cube:before { + content: "\ea66"; +} +.bx-cube-alt:before { + content: "\ea67"; +} +.bx-cuboid:before { + content: "\ea68"; +} +.bx-customize:before { + content: "\ea69"; +} +.bx-cycling:before { + content: "\ea6a"; +} +.bx-cylinder:before { + content: "\ea6b"; +} +.bx-data:before { + content: "\ea6c"; +} +.bx-devices:before { + content: "\ea6d"; +} +.bx-dialpad:before { + content: "\ea6e"; +} +.bx-dialpad-alt:before { + content: "\ea6f"; +} +.bx-directions:before { + content: "\ea70"; +} +.bx-disc:before { + content: "\ea71"; +} +.bx-dislike:before { + content: "\ea72"; +} +.bx-dna:before { + content: "\ea73"; +} +.bx-dock-bottom:before { + content: "\ea74"; +} +.bx-dock-left:before { + content: "\ea75"; +} +.bx-dock-right:before { + content: "\ea76"; +} +.bx-dock-top:before { + content: "\ea77"; +} +.bx-dollar-circle:before { + content: "\ea78"; +} +.bx-dots-horizontal:before { + content: "\ea79"; +} +.bx-dots-horizontal-rounded:before { + content: "\ea7a"; +} +.bx-dots-vertical:before { + content: "\ea7b"; +} +.bx-dots-vertical-rounded:before { + content: "\ea7c"; +} +.bx-doughnut-chart:before { + content: "\ea7d"; +} +.bx-down-arrow:before { + content: "\ea7e"; +} +.bx-down-arrow-alt:before { + content: "\ea7f"; +} +.bx-down-arrow-circle:before { + content: "\ea80"; +} +.bx-download:before { + content: "\ea81"; +} +.bx-droplet:before { + content: "\ea82"; +} +.bx-dumbbell:before { + content: "\ea83"; +} +.bx-duplicate:before { + content: "\ea84"; +} +.bx-envelope:before { + content: "\ea85"; +} +.bx-equalizer:before { + content: "\ea86"; +} +.bx-error:before { + content: "\ea87"; +} +.bx-error-alt:before { + content: "\ea88"; +} +.bx-error-circle:before { + content: "\ea89"; +} +.bx-exit-fullscreen:before { + content: "\ea8a"; +} +.bx-expand:before { + content: "\ea8b"; +} +.bx-export:before { + content: "\ea8c"; +} +.bx-fast-forward:before { + content: "\ea8d"; +} +.bx-female:before { + content: "\ea8e"; +} +.bx-file:before { + content: "\ea8f"; +} +.bx-file-blank:before { + content: "\ea90"; +} +.bx-film:before { + content: "\ea91"; +} +.bx-filter:before { + content: "\ea92"; +} +.bx-filter-alt:before { + content: "\ea93"; +} +.bx-fingerprint:before { + content: "\ea94"; +} +.bx-first-aid:before { + content: "\ea95"; +} +.bx-first-page:before { + content: "\ea96"; +} +.bx-folder:before { + content: "\ea97"; +} +.bx-folder-minus:before { + content: "\ea98"; +} +.bx-folder-open:before { + content: "\ea99"; +} +.bx-folder-plus:before { + content: "\ea9a"; +} +.bx-font-color:before { + content: "\ea9b"; +} +.bx-football:before { + content: "\ea9c"; +} +.bx-ghost:before { + content: "\ea9d"; +} +.bx-gift:before { + content: "\ea9e"; +} +.bx-git-branch:before { + content: "\ea9f"; +} +.bx-git-commit:before { + content: "\eaa0"; +} +.bx-git-compare:before { + content: "\eaa1"; +} +.bx-git-merge:before { + content: "\eaa2"; +} +.bx-git-pull-request:before { + content: "\eaa3"; +} +.bx-git-repo-forked:before { + content: "\eaa4"; +} +.bx-globe:before { + content: "\eaa5"; +} +.bx-globe-alt:before { + content: "\eaa6"; +} +.bx-grid:before { + content: "\eaa7"; +} +.bx-grid-alt:before { + content: "\eaa8"; +} +.bx-grid-horizontal:before { + content: "\eaa9"; +} +.bx-grid-small:before { + content: "\eaaa"; +} +.bx-grid-vertical:before { + content: "\eaab"; +} +.bx-group:before { + content: "\eaac"; +} +.bx-handicap:before { + content: "\eaad"; +} +.bx-hash:before { + content: "\eaae"; +} +.bx-headphone:before { + content: "\eaaf"; +} +.bx-heart:before { + content: "\eab0"; +} +.bx-help-circle:before { + content: "\eab1"; +} +.bx-hide:before { + content: "\eab2"; +} +.bx-highlight:before { + content: "\eab3"; +} +.bx-history:before { + content: "\eab4"; +} +.bx-hive:before { + content: "\eab5"; +} +.bx-home:before { + content: "\eab6"; +} +.bx-home-alt:before { + content: "\eab7"; +} +.bx-home-circle:before { + content: "\eab8"; +} +.bx-horizontal-center:before { + content: "\eab9"; +} +.bx-hotel:before { + content: "\eaba"; +} +.bx-hourglass:before { + content: "\eabb"; +} +.bx-image:before { + content: "\eabc"; +} +.bx-import:before { + content: "\eabd"; +} +.bx-infinite:before { + content: "\eabe"; +} +.bx-info-circle:before { + content: "\eabf"; +} +.bx-joystick:before { + content: "\eac0"; +} +.bx-joystick-alt:before { + content: "\eac1"; +} +.bx-joystick-button:before { + content: "\eac2"; +} +.bx-key:before { + content: "\eac3"; +} +.bx-landscape:before { + content: "\eac4"; +} +.bx-last-page:before { + content: "\eac5"; +} +.bx-layer:before { + content: "\eac6"; +} +.bx-layout:before { + content: "\eac7"; +} +.bx-left-arrow:before { + content: "\eac8"; +} +.bx-left-arrow-alt:before { + content: "\eac9"; +} +.bx-left-arrow-circle:before { + content: "\eaca"; +} +.bx-left-down-arrow-circle:before { + content: "\eacb"; +} +.bx-left-indent:before { + content: "\eacc"; +} +.bx-left-top-arrow-circle:before { + content: "\eacd"; +} +.bx-like:before { + content: "\eace"; +} +.bx-line-chart:before { + content: "\eacf"; +} +.bx-link:before { + content: "\ead0"; +} +.bx-link-alt:before { + content: "\ead1"; +} +.bx-link-external:before { + content: "\ead2"; +} +.bx-list-check:before { + content: "\ead3"; +} +.bx-list-ol:before { + content: "\ead4"; +} +.bx-list-plus:before { + content: "\ead5"; +} +.bx-list-ul:before { + content: "\ead6"; +} +.bx-list-x:before { + content: "\ead7"; +} +.bx-loader:before { + content: "\ead8"; +} +.bx-loader-alt:before { + content: "\ead9"; +} +.bx-loader-circle:before { + content: "\eada"; +} +.bx-lock:before { + content: "\eadb"; +} +.bx-lock-alt:before { + content: "\eadc"; +} +.bx-lock-open:before { + content: "\eadd"; +} +.bx-lock-open-alt:before { + content: "\eade"; +} +.bx-log-in:before { + content: "\eadf"; +} +.bx-log-in-circle:before { + content: "\eae0"; +} +.bx-log-out:before { + content: "\eae1"; +} +.bx-log-out-circle:before { + content: "\eae2"; +} +.bx-magnet:before { + content: "\eae3"; +} +.bx-mail-send:before { + content: "\eae4"; +} +.bx-male:before { + content: "\eae5"; +} +.bx-map:before { + content: "\eae6"; +} +.bx-map-pin:before { + content: "\eae7"; +} +.bx-memory-card:before { + content: "\eae8"; +} +.bx-menu:before { + content: "\eae9"; +} +.bx-menu-alt-left:before { + content: "\eaea"; +} +.bx-menu-alt-right:before { + content: "\eaeb"; +} +.bx-message-square:before { + content: "\eaec"; +} +.bx-message-square-dots:before { + content: "\eaed"; +} +.bx-microphone:before { + content: "\eaee"; +} +.bx-microphone-off:before { + content: "\eaef"; +} +.bx-minus-circle:before { + content: "\eaf0"; +} +.bx-mobile:before { + content: "\eaf1"; +} +.bx-mobile-landscape:before { + content: "\eaf2"; +} +.bx-mobile-vibration:before { + content: "\eaf3"; +} +.bx-moon:before { + content: "\eaf4"; +} +.bx-mouse:before { + content: "\eaf5"; +} +.bx-mouse-alt:before { + content: "\eaf6"; +} +.bx-move:before { + content: "\eaf7"; +} +.bx-music:before { + content: "\eaf8"; +} +.bx-navigation:before { + content: "\eaf9"; +} +.bx-no-entry:before { + content: "\eafa"; +} +.bx-note:before { + content: "\eafb"; +} +.bx-notification-off:before { + content: "\eafc"; +} +.bx-package:before { + content: "\eafd"; +} +.bx-paint:before { + content: "\eafe"; +} +.bx-paint-roll:before { + content: "\eaff"; +} +.bx-palette:before { + content: "\eb00"; +} +.bx-paperclip:before { + content: "\eb01"; +} +.bx-paper-plane:before { + content: "\eb02"; +} +.bx-pause:before { + content: "\eb03"; +} +.bx-pause-circle:before { + content: "\eb04"; +} +.bx-pen:before { + content: "\eb05"; +} +.bx-pencil:before { + content: "\eb06"; +} +.bx-phone:before { + content: "\eb07"; +} +.bx-phone-call:before { + content: "\eb08"; +} +.bx-phone-incoming:before { + content: "\eb09"; +} +.bx-phone-outgoing:before { + content: "\eb0a"; +} +.bx-pie-chart:before { + content: "\eb0b"; +} +.bx-pie-chart-alt:before { + content: "\eb0c"; +} +.bx-pie-chart-alt-2:before { + content: "\eb0d"; +} +.bx-pin:before { + content: "\eb0e"; +} +.bx-planet:before { + content: "\eb0f"; +} +.bx-play:before { + content: "\eb10"; +} +.bx-plug:before { + content: "\eb11"; +} +.bx-plus-circle:before { + content: "\eb12"; +} +.bx-plus-medical:before { + content: "\eb13"; +} +.bx-poll:before { + content: "\eb14"; +} +.bx-polygon:before { + content: "\eb15"; +} +.bx-power-off:before { + content: "\eb16"; +} +.bx-purchase-tag-alt:before { + content: "\eb17"; +} +.bx-pyramid:before { + content: "\eb18"; +} +.bx-question-mark:before { + content: "\eb19"; +} +.bx-radar:before { + content: "\eb1a"; +} +.bx-radio-circle:before { + content: "\eb1b"; +} +.bx-radio-circle-marked:before { + content: "\eb1c"; +} +.bx-receipt:before { + content: "\eb1d"; +} +.bx-redo:before { + content: "\eb1e"; +} +.bx-reset:before { + content: "\eb1f"; +} +.bx-revision:before { + content: "\eb20"; +} +.bx-rewind:before { + content: "\eb21"; +} +.bx-right-arrow:before { + content: "\eb22"; +} +.bx-right-arrow-alt:before { + content: "\eb23"; +} +.bx-right-arrow-circle:before { + content: "\eb24"; +} +.bx-right-down-arrow-circle:before { + content: "\eb25"; +} +.bx-right-indent:before { + content: "\eb26"; +} +.bx-right-top-arrow-circle:before { + content: "\eb27"; +} +.bx-rocket:before { + content: "\eb28"; +} +.bx-rotate-left:before { + content: "\eb29"; +} +.bx-rotate-right:before { + content: "\eb2a"; +} +.bx-rss:before { + content: "\eb2b"; +} +.bx-run:before { + content: "\eb2c"; +} +.bx-save:before { + content: "\eb2d"; +} +.bx-search:before { + content: "\eb2e"; +} +.bx-search-alt:before { + content: "\eb2f"; +} +.bx-search-alt-2:before { + content: "\eb30"; +} +.bx-selection:before { + content: "\eb31"; +} +.bx-select-multiple:before { + content: "\eb32"; +} +.bx-send:before { + content: "\eb33"; +} +.bx-server:before { + content: "\eb34"; +} +.bx-shape-circle:before { + content: "\eb35"; +} +.bx-shape-square:before { + content: "\eb36"; +} +.bx-shape-triangle:before { + content: "\eb37"; +} +.bx-share:before { + content: "\eb38"; +} +.bx-share-alt:before { + content: "\eb39"; +} +.bx-shield:before { + content: "\eb3a"; +} +.bx-shield-alt:before { + content: "\eb3b"; +} +.bx-shield-alt-2:before { + content: "\eb3c"; +} +.bx-show:before { + content: "\eb3d"; +} +.bx-show-alt:before { + content: "\eb3e"; +} +.bx-skip-next:before { + content: "\eb3f"; +} +.bx-skip-previous:before { + content: "\eb40"; +} +.bx-slider:before { + content: "\eb41"; +} +.bx-slider-alt:before { + content: "\eb42"; +} +.bx-slideshow:before { + content: "\eb43"; +} +.bx-spreadsheet:before { + content: "\eb44"; +} +.bx-square:before { + content: "\eb45"; +} +.bx-square-rounded:before { + content: "\eb46"; +} +.bx-star:before { + content: "\eb47"; +} +.bx-station:before { + content: "\eb48"; +} +.bx-stats:before { + content: "\eb49"; +} +.bx-stop:before { + content: "\eb4a"; +} +.bx-stopwatch:before { + content: "\eb4b"; +} +.bx-store:before { + content: "\eb4c"; +} +.bx-store-alt:before { + content: "\eb4d"; +} +.bx-street-view:before { + content: "\eb4e"; +} +.bx-strikethrough:before { + content: "\eb4f"; +} +.bx-sun:before { + content: "\eb50"; +} +.bx-swim:before { + content: "\eb51"; +} +.bx-sync:before { + content: "\eb52"; +} +.bx-tab:before { + content: "\eb53"; +} +.bx-target-lock:before { + content: "\eb54"; +} +.bx-taxi:before { + content: "\eb55"; +} +.bx-tennis-ball:before { + content: "\eb56"; +} +.bx-test-tube:before { + content: "\eb57"; +} +.bx-time:before { + content: "\eb58"; +} +.bx-time-five:before { + content: "\eb59"; +} +.bx-timer:before { + content: "\eb5a"; +} +.bx-toggle-left:before { + content: "\eb5b"; +} +.bx-toggle-right:before { + content: "\eb5c"; +} +.bx-traffic-barrier:before { + content: "\eb5d"; +} +.bx-train:before { + content: "\eb5e"; +} +.bx-transfer:before { + content: "\eb5f"; +} +.bx-transfer-alt:before { + content: "\eb60"; +} +.bx-trash:before { + content: "\eb61"; +} +.bx-trash-alt:before { + content: "\eb62"; +} +.bx-trending-down:before { + content: "\eb63"; +} +.bx-trending-up:before { + content: "\eb64"; +} +.bx-trophy:before { + content: "\eb65"; +} +.bx-truck:before { + content: "\eb66"; +} +.bx-undo:before { + content: "\eb67"; +} +.bx-unlink:before { + content: "\eb68"; +} +.bx-up-arrow:before { + content: "\eb69"; +} +.bx-up-arrow-alt:before { + content: "\eb6a"; +} +.bx-up-arrow-circle:before { + content: "\eb6b"; +} +.bx-upload:before { + content: "\eb6c"; +} +.bx-user:before { + content: "\eb6d"; +} +.bx-user-check:before { + content: "\eb6e"; +} +.bx-user-circle:before { + content: "\eb6f"; +} +.bx-user-minus:before { + content: "\eb70"; +} +.bx-user-pin:before { + content: "\eb71"; +} +.bx-user-plus:before { + content: "\eb72"; +} +.bx-user-voice:before { + content: "\eb73"; +} +.bx-user-x:before { + content: "\eb74"; +} +.bx-vertical-center:before { + content: "\eb75"; +} +.bx-video:before { + content: "\eb76"; +} +.bx-video-off:before { + content: "\eb77"; +} +.bx-video-plus:before { + content: "\eb78"; +} +.bx-video-recording:before { + content: "\eb79"; +} +.bx-voicemail:before { + content: "\eb7a"; +} +.bx-volume:before { + content: "\eb7b"; +} +.bx-volume-full:before { + content: "\eb7c"; +} +.bx-volume-low:before { + content: "\eb7d"; +} +.bx-volume-mute:before { + content: "\eb7e"; +} +.bx-walk:before { + content: "\eb7f"; +} +.bx-water:before { + content: "\eb80"; +} +.bx-wifi:before { + content: "\eb81"; +} +.bx-wifi-off:before { + content: "\eb82"; +} +.bx-wind:before { + content: "\eb83"; +} +.bx-x-circle:before { + content: "\eb84"; +} +.bx-zoom-in:before { + content: "\eb85"; +} +.bx-zoom-out:before { + content: "\eb86"; +} +.bxs-archive:before { + content: "\eb87"; +} +.bxs-archive-out:before { + content: "\eb88"; +} +.bxs-archive-in:before { + content: "\eb89"; +} +.bxs-city:before { + content: "\eb8a"; +} +.bxs-cake:before { + content: "\eb8b"; +} +.bxs-spa:before { + content: "\eb8c"; +} +.bxs-dish:before { + content: "\eb8d"; +} +.bxs-fridge:before { + content: "\eb8e"; +} +.bxs-image-add:before { + content: "\eb8f"; +} +.bxs-alarm-add:before { + content: "\eb90"; +} +.bxs-add-to-queue:before { + content: "\eb91"; +} +.bxs-bolt-circle:before { + content: "\eb92"; +} +.bxs-check-shield:before { + content: "\eb93"; +} +.bxs-file-find:before { + content: "\eb94"; +} +.bxs-label:before { + content: "\eb95"; +} +.bxs-exit:before { + content: "\eb96"; +} +.bxs-extension:before { + content: "\eb97"; +} +.bxs-face:before { + content: "\eb98"; +} +.bxs-downvote:before { + content: "\eb99"; +} +.bxs-upvote:before { + content: "\eb9a"; +} +.bxs-user-circle:before { + content: "\eb9b"; +} +.bxs-cart:before { + content: "\eb9c"; +} +.bxs-magnet:before { + content: "\eb9d"; +} +.bxs-briefcase:before { + content: "\eb9e"; +} +.bxs-book:before { + content: "\eb9f"; +} +.bxs-watch:before { + content: "\eba0"; +} +.bxs-wallet-alt:before { + content: "\eba1"; +} +.bxs-edit:before { + content: "\eba2"; +} +.bxs-shield-alt-2:before { + content: "\eba3"; +} +.bxs-building-house:before { + content: "\eba4"; +} +.bxs-star:before { + content: "\eba5"; +} +.bxs-bar-chart-alt-2:before { + content: "\eba6"; +} +.bxs-message-rounded-dots:before { + content: "\eba7"; +} +.bxs-message-rounded:before { + content: "\eba8"; +} +.bxs-brush-alt:before { + content: "\eba9"; +} +.bxs-message-alt-dots:before { + content: "\ebaa"; +} +.bxs-message-alt:before { + content: "\ebab"; +} +.bxs-brush:before { + content: "\ebac"; +} +.bxs-gas-pump:before { + content: "\ebad"; +} +.bxs-megaphone:before { + content: "\ebae"; +} +.bxs-ship:before { + content: "\ebaf"; +} +.bxs-bath:before { + content: "\ebb0"; +} +.bxs-bed:before { + content: "\ebb1"; +} +.bxs-photo-album:before { + content: "\ebb2"; +} +.bxs-grid-alt:before { + content: "\ebb3"; +} +.bxs-sort-alt:before { + content: "\ebb4"; +} +.bxs-wallet:before { + content: "\ebb5"; +} +.bxs-categories:before { + content: "\ebb6"; +} +.bxs-movie:before { + content: "\ebb7"; +} +.bxs-watch-alt:before { + content: "\ebb8"; +} +.bxs-buildings:before { + content: "\ebb9"; +} +.bxs-chat:before { + content: "\ebba"; +} +.bxs-briefcase-alt:before { + content: "\ebbb"; +} +.bxs-book-content:before { + content: "\ebbc"; +} +.bxs-message-dots:before { + content: "\ebbd"; +} +.bxs-edit-alt:before { + content: "\ebbe"; +} +.bxs-notepad:before { + content: "\ebbf"; +} +.bxs-briefcase-alt-2:before { + content: "\ebc0"; +} +.bxs-credit-card:before { + content: "\ebc1"; +} +.bxs-credit-card-alt:before { + content: "\ebc2"; +} +.bxs-no-entry:before { + content: "\ebc3"; +} +.bxs-battery-charging:before { + content: "\ebc4"; +} +.bxs-battery-full:before { + content: "\ebc5"; +} +.bxs-hdd:before { + content: "\ebc6"; +} +.bxs-news:before { + content: "\ebc7"; +} +.bxs-ruler:before { + content: "\ebc8"; +} +.bxs-filter-alt:before { + content: "\ebc9"; +} +.bxs-purchase-tag:before { + content: "\ebca"; +} +.bxs-battery-low:before { + content: "\ebcb"; +} +.bxs-chip:before { + content: "\ebcc"; +} +.bxs-rename:before { + content: "\ebcd"; +} +.bxs-battery:before { + content: "\ebce"; +} +.bxs-flag:before { + content: "\ebcf"; +} +.bxs-wrench:before { + content: "\ebd0"; +} +.bxs-t-shirt:before { + content: "\ebd1"; +} +.bxs-paste:before { + content: "\ebd2"; +} +.bxs-share:before { + content: "\ebd3"; +} +.bxs-bolt:before { + content: "\ebd4"; +} +.bxs-coffee-alt:before { + content: "\ebd5"; +} +.bxs-pin:before { + content: "\ebd6"; +} +.bxs-shopping-bag:before { + content: "\ebd7"; +} +.bxs-shopping-bag-alt:before { + content: "\ebd8"; +} +.bxs-trophy:before { + content: "\ebd9"; +} +.bxs-coupon:before { + content: "\ebda"; +} +.bxs-discount:before { + content: "\ebdb"; +} +.bxs-inbox:before { + content: "\ebdc"; +} +.bxs-widget:before { + content: "\ebdd"; +} +.bxs-printer:before { + content: "\ebde"; +} +.bxs-radio:before { + content: "\ebdf"; +} +.bxs-terminal:before { + content: "\ebe0"; +} +.bxs-message:before { + content: "\ebe1"; +} +.bxs-tag:before { + content: "\ebe2"; +} +.bxs-tag-x:before { + content: "\ebe3"; +} +.bxs-building:before { + content: "\ebe4"; +} +.bxs-book-bookmark:before { + content: "\ebe5"; +} +.bxs-bus:before { + content: "\ebe6"; +} +.bxs-copy-alt:before { + content: "\ebe7"; +} +.bxs-coffee:before { + content: "\ebe8"; +} +.bxs-copy:before { + content: "\ebe9"; +} +.bxs-x-circle:before { + content: "\ebea"; +} +.bxs-zoom-out:before { + content: "\ebeb"; +} +.bxs-adjust:before { + content: "\ebec"; +} +.bxs-adjust-alt:before { + content: "\ebed"; +} +.bxs-alarm:before { + content: "\ebee"; +} +.bxs-alarm-off:before { + content: "\ebef"; +} +.bxs-album:before { + content: "\ebf0"; +} +.bxs-ambulance:before { + content: "\ebf1"; +} +.bxs-analyse:before { + content: "\ebf2"; +} +.bxs-area:before { + content: "\ebf3"; +} +.bxs-award:before { + content: "\ebf4"; +} +.bxs-badge:before { + content: "\ebf5"; +} +.bxs-badge-check:before { + content: "\ebf6"; +} +.bxs-ball:before { + content: "\ebf7"; +} +.bxs-band-aid:before { + content: "\ebf8"; +} +.bxs-bank:before { + content: "\ebf9"; +} +.bxs-bar-chart-square:before { + content: "\ebfa"; +} +.bxs-barcode:before { + content: "\ebfb"; +} +.bxs-basket:before { + content: "\ebfc"; +} +.bxs-bell:before { + content: "\ebfd"; +} +.bxs-bell-minus:before { + content: "\ebfe"; +} +.bxs-bell-off:before { + content: "\ebff"; +} +.bxs-bell-plus:before { + content: "\ec00"; +} +.bxs-bell-ring:before { + content: "\ec01"; +} +.bxs-bookmark:before { + content: "\ec02"; +} +.bxs-bookmark-minus:before { + content: "\ec03"; +} +.bxs-bookmark-plus:before { + content: "\ec04"; +} +.bxs-bookmarks:before { + content: "\ec05"; +} +.bxs-bookmark-star:before { + content: "\ec06"; +} +.bxs-book-open:before { + content: "\ec07"; +} +.bxs-bot:before { + content: "\ec08"; +} +.bxs-bowling-ball:before { + content: "\ec09"; +} +.bxs-box:before { + content: "\ec0a"; +} +.bxs-brightness:before { + content: "\ec0b"; +} +.bxs-brightness-half:before { + content: "\ec0c"; +} +.bxs-bug:before { + content: "\ec0d"; +} +.bxs-bug-alt:before { + content: "\ec0e"; +} +.bxs-bulb:before { + content: "\ec0f"; +} +.bxs-buoy:before { + content: "\ec10"; +} +.bxs-calculator:before { + content: "\ec11"; +} +.bxs-calendar:before { + content: "\ec12"; +} +.bxs-calendar-alt:before { + content: "\ec13"; +} +.bxs-calendar-check:before { + content: "\ec14"; +} +.bxs-calendar-event:before { + content: "\ec15"; +} +.bxs-calendar-minus:before { + content: "\ec16"; +} +.bxs-calendar-plus:before { + content: "\ec17"; +} +.bxs-calendar-x:before { + content: "\ec18"; +} +.bxs-camera:before { + content: "\ec19"; +} +.bxs-camera-off:before { + content: "\ec1a"; +} +.bxs-capsule:before { + content: "\ec1b"; +} +.bxs-captions:before { + content: "\ec1c"; +} +.bxs-car:before { + content: "\ec1d"; +} +.bxs-card:before { + content: "\ec1e"; +} +.bxs-carousel:before { + content: "\ec1f"; +} +.bxs-cart-alt:before { + content: "\ec20"; +} +.bxs-certification:before { + content: "\ec21"; +} +.bxs-chalkboard:before { + content: "\ec22"; +} +.bxs-chart:before { + content: "\ec23"; +} +.bxs-checkbox:before { + content: "\ec24"; +} +.bxs-checkbox-checked:before { + content: "\ec25"; +} +.bxs-check-circle:before { + content: "\ec26"; +} +.bxs-check-square:before { + content: "\ec27"; +} +.bxs-circle:before { + content: "\ec28"; +} +.bxs-cloud:before { + content: "\ec29"; +} +.bxs-cloud-download:before { + content: "\ec2a"; +} +.bxs-cloud-lightning:before { + content: "\ec2b"; +} +.bxs-cloud-rain:before { + content: "\ec2c"; +} +.bxs-cloud-upload:before { + content: "\ec2d"; +} +.bxs-cog:before { + content: "\ec2e"; +} +.bxs-collection:before { + content: "\ec2f"; +} +.bxs-color-fill:before { + content: "\ec30"; +} +.bxs-comment:before { + content: "\ec31"; +} +.bxs-comment-add:before { + content: "\ec32"; +} +.bxs-comment-detail:before { + content: "\ec33"; +} +.bxs-comment-dots:before { + content: "\ec34"; +} +.bxs-comment-error:before { + content: "\ec35"; +} +.bxs-compass:before { + content: "\ec36"; +} +.bxs-component:before { + content: "\ec37"; +} +.bxs-contact:before { + content: "\ec38"; +} +.bxs-conversation:before { + content: "\ec39"; +} +.bxs-crown:before { + content: "\ec3a"; +} +.bxs-cube:before { + content: "\ec3b"; +} +.bxs-cube-alt:before { + content: "\ec3c"; +} +.bxs-cuboid:before { + content: "\ec3d"; +} +.bxs-customize:before { + content: "\ec3e"; +} +.bxs-cylinder:before { + content: "\ec3f"; +} +.bxs-dashboard:before { + content: "\ec40"; +} +.bxs-data:before { + content: "\ec41"; +} +.bxs-detail:before { + content: "\ec42"; +} +.bxs-devices:before { + content: "\ec43"; +} +.bxs-direction-left:before { + content: "\ec44"; +} +.bxs-direction-right:before { + content: "\ec45"; +} +.bxs-directions:before { + content: "\ec46"; +} +.bxs-disc:before { + content: "\ec47"; +} +.bxs-dislike:before { + content: "\ec48"; +} +.bxs-dock-bottom:before { + content: "\ec49"; +} +.bxs-dock-left:before { + content: "\ec4a"; +} +.bxs-dock-right:before { + content: "\ec4b"; +} +.bxs-dock-top:before { + content: "\ec4c"; +} +.bxs-dollar-circle:before { + content: "\ec4d"; +} +.bxs-doughnut-chart:before { + content: "\ec4e"; +} +.bxs-down-arrow:before { + content: "\ec4f"; +} +.bxs-down-arrow-circle:before { + content: "\ec50"; +} +.bxs-down-arrow-square:before { + content: "\ec51"; +} +.bxs-download:before { + content: "\ec52"; +} +.bxs-drink:before { + content: "\ec53"; +} +.bxs-droplet:before { + content: "\ec54"; +} +.bxs-droplet-half:before { + content: "\ec55"; +} +.bxs-duplicate:before { + content: "\ec56"; +} +.bxs-eject:before { + content: "\ec57"; +} +.bxs-envelope:before { + content: "\ec58"; +} +.bxs-eraser:before { + content: "\ec59"; +} +.bxs-error:before { + content: "\ec5a"; +} +.bxs-error-alt:before { + content: "\ec5b"; +} +.bxs-error-circle:before { + content: "\ec5c"; +} +.bxs-eyedropper:before { + content: "\ec5d"; +} +.bxs-factory:before { + content: "\ec5e"; +} +.bxs-fast-forward-circle:before { + content: "\ec5f"; +} +.bxs-file:before { + content: "\ec60"; +} +.bxs-file-blank:before { + content: "\ec61"; +} +.bxs-file-css:before { + content: "\ec62"; +} +.bxs-file-doc:before { + content: "\ec63"; +} +.bxs-file-gif:before { + content: "\ec64"; +} +.bxs-file-html:before { + content: "\ec65"; +} +.bxs-file-image:before { + content: "\ec66"; +} +.bxs-file-jpg:before { + content: "\ec67"; +} +.bxs-file-js:before { + content: "\ec68"; +} +.bxs-file-json:before { + content: "\ec69"; +} +.bxs-file-md:before { + content: "\ec6a"; +} +.bxs-file-pdf:before { + content: "\ec6b"; +} +.bxs-file-plus:before { + content: "\ec6c"; +} +.bxs-file-png:before { + content: "\ec6d"; +} +.bxs-file-txt:before { + content: "\ec6e"; +} +.bxs-film:before { + content: "\ec6f"; +} +.bxs-first-aid:before { + content: "\ec70"; +} +.bxs-flag-alt:before { + content: "\ec71"; +} +.bxs-flame:before { + content: "\ec72"; +} +.bxs-flask:before { + content: "\ec73"; +} +.bxs-folder:before { + content: "\ec74"; +} +.bxs-folder-minus:before { + content: "\ec75"; +} +.bxs-folder-open:before { + content: "\ec76"; +} +.bxs-folder-plus:before { + content: "\ec77"; +} +.bxs-ghost:before { + content: "\ec78"; +} +.bxs-gift:before { + content: "\ec79"; +} +.bxs-graduation:before { + content: "\ec7a"; +} +.bxs-grid:before { + content: "\ec7b"; +} +.bxs-group:before { + content: "\ec7c"; +} +.bxs-heart:before { + content: "\ec7d"; +} +.bxs-help-circle:before { + content: "\ec7e"; +} +.bxs-hide:before { + content: "\ec7f"; +} +.bxs-home:before { + content: "\ec80"; +} +.bxs-home-circle:before { + content: "\ec81"; +} +.bxs-hot:before { + content: "\ec82"; +} +.bxs-hotel:before { + content: "\ec83"; +} +.bxs-hourglass:before { + content: "\ec84"; +} +.bxs-hourglass-bottom:before { + content: "\ec85"; +} +.bxs-hourglass-top:before { + content: "\ec86"; +} +.bxs-id-card:before { + content: "\ec87"; +} +.bxs-image:before { + content: "\ec88"; +} +.bxs-image-alt:before { + content: "\ec89"; +} +.bxs-info-circle:before { + content: "\ec8a"; +} +.bxs-institution:before { + content: "\ec8b"; +} +.bxs-joystick:before { + content: "\ec8c"; +} +.bxs-joystick-alt:before { + content: "\ec8d"; +} +.bxs-joystick-button:before { + content: "\ec8e"; +} +.bxs-key:before { + content: "\ec8f"; +} +.bxs-keyboard:before { + content: "\ec90"; +} +.bxs-landmark:before { + content: "\ec91"; +} +.bxs-landscape:before { + content: "\ec92"; +} +.bxs-layer:before { + content: "\ec93"; +} +.bxs-layout:before { + content: "\ec94"; +} +.bxs-left-arrow:before { + content: "\ec95"; +} +.bxs-left-arrow-circle:before { + content: "\ec96"; +} +.bxs-left-arrow-square:before { + content: "\ec97"; +} +.bxs-left-down-arrow-circle:before { + content: "\ec98"; +} +.bxs-left-top-arrow-circle:before { + content: "\ec99"; +} +.bxs-like:before { + content: "\ec9a"; +} +.bxs-lock:before { + content: "\ec9b"; +} +.bxs-lock-alt:before { + content: "\ec9c"; +} +.bxs-lock-open:before { + content: "\ec9d"; +} +.bxs-lock-open-alt:before { + content: "\ec9e"; +} +.bxs-log-in:before { + content: "\ec9f"; +} +.bxs-log-in-circle:before { + content: "\eca0"; +} +.bxs-log-out:before { + content: "\eca1"; +} +.bxs-log-out-circle:before { + content: "\eca2"; +} +.bxs-magic-wand:before { + content: "\eca3"; +} +.bxs-map:before { + content: "\eca4"; +} +.bxs-map-alt:before { + content: "\eca5"; +} +.bxs-map-pin:before { + content: "\eca6"; +} +.bxs-memory-card:before { + content: "\eca7"; +} +.bxs-message-square:before { + content: "\eca8"; +} +.bxs-message-square-dots:before { + content: "\eca9"; +} +.bxs-microphone:before { + content: "\ecaa"; +} +.bxs-microphone-alt:before { + content: "\ecab"; +} +.bxs-microphone-off:before { + content: "\ecac"; +} +.bxs-minus-circle:before { + content: "\ecad"; +} +.bxs-minus-square:before { + content: "\ecae"; +} +.bxs-mobile:before { + content: "\ecaf"; +} +.bxs-mobile-vibration:before { + content: "\ecb0"; +} +.bxs-moon:before { + content: "\ecb1"; +} +.bxs-mouse:before { + content: "\ecb2"; +} +.bxs-mouse-alt:before { + content: "\ecb3"; +} +.bxs-music:before { + content: "\ecb4"; +} +.bxs-navigation:before { + content: "\ecb5"; +} +.bxs-note:before { + content: "\ecb6"; +} +.bxs-notification:before { + content: "\ecb7"; +} +.bxs-notification-off:before { + content: "\ecb8"; +} +.bxs-package:before { + content: "\ecb9"; +} +.bxs-paint:before { + content: "\ecba"; +} +.bxs-paint-roll:before { + content: "\ecbb"; +} +.bxs-palette:before { + content: "\ecbc"; +} +.bxs-paper-plane:before { + content: "\ecbd"; +} +.bxs-parking:before { + content: "\ecbe"; +} +.bxs-pen:before { + content: "\ecbf"; +} +.bxs-pencil:before { + content: "\ecc0"; +} +.bxs-phone:before { + content: "\ecc1"; +} +.bxs-phone-call:before { + content: "\ecc2"; +} +.bxs-phone-incoming:before { + content: "\ecc3"; +} +.bxs-phone-outgoing:before { + content: "\ecc4"; +} +.bxs-pie-chart:before { + content: "\ecc5"; +} +.bxs-pie-chart-alt:before { + content: "\ecc6"; +} +.bxs-pie-chart-alt-2:before { + content: "\ecc7"; +} +.bxs-plane:before { + content: "\ecc8"; +} +.bxs-plane-alt:before { + content: "\ecc9"; +} +.bxs-plane-land:before { + content: "\ecca"; +} +.bxs-planet:before { + content: "\eccb"; +} +.bxs-plane-take-off:before { + content: "\eccc"; +} +.bxs-playlist:before { + content: "\eccd"; +} +.bxs-plug:before { + content: "\ecce"; +} +.bxs-plus-circle:before { + content: "\eccf"; +} +.bxs-plus-square:before { + content: "\ecd0"; +} +.bxs-polygon:before { + content: "\ecd1"; +} +.bxs-purchase-tag-alt:before { + content: "\ecd2"; +} +.bxs-pyramid:before { + content: "\ecd3"; +} +.bxs-quote-alt-left:before { + content: "\ecd4"; +} +.bxs-quote-alt-right:before { + content: "\ecd5"; +} +.bxs-quote-left:before { + content: "\ecd6"; +} +.bxs-quote-right:before { + content: "\ecd7"; +} +.bxs-quote-single-left:before { + content: "\ecd8"; +} +.bxs-quote-single-right:before { + content: "\ecd9"; +} +.bxs-receipt:before { + content: "\ecda"; +} +.bxs-rectangle:before { + content: "\ecdb"; +} +.bxs-report:before { + content: "\ecdc"; +} +.bxs-rewind-circle:before { + content: "\ecdd"; +} +.bxs-right-arrow:before { + content: "\ecde"; +} +.bxs-right-arrow-circle:before { + content: "\ecdf"; +} +.bxs-right-arrow-square:before { + content: "\ece0"; +} +.bxs-right-down-arrow-circle:before { + content: "\ece1"; +} +.bxs-right-top-arrow-circle:before { + content: "\ece2"; +} +.bxs-rocket:before { + content: "\ece3"; +} +.bxs-save:before { + content: "\ece4"; +} +.bxs-school:before { + content: "\ece5"; +} +.bxs-search:before { + content: "\ece6"; +} +.bxs-search-alt-2:before { + content: "\ece7"; +} +.bxs-select-multiple:before { + content: "\ece8"; +} +.bxs-send:before { + content: "\ece9"; +} +.bxs-server:before { + content: "\ecea"; +} +.bxs-share-alt:before { + content: "\eceb"; +} +.bxs-shield:before { + content: "\ecec"; +} +.bxs-show:before { + content: "\eced"; +} +.bxs-skip-next-circle:before { + content: "\ecee"; +} +.bxs-skip-previous-circle:before { + content: "\ecef"; +} +.bxs-skull:before { + content: "\ecf0"; +} +.bxs-slideshow:before { + content: "\ecf1"; +} +.bxs-smiley-happy:before { + content: "\ecf2"; +} +.bxs-smiley-meh:before { + content: "\ecf3"; +} +.bxs-smiley-sad:before { + content: "\ecf4"; +} +.bxs-spreadsheet:before { + content: "\ecf5"; +} +.bxs-square:before { + content: "\ecf6"; +} +.bxs-square-rounded:before { + content: "\ecf7"; +} +.bxs-star-half:before { + content: "\ecf8"; +} +.bxs-stopwatch:before { + content: "\ecf9"; +} +.bxs-store:before { + content: "\ecfa"; +} +.bxs-store-alt:before { + content: "\ecfb"; +} +.bxs-sun:before { + content: "\ecfc"; +} +.bxs-taxi:before { + content: "\ecfd"; +} +.bxs-tennis-ball:before { + content: "\ecfe"; +} +.bxs-thermometer:before { + content: "\ecff"; +} +.bxs-time:before { + content: "\ed00"; +} +.bxs-time-five:before { + content: "\ed01"; +} +.bxs-timer:before { + content: "\ed02"; +} +.bxs-toggle-left:before { + content: "\ed03"; +} +.bxs-toggle-right:before { + content: "\ed04"; +} +.bxs-torch:before { + content: "\ed05"; +} +.bxs-to-top:before { + content: "\ed06"; +} +.bxs-traffic:before { + content: "\ed07"; +} +.bxs-traffic-barrier:before { + content: "\ed08"; +} +.bxs-train:before { + content: "\ed09"; +} +.bxs-trash:before { + content: "\ed0a"; +} +.bxs-trash-alt:before { + content: "\ed0b"; +} +.bxs-tree:before { + content: "\ed0c"; +} +.bxs-truck:before { + content: "\ed0d"; +} +.bxs-up-arrow:before { + content: "\ed0e"; +} +.bxs-up-arrow-circle:before { + content: "\ed0f"; +} +.bxs-up-arrow-square:before { + content: "\ed10"; +} +.bxs-user:before { + content: "\ed11"; +} +.bxs-user-badge:before { + content: "\ed12"; +} +.bxs-user-check:before { + content: "\ed13"; +} +.bxs-user-detail:before { + content: "\ed14"; +} +.bxs-user-minus:before { + content: "\ed15"; +} +.bxs-user-pin:before { + content: "\ed16"; +} +.bxs-user-plus:before { + content: "\ed17"; +} +.bxs-user-rectangle:before { + content: "\ed18"; +} +.bxs-user-voice:before { + content: "\ed19"; +} +.bxs-user-x:before { + content: "\ed1a"; +} +.bxs-vial:before { + content: "\ed1b"; +} +.bxs-video:before { + content: "\ed1c"; +} +.bxs-video-off:before { + content: "\ed1d"; +} +.bxs-video-plus:before { + content: "\ed1e"; +} +.bxs-video-recording:before { + content: "\ed1f"; +} +.bxs-videos:before { + content: "\ed20"; +} +.bxs-volume:before { + content: "\ed21"; +} +.bxs-volume-full:before { + content: "\ed22"; +} +.bxs-volume-low:before { + content: "\ed23"; +} +.bxs-volume-mute:before { + content: "\ed24"; +} +.bxs-wine:before { + content: "\ed25"; +} +.bxs-x-square:before { + content: "\ed26"; +} +.bxs-yin-yang:before { + content: "\ed27"; +} +.bxs-zap:before { + content: "\ed28"; +} +.bxs-zoom-in:before { + content: "\ed29"; +} diff --git a/css/boxicons.min.css b/css/boxicons.min.css index 2cb21db..0f3a27b 100644 --- a/css/boxicons.min.css +++ b/css/boxicons.min.css @@ -1 +1 @@ -@font-face{font-family:boxicons;font-weight:400;font-style:normal;src:url(../fonts/boxicons.eot);src:url(../fonts/boxicons.eot) format('embedded-opentype'),url(../fonts/boxicons.woff2) format('woff2'),url(../fonts/boxicons.woff) format('woff'),url(../fonts/boxicons.ttf) format('truetype'),url(../fonts/boxicons.svg?#boxicons) format('svg')}.bx{font-family:boxicons!important;font-weight:400;font-style:normal;font-variant:normal;line-height:1;display:inline-block;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bx-ul{margin-left:2em;padding-left:0;list-style:none}.bx-ul>li{position:relative}.bx-ul .bx{font-size:inherit;line-height:inherit;position:absolute;left:-2em;width:2em;text-align:center}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@-webkit-keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@-webkit-keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@-webkit-keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@-webkit-keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@-webkit-keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,-10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bx-spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-spin-hover:hover{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-tada{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-tada-hover:hover{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-flashing{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-flashing-hover:hover{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-burst{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-burst-hover:hover{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-fade-up{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-up-hover:hover{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-down{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-down-hover:hover{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-left{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-left-hover:hover{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-right{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}.bx-fade-right-hover:hover{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}.bx-xs{font-size:1rem!important}.bx-sm{font-size:1.55rem!important}.bx-md{font-size:2.25rem!important}.bx-fw{font-size:1.2857142857em;line-height:.8em;width:1.2857142857em;height:.8em;margin-top:-.2em!important;vertical-align:middle}.bx-lg{font-size:3rem!important}.bx-pull-left{float:left;margin-right:.3em!important}.bx-pull-right{float:right;margin-left:.3em!important}.bx-rotate-90{transform:rotate(90deg)}.bx-rotate-180{transform:rotate(180deg)}.bx-rotate-270{transform:rotate(270deg)}.bx-flip-horizontal{transform:scaleX(-1)}.bx-flip-vertical{transform:scaleY(-1)}.bx-border{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:.25em}.bx-border-circle{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:50%}.bxl-500px:before{content:"\e900"}.bxl-airbnb:before{content:"\e901"}.bxl-amazon:before{content:"\e902"}.bxl-android:before{content:"\e903"}.bxl-angular:before{content:"\e904"}.bxl-apple:before{content:"\e905"}.bxl-baidu:before{content:"\e906"}.bxl-behance:before{content:"\e907"}.bxl-bing:before{content:"\e908"}.bxl-bitcoin:before{content:"\e909"}.bxl-blogger:before{content:"\e90a"}.bxl-bootstrap:before{content:"\e90b"}.bxl-chrome:before{content:"\e90c"}.bxl-codepen:before{content:"\e90d"}.bxl-creative-commons:before{content:"\e90e"}.bxl-css3:before{content:"\e90f"}.bxl-dailymotion:before{content:"\e910"}.bxl-deviantart:before{content:"\e911"}.bxl-digg:before{content:"\e912"}.bxl-digitalocean:before{content:"\e913"}.bxl-discord:before{content:"\e914"}.bxl-discourse:before{content:"\e915"}.bxl-dribbble:before{content:"\e916"}.bxl-dropbox:before{content:"\e917"}.bxl-drupal:before{content:"\e918"}.bxl-ebay:before{content:"\e919"}.bxl-edge:before{content:"\e91a"}.bxl-facebook:before{content:"\e91b"}.bxl-facebook-square:before{content:"\e91c"}.bxl-firefox:before{content:"\e91d"}.bxl-flickr:before{content:"\e91e"}.bxl-flickr-square:before{content:"\e91f"}.bxl-foursquare:before{content:"\e920"}.bxl-git:before{content:"\e921"}.bxl-github:before{content:"\e922"}.bxl-google:before{content:"\e923"}.bxl-google-plus:before{content:"\e924"}.bxl-google-plus-circle:before{content:"\e925"}.bxl-html5:before{content:"\e926"}.bxl-instagram:before{content:"\e927"}.bxl-instagram-alt:before{content:"\e928"}.bxl-internet-explorer:before{content:"\e929"}.bxl-invision:before{content:"\e92a"}.bxl-javascript:before{content:"\e92b"}.bxl-joomla:before{content:"\e92c"}.bxl-jsfiddle:before{content:"\e92d"}.bxl-kickstarter:before{content:"\e92e"}.bxl-less:before{content:"\e92f"}.bxl-linkedin:before{content:"\e930"}.bxl-linkedin-square:before{content:"\e931"}.bxl-magento:before{content:"\e932"}.bxl-mailchimp:before{content:"\e933"}.bxl-mastercard:before{content:"\e934"}.bxl-medium:before{content:"\e935"}.bxl-medium-old:before{content:"\e936"}.bxl-medium-square:before{content:"\e937"}.bxl-messenger:before{content:"\e938"}.bxl-microsoft:before{content:"\e939"}.bxl-nodejs:before{content:"\e93a"}.bxl-opera:before{content:"\e93b"}.bxl-paypal:before{content:"\e93c"}.bxl-periscope:before{content:"\e93d"}.bxl-pinterest:before{content:"\e93e"}.bxl-play-store:before{content:"\e93f"}.bxl-pocket:before{content:"\e940"}.bxl-product-hunt:before{content:"\e941"}.bxl-quora:before{content:"\e942"}.bxl-react:before{content:"\e943"}.bxl-reddit:before{content:"\e944"}.bxl-redux:before{content:"\e945"}.bxl-sass:before{content:"\e946"}.bxl-shopify:before{content:"\e947"}.bxl-skype:before{content:"\e948"}.bxl-slack:before{content:"\e949"}.bxl-slack-old:before{content:"\e94a"}.bxl-snapchat:before{content:"\e94b"}.bxl-soundcloud:before{content:"\e94c"}.bxl-spotify:before{content:"\e94d"}.bxl-squarespace:before{content:"\e94e"}.bxl-stack-overflow:before{content:"\e94f"}.bxl-stripe:before{content:"\e950"}.bxl-telegram:before{content:"\e951"}.bxl-trello:before{content:"\e952"}.bxl-tumblr:before{content:"\e953"}.bxl-twitch:before{content:"\e954"}.bxl-twitter:before{content:"\e955"}.bxl-unsplash:before{content:"\e956"}.bxl-vimeo:before{content:"\e957"}.bxl-visa:before{content:"\e958"}.bxl-vk:before{content:"\e959"}.bxl-vuejs:before{content:"\e95a"}.bxl-whatsapp:before{content:"\e95b"}.bxl-whatsapp-square:before{content:"\e95c"}.bxl-wikipedia:before{content:"\e95d"}.bxl-windows:before{content:"\e95e"}.bxl-wix:before{content:"\e95f"}.bxl-wordpress:before{content:"\e960"}.bxl-yahoo:before{content:"\e961"}.bxl-yelp:before{content:"\e962"}.bxl-youtube:before{content:"\e963"}.bx-accessibility:before{content:"\e964"}.bx-adjust:before{content:"\e965"}.bx-alarm:before{content:"\e966"}.bx-alarm-off:before{content:"\e967"}.bx-album:before{content:"\e968"}.bx-align-justify:before{content:"\e969"}.bx-align-left:before{content:"\e96a"}.bx-align-middle:before{content:"\e96b"}.bx-align-right:before{content:"\e96c"}.bx-ambulance:before{content:"\e96d"}.bx-analyse:before{content:"\e96e"}.bx-anchor:before{content:"\e96f"}.bx-aperture:before{content:"\e970"}.bx-archive:before{content:"\e971"}.bx-area:before{content:"\e972"}.bx-arrow-back:before{content:"\e973"}.bx-at:before{content:"\e974"}.bx-award:before{content:"\e975"}.bx-badge:before{content:"\e976"}.bx-badge-check:before{content:"\e977"}.bx-ball:before{content:"\e978"}.bx-band-aid:before{content:"\e979"}.bx-bar-chart:before{content:"\e97a"}.bx-bar-chart-alt:before{content:"\e97b"}.bx-bar-chart-alt-2:before{content:"\e97c"}.bx-bar-chart-square:before{content:"\e97d"}.bx-barcode:before{content:"\e97e"}.bx-basket:before{content:"\e97f"}.bx-basketball:before{content:"\e980"}.bx-bath:before{content:"\e981"}.bx-battery:before{content:"\e982"}.bx-bed:before{content:"\e983"}.bx-bell:before{content:"\e984"}.bx-bell-minus:before{content:"\e985"}.bx-bell-off:before{content:"\e986"}.bx-bell-plus:before{content:"\e987"}.bx-bicycle:before{content:"\e988"}.bx-block:before{content:"\e989"}.bx-bluetooth:before{content:"\e98a"}.bx-body:before{content:"\e98b"}.bx-bold:before{content:"\e98c"}.bx-book:before{content:"\e98d"}.bx-book-bookmark:before{content:"\e98e"}.bx-book-content:before{content:"\e98f"}.bx-bookmark:before{content:"\e990"}.bx-bookmark-minus:before{content:"\e991"}.bx-bookmark-plus:before{content:"\e992"}.bx-bookmarks:before{content:"\e993"}.bx-book-open:before{content:"\e994"}.bx-border-all:before{content:"\e995"}.bx-border-bottom:before{content:"\e996"}.bx-border-left:before{content:"\e997"}.bx-border-right:before{content:"\e998"}.bx-border-top:before{content:"\e999"}.bx-bot:before{content:"\e99a"}.bx-bowling-ball:before{content:"\e99b"}.bx-box:before{content:"\e99c"}.bx-briefcase:before{content:"\e99d"}.bx-briefcase-alt:before{content:"\e99e"}.bx-briefcase-alt-2:before{content:"\e99f"}.bx-brightness:before{content:"\e9a0"}.bx-brightness-half:before{content:"\e9a1"}.bx-broadcast:before{content:"\e9a2"}.bx-brush:before{content:"\e9a3"}.bx-brush-alt:before{content:"\e9a4"}.bx-bug:before{content:"\e9a5"}.bx-bug-alt:before{content:"\e9a6"}.bx-building:before{content:"\e9a7"}.bx-building-house:before{content:"\e9a8"}.bx-buildings:before{content:"\e9a9"}.bx-bulb:before{content:"\e9aa"}.bx-bullseye:before{content:"\e9ab"}.bx-buoy:before{content:"\e9ac"}.bx-bus:before{content:"\e9ad"}.bx-calculator:before{content:"\e9ae"}.bx-calendar:before{content:"\e9af"}.bx-calendar-alt:before{content:"\e9b0"}.bx-calendar-check:before{content:"\e9b1"}.bx-calendar-event:before{content:"\e9b2"}.bx-calendar-minus:before{content:"\e9b3"}.bx-calendar-plus:before{content:"\e9b4"}.bx-calendar-x:before{content:"\e9b5"}.bx-camera:before{content:"\e9b6"}.bx-camera-off:before{content:"\e9b7"}.bx-captions:before{content:"\e9b8"}.bx-car:before{content:"\e9b9"}.bx-card:before{content:"\e9ba"}.bx-caret-down:before{content:"\e9bb"}.bx-caret-left:before{content:"\e9bc"}.bx-caret-right:before{content:"\e9bd"}.bx-caret-up:before{content:"\e9be"}.bx-carousel:before{content:"\e9bf"}.bx-cart:before{content:"\e9c0"}.bx-cart-alt:before{content:"\e9c1"}.bx-cast:before{content:"\e9c2"}.bx-certification:before{content:"\e9c3"}.bx-chalkboard:before{content:"\e9c4"}.bx-chart:before{content:"\e9c5"}.bx-chat:before{content:"\e9c6"}.bx-check:before{content:"\e9c7"}.bx-checkbox:before{content:"\e9c8"}.bx-checkbox-checked:before{content:"\e9c9"}.bx-checkbox-square:before{content:"\e9ca"}.bx-check-circle:before{content:"\e9cb"}.bx-check-double:before{content:"\e9cc"}.bx-check-square:before{content:"\e9cd"}.bx-chevron-down:before{content:"\e9ce"}.bx-chevron-left:before{content:"\e9cf"}.bx-chevron-right:before{content:"\e9d0"}.bx-chevrons-down:before{content:"\e9d1"}.bx-chevrons-left:before{content:"\e9d2"}.bx-chevrons-right:before{content:"\e9d3"}.bx-chevrons-up:before{content:"\e9d4"}.bx-chevron-up:before{content:"\e9d5"}.bx-chip:before{content:"\e9d6"}.bx-circle:before{content:"\e9d7"}.bx-clipboard:before{content:"\e9d8"}.bx-closet:before{content:"\e9d9"}.bx-cloud:before{content:"\e9da"}.bx-cloud-download:before{content:"\e9db"}.bx-cloud-drizzle:before{content:"\e9dc"}.bx-cloud-lightning:before{content:"\e9dd"}.bx-cloud-light-rain:before{content:"\e9de"}.bx-cloud-rain:before{content:"\e9df"}.bx-cloud-snow:before{content:"\e9e0"}.bx-cloud-upload:before{content:"\e9e1"}.bx-code:before{content:"\e9e2"}.bx-code-alt:before{content:"\e9e3"}.bx-code-block:before{content:"\e9e4"}.bx-code-curly:before{content:"\e9e5"}.bx-coffee:before{content:"\e9e6"}.bx-cog:before{content:"\e9e7"}.bx-collapse:before{content:"\e9e8"}.bx-collection:before{content:"\e9e9"}.bx-columns:before{content:"\e9ea"}.bx-command:before{content:"\e9eb"}.bx-comment:before{content:"\e9ec"}.bx-comment-dots:before{content:"\e9ed"}.bx-compass:before{content:"\e9ee"}.bx-conversation:before{content:"\e9ef"}.bx-copy:before{content:"\e9f0"}.bx-copy-alt:before{content:"\e9f1"}.bx-copyright:before{content:"\e9f2"}.bx-credit-card:before{content:"\e9f3"}.bx-credit-card-alt:before{content:"\e9f4"}.bx-crop:before{content:"\e9f5"}.bx-crosshair:before{content:"\e9f6"}.bx-crown:before{content:"\e9f7"}.bx-cube:before{content:"\e9f8"}.bx-cube-alt:before{content:"\e9f9"}.bx-cuboid:before{content:"\e9fa"}.bx-customize:before{content:"\e9fb"}.bx-cut:before{content:"\e9fc"}.bx-cycling:before{content:"\e9fd"}.bx-cylinder:before{content:"\e9fe"}.bx-dashboard:before{content:"\e9ff"}.bx-data:before{content:"\ea00"}.bx-desktop:before{content:"\ea01"}.bx-detail:before{content:"\ea02"}.bx-devices:before{content:"\ea03"}.bx-dialpad:before{content:"\ea04"}.bx-dialpad-alt:before{content:"\ea05"}.bx-diamond:before{content:"\ea06"}.bx-directions:before{content:"\ea07"}.bx-disc:before{content:"\ea08"}.bx-dislike:before{content:"\ea09"}.bx-dna:before{content:"\ea0a"}.bx-dock-bottom:before{content:"\ea0b"}.bx-dock-left:before{content:"\ea0c"}.bx-dock-right:before{content:"\ea0d"}.bx-dock-top:before{content:"\ea0e"}.bx-dollar:before{content:"\ea0f"}.bx-dollar-circle:before{content:"\ea10"}.bx-dots-horizontal:before{content:"\ea11"}.bx-dots-horizontal-rounded:before{content:"\ea12"}.bx-dots-vertical:before{content:"\ea13"}.bx-dots-vertical-rounded:before{content:"\ea14"}.bx-doughnut-chart:before{content:"\ea15"}.bx-down-arrow:before{content:"\ea16"}.bx-down-arrow-alt:before{content:"\ea17"}.bx-down-arrow-circle:before{content:"\ea18"}.bx-download:before{content:"\ea19"}.bx-downvote:before{content:"\ea1a"}.bx-droplet:before{content:"\ea1b"}.bx-dumbbell:before{content:"\ea1c"}.bx-duplicate:before{content:"\ea1d"}.bx-edit:before{content:"\ea1e"}.bx-edit-alt:before{content:"\ea1f"}.bx-envelope:before{content:"\ea20"}.bx-equalizer:before{content:"\ea21"}.bx-error:before{content:"\ea22"}.bx-error-alt:before{content:"\ea23"}.bx-error-circle:before{content:"\ea24"}.bx-exit-fullscreen:before{content:"\ea25"}.bx-expand:before{content:"\ea26"}.bx-export:before{content:"\ea27"}.bx-fast-forward:before{content:"\ea28"}.bx-fast-forward-circle:before{content:"\ea29"}.bx-female:before{content:"\ea2a"}.bx-file:before{content:"\ea2b"}.bx-file-blank:before{content:"\ea2c"}.bx-film:before{content:"\ea2d"}.bx-filter:before{content:"\ea2e"}.bx-filter-alt:before{content:"\ea2f"}.bx-fingerprint:before{content:"\ea30"}.bx-first-aid:before{content:"\ea31"}.bx-first-page:before{content:"\ea32"}.bx-flag:before{content:"\ea33"}.bx-folder:before{content:"\ea34"}.bx-folder-minus:before{content:"\ea35"}.bx-folder-open:before{content:"\ea36"}.bx-folder-plus:before{content:"\ea37"}.bx-font:before{content:"\ea38"}.bx-font-color:before{content:"\ea39"}.bx-font-family:before{content:"\ea3a"}.bx-font-size:before{content:"\ea3b"}.bx-football:before{content:"\ea3c"}.bx-fullscreen:before{content:"\ea3d"}.bx-gas-pump:before{content:"\ea3e"}.bx-ghost:before{content:"\ea3f"}.bx-gift:before{content:"\ea40"}.bx-git-branch:before{content:"\ea41"}.bx-git-commit:before{content:"\ea42"}.bx-git-compare:before{content:"\ea43"}.bx-git-merge:before{content:"\ea44"}.bx-git-pull-request:before{content:"\ea45"}.bx-git-repo-forked:before{content:"\ea46"}.bx-globe:before{content:"\ea47"}.bx-globe-alt:before{content:"\ea48"}.bx-grid:before{content:"\ea49"}.bx-grid-alt:before{content:"\ea4a"}.bx-grid-horizontal:before{content:"\ea4b"}.bx-grid-small:before{content:"\ea4c"}.bx-grid-vertical:before{content:"\ea4d"}.bx-group:before{content:"\ea4e"}.bx-handicap:before{content:"\ea4f"}.bx-hash:before{content:"\ea50"}.bx-hdd:before{content:"\ea51"}.bx-heading:before{content:"\ea52"}.bx-headphone:before{content:"\ea53"}.bx-heart:before{content:"\ea54"}.bx-help-circle:before{content:"\ea55"}.bx-hide:before{content:"\ea56"}.bx-highlight:before{content:"\ea57"}.bx-history:before{content:"\ea58"}.bx-hive:before{content:"\ea59"}.bx-home:before{content:"\ea5a"}.bx-home-alt:before{content:"\ea5b"}.bx-home-circle:before{content:"\ea5c"}.bx-horizontal-center:before{content:"\ea5d"}.bx-hotel:before{content:"\ea5e"}.bx-hourglass:before{content:"\ea5f"}.bx-id-card:before{content:"\ea60"}.bx-image:before{content:"\ea61"}.bx-images:before{content:"\ea62"}.bx-import:before{content:"\ea63"}.bx-infinite:before{content:"\ea64"}.bx-info-circle:before{content:"\ea65"}.bx-italic:before{content:"\ea66"}.bx-joystick:before{content:"\ea67"}.bx-joystick-alt:before{content:"\ea68"}.bx-joystick-button:before{content:"\ea69"}.bx-key:before{content:"\ea6a"}.bx-landscape:before{content:"\ea6b"}.bx-laptop:before{content:"\ea6c"}.bx-last-page:before{content:"\ea6d"}.bx-layer:before{content:"\ea6e"}.bx-layout:before{content:"\ea6f"}.bx-left-arrow:before{content:"\ea70"}.bx-left-arrow-alt:before{content:"\ea71"}.bx-left-arrow-circle:before{content:"\ea72"}.bx-left-down-arrow-circle:before{content:"\ea73"}.bx-left-indent:before{content:"\ea74"}.bx-left-top-arrow-circle:before{content:"\ea75"}.bx-like:before{content:"\ea76"}.bx-line-chart:before{content:"\ea77"}.bx-link:before{content:"\ea78"}.bx-link-alt:before{content:"\ea79"}.bx-link-external:before{content:"\ea7a"}.bx-list-check:before{content:"\ea7b"}.bx-list-ol:before{content:"\ea7c"}.bx-list-plus:before{content:"\ea7d"}.bx-list-ul:before{content:"\ea7e"}.bx-list-x:before{content:"\ea7f"}.bx-loader:before{content:"\ea80"}.bx-loader-alt:before{content:"\ea81"}.bx-loader-circle:before{content:"\ea82"}.bx-lock:before{content:"\ea83"}.bx-lock-alt:before{content:"\ea84"}.bx-lock-open:before{content:"\ea85"}.bx-lock-open-alt:before{content:"\ea86"}.bx-log-in:before{content:"\ea87"}.bx-log-in-circle:before{content:"\ea88"}.bx-log-out:before{content:"\ea89"}.bx-log-out-circle:before{content:"\ea8a"}.bx-magnet:before{content:"\ea8b"}.bx-mail-send:before{content:"\ea8c"}.bx-male:before{content:"\ea8d"}.bx-map:before{content:"\ea8e"}.bx-map-alt:before{content:"\ea8f"}.bx-map-pin:before{content:"\ea90"}.bx-memory-card:before{content:"\ea91"}.bx-menu:before{content:"\ea92"}.bx-menu-alt-left:before{content:"\ea93"}.bx-menu-alt-right:before{content:"\ea94"}.bx-message:before{content:"\ea95"}.bx-message-alt:before{content:"\ea96"}.bx-message-alt-dots:before{content:"\ea97"}.bx-message-dots:before{content:"\ea98"}.bx-message-rounded:before{content:"\ea99"}.bx-message-rounded-dots:before{content:"\ea9a"}.bx-message-square:before{content:"\ea9b"}.bx-message-square-dots:before{content:"\ea9c"}.bx-microphone:before{content:"\ea9d"}.bx-microphone-off:before{content:"\ea9e"}.bx-minus:before{content:"\ea9f"}.bx-minus-circle:before{content:"\eaa0"}.bx-mobile:before{content:"\eaa1"}.bx-mobile-alt:before{content:"\eaa2"}.bx-mobile-landscape:before{content:"\eaa3"}.bx-mobile-vibration:before{content:"\eaa4"}.bx-money:before{content:"\eaa5"}.bx-moon:before{content:"\eaa6"}.bx-mouse:before{content:"\eaa7"}.bx-mouse-alt:before{content:"\eaa8"}.bx-move:before{content:"\eaa9"}.bx-move-horizontal:before{content:"\eaaa"}.bx-move-vertical:before{content:"\eaab"}.bx-movie:before{content:"\eaac"}.bx-music:before{content:"\eaad"}.bx-navigation:before{content:"\eaae"}.bx-news:before{content:"\eaaf"}.bx-no-entry:before{content:"\eab0"}.bx-note:before{content:"\eab1"}.bx-notepad:before{content:"\eab2"}.bx-notification:before{content:"\eab3"}.bx-notification-off:before{content:"\eab4"}.bx-package:before{content:"\eab5"}.bx-paint:before{content:"\eab6"}.bx-paint-roll:before{content:"\eab7"}.bx-palette:before{content:"\eab8"}.bx-paperclip:before{content:"\eab9"}.bx-paper-plane:before{content:"\eaba"}.bx-paragraph:before{content:"\eabb"}.bx-paste:before{content:"\eabc"}.bx-pause:before{content:"\eabd"}.bx-pause-circle:before{content:"\eabe"}.bx-pen:before{content:"\eabf"}.bx-pencil:before{content:"\eac0"}.bx-phone:before{content:"\eac1"}.bx-phone-call:before{content:"\eac2"}.bx-phone-incoming:before{content:"\eac3"}.bx-phone-outgoing:before{content:"\eac4"}.bx-photo-album:before{content:"\eac5"}.bx-pie-chart:before{content:"\eac6"}.bx-pie-chart-alt:before{content:"\eac7"}.bx-pie-chart-alt-2:before{content:"\eac8"}.bx-pin:before{content:"\eac9"}.bx-planet:before{content:"\eaca"}.bx-play:before{content:"\eacb"}.bx-play-circle:before{content:"\eacc"}.bx-plug:before{content:"\eacd"}.bx-plus:before{content:"\eace"}.bx-plus-circle:before{content:"\eacf"}.bx-plus-medical:before{content:"\ead0"}.bx-poll:before{content:"\ead1"}.bx-polygon:before{content:"\ead2"}.bx-power-off:before{content:"\ead3"}.bx-printer:before{content:"\ead4"}.bx-pulse:before{content:"\ead5"}.bx-purchase-tag:before{content:"\ead6"}.bx-purchase-tag-alt:before{content:"\ead7"}.bx-pyramid:before{content:"\ead8"}.bx-question-mark:before{content:"\ead9"}.bx-radar:before{content:"\eada"}.bx-radio:before{content:"\eadb"}.bx-radio-circle:before{content:"\eadc"}.bx-radio-circle-marked:before{content:"\eadd"}.bx-receipt:before{content:"\eade"}.bx-rectangle:before{content:"\eadf"}.bx-redo:before{content:"\eae0"}.bx-rename:before{content:"\eae1"}.bx-repeat:before{content:"\eae2"}.bx-reply:before{content:"\eae3"}.bx-reply-all:before{content:"\eae4"}.bx-repost:before{content:"\eae5"}.bx-reset:before{content:"\eae6"}.bx-restaurant:before{content:"\eae7"}.bx-revision:before{content:"\eae8"}.bx-rewind:before{content:"\eae9"}.bx-rewind-circle:before{content:"\eaea"}.bx-right-arrow:before{content:"\eaeb"}.bx-right-arrow-alt:before{content:"\eaec"}.bx-right-arrow-circle:before{content:"\eaed"}.bx-right-down-arrow-circle:before{content:"\eaee"}.bx-right-indent:before{content:"\eaef"}.bx-right-top-arrow-circle:before{content:"\eaf0"}.bx-rocket:before{content:"\eaf1"}.bx-rotate-left:before{content:"\eaf2"}.bx-rotate-right:before{content:"\eaf3"}.bx-rss:before{content:"\eaf4"}.bx-ruler:before{content:"\eaf5"}.bx-run:before{content:"\eaf6"}.bx-save:before{content:"\eaf7"}.bx-screenshot:before{content:"\eaf8"}.bx-search:before{content:"\eaf9"}.bx-search-alt:before{content:"\eafa"}.bx-search-alt-2:before{content:"\eafb"}.bx-selection:before{content:"\eafc"}.bx-select-multiple:before{content:"\eafd"}.bx-send:before{content:"\eafe"}.bx-server:before{content:"\eaff"}.bx-shape-circle:before{content:"\eb00"}.bx-shape-square:before{content:"\eb01"}.bx-shape-triangle:before{content:"\eb02"}.bx-share:before{content:"\eb03"}.bx-share-alt:before{content:"\eb04"}.bx-shield:before{content:"\eb05"}.bx-shield-alt:before{content:"\eb06"}.bx-shield-alt-2:before{content:"\eb07"}.bx-shopping-bag:before{content:"\eb08"}.bx-show:before{content:"\eb09"}.bx-show-alt:before{content:"\eb0a"}.bx-shuffle:before{content:"\eb0b"}.bx-sidebar:before{content:"\eb0c"}.bx-sitemap:before{content:"\eb0d"}.bx-skip-next:before{content:"\eb0e"}.bx-skip-next-circle:before{content:"\eb0f"}.bx-skip-previous:before{content:"\eb10"}.bx-skip-previous-circle:before{content:"\eb11"}.bx-slider:before{content:"\eb12"}.bx-slider-alt:before{content:"\eb13"}.bx-slideshow:before{content:"\eb14"}.bx-sort:before{content:"\eb15"}.bx-sort-a-z:before{content:"\eb16"}.bx-sort-down:before{content:"\eb17"}.bx-sort-up:before{content:"\eb18"}.bx-sort-z-a:before{content:"\eb19"}.bx-spreadsheet:before{content:"\eb1a"}.bx-square:before{content:"\eb1b"}.bx-square-rounded:before{content:"\eb1c"}.bx-star:before{content:"\eb1d"}.bx-station:before{content:"\eb1e"}.bx-stats:before{content:"\eb1f"}.bx-stop:before{content:"\eb20"}.bx-stop-circle:before{content:"\eb21"}.bx-stopwatch:before{content:"\eb22"}.bx-store:before{content:"\eb23"}.bx-store-alt:before{content:"\eb24"}.bx-street-view:before{content:"\eb25"}.bx-strikethrough:before{content:"\eb26"}.bx-subdirectory-left:before{content:"\eb27"}.bx-subdirectory-right:before{content:"\eb28"}.bx-sun:before{content:"\eb29"}.bx-support:before{content:"\eb2a"}.bx-swim:before{content:"\eb2b"}.bx-sync:before{content:"\eb2c"}.bx-tab:before{content:"\eb2d"}.bx-table:before{content:"\eb2e"}.bx-tag:before{content:"\eb2f"}.bx-target-lock:before{content:"\eb30"}.bx-task:before{content:"\eb31"}.bx-taxi:before{content:"\eb32"}.bx-tennis-ball:before{content:"\eb33"}.bx-terminal:before{content:"\eb34"}.bx-test-tube:before{content:"\eb35"}.bx-text:before{content:"\eb36"}.bx-time:before{content:"\eb37"}.bx-time-five:before{content:"\eb38"}.bx-timer:before{content:"\eb39"}.bx-toggle-left:before{content:"\eb3a"}.bx-toggle-right:before{content:"\eb3b"}.bx-traffic-barrier:before{content:"\eb3c"}.bx-train:before{content:"\eb3d"}.bx-transfer:before{content:"\eb3e"}.bx-transfer-alt:before{content:"\eb3f"}.bx-trash:before{content:"\eb40"}.bx-trash-alt:before{content:"\eb41"}.bx-trending-down:before{content:"\eb42"}.bx-trending-up:before{content:"\eb43"}.bx-trophy:before{content:"\eb44"}.bx-truck:before{content:"\eb45"}.bx-tv:before{content:"\eb46"}.bx-underline:before{content:"\eb47"}.bx-undo:before{content:"\eb48"}.bx-unlink:before{content:"\eb49"}.bx-up-arrow:before{content:"\eb4a"}.bx-up-arrow-alt:before{content:"\eb4b"}.bx-up-arrow-circle:before{content:"\eb4c"}.bx-upload:before{content:"\eb4d"}.bx-upvote:before{content:"\eb4e"}.bx-usb:before{content:"\eb4f"}.bx-user:before{content:"\eb50"}.bx-user-check:before{content:"\eb51"}.bx-user-circle:before{content:"\eb52"}.bx-user-minus:before{content:"\eb53"}.bx-user-pin:before{content:"\eb54"}.bx-user-plus:before{content:"\eb55"}.bx-user-voice:before{content:"\eb56"}.bx-user-x:before{content:"\eb57"}.bx-vertical-center:before{content:"\eb58"}.bx-video:before{content:"\eb59"}.bx-video-off:before{content:"\eb5a"}.bx-video-plus:before{content:"\eb5b"}.bx-video-recording:before{content:"\eb5c"}.bx-voicemail:before{content:"\eb5d"}.bx-volume:before{content:"\eb5e"}.bx-volume-full:before{content:"\eb5f"}.bx-volume-low:before{content:"\eb60"}.bx-volume-mute:before{content:"\eb61"}.bx-walk:before{content:"\eb62"}.bx-wallet:before{content:"\eb63"}.bx-wallet-alt:before{content:"\eb64"}.bx-water:before{content:"\eb65"}.bx-wifi:before{content:"\eb66"}.bx-wifi-off:before{content:"\eb67"}.bx-wind:before{content:"\eb68"}.bx-window:before{content:"\eb69"}.bx-window-close:before{content:"\eb6a"}.bx-window-open:before{content:"\eb6b"}.bx-windows:before{content:"\eb6c"}.bx-world:before{content:"\eb6d"}.bx-wrench:before{content:"\eb6e"}.bx-x:before{content:"\eb6f"}.bx-x-circle:before{content:"\eb70"}.bx-zoom-in:before{content:"\eb71"}.bx-zoom-out:before{content:"\eb72"}.bxs-radio:before{content:"\eb73"}.bxs-chat:before{content:"\eb74"}.bxs-download:before{content:"\eb75"}.bxs-to-top:before{content:"\eb76"}.bxs-report:before{content:"\eb77"}.bxs-conversation:before{content:"\eb78"}.bxs-receipt:before{content:"\eb79"}.bxs-bookmark-plus:before{content:"\eb7a"}.bxs-bookmark-minus:before{content:"\eb7b"}.bxs-bookmarks:before{content:"\eb7c"}.bxs-layout:before{content:"\eb7d"}.bxs-quote-alt-left:before{content:"\eb7e"}.bxs-quote-alt-right:before{content:"\eb7f"}.bxs-mobile-vibration:before{content:"\eb80"}.bxs-rewind-circle:before{content:"\eb81"}.bxs-carousel:before{content:"\eb82"}.bxs-customize:before{content:"\eb83"}.bxs-fast-forward-circle:before{content:"\eb84"}.bxs-calendar-check:before{content:"\eb85"}.bxs-calendar-event:before{content:"\eb86"}.bxs-calendar-plus:before{content:"\eb87"}.bxs-calendar-alt:before{content:"\eb88"}.bxs-calendar-minus:before{content:"\eb89"}.bxs-calendar-x:before{content:"\eb8a"}.bxs-brush-alt:before{content:"\eb8b"}.bxs-calendar:before{content:"\eb8c"}.bxs-briefcase-alt-2:before{content:"\eb8d"}.bxs-brightness:before{content:"\eb8e"}.bxs-brightness-half:before{content:"\eb8f"}.bxs-adjust:before{content:"\eb90"}.bxs-adjust-alt:before{content:"\eb91"}.bxs-alarm:before{content:"\eb92"}.bxs-alarm-off:before{content:"\eb93"}.bxs-album:before{content:"\eb94"}.bxs-ambulance:before{content:"\eb95"}.bxs-analyse:before{content:"\eb96"}.bxs-archive:before{content:"\eb97"}.bxs-area:before{content:"\eb98"}.bxs-award:before{content:"\eb99"}.bxs-badge:before{content:"\eb9a"}.bxs-badge-check:before{content:"\eb9b"}.bxs-ball:before{content:"\eb9c"}.bxs-band-aid:before{content:"\eb9d"}.bxs-bank:before{content:"\eb9e"}.bxs-bar-chart-alt-2:before{content:"\eb9f"}.bxs-bar-chart-square:before{content:"\eba0"}.bxs-barcode:before{content:"\eba1"}.bxs-basket:before{content:"\eba2"}.bxs-bath:before{content:"\eba3"}.bxs-battery:before{content:"\eba4"}.bxs-battery-charging:before{content:"\eba5"}.bxs-battery-full:before{content:"\eba6"}.bxs-battery-low:before{content:"\eba7"}.bxs-bed:before{content:"\eba8"}.bxs-bell:before{content:"\eba9"}.bxs-bell-minus:before{content:"\ebaa"}.bxs-bell-off:before{content:"\ebab"}.bxs-bell-plus:before{content:"\ebac"}.bxs-bell-ring:before{content:"\ebad"}.bxs-bolt:before{content:"\ebae"}.bxs-book:before{content:"\ebaf"}.bxs-book-bookmark:before{content:"\ebb0"}.bxs-book-content:before{content:"\ebb1"}.bxs-bookmark:before{content:"\ebb2"}.bxs-bookmark-star:before{content:"\ebb3"}.bxs-book-open:before{content:"\ebb4"}.bxs-bot:before{content:"\ebb5"}.bxs-bowling-ball:before{content:"\ebb6"}.bxs-box:before{content:"\ebb7"}.bxs-briefcase:before{content:"\ebb8"}.bxs-briefcase-alt:before{content:"\ebb9"}.bxs-brush:before{content:"\ebba"}.bxs-bug:before{content:"\ebbb"}.bxs-bug-alt:before{content:"\ebbc"}.bxs-building:before{content:"\ebbd"}.bxs-building-house:before{content:"\ebbe"}.bxs-buildings:before{content:"\ebbf"}.bxs-bulb:before{content:"\ebc0"}.bxs-buoy:before{content:"\ebc1"}.bxs-bus:before{content:"\ebc2"}.bxs-calculator:before{content:"\ebc3"}.bxs-camera:before{content:"\ebc4"}.bxs-camera-off:before{content:"\ebc5"}.bxs-capsule:before{content:"\ebc6"}.bxs-captions:before{content:"\ebc7"}.bxs-car:before{content:"\ebc8"}.bxs-card:before{content:"\ebc9"}.bxs-cart:before{content:"\ebca"}.bxs-cart-alt:before{content:"\ebcb"}.bxs-categories:before{content:"\ebcc"}.bxs-certification:before{content:"\ebcd"}.bxs-chalkboard:before{content:"\ebce"}.bxs-chart:before{content:"\ebcf"}.bxs-checkbox:before{content:"\ebd0"}.bxs-checkbox-checked:before{content:"\ebd1"}.bxs-check-circle:before{content:"\ebd2"}.bxs-check-square:before{content:"\ebd3"}.bxs-chip:before{content:"\ebd4"}.bxs-circle:before{content:"\ebd5"}.bxs-cloud:before{content:"\ebd6"}.bxs-cloud-download:before{content:"\ebd7"}.bxs-cloud-lightning:before{content:"\ebd8"}.bxs-cloud-rain:before{content:"\ebd9"}.bxs-cloud-upload:before{content:"\ebda"}.bxs-coffee:before{content:"\ebdb"}.bxs-coffee-alt:before{content:"\ebdc"}.bxs-cog:before{content:"\ebdd"}.bxs-collection:before{content:"\ebde"}.bxs-color-fill:before{content:"\ebdf"}.bxs-comment:before{content:"\ebe0"}.bxs-comment-add:before{content:"\ebe1"}.bxs-comment-detail:before{content:"\ebe2"}.bxs-comment-dots:before{content:"\ebe3"}.bxs-comment-error:before{content:"\ebe4"}.bxs-compass:before{content:"\ebe5"}.bxs-component:before{content:"\ebe6"}.bxs-contact:before{content:"\ebe7"}.bxs-copy:before{content:"\ebe8"}.bxs-copy-alt:before{content:"\ebe9"}.bxs-coupon:before{content:"\ebea"}.bxs-credit-card:before{content:"\ebeb"}.bxs-credit-card-alt:before{content:"\ebec"}.bxs-crown:before{content:"\ebed"}.bxs-cube:before{content:"\ebee"}.bxs-cube-alt:before{content:"\ebef"}.bxs-cuboid:before{content:"\ebf0"}.bxs-cylinder:before{content:"\ebf1"}.bxs-dashboard:before{content:"\ebf2"}.bxs-data:before{content:"\ebf3"}.bxs-detail:before{content:"\ebf4"}.bxs-devices:before{content:"\ebf5"}.bxs-direction-left:before{content:"\ebf6"}.bxs-direction-right:before{content:"\ebf7"}.bxs-directions:before{content:"\ebf8"}.bxs-disc:before{content:"\ebf9"}.bxs-discount:before{content:"\ebfa"}.bxs-dislike:before{content:"\ebfb"}.bxs-dock-bottom:before{content:"\ebfc"}.bxs-dock-left:before{content:"\ebfd"}.bxs-dock-right:before{content:"\ebfe"}.bxs-dock-top:before{content:"\ebff"}.bxs-dollar-circle:before{content:"\ec00"}.bxs-doughnut-chart:before{content:"\ec01"}.bxs-down-arrow:before{content:"\ec02"}.bxs-down-arrow-circle:before{content:"\ec03"}.bxs-down-arrow-square:before{content:"\ec04"}.bxs-downvote:before{content:"\ec05"}.bxs-drink:before{content:"\ec06"}.bxs-droplet:before{content:"\ec07"}.bxs-droplet-half:before{content:"\ec08"}.bxs-duplicate:before{content:"\ec09"}.bxs-edit:before{content:"\ec0a"}.bxs-edit-alt:before{content:"\ec0b"}.bxs-eject:before{content:"\ec0c"}.bxs-envelope:before{content:"\ec0d"}.bxs-eraser:before{content:"\ec0e"}.bxs-error:before{content:"\ec0f"}.bxs-error-alt:before{content:"\ec10"}.bxs-error-circle:before{content:"\ec11"}.bxs-eyedropper:before{content:"\ec12"}.bxs-factory:before{content:"\ec13"}.bxs-file:before{content:"\ec14"}.bxs-file-blank:before{content:"\ec15"}.bxs-file-css:before{content:"\ec16"}.bxs-file-doc:before{content:"\ec17"}.bxs-file-gif:before{content:"\ec18"}.bxs-file-html:before{content:"\ec19"}.bxs-file-image:before{content:"\ec1a"}.bxs-file-jpg:before{content:"\ec1b"}.bxs-file-js:before{content:"\ec1c"}.bxs-file-json:before{content:"\ec1d"}.bxs-file-md:before{content:"\ec1e"}.bxs-file-pdf:before{content:"\ec1f"}.bxs-file-plus:before{content:"\ec20"}.bxs-file-png:before{content:"\ec21"}.bxs-file-txt:before{content:"\ec22"}.bxs-film:before{content:"\ec23"}.bxs-filter-alt:before{content:"\ec24"}.bxs-first-aid:before{content:"\ec25"}.bxs-flag:before{content:"\ec26"}.bxs-flag-alt:before{content:"\ec27"}.bxs-flame:before{content:"\ec28"}.bxs-flask:before{content:"\ec29"}.bxs-folder:before{content:"\ec2a"}.bxs-folder-minus:before{content:"\ec2b"}.bxs-folder-open:before{content:"\ec2c"}.bxs-folder-plus:before{content:"\ec2d"}.bxs-gas-pump:before{content:"\ec2e"}.bxs-ghost:before{content:"\ec2f"}.bxs-gift:before{content:"\ec30"}.bxs-graduation:before{content:"\ec31"}.bxs-grid:before{content:"\ec32"}.bxs-grid-alt:before{content:"\ec33"}.bxs-group:before{content:"\ec34"}.bxs-hdd:before{content:"\ec35"}.bxs-heart:before{content:"\ec36"}.bxs-help-circle:before{content:"\ec37"}.bxs-hide:before{content:"\ec38"}.bxs-home:before{content:"\ec39"}.bxs-home-circle:before{content:"\ec3a"}.bxs-hot:before{content:"\ec3b"}.bxs-hotel:before{content:"\ec3c"}.bxs-hourglass:before{content:"\ec3d"}.bxs-hourglass-bottom:before{content:"\ec3e"}.bxs-hourglass-top:before{content:"\ec3f"}.bxs-id-card:before{content:"\ec40"}.bxs-image:before{content:"\ec41"}.bxs-image-alt:before{content:"\ec42"}.bxs-inbox:before{content:"\ec43"}.bxs-info-circle:before{content:"\ec44"}.bxs-institution:before{content:"\ec45"}.bxs-joystick:before{content:"\ec46"}.bxs-joystick-alt:before{content:"\ec47"}.bxs-joystick-button:before{content:"\ec48"}.bxs-key:before{content:"\ec49"}.bxs-keyboard:before{content:"\ec4a"}.bxs-landmark:before{content:"\ec4b"}.bxs-landscape:before{content:"\ec4c"}.bxs-layer:before{content:"\ec4d"}.bxs-left-arrow:before{content:"\ec4e"}.bxs-left-arrow-circle:before{content:"\ec4f"}.bxs-left-arrow-square:before{content:"\ec50"}.bxs-left-down-arrow-circle:before{content:"\ec51"}.bxs-left-top-arrow-circle:before{content:"\ec52"}.bxs-like:before{content:"\ec53"}.bxs-lock:before{content:"\ec54"}.bxs-lock-alt:before{content:"\ec55"}.bxs-lock-open:before{content:"\ec56"}.bxs-lock-open-alt:before{content:"\ec57"}.bxs-log-in:before{content:"\ec58"}.bxs-log-in-circle:before{content:"\ec59"}.bxs-log-out:before{content:"\ec5a"}.bxs-log-out-circle:before{content:"\ec5b"}.bxs-magic-wand:before{content:"\ec5c"}.bxs-magnet:before{content:"\ec5d"}.bxs-map:before{content:"\ec5e"}.bxs-map-alt:before{content:"\ec5f"}.bxs-map-pin:before{content:"\ec60"}.bxs-megaphone:before{content:"\ec61"}.bxs-memory-card:before{content:"\ec62"}.bxs-message:before{content:"\ec63"}.bxs-message-alt:before{content:"\ec64"}.bxs-message-alt-dots:before{content:"\ec65"}.bxs-message-dots:before{content:"\ec66"}.bxs-message-rounded:before{content:"\ec67"}.bxs-message-rounded-dots:before{content:"\ec68"}.bxs-message-square:before{content:"\ec69"}.bxs-message-square-dots:before{content:"\ec6a"}.bxs-microphone:before{content:"\ec6b"}.bxs-microphone-alt:before{content:"\ec6c"}.bxs-microphone-off:before{content:"\ec6d"}.bxs-minus-circle:before{content:"\ec6e"}.bxs-minus-square:before{content:"\ec6f"}.bxs-mobile:before{content:"\ec70"}.bxs-moon:before{content:"\ec71"}.bxs-mouse:before{content:"\ec72"}.bxs-mouse-alt:before{content:"\ec73"}.bxs-movie:before{content:"\ec74"}.bxs-music:before{content:"\ec75"}.bxs-navigation:before{content:"\ec76"}.bxs-news:before{content:"\ec77"}.bxs-no-entry:before{content:"\ec78"}.bxs-note:before{content:"\ec79"}.bxs-notepad:before{content:"\ec7a"}.bxs-notification:before{content:"\ec7b"}.bxs-notification-off:before{content:"\ec7c"}.bxs-package:before{content:"\ec7d"}.bxs-paint:before{content:"\ec7e"}.bxs-paint-roll:before{content:"\ec7f"}.bxs-palette:before{content:"\ec80"}.bxs-paper-plane:before{content:"\ec81"}.bxs-parking:before{content:"\ec82"}.bxs-paste:before{content:"\ec83"}.bxs-pen:before{content:"\ec84"}.bxs-pencil:before{content:"\ec85"}.bxs-phone:before{content:"\ec86"}.bxs-phone-call:before{content:"\ec87"}.bxs-phone-incoming:before{content:"\ec88"}.bxs-phone-outgoing:before{content:"\ec89"}.bxs-photo-album:before{content:"\ec8a"}.bxs-pie-chart:before{content:"\ec8b"}.bxs-pie-chart-alt:before{content:"\ec8c"}.bxs-pie-chart-alt-2:before{content:"\ec8d"}.bxs-pin:before{content:"\ec8e"}.bxs-plane:before{content:"\ec8f"}.bxs-plane-alt:before{content:"\ec90"}.bxs-plane-land:before{content:"\ec91"}.bxs-planet:before{content:"\ec92"}.bxs-plane-take-off:before{content:"\ec93"}.bxs-playlist:before{content:"\ec94"}.bxs-plug:before{content:"\ec95"}.bxs-plus-circle:before{content:"\ec96"}.bxs-plus-square:before{content:"\ec97"}.bxs-polygon:before{content:"\ec98"}.bxs-printer:before{content:"\ec99"}.bxs-purchase-tag:before{content:"\ec9a"}.bxs-purchase-tag-alt:before{content:"\ec9b"}.bxs-pyramid:before{content:"\ec9c"}.bxs-quote-left:before{content:"\ec9d"}.bxs-quote-right:before{content:"\ec9e"}.bxs-quote-single-left:before{content:"\ec9f"}.bxs-quote-single-right:before{content:"\eca0"}.bxs-rectangle:before{content:"\eca1"}.bxs-rename:before{content:"\eca2"}.bxs-right-arrow:before{content:"\eca3"}.bxs-right-arrow-circle:before{content:"\eca4"}.bxs-right-arrow-square:before{content:"\eca5"}.bxs-right-down-arrow-circle:before{content:"\eca6"}.bxs-right-top-arrow-circle:before{content:"\eca7"}.bxs-rocket:before{content:"\eca8"}.bxs-ruler:before{content:"\eca9"}.bxs-save:before{content:"\ecaa"}.bxs-school:before{content:"\ecab"}.bxs-search:before{content:"\ecac"}.bxs-search-alt-2:before{content:"\ecad"}.bxs-select-multiple:before{content:"\ecae"}.bxs-send:before{content:"\ecaf"}.bxs-server:before{content:"\ecb0"}.bxs-share:before{content:"\ecb1"}.bxs-share-alt:before{content:"\ecb2"}.bxs-shield:before{content:"\ecb3"}.bxs-shield-alt-2:before{content:"\ecb4"}.bxs-ship:before{content:"\ecb5"}.bxs-shopping-bag:before{content:"\ecb6"}.bxs-shopping-bag-alt:before{content:"\ecb7"}.bxs-show:before{content:"\ecb8"}.bxs-skip-next-circle:before{content:"\ecb9"}.bxs-skip-previous-circle:before{content:"\ecba"}.bxs-skull:before{content:"\ecbb"}.bxs-slideshow:before{content:"\ecbc"}.bxs-smiley-happy:before{content:"\ecbd"}.bxs-smiley-meh:before{content:"\ecbe"}.bxs-smiley-sad:before{content:"\ecbf"}.bxs-sort-alt:before{content:"\ecc0"}.bxs-spreadsheet:before{content:"\ecc1"}.bxs-square:before{content:"\ecc2"}.bxs-square-rounded:before{content:"\ecc3"}.bxs-star:before{content:"\ecc4"}.bxs-star-half:before{content:"\ecc5"}.bxs-stopwatch:before{content:"\ecc6"}.bxs-store:before{content:"\ecc7"}.bxs-store-alt:before{content:"\ecc8"}.bxs-sun:before{content:"\ecc9"}.bxs-tag:before{content:"\ecca"}.bxs-tag-x:before{content:"\eccb"}.bxs-taxi:before{content:"\eccc"}.bxs-tennis-ball:before{content:"\eccd"}.bxs-terminal:before{content:"\ecce"}.bxs-thermometer:before{content:"\eccf"}.bxs-time:before{content:"\ecd0"}.bxs-time-five:before{content:"\ecd1"}.bxs-timer:before{content:"\ecd2"}.bxs-toggle-left:before{content:"\ecd3"}.bxs-toggle-right:before{content:"\ecd4"}.bxs-torch:before{content:"\ecd5"}.bxs-traffic:before{content:"\ecd6"}.bxs-traffic-barrier:before{content:"\ecd7"}.bxs-train:before{content:"\ecd8"}.bxs-trash:before{content:"\ecd9"}.bxs-trash-alt:before{content:"\ecda"}.bxs-tree:before{content:"\ecdb"}.bxs-trophy:before{content:"\ecdc"}.bxs-truck:before{content:"\ecdd"}.bxs-t-shirt:before{content:"\ecde"}.bxs-up-arrow:before{content:"\ecdf"}.bxs-up-arrow-circle:before{content:"\ece0"}.bxs-up-arrow-square:before{content:"\ece1"}.bxs-upvote:before{content:"\ece2"}.bxs-user:before{content:"\ece3"}.bxs-user-badge:before{content:"\ece4"}.bxs-user-check:before{content:"\ece5"}.bxs-user-circle:before{content:"\ece6"}.bxs-user-detail:before{content:"\ece7"}.bxs-user-minus:before{content:"\ece8"}.bxs-user-pin:before{content:"\ece9"}.bxs-user-plus:before{content:"\ecea"}.bxs-user-rectangle:before{content:"\eceb"}.bxs-user-voice:before{content:"\ecec"}.bxs-user-x:before{content:"\eced"}.bxs-vial:before{content:"\ecee"}.bxs-video:before{content:"\ecef"}.bxs-video-off:before{content:"\ecf0"}.bxs-video-plus:before{content:"\ecf1"}.bxs-video-recording:before{content:"\ecf2"}.bxs-videos:before{content:"\ecf3"}.bxs-volume:before{content:"\ecf4"}.bxs-volume-full:before{content:"\ecf5"}.bxs-volume-low:before{content:"\ecf6"}.bxs-volume-mute:before{content:"\ecf7"}.bxs-wallet:before{content:"\ecf8"}.bxs-wallet-alt:before{content:"\ecf9"}.bxs-watch:before{content:"\ecfa"}.bxs-watch-alt:before{content:"\ecfb"}.bxs-widget:before{content:"\ecfc"}.bxs-wine:before{content:"\ecfd"}.bxs-wrench:before{content:"\ecfe"}.bxs-x-circle:before{content:"\ecff"}.bxs-x-square:before{content:"\ed00"}.bxs-yin-yang:before{content:"\ed01"}.bxs-zap:before{content:"\ed02"}.bxs-zoom-in:before{content:"\ed03"}.bxs-zoom-out:before{content:"\ed04"} \ No newline at end of file +@font-face{font-family:boxicons;font-weight:400;font-style:normal;src:url(../fonts/boxicons.eot);src:url(../fonts/boxicons.eot) format('embedded-opentype'),url(../fonts/boxicons.woff2) format('woff2'),url(../fonts/boxicons.woff) format('woff'),url(../fonts/boxicons.ttf) format('truetype'),url(../fonts/boxicons.svg?#boxicons) format('svg')}.bx{font-family:boxicons!important;font-weight:400;font-style:normal;font-variant:normal;line-height:1;display:inline-block;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bx-ul{margin-left:2em;padding-left:0;list-style:none}.bx-ul>li{position:relative}.bx-ul .bx{font-size:inherit;line-height:inherit;position:absolute;left:-2em;width:2em;text-align:center}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@-webkit-keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@-webkit-keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@-webkit-keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@-webkit-keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@-webkit-keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,-10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bx-spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-spin-hover:hover{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-tada{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-tada-hover:hover{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-flashing{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-flashing-hover:hover{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-burst{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-burst-hover:hover{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-fade-up{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-up-hover:hover{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-down{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-down-hover:hover{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-left{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-left-hover:hover{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-right{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}.bx-fade-right-hover:hover{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}.bx-xs{font-size:1rem!important}.bx-sm{font-size:1.55rem!important}.bx-md{font-size:2.25rem!important}.bx-fw{font-size:1.2857142857em;line-height:.8em;width:1.2857142857em;height:.8em;margin-top:-.2em!important;vertical-align:middle}.bx-lg{font-size:3rem!important}.bx-pull-left{float:left;margin-right:.3em!important}.bx-pull-right{float:right;margin-left:.3em!important}.bx-rotate-90{transform:rotate(90deg)}.bx-rotate-180{transform:rotate(180deg)}.bx-rotate-270{transform:rotate(270deg)}.bx-flip-horizontal{transform:scaleX(-1)}.bx-flip-vertical{transform:scaleY(-1)}.bx-border{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:.25em}.bx-border-circle{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:50%}.bxl-500px:before{content:"\e900"}.bxl-airbnb:before{content:"\e901"}.bxl-amazon:before{content:"\e902"}.bxl-android:before{content:"\e903"}.bxl-angular:before{content:"\e904"}.bxl-apple:before{content:"\e905"}.bxl-baidu:before{content:"\e906"}.bxl-behance:before{content:"\e907"}.bxl-bing:before{content:"\e908"}.bxl-bitcoin:before{content:"\e909"}.bxl-blogger:before{content:"\e90a"}.bxl-bootstrap:before{content:"\e90b"}.bxl-chrome:before{content:"\e90c"}.bxl-codepen:before{content:"\e90d"}.bxl-creative-commons:before{content:"\e90e"}.bxl-css3:before{content:"\e90f"}.bxl-dailymotion:before{content:"\e910"}.bxl-deviantart:before{content:"\e911"}.bxl-digg:before{content:"\e912"}.bxl-digitalocean:before{content:"\e913"}.bxl-discord:before{content:"\e914"}.bxl-discourse:before{content:"\e915"}.bxl-dribbble:before{content:"\e916"}.bxl-dropbox:before{content:"\e917"}.bxl-drupal:before{content:"\e918"}.bxl-ebay:before{content:"\e919"}.bxl-edge:before{content:"\e91a"}.bxl-facebook:before{content:"\e91b"}.bxl-facebook-square:before{content:"\e91c"}.bxl-firefox:before{content:"\e91d"}.bxl-flickr:before{content:"\e91e"}.bxl-flickr-square:before{content:"\e91f"}.bxl-foursquare:before{content:"\e920"}.bxl-git:before{content:"\e921"}.bxl-github:before{content:"\e922"}.bxl-google:before{content:"\e923"}.bxl-google-plus:before{content:"\e924"}.bxl-google-plus-circle:before{content:"\e925"}.bxl-html5:before{content:"\e926"}.bxl-instagram:before{content:"\e927"}.bxl-instagram-alt:before{content:"\e928"}.bxl-internet-explorer:before{content:"\e929"}.bxl-invision:before{content:"\e92a"}.bxl-javascript:before{content:"\e92b"}.bxl-joomla:before{content:"\e92c"}.bxl-jsfiddle:before{content:"\e92d"}.bxl-kickstarter:before{content:"\e92e"}.bxl-less:before{content:"\e92f"}.bxl-linkedin:before{content:"\e930"}.bxl-linkedin-square:before{content:"\e931"}.bxl-magento:before{content:"\e932"}.bxl-mailchimp:before{content:"\e933"}.bxl-mastercard:before{content:"\e934"}.bxl-medium:before{content:"\e935"}.bxl-medium-old:before{content:"\e936"}.bxl-medium-square:before{content:"\e937"}.bxl-messenger:before{content:"\e938"}.bxl-microsoft:before{content:"\e939"}.bxl-nodejs:before{content:"\e93a"}.bxl-opera:before{content:"\e93b"}.bxl-paypal:before{content:"\e93c"}.bxl-periscope:before{content:"\e93d"}.bxl-pinterest:before{content:"\e93e"}.bxl-play-store:before{content:"\e93f"}.bxl-pocket:before{content:"\e940"}.bxl-product-hunt:before{content:"\e941"}.bxl-quora:before{content:"\e942"}.bxl-react:before{content:"\e943"}.bxl-reddit:before{content:"\e944"}.bxl-redux:before{content:"\e945"}.bxl-sass:before{content:"\e946"}.bxl-shopify:before{content:"\e947"}.bxl-skype:before{content:"\e948"}.bxl-slack:before{content:"\e949"}.bxl-slack-old:before{content:"\e94a"}.bxl-snapchat:before{content:"\e94b"}.bxl-soundcloud:before{content:"\e94c"}.bxl-spotify:before{content:"\e94d"}.bxl-squarespace:before{content:"\e94e"}.bxl-stack-overflow:before{content:"\e94f"}.bxl-stripe:before{content:"\e950"}.bxl-telegram:before{content:"\e951"}.bxl-trello:before{content:"\e952"}.bxl-tumblr:before{content:"\e953"}.bxl-twitch:before{content:"\e954"}.bxl-twitter:before{content:"\e955"}.bxl-unsplash:before{content:"\e956"}.bxl-vimeo:before{content:"\e957"}.bxl-visa:before{content:"\e958"}.bxl-vk:before{content:"\e959"}.bxl-vuejs:before{content:"\e95a"}.bxl-whatsapp:before{content:"\e95b"}.bxl-whatsapp-square:before{content:"\e95c"}.bxl-wikipedia:before{content:"\e95d"}.bxl-windows:before{content:"\e95e"}.bxl-wix:before{content:"\e95f"}.bxl-wordpress:before{content:"\e960"}.bxl-yahoo:before{content:"\e961"}.bxl-yelp:before{content:"\e962"}.bxl-youtube:before{content:"\e963"}.bx-archive-in:before{content:"\e964"}.bx-archive-out:before{content:"\e965"}.bx-archive:before{content:"\e966"}.bx-tone:before{content:"\e967"}.bx-bolt-circle:before{content:"\e968"}.bx-check-shield:before{content:"\e969"}.bx-face:before{content:"\e96a"}.bx-file-find:before{content:"\e96b"}.bx-label:before{content:"\e96c"}.bx-exit:before{content:"\e96d"}.bx-extension:before{content:"\e96e"}.bx-cake:before{content:"\e96f"}.bx-dish:before{content:"\e970"}.bx-fridge:before{content:"\e971"}.bx-spa:before{content:"\e972"}.bx-image-add:before{content:"\e973"}.bx-image-alt:before{content:"\e974"}.bx-alarm-add:before{content:"\e975"}.bx-space-bar:before{content:"\e976"}.bx-add-to-queue:before{content:"\e977"}.bx-border-radius:before{content:"\e978"}.bx-map-alt:before{content:"\e979"}.bx-message-dots:before{content:"\e97a"}.bx-downvote:before{content:"\e97b"}.bx-upvote:before{content:"\e97c"}.bx-briefcase:before{content:"\e97d"}.bx-dollar:before{content:"\e97e"}.bx-wallet-alt:before{content:"\e97f"}.bx-shuffle:before{content:"\e980"}.bx-building-house:before{content:"\e981"}.bx-comment:before{content:"\e982"}.bx-comment-dots:before{content:"\e983"}.bx-book-content:before{content:"\e984"}.bx-chat:before{content:"\e985"}.bx-detail:before{content:"\e986"}.bx-message-rounded-dots:before{content:"\e987"}.bx-buildings:before{content:"\e988"}.bx-edit-alt:before{content:"\e989"}.bx-notepad:before{content:"\e98a"}.bx-briefcase-alt-2:before{content:"\e98b"}.bx-gas-pump:before{content:"\e98c"}.bx-sort-z-a:before{content:"\e98d"}.bx-brush-alt:before{content:"\e98e"}.bx-printer:before{content:"\e98f"}.bx-radio:before{content:"\e990"}.bx-sort-a-z:before{content:"\e991"}.bx-credit-card-alt:before{content:"\e992"}.bx-message-alt:before{content:"\e993"}.bx-message-alt-dots:before{content:"\e994"}.bx-id-card:before{content:"\e995"}.bx-move-horizontal:before{content:"\e996"}.bx-move-vertical:before{content:"\e997"}.bx-sort-down:before{content:"\e998"}.bx-sort-up:before{content:"\e999"}.bx-money:before{content:"\e99a"}.bx-movie:before{content:"\e99b"}.bx-code-block:before{content:"\e99c"}.bx-photo-album:before{content:"\e99d"}.bx-restaurant:before{content:"\e99e"}.bx-rewind-circle:before{content:"\e99f"}.bx-briefcase-alt:before{content:"\e9a0"}.bx-wallet:before{content:"\e9a1"}.bx-window-close:before{content:"\e9a2"}.bx-chalkboard:before{content:"\e9a3"}.bx-world:before{content:"\e9a4"}.bx-purchase-tag:before{content:"\e9a5"}.bx-hdd:before{content:"\e9a6"}.bx-rename:before{content:"\e9a7"}.bx-skip-previous-circle:before{content:"\e9a8"}.bx-chip:before{content:"\e9a9"}.bx-images:before{content:"\e9aa"}.bx-news:before{content:"\e9ab"}.bx-skip-next-circle:before{content:"\e9ac"}.bx-closet:before{content:"\e9ad"}.bx-ruler:before{content:"\e9ae"}.bx-tv:before{content:"\e9af"}.bx-battery:before{content:"\e9b0"}.bx-task:before{content:"\e9b1"}.bx-repeat:before{content:"\e9b2"}.bx-flag:before{content:"\e9b3"}.bx-repost:before{content:"\e9b4"}.bx-support:before{content:"\e9b5"}.bx-reply-all:before{content:"\e9b6"}.bx-subdirectory-left:before{content:"\e9b7"}.bx-subdirectory-right:before{content:"\e9b8"}.bx-reply:before{content:"\e9b9"}.bx-wrench:before{content:"\e9ba"}.bx-credit-card:before{content:"\e9bb"}.bx-notification:before{content:"\e9bc"}.bx-paragraph:before{content:"\e9bd"}.bx-diamond:before{content:"\e9be"}.bx-screenshot:before{content:"\e9bf"}.bx-sort:before{content:"\e9c0"}.bx-check:before{content:"\e9c1"}.bx-minus:before{content:"\e9c2"}.bx-x:before{content:"\e9c3"}.bx-plus:before{content:"\e9c4"}.bx-shopping-bag:before{content:"\e9c5"}.bx-edit:before{content:"\e9c6"}.bx-bold:before{content:"\e9c7"}.bx-columns:before{content:"\e9c8"}.bx-cut:before{content:"\e9c9"}.bx-font-family:before{content:"\e9ca"}.bx-crop:before{content:"\e9cb"}.bx-font-size:before{content:"\e9cc"}.bx-paste:before{content:"\e9cd"}.bx-underline:before{content:"\e9ce"}.bx-heading:before{content:"\e9cf"}.bx-italic:before{content:"\e9d0"}.bx-text:before{content:"\e9d1"}.bx-font:before{content:"\e9d2"}.bx-pulse:before{content:"\e9d3"}.bx-dashboard:before{content:"\e9d4"}.bx-desktop:before{content:"\e9d5"}.bx-sitemap:before{content:"\e9d6"}.bx-terminal:before{content:"\e9d7"}.bx-laptop:before{content:"\e9d8"}.bx-usb:before{content:"\e9d9"}.bx-windows:before{content:"\e9da"}.bx-message:before{content:"\e9db"}.bx-message-rounded:before{content:"\e9dc"}.bx-book-bookmark:before{content:"\e9dd"}.bx-mobile-alt:before{content:"\e9de"}.bx-tag:before{content:"\e9df"}.bx-book:before{content:"\e9e0"}.bx-bookmark-minus:before{content:"\e9e1"}.bx-bus:before{content:"\e9e2"}.bx-window:before{content:"\e9e3"}.bx-window-open:before{content:"\e9e4"}.bx-bookmark-plus:before{content:"\e9e5"}.bx-sidebar:before{content:"\e9e6"}.bx-table:before{content:"\e9e7"}.bx-clipboard:before{content:"\e9e8"}.bx-copy:before{content:"\e9e9"}.bx-play-circle:before{content:"\e9ea"}.bx-stop-circle:before{content:"\e9eb"}.bx-bookmarks:before{content:"\e9ec"}.bx-coffee:before{content:"\e9ed"}.bx-fast-forward-circle:before{content:"\e9ee"}.bx-rectangle:before{content:"\e9ef"}.bx-fullscreen:before{content:"\e9f0"}.bx-bookmark:before{content:"\e9f1"}.bx-accessibility:before{content:"\e9f2"}.bx-adjust:before{content:"\e9f3"}.bx-alarm:before{content:"\e9f4"}.bx-alarm-off:before{content:"\e9f5"}.bx-album:before{content:"\e9f6"}.bx-align-justify:before{content:"\e9f7"}.bx-align-left:before{content:"\e9f8"}.bx-align-middle:before{content:"\e9f9"}.bx-align-right:before{content:"\e9fa"}.bx-ambulance:before{content:"\e9fb"}.bx-analyse:before{content:"\e9fc"}.bx-anchor:before{content:"\e9fd"}.bx-aperture:before{content:"\e9fe"}.bx-area:before{content:"\e9ff"}.bx-arrow-back:before{content:"\ea00"}.bx-at:before{content:"\ea01"}.bx-award:before{content:"\ea02"}.bx-badge:before{content:"\ea03"}.bx-badge-check:before{content:"\ea04"}.bx-ball:before{content:"\ea05"}.bx-band-aid:before{content:"\ea06"}.bx-bar-chart:before{content:"\ea07"}.bx-bar-chart-alt:before{content:"\ea08"}.bx-bar-chart-alt-2:before{content:"\ea09"}.bx-bar-chart-square:before{content:"\ea0a"}.bx-barcode:before{content:"\ea0b"}.bx-basket:before{content:"\ea0c"}.bx-basketball:before{content:"\ea0d"}.bx-bath:before{content:"\ea0e"}.bx-bed:before{content:"\ea0f"}.bx-bell:before{content:"\ea10"}.bx-bell-minus:before{content:"\ea11"}.bx-bell-off:before{content:"\ea12"}.bx-bell-plus:before{content:"\ea13"}.bx-bicycle:before{content:"\ea14"}.bx-block:before{content:"\ea15"}.bx-bluetooth:before{content:"\ea16"}.bx-body:before{content:"\ea17"}.bx-book-open:before{content:"\ea18"}.bx-border-all:before{content:"\ea19"}.bx-border-bottom:before{content:"\ea1a"}.bx-border-left:before{content:"\ea1b"}.bx-border-right:before{content:"\ea1c"}.bx-border-top:before{content:"\ea1d"}.bx-bot:before{content:"\ea1e"}.bx-bowling-ball:before{content:"\ea1f"}.bx-box:before{content:"\ea20"}.bx-brightness:before{content:"\ea21"}.bx-brightness-half:before{content:"\ea22"}.bx-broadcast:before{content:"\ea23"}.bx-brush:before{content:"\ea24"}.bx-bug:before{content:"\ea25"}.bx-bug-alt:before{content:"\ea26"}.bx-building:before{content:"\ea27"}.bx-bulb:before{content:"\ea28"}.bx-bullseye:before{content:"\ea29"}.bx-buoy:before{content:"\ea2a"}.bx-calculator:before{content:"\ea2b"}.bx-calendar:before{content:"\ea2c"}.bx-calendar-alt:before{content:"\ea2d"}.bx-calendar-check:before{content:"\ea2e"}.bx-calendar-event:before{content:"\ea2f"}.bx-calendar-minus:before{content:"\ea30"}.bx-calendar-plus:before{content:"\ea31"}.bx-calendar-x:before{content:"\ea32"}.bx-camera:before{content:"\ea33"}.bx-camera-off:before{content:"\ea34"}.bx-captions:before{content:"\ea35"}.bx-car:before{content:"\ea36"}.bx-card:before{content:"\ea37"}.bx-caret-down:before{content:"\ea38"}.bx-caret-left:before{content:"\ea39"}.bx-caret-right:before{content:"\ea3a"}.bx-caret-up:before{content:"\ea3b"}.bx-carousel:before{content:"\ea3c"}.bx-cart:before{content:"\ea3d"}.bx-cart-alt:before{content:"\ea3e"}.bx-cast:before{content:"\ea3f"}.bx-certification:before{content:"\ea40"}.bx-chart:before{content:"\ea41"}.bx-checkbox:before{content:"\ea42"}.bx-checkbox-checked:before{content:"\ea43"}.bx-checkbox-square:before{content:"\ea44"}.bx-check-circle:before{content:"\ea45"}.bx-check-double:before{content:"\ea46"}.bx-check-square:before{content:"\ea47"}.bx-chevron-down:before{content:"\ea48"}.bx-chevron-left:before{content:"\ea49"}.bx-chevron-right:before{content:"\ea4a"}.bx-chevrons-down:before{content:"\ea4b"}.bx-chevrons-left:before{content:"\ea4c"}.bx-chevrons-right:before{content:"\ea4d"}.bx-chevrons-up:before{content:"\ea4e"}.bx-chevron-up:before{content:"\ea4f"}.bx-circle:before{content:"\ea50"}.bx-cloud:before{content:"\ea51"}.bx-cloud-download:before{content:"\ea52"}.bx-cloud-drizzle:before{content:"\ea53"}.bx-cloud-lightning:before{content:"\ea54"}.bx-cloud-light-rain:before{content:"\ea55"}.bx-cloud-rain:before{content:"\ea56"}.bx-cloud-snow:before{content:"\ea57"}.bx-cloud-upload:before{content:"\ea58"}.bx-code:before{content:"\ea59"}.bx-code-alt:before{content:"\ea5a"}.bx-code-curly:before{content:"\ea5b"}.bx-cog:before{content:"\ea5c"}.bx-collapse:before{content:"\ea5d"}.bx-collection:before{content:"\ea5e"}.bx-command:before{content:"\ea5f"}.bx-compass:before{content:"\ea60"}.bx-conversation:before{content:"\ea61"}.bx-copy-alt:before{content:"\ea62"}.bx-copyright:before{content:"\ea63"}.bx-crosshair:before{content:"\ea64"}.bx-crown:before{content:"\ea65"}.bx-cube:before{content:"\ea66"}.bx-cube-alt:before{content:"\ea67"}.bx-cuboid:before{content:"\ea68"}.bx-customize:before{content:"\ea69"}.bx-cycling:before{content:"\ea6a"}.bx-cylinder:before{content:"\ea6b"}.bx-data:before{content:"\ea6c"}.bx-devices:before{content:"\ea6d"}.bx-dialpad:before{content:"\ea6e"}.bx-dialpad-alt:before{content:"\ea6f"}.bx-directions:before{content:"\ea70"}.bx-disc:before{content:"\ea71"}.bx-dislike:before{content:"\ea72"}.bx-dna:before{content:"\ea73"}.bx-dock-bottom:before{content:"\ea74"}.bx-dock-left:before{content:"\ea75"}.bx-dock-right:before{content:"\ea76"}.bx-dock-top:before{content:"\ea77"}.bx-dollar-circle:before{content:"\ea78"}.bx-dots-horizontal:before{content:"\ea79"}.bx-dots-horizontal-rounded:before{content:"\ea7a"}.bx-dots-vertical:before{content:"\ea7b"}.bx-dots-vertical-rounded:before{content:"\ea7c"}.bx-doughnut-chart:before{content:"\ea7d"}.bx-down-arrow:before{content:"\ea7e"}.bx-down-arrow-alt:before{content:"\ea7f"}.bx-down-arrow-circle:before{content:"\ea80"}.bx-download:before{content:"\ea81"}.bx-droplet:before{content:"\ea82"}.bx-dumbbell:before{content:"\ea83"}.bx-duplicate:before{content:"\ea84"}.bx-envelope:before{content:"\ea85"}.bx-equalizer:before{content:"\ea86"}.bx-error:before{content:"\ea87"}.bx-error-alt:before{content:"\ea88"}.bx-error-circle:before{content:"\ea89"}.bx-exit-fullscreen:before{content:"\ea8a"}.bx-expand:before{content:"\ea8b"}.bx-export:before{content:"\ea8c"}.bx-fast-forward:before{content:"\ea8d"}.bx-female:before{content:"\ea8e"}.bx-file:before{content:"\ea8f"}.bx-file-blank:before{content:"\ea90"}.bx-film:before{content:"\ea91"}.bx-filter:before{content:"\ea92"}.bx-filter-alt:before{content:"\ea93"}.bx-fingerprint:before{content:"\ea94"}.bx-first-aid:before{content:"\ea95"}.bx-first-page:before{content:"\ea96"}.bx-folder:before{content:"\ea97"}.bx-folder-minus:before{content:"\ea98"}.bx-folder-open:before{content:"\ea99"}.bx-folder-plus:before{content:"\ea9a"}.bx-font-color:before{content:"\ea9b"}.bx-football:before{content:"\ea9c"}.bx-ghost:before{content:"\ea9d"}.bx-gift:before{content:"\ea9e"}.bx-git-branch:before{content:"\ea9f"}.bx-git-commit:before{content:"\eaa0"}.bx-git-compare:before{content:"\eaa1"}.bx-git-merge:before{content:"\eaa2"}.bx-git-pull-request:before{content:"\eaa3"}.bx-git-repo-forked:before{content:"\eaa4"}.bx-globe:before{content:"\eaa5"}.bx-globe-alt:before{content:"\eaa6"}.bx-grid:before{content:"\eaa7"}.bx-grid-alt:before{content:"\eaa8"}.bx-grid-horizontal:before{content:"\eaa9"}.bx-grid-small:before{content:"\eaaa"}.bx-grid-vertical:before{content:"\eaab"}.bx-group:before{content:"\eaac"}.bx-handicap:before{content:"\eaad"}.bx-hash:before{content:"\eaae"}.bx-headphone:before{content:"\eaaf"}.bx-heart:before{content:"\eab0"}.bx-help-circle:before{content:"\eab1"}.bx-hide:before{content:"\eab2"}.bx-highlight:before{content:"\eab3"}.bx-history:before{content:"\eab4"}.bx-hive:before{content:"\eab5"}.bx-home:before{content:"\eab6"}.bx-home-alt:before{content:"\eab7"}.bx-home-circle:before{content:"\eab8"}.bx-horizontal-center:before{content:"\eab9"}.bx-hotel:before{content:"\eaba"}.bx-hourglass:before{content:"\eabb"}.bx-image:before{content:"\eabc"}.bx-import:before{content:"\eabd"}.bx-infinite:before{content:"\eabe"}.bx-info-circle:before{content:"\eabf"}.bx-joystick:before{content:"\eac0"}.bx-joystick-alt:before{content:"\eac1"}.bx-joystick-button:before{content:"\eac2"}.bx-key:before{content:"\eac3"}.bx-landscape:before{content:"\eac4"}.bx-last-page:before{content:"\eac5"}.bx-layer:before{content:"\eac6"}.bx-layout:before{content:"\eac7"}.bx-left-arrow:before{content:"\eac8"}.bx-left-arrow-alt:before{content:"\eac9"}.bx-left-arrow-circle:before{content:"\eaca"}.bx-left-down-arrow-circle:before{content:"\eacb"}.bx-left-indent:before{content:"\eacc"}.bx-left-top-arrow-circle:before{content:"\eacd"}.bx-like:before{content:"\eace"}.bx-line-chart:before{content:"\eacf"}.bx-link:before{content:"\ead0"}.bx-link-alt:before{content:"\ead1"}.bx-link-external:before{content:"\ead2"}.bx-list-check:before{content:"\ead3"}.bx-list-ol:before{content:"\ead4"}.bx-list-plus:before{content:"\ead5"}.bx-list-ul:before{content:"\ead6"}.bx-list-x:before{content:"\ead7"}.bx-loader:before{content:"\ead8"}.bx-loader-alt:before{content:"\ead9"}.bx-loader-circle:before{content:"\eada"}.bx-lock:before{content:"\eadb"}.bx-lock-alt:before{content:"\eadc"}.bx-lock-open:before{content:"\eadd"}.bx-lock-open-alt:before{content:"\eade"}.bx-log-in:before{content:"\eadf"}.bx-log-in-circle:before{content:"\eae0"}.bx-log-out:before{content:"\eae1"}.bx-log-out-circle:before{content:"\eae2"}.bx-magnet:before{content:"\eae3"}.bx-mail-send:before{content:"\eae4"}.bx-male:before{content:"\eae5"}.bx-map:before{content:"\eae6"}.bx-map-pin:before{content:"\eae7"}.bx-memory-card:before{content:"\eae8"}.bx-menu:before{content:"\eae9"}.bx-menu-alt-left:before{content:"\eaea"}.bx-menu-alt-right:before{content:"\eaeb"}.bx-message-square:before{content:"\eaec"}.bx-message-square-dots:before{content:"\eaed"}.bx-microphone:before{content:"\eaee"}.bx-microphone-off:before{content:"\eaef"}.bx-minus-circle:before{content:"\eaf0"}.bx-mobile:before{content:"\eaf1"}.bx-mobile-landscape:before{content:"\eaf2"}.bx-mobile-vibration:before{content:"\eaf3"}.bx-moon:before{content:"\eaf4"}.bx-mouse:before{content:"\eaf5"}.bx-mouse-alt:before{content:"\eaf6"}.bx-move:before{content:"\eaf7"}.bx-music:before{content:"\eaf8"}.bx-navigation:before{content:"\eaf9"}.bx-no-entry:before{content:"\eafa"}.bx-note:before{content:"\eafb"}.bx-notification-off:before{content:"\eafc"}.bx-package:before{content:"\eafd"}.bx-paint:before{content:"\eafe"}.bx-paint-roll:before{content:"\eaff"}.bx-palette:before{content:"\eb00"}.bx-paperclip:before{content:"\eb01"}.bx-paper-plane:before{content:"\eb02"}.bx-pause:before{content:"\eb03"}.bx-pause-circle:before{content:"\eb04"}.bx-pen:before{content:"\eb05"}.bx-pencil:before{content:"\eb06"}.bx-phone:before{content:"\eb07"}.bx-phone-call:before{content:"\eb08"}.bx-phone-incoming:before{content:"\eb09"}.bx-phone-outgoing:before{content:"\eb0a"}.bx-pie-chart:before{content:"\eb0b"}.bx-pie-chart-alt:before{content:"\eb0c"}.bx-pie-chart-alt-2:before{content:"\eb0d"}.bx-pin:before{content:"\eb0e"}.bx-planet:before{content:"\eb0f"}.bx-play:before{content:"\eb10"}.bx-plug:before{content:"\eb11"}.bx-plus-circle:before{content:"\eb12"}.bx-plus-medical:before{content:"\eb13"}.bx-poll:before{content:"\eb14"}.bx-polygon:before{content:"\eb15"}.bx-power-off:before{content:"\eb16"}.bx-purchase-tag-alt:before{content:"\eb17"}.bx-pyramid:before{content:"\eb18"}.bx-question-mark:before{content:"\eb19"}.bx-radar:before{content:"\eb1a"}.bx-radio-circle:before{content:"\eb1b"}.bx-radio-circle-marked:before{content:"\eb1c"}.bx-receipt:before{content:"\eb1d"}.bx-redo:before{content:"\eb1e"}.bx-reset:before{content:"\eb1f"}.bx-revision:before{content:"\eb20"}.bx-rewind:before{content:"\eb21"}.bx-right-arrow:before{content:"\eb22"}.bx-right-arrow-alt:before{content:"\eb23"}.bx-right-arrow-circle:before{content:"\eb24"}.bx-right-down-arrow-circle:before{content:"\eb25"}.bx-right-indent:before{content:"\eb26"}.bx-right-top-arrow-circle:before{content:"\eb27"}.bx-rocket:before{content:"\eb28"}.bx-rotate-left:before{content:"\eb29"}.bx-rotate-right:before{content:"\eb2a"}.bx-rss:before{content:"\eb2b"}.bx-run:before{content:"\eb2c"}.bx-save:before{content:"\eb2d"}.bx-search:before{content:"\eb2e"}.bx-search-alt:before{content:"\eb2f"}.bx-search-alt-2:before{content:"\eb30"}.bx-selection:before{content:"\eb31"}.bx-select-multiple:before{content:"\eb32"}.bx-send:before{content:"\eb33"}.bx-server:before{content:"\eb34"}.bx-shape-circle:before{content:"\eb35"}.bx-shape-square:before{content:"\eb36"}.bx-shape-triangle:before{content:"\eb37"}.bx-share:before{content:"\eb38"}.bx-share-alt:before{content:"\eb39"}.bx-shield:before{content:"\eb3a"}.bx-shield-alt:before{content:"\eb3b"}.bx-shield-alt-2:before{content:"\eb3c"}.bx-show:before{content:"\eb3d"}.bx-show-alt:before{content:"\eb3e"}.bx-skip-next:before{content:"\eb3f"}.bx-skip-previous:before{content:"\eb40"}.bx-slider:before{content:"\eb41"}.bx-slider-alt:before{content:"\eb42"}.bx-slideshow:before{content:"\eb43"}.bx-spreadsheet:before{content:"\eb44"}.bx-square:before{content:"\eb45"}.bx-square-rounded:before{content:"\eb46"}.bx-star:before{content:"\eb47"}.bx-station:before{content:"\eb48"}.bx-stats:before{content:"\eb49"}.bx-stop:before{content:"\eb4a"}.bx-stopwatch:before{content:"\eb4b"}.bx-store:before{content:"\eb4c"}.bx-store-alt:before{content:"\eb4d"}.bx-street-view:before{content:"\eb4e"}.bx-strikethrough:before{content:"\eb4f"}.bx-sun:before{content:"\eb50"}.bx-swim:before{content:"\eb51"}.bx-sync:before{content:"\eb52"}.bx-tab:before{content:"\eb53"}.bx-target-lock:before{content:"\eb54"}.bx-taxi:before{content:"\eb55"}.bx-tennis-ball:before{content:"\eb56"}.bx-test-tube:before{content:"\eb57"}.bx-time:before{content:"\eb58"}.bx-time-five:before{content:"\eb59"}.bx-timer:before{content:"\eb5a"}.bx-toggle-left:before{content:"\eb5b"}.bx-toggle-right:before{content:"\eb5c"}.bx-traffic-barrier:before{content:"\eb5d"}.bx-train:before{content:"\eb5e"}.bx-transfer:before{content:"\eb5f"}.bx-transfer-alt:before{content:"\eb60"}.bx-trash:before{content:"\eb61"}.bx-trash-alt:before{content:"\eb62"}.bx-trending-down:before{content:"\eb63"}.bx-trending-up:before{content:"\eb64"}.bx-trophy:before{content:"\eb65"}.bx-truck:before{content:"\eb66"}.bx-undo:before{content:"\eb67"}.bx-unlink:before{content:"\eb68"}.bx-up-arrow:before{content:"\eb69"}.bx-up-arrow-alt:before{content:"\eb6a"}.bx-up-arrow-circle:before{content:"\eb6b"}.bx-upload:before{content:"\eb6c"}.bx-user:before{content:"\eb6d"}.bx-user-check:before{content:"\eb6e"}.bx-user-circle:before{content:"\eb6f"}.bx-user-minus:before{content:"\eb70"}.bx-user-pin:before{content:"\eb71"}.bx-user-plus:before{content:"\eb72"}.bx-user-voice:before{content:"\eb73"}.bx-user-x:before{content:"\eb74"}.bx-vertical-center:before{content:"\eb75"}.bx-video:before{content:"\eb76"}.bx-video-off:before{content:"\eb77"}.bx-video-plus:before{content:"\eb78"}.bx-video-recording:before{content:"\eb79"}.bx-voicemail:before{content:"\eb7a"}.bx-volume:before{content:"\eb7b"}.bx-volume-full:before{content:"\eb7c"}.bx-volume-low:before{content:"\eb7d"}.bx-volume-mute:before{content:"\eb7e"}.bx-walk:before{content:"\eb7f"}.bx-water:before{content:"\eb80"}.bx-wifi:before{content:"\eb81"}.bx-wifi-off:before{content:"\eb82"}.bx-wind:before{content:"\eb83"}.bx-x-circle:before{content:"\eb84"}.bx-zoom-in:before{content:"\eb85"}.bx-zoom-out:before{content:"\eb86"}.bxs-archive:before{content:"\eb87"}.bxs-archive-out:before{content:"\eb88"}.bxs-archive-in:before{content:"\eb89"}.bxs-city:before{content:"\eb8a"}.bxs-cake:before{content:"\eb8b"}.bxs-spa:before{content:"\eb8c"}.bxs-dish:before{content:"\eb8d"}.bxs-fridge:before{content:"\eb8e"}.bxs-image-add:before{content:"\eb8f"}.bxs-alarm-add:before{content:"\eb90"}.bxs-add-to-queue:before{content:"\eb91"}.bxs-bolt-circle:before{content:"\eb92"}.bxs-check-shield:before{content:"\eb93"}.bxs-file-find:before{content:"\eb94"}.bxs-label:before{content:"\eb95"}.bxs-exit:before{content:"\eb96"}.bxs-extension:before{content:"\eb97"}.bxs-face:before{content:"\eb98"}.bxs-downvote:before{content:"\eb99"}.bxs-upvote:before{content:"\eb9a"}.bxs-user-circle:before{content:"\eb9b"}.bxs-cart:before{content:"\eb9c"}.bxs-magnet:before{content:"\eb9d"}.bxs-briefcase:before{content:"\eb9e"}.bxs-book:before{content:"\eb9f"}.bxs-watch:before{content:"\eba0"}.bxs-wallet-alt:before{content:"\eba1"}.bxs-edit:before{content:"\eba2"}.bxs-shield-alt-2:before{content:"\eba3"}.bxs-building-house:before{content:"\eba4"}.bxs-star:before{content:"\eba5"}.bxs-bar-chart-alt-2:before{content:"\eba6"}.bxs-message-rounded-dots:before{content:"\eba7"}.bxs-message-rounded:before{content:"\eba8"}.bxs-brush-alt:before{content:"\eba9"}.bxs-message-alt-dots:before{content:"\ebaa"}.bxs-message-alt:before{content:"\ebab"}.bxs-brush:before{content:"\ebac"}.bxs-gas-pump:before{content:"\ebad"}.bxs-megaphone:before{content:"\ebae"}.bxs-ship:before{content:"\ebaf"}.bxs-bath:before{content:"\ebb0"}.bxs-bed:before{content:"\ebb1"}.bxs-photo-album:before{content:"\ebb2"}.bxs-grid-alt:before{content:"\ebb3"}.bxs-sort-alt:before{content:"\ebb4"}.bxs-wallet:before{content:"\ebb5"}.bxs-categories:before{content:"\ebb6"}.bxs-movie:before{content:"\ebb7"}.bxs-watch-alt:before{content:"\ebb8"}.bxs-buildings:before{content:"\ebb9"}.bxs-chat:before{content:"\ebba"}.bxs-briefcase-alt:before{content:"\ebbb"}.bxs-book-content:before{content:"\ebbc"}.bxs-message-dots:before{content:"\ebbd"}.bxs-edit-alt:before{content:"\ebbe"}.bxs-notepad:before{content:"\ebbf"}.bxs-briefcase-alt-2:before{content:"\ebc0"}.bxs-credit-card:before{content:"\ebc1"}.bxs-credit-card-alt:before{content:"\ebc2"}.bxs-no-entry:before{content:"\ebc3"}.bxs-battery-charging:before{content:"\ebc4"}.bxs-battery-full:before{content:"\ebc5"}.bxs-hdd:before{content:"\ebc6"}.bxs-news:before{content:"\ebc7"}.bxs-ruler:before{content:"\ebc8"}.bxs-filter-alt:before{content:"\ebc9"}.bxs-purchase-tag:before{content:"\ebca"}.bxs-battery-low:before{content:"\ebcb"}.bxs-chip:before{content:"\ebcc"}.bxs-rename:before{content:"\ebcd"}.bxs-battery:before{content:"\ebce"}.bxs-flag:before{content:"\ebcf"}.bxs-wrench:before{content:"\ebd0"}.bxs-t-shirt:before{content:"\ebd1"}.bxs-paste:before{content:"\ebd2"}.bxs-share:before{content:"\ebd3"}.bxs-bolt:before{content:"\ebd4"}.bxs-coffee-alt:before{content:"\ebd5"}.bxs-pin:before{content:"\ebd6"}.bxs-shopping-bag:before{content:"\ebd7"}.bxs-shopping-bag-alt:before{content:"\ebd8"}.bxs-trophy:before{content:"\ebd9"}.bxs-coupon:before{content:"\ebda"}.bxs-discount:before{content:"\ebdb"}.bxs-inbox:before{content:"\ebdc"}.bxs-widget:before{content:"\ebdd"}.bxs-printer:before{content:"\ebde"}.bxs-radio:before{content:"\ebdf"}.bxs-terminal:before{content:"\ebe0"}.bxs-message:before{content:"\ebe1"}.bxs-tag:before{content:"\ebe2"}.bxs-tag-x:before{content:"\ebe3"}.bxs-building:before{content:"\ebe4"}.bxs-book-bookmark:before{content:"\ebe5"}.bxs-bus:before{content:"\ebe6"}.bxs-copy-alt:before{content:"\ebe7"}.bxs-coffee:before{content:"\ebe8"}.bxs-copy:before{content:"\ebe9"}.bxs-x-circle:before{content:"\ebea"}.bxs-zoom-out:before{content:"\ebeb"}.bxs-adjust:before{content:"\ebec"}.bxs-adjust-alt:before{content:"\ebed"}.bxs-alarm:before{content:"\ebee"}.bxs-alarm-off:before{content:"\ebef"}.bxs-album:before{content:"\ebf0"}.bxs-ambulance:before{content:"\ebf1"}.bxs-analyse:before{content:"\ebf2"}.bxs-area:before{content:"\ebf3"}.bxs-award:before{content:"\ebf4"}.bxs-badge:before{content:"\ebf5"}.bxs-badge-check:before{content:"\ebf6"}.bxs-ball:before{content:"\ebf7"}.bxs-band-aid:before{content:"\ebf8"}.bxs-bank:before{content:"\ebf9"}.bxs-bar-chart-square:before{content:"\ebfa"}.bxs-barcode:before{content:"\ebfb"}.bxs-basket:before{content:"\ebfc"}.bxs-bell:before{content:"\ebfd"}.bxs-bell-minus:before{content:"\ebfe"}.bxs-bell-off:before{content:"\ebff"}.bxs-bell-plus:before{content:"\ec00"}.bxs-bell-ring:before{content:"\ec01"}.bxs-bookmark:before{content:"\ec02"}.bxs-bookmark-minus:before{content:"\ec03"}.bxs-bookmark-plus:before{content:"\ec04"}.bxs-bookmarks:before{content:"\ec05"}.bxs-bookmark-star:before{content:"\ec06"}.bxs-book-open:before{content:"\ec07"}.bxs-bot:before{content:"\ec08"}.bxs-bowling-ball:before{content:"\ec09"}.bxs-box:before{content:"\ec0a"}.bxs-brightness:before{content:"\ec0b"}.bxs-brightness-half:before{content:"\ec0c"}.bxs-bug:before{content:"\ec0d"}.bxs-bug-alt:before{content:"\ec0e"}.bxs-bulb:before{content:"\ec0f"}.bxs-buoy:before{content:"\ec10"}.bxs-calculator:before{content:"\ec11"}.bxs-calendar:before{content:"\ec12"}.bxs-calendar-alt:before{content:"\ec13"}.bxs-calendar-check:before{content:"\ec14"}.bxs-calendar-event:before{content:"\ec15"}.bxs-calendar-minus:before{content:"\ec16"}.bxs-calendar-plus:before{content:"\ec17"}.bxs-calendar-x:before{content:"\ec18"}.bxs-camera:before{content:"\ec19"}.bxs-camera-off:before{content:"\ec1a"}.bxs-capsule:before{content:"\ec1b"}.bxs-captions:before{content:"\ec1c"}.bxs-car:before{content:"\ec1d"}.bxs-card:before{content:"\ec1e"}.bxs-carousel:before{content:"\ec1f"}.bxs-cart-alt:before{content:"\ec20"}.bxs-certification:before{content:"\ec21"}.bxs-chalkboard:before{content:"\ec22"}.bxs-chart:before{content:"\ec23"}.bxs-checkbox:before{content:"\ec24"}.bxs-checkbox-checked:before{content:"\ec25"}.bxs-check-circle:before{content:"\ec26"}.bxs-check-square:before{content:"\ec27"}.bxs-circle:before{content:"\ec28"}.bxs-cloud:before{content:"\ec29"}.bxs-cloud-download:before{content:"\ec2a"}.bxs-cloud-lightning:before{content:"\ec2b"}.bxs-cloud-rain:before{content:"\ec2c"}.bxs-cloud-upload:before{content:"\ec2d"}.bxs-cog:before{content:"\ec2e"}.bxs-collection:before{content:"\ec2f"}.bxs-color-fill:before{content:"\ec30"}.bxs-comment:before{content:"\ec31"}.bxs-comment-add:before{content:"\ec32"}.bxs-comment-detail:before{content:"\ec33"}.bxs-comment-dots:before{content:"\ec34"}.bxs-comment-error:before{content:"\ec35"}.bxs-compass:before{content:"\ec36"}.bxs-component:before{content:"\ec37"}.bxs-contact:before{content:"\ec38"}.bxs-conversation:before{content:"\ec39"}.bxs-crown:before{content:"\ec3a"}.bxs-cube:before{content:"\ec3b"}.bxs-cube-alt:before{content:"\ec3c"}.bxs-cuboid:before{content:"\ec3d"}.bxs-customize:before{content:"\ec3e"}.bxs-cylinder:before{content:"\ec3f"}.bxs-dashboard:before{content:"\ec40"}.bxs-data:before{content:"\ec41"}.bxs-detail:before{content:"\ec42"}.bxs-devices:before{content:"\ec43"}.bxs-direction-left:before{content:"\ec44"}.bxs-direction-right:before{content:"\ec45"}.bxs-directions:before{content:"\ec46"}.bxs-disc:before{content:"\ec47"}.bxs-dislike:before{content:"\ec48"}.bxs-dock-bottom:before{content:"\ec49"}.bxs-dock-left:before{content:"\ec4a"}.bxs-dock-right:before{content:"\ec4b"}.bxs-dock-top:before{content:"\ec4c"}.bxs-dollar-circle:before{content:"\ec4d"}.bxs-doughnut-chart:before{content:"\ec4e"}.bxs-down-arrow:before{content:"\ec4f"}.bxs-down-arrow-circle:before{content:"\ec50"}.bxs-down-arrow-square:before{content:"\ec51"}.bxs-download:before{content:"\ec52"}.bxs-drink:before{content:"\ec53"}.bxs-droplet:before{content:"\ec54"}.bxs-droplet-half:before{content:"\ec55"}.bxs-duplicate:before{content:"\ec56"}.bxs-eject:before{content:"\ec57"}.bxs-envelope:before{content:"\ec58"}.bxs-eraser:before{content:"\ec59"}.bxs-error:before{content:"\ec5a"}.bxs-error-alt:before{content:"\ec5b"}.bxs-error-circle:before{content:"\ec5c"}.bxs-eyedropper:before{content:"\ec5d"}.bxs-factory:before{content:"\ec5e"}.bxs-fast-forward-circle:before{content:"\ec5f"}.bxs-file:before{content:"\ec60"}.bxs-file-blank:before{content:"\ec61"}.bxs-file-css:before{content:"\ec62"}.bxs-file-doc:before{content:"\ec63"}.bxs-file-gif:before{content:"\ec64"}.bxs-file-html:before{content:"\ec65"}.bxs-file-image:before{content:"\ec66"}.bxs-file-jpg:before{content:"\ec67"}.bxs-file-js:before{content:"\ec68"}.bxs-file-json:before{content:"\ec69"}.bxs-file-md:before{content:"\ec6a"}.bxs-file-pdf:before{content:"\ec6b"}.bxs-file-plus:before{content:"\ec6c"}.bxs-file-png:before{content:"\ec6d"}.bxs-file-txt:before{content:"\ec6e"}.bxs-film:before{content:"\ec6f"}.bxs-first-aid:before{content:"\ec70"}.bxs-flag-alt:before{content:"\ec71"}.bxs-flame:before{content:"\ec72"}.bxs-flask:before{content:"\ec73"}.bxs-folder:before{content:"\ec74"}.bxs-folder-minus:before{content:"\ec75"}.bxs-folder-open:before{content:"\ec76"}.bxs-folder-plus:before{content:"\ec77"}.bxs-ghost:before{content:"\ec78"}.bxs-gift:before{content:"\ec79"}.bxs-graduation:before{content:"\ec7a"}.bxs-grid:before{content:"\ec7b"}.bxs-group:before{content:"\ec7c"}.bxs-heart:before{content:"\ec7d"}.bxs-help-circle:before{content:"\ec7e"}.bxs-hide:before{content:"\ec7f"}.bxs-home:before{content:"\ec80"}.bxs-home-circle:before{content:"\ec81"}.bxs-hot:before{content:"\ec82"}.bxs-hotel:before{content:"\ec83"}.bxs-hourglass:before{content:"\ec84"}.bxs-hourglass-bottom:before{content:"\ec85"}.bxs-hourglass-top:before{content:"\ec86"}.bxs-id-card:before{content:"\ec87"}.bxs-image:before{content:"\ec88"}.bxs-image-alt:before{content:"\ec89"}.bxs-info-circle:before{content:"\ec8a"}.bxs-institution:before{content:"\ec8b"}.bxs-joystick:before{content:"\ec8c"}.bxs-joystick-alt:before{content:"\ec8d"}.bxs-joystick-button:before{content:"\ec8e"}.bxs-key:before{content:"\ec8f"}.bxs-keyboard:before{content:"\ec90"}.bxs-landmark:before{content:"\ec91"}.bxs-landscape:before{content:"\ec92"}.bxs-layer:before{content:"\ec93"}.bxs-layout:before{content:"\ec94"}.bxs-left-arrow:before{content:"\ec95"}.bxs-left-arrow-circle:before{content:"\ec96"}.bxs-left-arrow-square:before{content:"\ec97"}.bxs-left-down-arrow-circle:before{content:"\ec98"}.bxs-left-top-arrow-circle:before{content:"\ec99"}.bxs-like:before{content:"\ec9a"}.bxs-lock:before{content:"\ec9b"}.bxs-lock-alt:before{content:"\ec9c"}.bxs-lock-open:before{content:"\ec9d"}.bxs-lock-open-alt:before{content:"\ec9e"}.bxs-log-in:before{content:"\ec9f"}.bxs-log-in-circle:before{content:"\eca0"}.bxs-log-out:before{content:"\eca1"}.bxs-log-out-circle:before{content:"\eca2"}.bxs-magic-wand:before{content:"\eca3"}.bxs-map:before{content:"\eca4"}.bxs-map-alt:before{content:"\eca5"}.bxs-map-pin:before{content:"\eca6"}.bxs-memory-card:before{content:"\eca7"}.bxs-message-square:before{content:"\eca8"}.bxs-message-square-dots:before{content:"\eca9"}.bxs-microphone:before{content:"\ecaa"}.bxs-microphone-alt:before{content:"\ecab"}.bxs-microphone-off:before{content:"\ecac"}.bxs-minus-circle:before{content:"\ecad"}.bxs-minus-square:before{content:"\ecae"}.bxs-mobile:before{content:"\ecaf"}.bxs-mobile-vibration:before{content:"\ecb0"}.bxs-moon:before{content:"\ecb1"}.bxs-mouse:before{content:"\ecb2"}.bxs-mouse-alt:before{content:"\ecb3"}.bxs-music:before{content:"\ecb4"}.bxs-navigation:before{content:"\ecb5"}.bxs-note:before{content:"\ecb6"}.bxs-notification:before{content:"\ecb7"}.bxs-notification-off:before{content:"\ecb8"}.bxs-package:before{content:"\ecb9"}.bxs-paint:before{content:"\ecba"}.bxs-paint-roll:before{content:"\ecbb"}.bxs-palette:before{content:"\ecbc"}.bxs-paper-plane:before{content:"\ecbd"}.bxs-parking:before{content:"\ecbe"}.bxs-pen:before{content:"\ecbf"}.bxs-pencil:before{content:"\ecc0"}.bxs-phone:before{content:"\ecc1"}.bxs-phone-call:before{content:"\ecc2"}.bxs-phone-incoming:before{content:"\ecc3"}.bxs-phone-outgoing:before{content:"\ecc4"}.bxs-pie-chart:before{content:"\ecc5"}.bxs-pie-chart-alt:before{content:"\ecc6"}.bxs-pie-chart-alt-2:before{content:"\ecc7"}.bxs-plane:before{content:"\ecc8"}.bxs-plane-alt:before{content:"\ecc9"}.bxs-plane-land:before{content:"\ecca"}.bxs-planet:before{content:"\eccb"}.bxs-plane-take-off:before{content:"\eccc"}.bxs-playlist:before{content:"\eccd"}.bxs-plug:before{content:"\ecce"}.bxs-plus-circle:before{content:"\eccf"}.bxs-plus-square:before{content:"\ecd0"}.bxs-polygon:before{content:"\ecd1"}.bxs-purchase-tag-alt:before{content:"\ecd2"}.bxs-pyramid:before{content:"\ecd3"}.bxs-quote-alt-left:before{content:"\ecd4"}.bxs-quote-alt-right:before{content:"\ecd5"}.bxs-quote-left:before{content:"\ecd6"}.bxs-quote-right:before{content:"\ecd7"}.bxs-quote-single-left:before{content:"\ecd8"}.bxs-quote-single-right:before{content:"\ecd9"}.bxs-receipt:before{content:"\ecda"}.bxs-rectangle:before{content:"\ecdb"}.bxs-report:before{content:"\ecdc"}.bxs-rewind-circle:before{content:"\ecdd"}.bxs-right-arrow:before{content:"\ecde"}.bxs-right-arrow-circle:before{content:"\ecdf"}.bxs-right-arrow-square:before{content:"\ece0"}.bxs-right-down-arrow-circle:before{content:"\ece1"}.bxs-right-top-arrow-circle:before{content:"\ece2"}.bxs-rocket:before{content:"\ece3"}.bxs-save:before{content:"\ece4"}.bxs-school:before{content:"\ece5"}.bxs-search:before{content:"\ece6"}.bxs-search-alt-2:before{content:"\ece7"}.bxs-select-multiple:before{content:"\ece8"}.bxs-send:before{content:"\ece9"}.bxs-server:before{content:"\ecea"}.bxs-share-alt:before{content:"\eceb"}.bxs-shield:before{content:"\ecec"}.bxs-show:before{content:"\eced"}.bxs-skip-next-circle:before{content:"\ecee"}.bxs-skip-previous-circle:before{content:"\ecef"}.bxs-skull:before{content:"\ecf0"}.bxs-slideshow:before{content:"\ecf1"}.bxs-smiley-happy:before{content:"\ecf2"}.bxs-smiley-meh:before{content:"\ecf3"}.bxs-smiley-sad:before{content:"\ecf4"}.bxs-spreadsheet:before{content:"\ecf5"}.bxs-square:before{content:"\ecf6"}.bxs-square-rounded:before{content:"\ecf7"}.bxs-star-half:before{content:"\ecf8"}.bxs-stopwatch:before{content:"\ecf9"}.bxs-store:before{content:"\ecfa"}.bxs-store-alt:before{content:"\ecfb"}.bxs-sun:before{content:"\ecfc"}.bxs-taxi:before{content:"\ecfd"}.bxs-tennis-ball:before{content:"\ecfe"}.bxs-thermometer:before{content:"\ecff"}.bxs-time:before{content:"\ed00"}.bxs-time-five:before{content:"\ed01"}.bxs-timer:before{content:"\ed02"}.bxs-toggle-left:before{content:"\ed03"}.bxs-toggle-right:before{content:"\ed04"}.bxs-torch:before{content:"\ed05"}.bxs-to-top:before{content:"\ed06"}.bxs-traffic:before{content:"\ed07"}.bxs-traffic-barrier:before{content:"\ed08"}.bxs-train:before{content:"\ed09"}.bxs-trash:before{content:"\ed0a"}.bxs-trash-alt:before{content:"\ed0b"}.bxs-tree:before{content:"\ed0c"}.bxs-truck:before{content:"\ed0d"}.bxs-up-arrow:before{content:"\ed0e"}.bxs-up-arrow-circle:before{content:"\ed0f"}.bxs-up-arrow-square:before{content:"\ed10"}.bxs-user:before{content:"\ed11"}.bxs-user-badge:before{content:"\ed12"}.bxs-user-check:before{content:"\ed13"}.bxs-user-detail:before{content:"\ed14"}.bxs-user-minus:before{content:"\ed15"}.bxs-user-pin:before{content:"\ed16"}.bxs-user-plus:before{content:"\ed17"}.bxs-user-rectangle:before{content:"\ed18"}.bxs-user-voice:before{content:"\ed19"}.bxs-user-x:before{content:"\ed1a"}.bxs-vial:before{content:"\ed1b"}.bxs-video:before{content:"\ed1c"}.bxs-video-off:before{content:"\ed1d"}.bxs-video-plus:before{content:"\ed1e"}.bxs-video-recording:before{content:"\ed1f"}.bxs-videos:before{content:"\ed20"}.bxs-volume:before{content:"\ed21"}.bxs-volume-full:before{content:"\ed22"}.bxs-volume-low:before{content:"\ed23"}.bxs-volume-mute:before{content:"\ed24"}.bxs-wine:before{content:"\ed25"}.bxs-x-square:before{content:"\ed26"}.bxs-yin-yang:before{content:"\ed27"}.bxs-zap:before{content:"\ed28"}.bxs-zoom-in:before{content:"\ed29"} \ No newline at end of file diff --git a/css/transformations.css b/css/transformations.css new file mode 100644 index 0000000..f76c455 --- /dev/null +++ b/css/transformations.css @@ -0,0 +1,30 @@ +.bx-rotate-90 +{ + transform: rotate(90deg); + + -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; +} +.bx-rotate-180 +{ + transform: rotate(180deg); + + -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'; +} +.bx-rotate-270 +{ + transform: rotate(270deg); + + -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'; +} +.bx-flip-horizontal +{ + transform: scaleX(-1); + + -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)'; +} +.bx-flip-vertical +{ + transform: scaleY(-1); + + -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)'; +} diff --git a/dist/boxicons.js b/dist/boxicons.js index 2bdcf90..dea243f 100644 --- a/dist/boxicons.js +++ b/dist/boxicons.js @@ -1,2 +1,2 @@ -!function(t,e,n,r,o){function a(){var t=[];return t.isDone=!1,t.exec=function(){t.splice(0).forEach(function(t){t()})},t.then=function(e){return t.isDone?e():t.push(e),t},t}function i(t){var e=a(),n=r.createElement("script");return n.type="text/javascript",n.readyState?n.onreadystatechange=function(){"loaded"!=n.readyState&&"complete"!=n.readyState||(n.onreadystatechange=null,e.isDone=!0,e.exec())}:n.onload=function(){e.isDone=!0,e.exec()},n.src=t,r.getElementsByTagName("head")[0].appendChild(n),n.then=e.then,n}if("customElements"in n)o();else{if(n.AWAITING_WEB_COMPONENTS_POLYFILL)return void n.AWAITING_WEB_COMPONENTS_POLYFILL.then(o);var s=n.AWAITING_WEB_COMPONENTS_POLYFILL=a();s.then(o);var f=n.WEB_COMPONENTS_POLYFILL||"//cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.0.2/webcomponents-bundle.js",c=n.ES6_CORE_POLYFILL||"//cdnjs.cloudflare.com/ajax/libs/core-js/2.5.3/core.min.js";"Promise"in n?i(f).then(function(){s.isDone=!0,s.exec()}):i(c).then(function(){i(f).then(function(){s.isDone=!0,s.exec()})})}}(0,0,window,document,function(){!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.BoxIconElement=e():t.BoxIconElement=e()}("undefined"!=typeof self?self:this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=1)}([function(t,e){function n(t,e){var n=t[1]||"",o=t[3];if(!o)return n;if(e&&"function"==typeof btoa){var a=r(o);return[n].concat(o.sources.map(function(t){return"/*# sourceURL="+o.sourceRoot+t+" */"})).concat([a]).join("\n")}return[n].join("\n")}function r(t){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(t))))+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var r=n(e,t);return e[2]?"@media "+e[2]+"{"+r+"}":r}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var r={},o=0;o\n:host {\n display: inline-block;\n font-size: initial;\n box-sizing: border-box;\n width: 24px;\n height: 24px;\n}\n:host([size=xs]) {\n width: 0.8rem;\n height: 0.8rem;\n}\n:host([size=sm]) {\n width: 1.55rem;\n height: 1.55rem;\n}\n:host([size=md]) {\n width: 2.25rem;\n height: 2.25rem;\n}\n:host([size=lg]) {\n width: 3.0rem;\n height: 3.0rem;\n}\n\n:host([size]:not([size=""]):not([size=xs]):not([size=sm]):not([size=md]):not([size=lg])) {\n width: auto;\n height: auto;\n}\n:host([pull=left]) #icon {\n float: left;\n margin-right: .3em!important;\n}\n:host([pull=right]) #icon {\n float: right;\n margin-left: .3em!important;\n}\n:host([border=square]) #icon {\n padding: .25em;\n border: .07em solid rgba(0,0,0,.1);\n border-radius: .25em;\n}\n:host([border=circle]) #icon {\n padding: .25em;\n border: .07em solid rgba(0,0,0,.1);\n border-radius: 50%;\n}\n#icon,\nsvg {\n width: 100%;\n height: 100%;\n}\n#icon {\n box-sizing: border-box;\n} \n'+l.a+"\n"+u.a+'\n\n
';var x=b(function(t){function e(){r(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return t.$ui=t.attachShadow({mode:"open"}),t.$ui.appendChild(t.ownerDocument.importNode(g.content,!0)),w()&&h.ShadyCSS.styleElement(t),t._state={$iconHolder:t.$ui.getElementById("icon"),type:t.getAttribute("type")},t}return a(e,t),p(e,null,[{key:"getIconSvg",value:function(t,e){var n=this.cdnUrl+"/regular/bx-"+t+".svg";return"solid"===e?n=this.cdnUrl+"/solid/bxs-"+t+".svg":"logo"===e&&(n=this.cdnUrl+"/logos/bxl-"+t+".svg"),n&&y[n]?y[n]:(y[n]=new Promise(function(t,e){var r=new XMLHttpRequest;r.addEventListener("load",function(){if(this.status<200||this.status>=300)return void e(new Error(this.status+" "+this.responseText));t(this.responseText)}),r.onerror=e,r.onabort=e,r.open("GET",n),r.send()}),y[n])}},{key:"define",value:function(t){t=t||this.tagName,w()&&h.ShadyCSS.prepareTemplate(g,t),customElements.define(t,this)}},{key:"cdnUrl",get:function(){return"//unpkg.com/boxicons@2.0.1/svg"}},{key:"tagName",get:function(){return"box-icon"}},{key:"observedAttributes",get:function(){return["type","name","color","size","rotate","flip","animation","border","pull"]}}]),p(e,[{key:"attributeChangedCallback",value:function(t,e,n){var r=this._state.$iconHolder;switch(t){case"type":i(this,e,n);break;case"name":s(this,e,n);break;case"color":r.style.fill=n||"";break;case"size":f(this,e,n);break;case"rotate":e&&r.classList.remove("bx-rotate-"+e),n&&r.classList.add("bx-rotate-"+n);break;case"flip":e&&r.classList.remove("bx-flip-"+e),n&&r.classList.add("bx-flip-"+n);break;case"animation":e&&r.classList.remove("bx-"+e),n&&r.classList.add("bx-"+n)}}},{key:"connectedCallback",value:function(){w()&&h.ShadyCSS.styleElement(this)}}]),e}(HTMLElement))},function(t,e,n){var r=n(4);t.exports="string"==typeof r?r:r.toString()},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,"@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@-webkit-keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@-webkit-keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@-webkit-keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@-webkit-keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@-webkit-keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate(-10deg);transform:scale3d(.95,.95,.95) rotate(-10deg)}30%,50%,70%,90%{-webkit-transform:scaleX(1) rotate(10deg);transform:scaleX(1) rotate(10deg)}40%,60%,80%{-webkit-transform:scaleX(1) rotate(-10deg);transform:scaleX(1) rotate(-10deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate(-10deg);transform:scale3d(.95,.95,.95) rotate(-10deg)}30%,50%,70%,90%{-webkit-transform:scaleX(1) rotate(10deg);transform:scaleX(1) rotate(10deg)}40%,60%,80%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.bx-spin,.bx-spin-hover:hover{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-tada,.bx-tada-hover:hover{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-flashing,.bx-flashing-hover:hover{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-burst,.bx-burst-hover:hover{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-fade-up,.bx-fade-up-hover:hover{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-down,.bx-fade-down-hover:hover{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-left,.bx-fade-left-hover:hover{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-right,.bx-fade-right-hover:hover{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}",""])},function(t,e,n){var r=n(6);t.exports="string"==typeof r?r:r.toString()},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.bx-rotate-90{transform:rotate(90deg);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"}.bx-rotate-180{transform:rotate(180deg);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"}.bx-rotate-270{transform:rotate(270deg);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"}.bx-flip-horizontal{transform:scaleX(-1);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"}.bx-flip-vertical{transform:scaleY(-1);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}',""])}])})}); +!function(t,e,n,r,o){function a(){var t=[];return t.isDone=!1,t.exec=function(){t.splice(0).forEach(function(t){t()})},t.then=function(e){return t.isDone?e():t.push(e),t},t}function i(t){var e=a(),n=r.createElement("script");return n.type="text/javascript",n.readyState?n.onreadystatechange=function(){"loaded"!=n.readyState&&"complete"!=n.readyState||(n.onreadystatechange=null,e.isDone=!0,e.exec())}:n.onload=function(){e.isDone=!0,e.exec()},n.src=t,r.getElementsByTagName("head")[0].appendChild(n),n.then=e.then,n}if("customElements"in n)o();else{if(n.AWAITING_WEB_COMPONENTS_POLYFILL)return void n.AWAITING_WEB_COMPONENTS_POLYFILL.then(o);var s=n.AWAITING_WEB_COMPONENTS_POLYFILL=a();s.then(o);var f=n.WEB_COMPONENTS_POLYFILL||"//cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.0.2/webcomponents-bundle.js",c=n.ES6_CORE_POLYFILL||"//cdnjs.cloudflare.com/ajax/libs/core-js/2.5.3/core.min.js";"Promise"in n?i(f).then(function(){s.isDone=!0,s.exec()}):i(c).then(function(){i(f).then(function(){s.isDone=!0,s.exec()})})}}(0,0,window,document,function(){!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.BoxIconElement=e():t.BoxIconElement=e()}("undefined"!=typeof self?self:this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=1)}([function(t,e){function n(t,e){var n=t[1]||"",o=t[3];if(!o)return n;if(e&&"function"==typeof btoa){var a=r(o);return[n].concat(o.sources.map(function(t){return"/*# sourceURL="+o.sourceRoot+t+" */"})).concat([a]).join("\n")}return[n].join("\n")}function r(t){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(t))))+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var r=n(e,t);return e[2]?"@media "+e[2]+"{"+r+"}":r}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var r={},o=0;o\n:host {\n display: inline-block;\n font-size: initial;\n box-sizing: border-box;\n width: 24px;\n height: 24px;\n}\n:host([size=xs]) {\n width: 0.8rem;\n height: 0.8rem;\n}\n:host([size=sm]) {\n width: 1.55rem;\n height: 1.55rem;\n}\n:host([size=md]) {\n width: 2.25rem;\n height: 2.25rem;\n}\n:host([size=lg]) {\n width: 3.0rem;\n height: 3.0rem;\n}\n\n:host([size]:not([size=""]):not([size=xs]):not([size=sm]):not([size=md]):not([size=lg])) {\n width: auto;\n height: auto;\n}\n:host([pull=left]) #icon {\n float: left;\n margin-right: .3em!important;\n}\n:host([pull=right]) #icon {\n float: right;\n margin-left: .3em!important;\n}\n:host([border=square]) #icon {\n padding: .25em;\n border: .07em solid rgba(0,0,0,.1);\n border-radius: .25em;\n}\n:host([border=circle]) #icon {\n padding: .25em;\n border: .07em solid rgba(0,0,0,.1);\n border-radius: 50%;\n}\n#icon,\nsvg {\n width: 100%;\n height: 100%;\n}\n#icon {\n box-sizing: border-box;\n} \n'+l.a+"\n"+u.a+'\n\n
';var x=b(function(t){function e(){r(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return t.$ui=t.attachShadow({mode:"open"}),t.$ui.appendChild(t.ownerDocument.importNode(g.content,!0)),w()&&h.ShadyCSS.styleElement(t),t._state={$iconHolder:t.$ui.getElementById("icon"),type:t.getAttribute("type")},t}return a(e,t),p(e,null,[{key:"getIconSvg",value:function(t,e){var n=this.cdnUrl+"/regular/bx-"+t+".svg";return"solid"===e?n=this.cdnUrl+"/solid/bxs-"+t+".svg":"logo"===e&&(n=this.cdnUrl+"/logos/bxl-"+t+".svg"),n&&y[n]?y[n]:(y[n]=new Promise(function(t,e){var r=new XMLHttpRequest;r.addEventListener("load",function(){if(this.status<200||this.status>=300)return void e(new Error(this.status+" "+this.responseText));t(this.responseText)}),r.onerror=e,r.onabort=e,r.open("GET",n),r.send()}),y[n])}},{key:"define",value:function(t){t=t||this.tagName,w()&&h.ShadyCSS.prepareTemplate(g,t),customElements.define(t,this)}},{key:"cdnUrl",get:function(){return"//unpkg.com/boxicons@2.0.2/svg"}},{key:"tagName",get:function(){return"box-icon"}},{key:"observedAttributes",get:function(){return["type","name","color","size","rotate","flip","animation","border","pull"]}}]),p(e,[{key:"attributeChangedCallback",value:function(t,e,n){var r=this._state.$iconHolder;switch(t){case"type":i(this,e,n);break;case"name":s(this,e,n);break;case"color":r.style.fill=n||"";break;case"size":f(this,e,n);break;case"rotate":e&&r.classList.remove("bx-rotate-"+e),n&&r.classList.add("bx-rotate-"+n);break;case"flip":e&&r.classList.remove("bx-flip-"+e),n&&r.classList.add("bx-flip-"+n);break;case"animation":e&&r.classList.remove("bx-"+e),n&&r.classList.add("bx-"+n)}}},{key:"connectedCallback",value:function(){w()&&h.ShadyCSS.styleElement(this)}}]),e}(HTMLElement))},function(t,e,n){var r=n(4);t.exports="string"==typeof r?r:r.toString()},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,"@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@-webkit-keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@-webkit-keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@-webkit-keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@-webkit-keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@-webkit-keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate(-10deg);transform:scale3d(.95,.95,.95) rotate(-10deg)}30%,50%,70%,90%{-webkit-transform:scaleX(1) rotate(10deg);transform:scaleX(1) rotate(10deg)}40%,60%,80%{-webkit-transform:scaleX(1) rotate(-10deg);transform:scaleX(1) rotate(-10deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate(-10deg);transform:scale3d(.95,.95,.95) rotate(-10deg)}30%,50%,70%,90%{-webkit-transform:scaleX(1) rotate(10deg);transform:scaleX(1) rotate(10deg)}40%,60%,80%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.bx-spin,.bx-spin-hover:hover{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-tada,.bx-tada-hover:hover{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-flashing,.bx-flashing-hover:hover{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-burst,.bx-burst-hover:hover{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-fade-up,.bx-fade-up-hover:hover{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-down,.bx-fade-down-hover:hover{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-left,.bx-fade-left-hover:hover{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-right,.bx-fade-right-hover:hover{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}",""])},function(t,e,n){var r=n(6);t.exports="string"==typeof r?r:r.toString()},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.bx-rotate-90{transform:rotate(90deg);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"}.bx-rotate-180{transform:rotate(180deg);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"}.bx-rotate-270{transform:rotate(270deg);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"}.bx-flip-horizontal{transform:scaleX(-1);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"}.bx-flip-vertical{transform:scaleY(-1);-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}',""])}])})}); //# sourceMappingURL=boxicons.js.map \ No newline at end of file diff --git a/fonts/boxicons.eot b/fonts/boxicons.eot index f686d92..261ca7b 100644 Binary files a/fonts/boxicons.eot and b/fonts/boxicons.eot differ diff --git a/fonts/boxicons.svg b/fonts/boxicons.svg index 0f566d1..3f022e2 100644 --- a/fonts/boxicons.svg +++ b/fonts/boxicons.svg @@ -107,933 +107,970 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/boxicons.ttf b/fonts/boxicons.ttf index 7398ba5..217a24e 100644 Binary files a/fonts/boxicons.ttf and b/fonts/boxicons.ttf differ diff --git a/fonts/boxicons.woff b/fonts/boxicons.woff index 5a62d34..e1a1f1d 100644 Binary files a/fonts/boxicons.woff and b/fonts/boxicons.woff differ diff --git a/fonts/boxicons.woff2 b/fonts/boxicons.woff2 index ab50251..5781874 100644 Binary files a/fonts/boxicons.woff2 and b/fonts/boxicons.woff2 differ diff --git a/index.html b/index.html deleted file mode 100644 index 1e171af..0000000 --- a/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - -Boxicons : Premium web friendly icons - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/package.json b/package.json index c0bd551..0d4fdd8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "boxicons", - "version": "2.0.1", - "private": true, + "version": "2.0.2", "description": "High Quality web friendly icons", "scripts": { "start": "webpack-dev-server --history-api-fallback --hot --open", diff --git a/src/box-icon-element.js b/src/box-icon-element.js index 8bbcad2..6a38d2a 100644 --- a/src/box-icon-element.js +++ b/src/box-icon-element.js @@ -1,6 +1,6 @@ /* global BUILD */ -import animationsCss from '../static/css/animations.css'; -import transformationsCss from '../static/css/transformations.css'; +import animationsCss from '../css/animations.css'; +import transformationsCss from '../css/transformations.css'; //= ====================================================== diff --git a/svg/regular/bx-add-to-queue.svg b/svg/regular/bx-add-to-queue.svg new file mode 100644 index 0000000..8e854ec --- /dev/null +++ b/svg/regular/bx-add-to-queue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-alarm-add.svg b/svg/regular/bx-alarm-add.svg new file mode 100644 index 0000000..166199f --- /dev/null +++ b/svg/regular/bx-alarm-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-archive-in.svg b/svg/regular/bx-archive-in.svg new file mode 100644 index 0000000..441df19 --- /dev/null +++ b/svg/regular/bx-archive-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-archive-out.svg b/svg/regular/bx-archive-out.svg new file mode 100644 index 0000000..ae68217 --- /dev/null +++ b/svg/regular/bx-archive-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-archive.svg b/svg/regular/bx-archive.svg index a980ccc..87aecab 100644 --- a/svg/regular/bx-archive.svg +++ b/svg/regular/bx-archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-battery.svg b/svg/regular/bx-battery.svg index e26269b..8d8e60d 100644 --- a/svg/regular/bx-battery.svg +++ b/svg/regular/bx-battery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bold.svg b/svg/regular/bx-bold.svg index fb4dd3c..854ffa3 100644 --- a/svg/regular/bx-bold.svg +++ b/svg/regular/bx-bold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bolt-circle.svg b/svg/regular/bx-bolt-circle.svg new file mode 100644 index 0000000..6b0607f --- /dev/null +++ b/svg/regular/bx-bolt-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-book-bookmark.svg b/svg/regular/bx-book-bookmark.svg index ecf6e84..c6ae700 100644 --- a/svg/regular/bx-book-bookmark.svg +++ b/svg/regular/bx-book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-book.svg b/svg/regular/bx-book.svg index 1dc5440..eb2a4c3 100644 --- a/svg/regular/bx-book.svg +++ b/svg/regular/bx-book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bookmark-minus.svg b/svg/regular/bx-bookmark-minus.svg index b660d6a..2bb56c7 100644 --- a/svg/regular/bx-bookmark-minus.svg +++ b/svg/regular/bx-bookmark-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bookmark-plus.svg b/svg/regular/bx-bookmark-plus.svg index 9e071d5..2806d5f 100644 --- a/svg/regular/bx-bookmark-plus.svg +++ b/svg/regular/bx-bookmark-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bookmark.svg b/svg/regular/bx-bookmark.svg index 1c5e0f1..ffc37c1 100644 --- a/svg/regular/bx-bookmark.svg +++ b/svg/regular/bx-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bookmarks.svg b/svg/regular/bx-bookmarks.svg index 41a0517..e799aad 100644 --- a/svg/regular/bx-bookmarks.svg +++ b/svg/regular/bx-bookmarks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-border-radius.svg b/svg/regular/bx-border-radius.svg new file mode 100644 index 0000000..de99ad1 --- /dev/null +++ b/svg/regular/bx-border-radius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-briefcase-alt-2.svg b/svg/regular/bx-briefcase-alt-2.svg index b8d8cac..f7d3f6a 100644 --- a/svg/regular/bx-briefcase-alt-2.svg +++ b/svg/regular/bx-briefcase-alt-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-briefcase-alt.svg b/svg/regular/bx-briefcase-alt.svg index a590799..cc3b173 100644 --- a/svg/regular/bx-briefcase-alt.svg +++ b/svg/regular/bx-briefcase-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-briefcase.svg b/svg/regular/bx-briefcase.svg index 5bf3a3a..cf55371 100644 --- a/svg/regular/bx-briefcase.svg +++ b/svg/regular/bx-briefcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-brush-alt.svg b/svg/regular/bx-brush-alt.svg index a5207bc..b99d1cb 100644 --- a/svg/regular/bx-brush-alt.svg +++ b/svg/regular/bx-brush-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-buildings.svg b/svg/regular/bx-buildings.svg index 6c82d98..37b5d2a 100644 --- a/svg/regular/bx-buildings.svg +++ b/svg/regular/bx-buildings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-bus.svg b/svg/regular/bx-bus.svg index 625a60c..808969b 100644 --- a/svg/regular/bx-bus.svg +++ b/svg/regular/bx-bus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-cake.svg b/svg/regular/bx-cake.svg new file mode 100644 index 0000000..845f662 --- /dev/null +++ b/svg/regular/bx-cake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-chalkboard.svg b/svg/regular/bx-chalkboard.svg index c79a518..33ba69a 100644 --- a/svg/regular/bx-chalkboard.svg +++ b/svg/regular/bx-chalkboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-chat.svg b/svg/regular/bx-chat.svg index 7b0ab48..7f76f96 100644 --- a/svg/regular/bx-chat.svg +++ b/svg/regular/bx-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-check-shield.svg b/svg/regular/bx-check-shield.svg new file mode 100644 index 0000000..9a2b69a --- /dev/null +++ b/svg/regular/bx-check-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-check.svg b/svg/regular/bx-check.svg index d14c465..027488b 100644 --- a/svg/regular/bx-check.svg +++ b/svg/regular/bx-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-chip.svg b/svg/regular/bx-chip.svg index 7ff8c31..d6d3524 100644 --- a/svg/regular/bx-chip.svg +++ b/svg/regular/bx-chip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-clipboard.svg b/svg/regular/bx-clipboard.svg index 220580d..7d3c7a2 100644 --- a/svg/regular/bx-clipboard.svg +++ b/svg/regular/bx-clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-closet.svg b/svg/regular/bx-closet.svg index b4eb5c4..7007917 100644 --- a/svg/regular/bx-closet.svg +++ b/svg/regular/bx-closet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-code-block.svg b/svg/regular/bx-code-block.svg index eab9aac..ab48a58 100644 --- a/svg/regular/bx-code-block.svg +++ b/svg/regular/bx-code-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-coffee.svg b/svg/regular/bx-coffee.svg index 0c26b07..76475f9 100644 --- a/svg/regular/bx-coffee.svg +++ b/svg/regular/bx-coffee.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-columns.svg b/svg/regular/bx-columns.svg index d1f372f..450e90d 100644 --- a/svg/regular/bx-columns.svg +++ b/svg/regular/bx-columns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-comment-dots.svg b/svg/regular/bx-comment-dots.svg index fdc150d..5aa1688 100644 --- a/svg/regular/bx-comment-dots.svg +++ b/svg/regular/bx-comment-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-comment.svg b/svg/regular/bx-comment.svg index 2248439..909d06b 100644 --- a/svg/regular/bx-comment.svg +++ b/svg/regular/bx-comment.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-copy.svg b/svg/regular/bx-copy.svg index 7d409f0..858cea6 100644 --- a/svg/regular/bx-copy.svg +++ b/svg/regular/bx-copy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-credit-card-alt.svg b/svg/regular/bx-credit-card-alt.svg index 6c84f79..b339416 100644 --- a/svg/regular/bx-credit-card-alt.svg +++ b/svg/regular/bx-credit-card-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-credit-card.svg b/svg/regular/bx-credit-card.svg index 9c4a815..1e34968 100644 --- a/svg/regular/bx-credit-card.svg +++ b/svg/regular/bx-credit-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-cut.svg b/svg/regular/bx-cut.svg index 2c55510..7443e29 100644 --- a/svg/regular/bx-cut.svg +++ b/svg/regular/bx-cut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-dashboard.svg b/svg/regular/bx-dashboard.svg index eba402f..3f55d90 100644 --- a/svg/regular/bx-dashboard.svg +++ b/svg/regular/bx-dashboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-desktop.svg b/svg/regular/bx-desktop.svg index adf3a55..8c2f85e 100644 --- a/svg/regular/bx-desktop.svg +++ b/svg/regular/bx-desktop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-diamond.svg b/svg/regular/bx-diamond.svg index 0b88628..666de35 100644 --- a/svg/regular/bx-diamond.svg +++ b/svg/regular/bx-diamond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-dish.svg b/svg/regular/bx-dish.svg new file mode 100644 index 0000000..6def87b --- /dev/null +++ b/svg/regular/bx-dish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-dollar.svg b/svg/regular/bx-dollar.svg index 3721661..a24e7c5 100644 --- a/svg/regular/bx-dollar.svg +++ b/svg/regular/bx-dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-downvote.svg b/svg/regular/bx-downvote.svg index b1af897..5aa5b6b 100644 --- a/svg/regular/bx-downvote.svg +++ b/svg/regular/bx-downvote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-edit-alt.svg b/svg/regular/bx-edit-alt.svg index 5d8d1d2..4799ae3 100644 --- a/svg/regular/bx-edit-alt.svg +++ b/svg/regular/bx-edit-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-edit.svg b/svg/regular/bx-edit.svg index a7281b5..931b71a 100644 --- a/svg/regular/bx-edit.svg +++ b/svg/regular/bx-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-exit.svg b/svg/regular/bx-exit.svg new file mode 100644 index 0000000..e764a5c --- /dev/null +++ b/svg/regular/bx-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-extension.svg b/svg/regular/bx-extension.svg new file mode 100644 index 0000000..b55dfd0 --- /dev/null +++ b/svg/regular/bx-extension.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-face.svg b/svg/regular/bx-face.svg new file mode 100644 index 0000000..2a7bc60 --- /dev/null +++ b/svg/regular/bx-face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-fast-forward-circle.svg b/svg/regular/bx-fast-forward-circle.svg index f0cd11a..fce4d7c 100644 --- a/svg/regular/bx-fast-forward-circle.svg +++ b/svg/regular/bx-fast-forward-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-file-find.svg b/svg/regular/bx-file-find.svg new file mode 100644 index 0000000..a3cc5ad --- /dev/null +++ b/svg/regular/bx-file-find.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-flag.svg b/svg/regular/bx-flag.svg index b7e99cc..9105ce8 100644 --- a/svg/regular/bx-flag.svg +++ b/svg/regular/bx-flag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-font-family.svg b/svg/regular/bx-font-family.svg index 4a62fd0..b182860 100644 --- a/svg/regular/bx-font-family.svg +++ b/svg/regular/bx-font-family.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-font-size.svg b/svg/regular/bx-font-size.svg index af85dfa..08a96d5 100644 --- a/svg/regular/bx-font-size.svg +++ b/svg/regular/bx-font-size.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-font.svg b/svg/regular/bx-font.svg index a8a808f..6c7cf1e 100644 --- a/svg/regular/bx-font.svg +++ b/svg/regular/bx-font.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-fridge.svg b/svg/regular/bx-fridge.svg new file mode 100644 index 0000000..09d9de8 --- /dev/null +++ b/svg/regular/bx-fridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-fullscreen.svg b/svg/regular/bx-fullscreen.svg index a036678..dc5d1f0 100644 --- a/svg/regular/bx-fullscreen.svg +++ b/svg/regular/bx-fullscreen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-gas-pump.svg b/svg/regular/bx-gas-pump.svg index 4aa6a1f..b395287 100644 --- a/svg/regular/bx-gas-pump.svg +++ b/svg/regular/bx-gas-pump.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-hdd.svg b/svg/regular/bx-hdd.svg index 657a381..8ef762b 100644 --- a/svg/regular/bx-hdd.svg +++ b/svg/regular/bx-hdd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-heading.svg b/svg/regular/bx-heading.svg index ea75c0c..b402b7f 100644 --- a/svg/regular/bx-heading.svg +++ b/svg/regular/bx-heading.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-id-card.svg b/svg/regular/bx-id-card.svg index 0b00069..7e4431b 100644 --- a/svg/regular/bx-id-card.svg +++ b/svg/regular/bx-id-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-image-add.svg b/svg/regular/bx-image-add.svg new file mode 100644 index 0000000..2897af2 --- /dev/null +++ b/svg/regular/bx-image-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-image-alt.svg b/svg/regular/bx-image-alt.svg new file mode 100644 index 0000000..9ec6164 --- /dev/null +++ b/svg/regular/bx-image-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-images.svg b/svg/regular/bx-images.svg index 34df5c1..4b1ab9b 100644 --- a/svg/regular/bx-images.svg +++ b/svg/regular/bx-images.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-italic.svg b/svg/regular/bx-italic.svg index e6d55c7..a7f5590 100644 --- a/svg/regular/bx-italic.svg +++ b/svg/regular/bx-italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-label.svg b/svg/regular/bx-label.svg new file mode 100644 index 0000000..a68fc15 --- /dev/null +++ b/svg/regular/bx-label.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-laptop.svg b/svg/regular/bx-laptop.svg index 6f4f5c9..828e6e2 100644 --- a/svg/regular/bx-laptop.svg +++ b/svg/regular/bx-laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-map-alt.svg b/svg/regular/bx-map-alt.svg index d1a5fd5..1249f06 100644 --- a/svg/regular/bx-map-alt.svg +++ b/svg/regular/bx-map-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-message-alt-dots.svg b/svg/regular/bx-message-alt-dots.svg index 4be17aa..b6ef271 100644 --- a/svg/regular/bx-message-alt-dots.svg +++ b/svg/regular/bx-message-alt-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-message-alt.svg b/svg/regular/bx-message-alt.svg index d255eeb..91617e4 100644 --- a/svg/regular/bx-message-alt.svg +++ b/svg/regular/bx-message-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-message-dots.svg b/svg/regular/bx-message-dots.svg index 57da490..b710c0c 100644 --- a/svg/regular/bx-message-dots.svg +++ b/svg/regular/bx-message-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-message-rounded-dots.svg b/svg/regular/bx-message-rounded-dots.svg index 8bec700..9ed717a 100644 --- a/svg/regular/bx-message-rounded-dots.svg +++ b/svg/regular/bx-message-rounded-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-message-rounded.svg b/svg/regular/bx-message-rounded.svg index 1ad5309..739751a 100644 --- a/svg/regular/bx-message-rounded.svg +++ b/svg/regular/bx-message-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-message.svg b/svg/regular/bx-message.svg index 7731424..e52d2db 100644 --- a/svg/regular/bx-message.svg +++ b/svg/regular/bx-message.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-minus.svg b/svg/regular/bx-minus.svg index 841c7e3..cf52c6f 100644 --- a/svg/regular/bx-minus.svg +++ b/svg/regular/bx-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-mobile-alt.svg b/svg/regular/bx-mobile-alt.svg index 7c56b8f..5a77104 100644 --- a/svg/regular/bx-mobile-alt.svg +++ b/svg/regular/bx-mobile-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-money.svg b/svg/regular/bx-money.svg index 17b83ec..47b7236 100644 --- a/svg/regular/bx-money.svg +++ b/svg/regular/bx-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-move-horizontal.svg b/svg/regular/bx-move-horizontal.svg index 260459c..286b15e 100644 --- a/svg/regular/bx-move-horizontal.svg +++ b/svg/regular/bx-move-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-move-vertical.svg b/svg/regular/bx-move-vertical.svg index 2c40d8d..4ddbe0e 100644 --- a/svg/regular/bx-move-vertical.svg +++ b/svg/regular/bx-move-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-movie.svg b/svg/regular/bx-movie.svg index d19b616..623aae7 100644 --- a/svg/regular/bx-movie.svg +++ b/svg/regular/bx-movie.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-news.svg b/svg/regular/bx-news.svg index b3dcb10..7f30eda 100644 --- a/svg/regular/bx-news.svg +++ b/svg/regular/bx-news.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-notepad.svg b/svg/regular/bx-notepad.svg index b77273a..eb73e70 100644 --- a/svg/regular/bx-notepad.svg +++ b/svg/regular/bx-notepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-notification.svg b/svg/regular/bx-notification.svg index 5c161f3..eb4bd29 100644 --- a/svg/regular/bx-notification.svg +++ b/svg/regular/bx-notification.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-paragraph.svg b/svg/regular/bx-paragraph.svg index 92b76dd..760945b 100644 --- a/svg/regular/bx-paragraph.svg +++ b/svg/regular/bx-paragraph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-paste.svg b/svg/regular/bx-paste.svg index 8f27c85..cef532d 100644 --- a/svg/regular/bx-paste.svg +++ b/svg/regular/bx-paste.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-photo-album.svg b/svg/regular/bx-photo-album.svg index e873c78..fc0ed51 100644 --- a/svg/regular/bx-photo-album.svg +++ b/svg/regular/bx-photo-album.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-play-circle.svg b/svg/regular/bx-play-circle.svg index 22d9a5a..53b3635 100644 --- a/svg/regular/bx-play-circle.svg +++ b/svg/regular/bx-play-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-plus.svg b/svg/regular/bx-plus.svg index 87752ea..f1065ae 100644 --- a/svg/regular/bx-plus.svg +++ b/svg/regular/bx-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-printer.svg b/svg/regular/bx-printer.svg index de5c45f..1ea79ec 100644 --- a/svg/regular/bx-printer.svg +++ b/svg/regular/bx-printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-pulse.svg b/svg/regular/bx-pulse.svg index c3091b9..08c2c2f 100644 --- a/svg/regular/bx-pulse.svg +++ b/svg/regular/bx-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-purchase-tag.svg b/svg/regular/bx-purchase-tag.svg index b32f6da..a5a4d3b 100644 --- a/svg/regular/bx-purchase-tag.svg +++ b/svg/regular/bx-purchase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-radio.svg b/svg/regular/bx-radio.svg index 68a258c..586a75c 100644 --- a/svg/regular/bx-radio.svg +++ b/svg/regular/bx-radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-rectangle.svg b/svg/regular/bx-rectangle.svg index 847831d..62a12a8 100644 --- a/svg/regular/bx-rectangle.svg +++ b/svg/regular/bx-rectangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-rename.svg b/svg/regular/bx-rename.svg index 70f6197..0ed8191 100644 --- a/svg/regular/bx-rename.svg +++ b/svg/regular/bx-rename.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-repeat.svg b/svg/regular/bx-repeat.svg index 7155dc7..7a6ed77 100644 --- a/svg/regular/bx-repeat.svg +++ b/svg/regular/bx-repeat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-reply-all.svg b/svg/regular/bx-reply-all.svg index d69b1dd..c9f4829 100644 --- a/svg/regular/bx-reply-all.svg +++ b/svg/regular/bx-reply-all.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-reply.svg b/svg/regular/bx-reply.svg index f71af22..d9314f7 100644 --- a/svg/regular/bx-reply.svg +++ b/svg/regular/bx-reply.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-repost.svg b/svg/regular/bx-repost.svg index a3fcd38..c2036ea 100644 --- a/svg/regular/bx-repost.svg +++ b/svg/regular/bx-repost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-restaurant.svg b/svg/regular/bx-restaurant.svg index 63d68f1..f695190 100644 --- a/svg/regular/bx-restaurant.svg +++ b/svg/regular/bx-restaurant.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-rewind-circle.svg b/svg/regular/bx-rewind-circle.svg index 02714a4..8690f1f 100644 --- a/svg/regular/bx-rewind-circle.svg +++ b/svg/regular/bx-rewind-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-ruler.svg b/svg/regular/bx-ruler.svg index c165b61..b4dccf9 100644 --- a/svg/regular/bx-ruler.svg +++ b/svg/regular/bx-ruler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-screenshot.svg b/svg/regular/bx-screenshot.svg index e150e03..2bffd41 100644 --- a/svg/regular/bx-screenshot.svg +++ b/svg/regular/bx-screenshot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-shopping-bag.svg b/svg/regular/bx-shopping-bag.svg index c3d6796..d60e83a 100644 --- a/svg/regular/bx-shopping-bag.svg +++ b/svg/regular/bx-shopping-bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-shuffle.svg b/svg/regular/bx-shuffle.svg index 404abcd..024b655 100644 --- a/svg/regular/bx-shuffle.svg +++ b/svg/regular/bx-shuffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sidebar.svg b/svg/regular/bx-sidebar.svg index 5ecd119..24ac587 100644 --- a/svg/regular/bx-sidebar.svg +++ b/svg/regular/bx-sidebar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sitemap.svg b/svg/regular/bx-sitemap.svg index c818cd8..112bf4d 100644 --- a/svg/regular/bx-sitemap.svg +++ b/svg/regular/bx-sitemap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-skip-next-circle.svg b/svg/regular/bx-skip-next-circle.svg index cb4246b..38a34ad 100644 --- a/svg/regular/bx-skip-next-circle.svg +++ b/svg/regular/bx-skip-next-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-skip-previous-circle.svg b/svg/regular/bx-skip-previous-circle.svg index 38f17de..fd03b71 100644 --- a/svg/regular/bx-skip-previous-circle.svg +++ b/svg/regular/bx-skip-previous-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sort-a-z.svg b/svg/regular/bx-sort-a-z.svg index ca317ed..e622d09 100644 --- a/svg/regular/bx-sort-a-z.svg +++ b/svg/regular/bx-sort-a-z.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sort-down.svg b/svg/regular/bx-sort-down.svg index 96f362f..a890c22 100644 --- a/svg/regular/bx-sort-down.svg +++ b/svg/regular/bx-sort-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sort-up.svg b/svg/regular/bx-sort-up.svg index e816178..2b93103 100644 --- a/svg/regular/bx-sort-up.svg +++ b/svg/regular/bx-sort-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sort-z-a.svg b/svg/regular/bx-sort-z-a.svg index df48947..1cdee18 100644 --- a/svg/regular/bx-sort-z-a.svg +++ b/svg/regular/bx-sort-z-a.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-sort.svg b/svg/regular/bx-sort.svg index e54a761..2e2c174 100644 --- a/svg/regular/bx-sort.svg +++ b/svg/regular/bx-sort.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-spa.svg b/svg/regular/bx-spa.svg new file mode 100644 index 0000000..135c132 --- /dev/null +++ b/svg/regular/bx-spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-space-bar.svg b/svg/regular/bx-space-bar.svg new file mode 100644 index 0000000..2ff6373 --- /dev/null +++ b/svg/regular/bx-space-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-subdirectory-left.svg b/svg/regular/bx-subdirectory-left.svg index b584371..18df71b 100644 --- a/svg/regular/bx-subdirectory-left.svg +++ b/svg/regular/bx-subdirectory-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-subdirectory-right.svg b/svg/regular/bx-subdirectory-right.svg index 9cbddd8..ba779d6 100644 --- a/svg/regular/bx-subdirectory-right.svg +++ b/svg/regular/bx-subdirectory-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-support.svg b/svg/regular/bx-support.svg index 0f9bdb2..20b5459 100644 --- a/svg/regular/bx-support.svg +++ b/svg/regular/bx-support.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-table.svg b/svg/regular/bx-table.svg index 5097932..80792fe 100644 --- a/svg/regular/bx-table.svg +++ b/svg/regular/bx-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-tag.svg b/svg/regular/bx-tag.svg index ee5bfbf..20f7f10 100644 --- a/svg/regular/bx-tag.svg +++ b/svg/regular/bx-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-task.svg b/svg/regular/bx-task.svg index e2b15c4..f495647 100644 --- a/svg/regular/bx-task.svg +++ b/svg/regular/bx-task.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-terminal.svg b/svg/regular/bx-terminal.svg index c2f90c7..af84135 100644 --- a/svg/regular/bx-terminal.svg +++ b/svg/regular/bx-terminal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-text.svg b/svg/regular/bx-text.svg index 8d203a7..6e4ac6f 100644 --- a/svg/regular/bx-text.svg +++ b/svg/regular/bx-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-tone.svg b/svg/regular/bx-tone.svg new file mode 100644 index 0000000..65d9f9a --- /dev/null +++ b/svg/regular/bx-tone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/regular/bx-tv.svg b/svg/regular/bx-tv.svg index 94811fd..3b22d4b 100644 --- a/svg/regular/bx-tv.svg +++ b/svg/regular/bx-tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-underline.svg b/svg/regular/bx-underline.svg index 049a308..d24cdfd 100644 --- a/svg/regular/bx-underline.svg +++ b/svg/regular/bx-underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-upvote.svg b/svg/regular/bx-upvote.svg index 1a1199e..8ab18b8 100644 --- a/svg/regular/bx-upvote.svg +++ b/svg/regular/bx-upvote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-usb.svg b/svg/regular/bx-usb.svg index d8472ad..581a0be 100644 --- a/svg/regular/bx-usb.svg +++ b/svg/regular/bx-usb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-wallet-alt.svg b/svg/regular/bx-wallet-alt.svg index f101dc0..c6d5c34 100644 --- a/svg/regular/bx-wallet-alt.svg +++ b/svg/regular/bx-wallet-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-wallet.svg b/svg/regular/bx-wallet.svg index 15f7f72..423b8c8 100644 --- a/svg/regular/bx-wallet.svg +++ b/svg/regular/bx-wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-window-close.svg b/svg/regular/bx-window-close.svg index 4011b2b..a7cee69 100644 --- a/svg/regular/bx-window-close.svg +++ b/svg/regular/bx-window-close.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-window-open.svg b/svg/regular/bx-window-open.svg index 7b023d0..6ff3ae2 100644 --- a/svg/regular/bx-window-open.svg +++ b/svg/regular/bx-window-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-window.svg b/svg/regular/bx-window.svg index c2da156..e5e04b8 100644 --- a/svg/regular/bx-window.svg +++ b/svg/regular/bx-window.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-windows.svg b/svg/regular/bx-windows.svg index 3d09d08..aa66306 100644 --- a/svg/regular/bx-windows.svg +++ b/svg/regular/bx-windows.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-world.svg b/svg/regular/bx-world.svg index f418874..00392fe 100644 --- a/svg/regular/bx-world.svg +++ b/svg/regular/bx-world.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-wrench.svg b/svg/regular/bx-wrench.svg index 770c3e1..db3d080 100644 --- a/svg/regular/bx-wrench.svg +++ b/svg/regular/bx-wrench.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/regular/bx-x.svg b/svg/regular/bx-x.svg index 9040d80..facafbb 100644 --- a/svg/regular/bx-x.svg +++ b/svg/regular/bx-x.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-add-to-queue.svg b/svg/solid/bxs-add-to-queue.svg new file mode 100644 index 0000000..19deb0c --- /dev/null +++ b/svg/solid/bxs-add-to-queue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-alarm-add.svg b/svg/solid/bxs-alarm-add.svg new file mode 100644 index 0000000..12871c9 --- /dev/null +++ b/svg/solid/bxs-alarm-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-archive-in.svg b/svg/solid/bxs-archive-in.svg new file mode 100644 index 0000000..0a436e5 --- /dev/null +++ b/svg/solid/bxs-archive-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-archive-out.svg b/svg/solid/bxs-archive-out.svg new file mode 100644 index 0000000..a640ea2 --- /dev/null +++ b/svg/solid/bxs-archive-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-archive.svg b/svg/solid/bxs-archive.svg index 0d5c754..3cb01e5 100644 --- a/svg/solid/bxs-archive.svg +++ b/svg/solid/bxs-archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-bar-chart-alt-2.svg b/svg/solid/bxs-bar-chart-alt-2.svg index 3e1fa4b..d8d6550 100644 --- a/svg/solid/bxs-bar-chart-alt-2.svg +++ b/svg/solid/bxs-bar-chart-alt-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-bath.svg b/svg/solid/bxs-bath.svg index 62fec2d..d4df131 100644 --- a/svg/solid/bxs-bath.svg +++ b/svg/solid/bxs-bath.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-battery-charging.svg b/svg/solid/bxs-battery-charging.svg index 14df197..01d8506 100644 --- a/svg/solid/bxs-battery-charging.svg +++ b/svg/solid/bxs-battery-charging.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-battery-full.svg b/svg/solid/bxs-battery-full.svg index 235397a..78b6e90 100644 --- a/svg/solid/bxs-battery-full.svg +++ b/svg/solid/bxs-battery-full.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-battery-low.svg b/svg/solid/bxs-battery-low.svg index 400b3ed..907e850 100644 --- a/svg/solid/bxs-battery-low.svg +++ b/svg/solid/bxs-battery-low.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-battery.svg b/svg/solid/bxs-battery.svg index 9660361..f4723bd 100644 --- a/svg/solid/bxs-battery.svg +++ b/svg/solid/bxs-battery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-bed.svg b/svg/solid/bxs-bed.svg index 0d7cdfb..6f25a63 100644 --- a/svg/solid/bxs-bed.svg +++ b/svg/solid/bxs-bed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-bolt-circle.svg b/svg/solid/bxs-bolt-circle.svg new file mode 100644 index 0000000..c668c8e --- /dev/null +++ b/svg/solid/bxs-bolt-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-bolt.svg b/svg/solid/bxs-bolt.svg index 92f8548..d537e91 100644 --- a/svg/solid/bxs-bolt.svg +++ b/svg/solid/bxs-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-book-bookmark.svg b/svg/solid/bxs-book-bookmark.svg index 68e2940..6717bc6 100644 --- a/svg/solid/bxs-book-bookmark.svg +++ b/svg/solid/bxs-book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-book.svg b/svg/solid/bxs-book.svg index ca4f920..79602f8 100644 --- a/svg/solid/bxs-book.svg +++ b/svg/solid/bxs-book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-briefcase-alt-2.svg b/svg/solid/bxs-briefcase-alt-2.svg index 88842fa..fe0b136 100644 --- a/svg/solid/bxs-briefcase-alt-2.svg +++ b/svg/solid/bxs-briefcase-alt-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-briefcase-alt.svg b/svg/solid/bxs-briefcase-alt.svg index a930805..3722293 100644 --- a/svg/solid/bxs-briefcase-alt.svg +++ b/svg/solid/bxs-briefcase-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-briefcase.svg b/svg/solid/bxs-briefcase.svg index 4693e27..70aca7e 100644 --- a/svg/solid/bxs-briefcase.svg +++ b/svg/solid/bxs-briefcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-brush-alt.svg b/svg/solid/bxs-brush-alt.svg index 4db2abb..30bbf24 100644 --- a/svg/solid/bxs-brush-alt.svg +++ b/svg/solid/bxs-brush-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-brush.svg b/svg/solid/bxs-brush.svg index adcce1b..4f634e2 100644 --- a/svg/solid/bxs-brush.svg +++ b/svg/solid/bxs-brush.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-building-house.svg b/svg/solid/bxs-building-house.svg index 8ba71ea..52c20aa 100644 --- a/svg/solid/bxs-building-house.svg +++ b/svg/solid/bxs-building-house.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-building.svg b/svg/solid/bxs-building.svg index 7a605f3..5ec29c0 100644 --- a/svg/solid/bxs-building.svg +++ b/svg/solid/bxs-building.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-buildings.svg b/svg/solid/bxs-buildings.svg index 2f257a7..674f1cb 100644 --- a/svg/solid/bxs-buildings.svg +++ b/svg/solid/bxs-buildings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-bus.svg b/svg/solid/bxs-bus.svg index 78f2683..da62829 100644 --- a/svg/solid/bxs-bus.svg +++ b/svg/solid/bxs-bus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-cake.svg b/svg/solid/bxs-cake.svg new file mode 100644 index 0000000..a15fd25 --- /dev/null +++ b/svg/solid/bxs-cake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-cart.svg b/svg/solid/bxs-cart.svg index ba63aae..55eea08 100644 --- a/svg/solid/bxs-cart.svg +++ b/svg/solid/bxs-cart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-categories.svg b/svg/solid/bxs-categories.svg index 92dbb02..94e3b0f 100644 --- a/svg/solid/bxs-categories.svg +++ b/svg/solid/bxs-categories.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-chat.svg b/svg/solid/bxs-chat.svg index 6478113..c43b621 100644 --- a/svg/solid/bxs-chat.svg +++ b/svg/solid/bxs-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-check-shield.svg b/svg/solid/bxs-check-shield.svg new file mode 100644 index 0000000..8f6177b --- /dev/null +++ b/svg/solid/bxs-check-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-chip.svg b/svg/solid/bxs-chip.svg index 082dd7a..c3839b2 100644 --- a/svg/solid/bxs-chip.svg +++ b/svg/solid/bxs-chip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-city.svg b/svg/solid/bxs-city.svg new file mode 100644 index 0000000..ed21c07 --- /dev/null +++ b/svg/solid/bxs-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-coffee-alt.svg b/svg/solid/bxs-coffee-alt.svg index 3a4886b..7aa896c 100644 --- a/svg/solid/bxs-coffee-alt.svg +++ b/svg/solid/bxs-coffee-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-coffee.svg b/svg/solid/bxs-coffee.svg index abce9a3..2b82cf3 100644 --- a/svg/solid/bxs-coffee.svg +++ b/svg/solid/bxs-coffee.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-copy-alt.svg b/svg/solid/bxs-copy-alt.svg index 959abb2..5851f9c 100644 --- a/svg/solid/bxs-copy-alt.svg +++ b/svg/solid/bxs-copy-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-copy.svg b/svg/solid/bxs-copy.svg index 1543659..1e2623b 100644 --- a/svg/solid/bxs-copy.svg +++ b/svg/solid/bxs-copy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-coupon.svg b/svg/solid/bxs-coupon.svg index a1cc9bd..78d763f 100644 --- a/svg/solid/bxs-coupon.svg +++ b/svg/solid/bxs-coupon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-credit-card-alt.svg b/svg/solid/bxs-credit-card-alt.svg index 22e9e6a..626e14d 100644 --- a/svg/solid/bxs-credit-card-alt.svg +++ b/svg/solid/bxs-credit-card-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-credit-card.svg b/svg/solid/bxs-credit-card.svg index 5f9a724..32990a7 100644 --- a/svg/solid/bxs-credit-card.svg +++ b/svg/solid/bxs-credit-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-discount.svg b/svg/solid/bxs-discount.svg index 05b6731..fa41c28 100644 --- a/svg/solid/bxs-discount.svg +++ b/svg/solid/bxs-discount.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-dish.svg b/svg/solid/bxs-dish.svg new file mode 100644 index 0000000..19e8d89 --- /dev/null +++ b/svg/solid/bxs-dish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-downvote.svg b/svg/solid/bxs-downvote.svg index 5edd7ea..dfc8f95 100644 --- a/svg/solid/bxs-downvote.svg +++ b/svg/solid/bxs-downvote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-edit-alt.svg b/svg/solid/bxs-edit-alt.svg index 3c76fca..7bbbf42 100644 --- a/svg/solid/bxs-edit-alt.svg +++ b/svg/solid/bxs-edit-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-edit.svg b/svg/solid/bxs-edit.svg index 9d0db56..77f5077 100644 --- a/svg/solid/bxs-edit.svg +++ b/svg/solid/bxs-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-exit.svg b/svg/solid/bxs-exit.svg new file mode 100644 index 0000000..8115b89 --- /dev/null +++ b/svg/solid/bxs-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-extension.svg b/svg/solid/bxs-extension.svg new file mode 100644 index 0000000..2320672 --- /dev/null +++ b/svg/solid/bxs-extension.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-face.svg b/svg/solid/bxs-face.svg new file mode 100644 index 0000000..63947e4 --- /dev/null +++ b/svg/solid/bxs-face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-file-find.svg b/svg/solid/bxs-file-find.svg new file mode 100644 index 0000000..17d4404 --- /dev/null +++ b/svg/solid/bxs-file-find.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-filter-alt.svg b/svg/solid/bxs-filter-alt.svg index bdf2362..b7d657e 100644 --- a/svg/solid/bxs-filter-alt.svg +++ b/svg/solid/bxs-filter-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-flag.svg b/svg/solid/bxs-flag.svg index c055808..dd82b62 100644 --- a/svg/solid/bxs-flag.svg +++ b/svg/solid/bxs-flag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-fridge.svg b/svg/solid/bxs-fridge.svg new file mode 100644 index 0000000..8be65e0 --- /dev/null +++ b/svg/solid/bxs-fridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-gas-pump.svg b/svg/solid/bxs-gas-pump.svg index 6b44580..99ca058 100644 --- a/svg/solid/bxs-gas-pump.svg +++ b/svg/solid/bxs-gas-pump.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-grid-alt.svg b/svg/solid/bxs-grid-alt.svg index c4db2ee..75247f5 100644 --- a/svg/solid/bxs-grid-alt.svg +++ b/svg/solid/bxs-grid-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-hdd.svg b/svg/solid/bxs-hdd.svg index feab507..ebbb536 100644 --- a/svg/solid/bxs-hdd.svg +++ b/svg/solid/bxs-hdd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-image-add.svg b/svg/solid/bxs-image-add.svg new file mode 100644 index 0000000..f38352a --- /dev/null +++ b/svg/solid/bxs-image-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-inbox.svg b/svg/solid/bxs-inbox.svg index a9f2a18..92a8695 100644 --- a/svg/solid/bxs-inbox.svg +++ b/svg/solid/bxs-inbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-label.svg b/svg/solid/bxs-label.svg new file mode 100644 index 0000000..65e8c05 --- /dev/null +++ b/svg/solid/bxs-label.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-magnet.svg b/svg/solid/bxs-magnet.svg index a9d216d..82ea5e9 100644 --- a/svg/solid/bxs-magnet.svg +++ b/svg/solid/bxs-magnet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-megaphone.svg b/svg/solid/bxs-megaphone.svg index 338de0c..89fe925 100644 --- a/svg/solid/bxs-megaphone.svg +++ b/svg/solid/bxs-megaphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-message-alt-dots.svg b/svg/solid/bxs-message-alt-dots.svg index dc25961..5258c19 100644 --- a/svg/solid/bxs-message-alt-dots.svg +++ b/svg/solid/bxs-message-alt-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-message-alt.svg b/svg/solid/bxs-message-alt.svg index b69abfc..acfefbd 100644 --- a/svg/solid/bxs-message-alt.svg +++ b/svg/solid/bxs-message-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-message-dots.svg b/svg/solid/bxs-message-dots.svg index d9ee14a..4c938e2 100644 --- a/svg/solid/bxs-message-dots.svg +++ b/svg/solid/bxs-message-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-message-rounded-dots.svg b/svg/solid/bxs-message-rounded-dots.svg index bf24b27..5c0f4e1 100644 --- a/svg/solid/bxs-message-rounded-dots.svg +++ b/svg/solid/bxs-message-rounded-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-message.svg b/svg/solid/bxs-message.svg index 7cd8cb5..93ae6ca 100644 --- a/svg/solid/bxs-message.svg +++ b/svg/solid/bxs-message.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-movie.svg b/svg/solid/bxs-movie.svg index e33db21..4f4d303 100644 --- a/svg/solid/bxs-movie.svg +++ b/svg/solid/bxs-movie.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-news.svg b/svg/solid/bxs-news.svg index ba54e3a..a791857 100644 --- a/svg/solid/bxs-news.svg +++ b/svg/solid/bxs-news.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-no-entry.svg b/svg/solid/bxs-no-entry.svg index 647b86f..d3b010f 100644 --- a/svg/solid/bxs-no-entry.svg +++ b/svg/solid/bxs-no-entry.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-notepad.svg b/svg/solid/bxs-notepad.svg index 3facf5b..33f365d 100644 --- a/svg/solid/bxs-notepad.svg +++ b/svg/solid/bxs-notepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-paste.svg b/svg/solid/bxs-paste.svg index 49ba5cb..da1aa11 100644 --- a/svg/solid/bxs-paste.svg +++ b/svg/solid/bxs-paste.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-photo-album.svg b/svg/solid/bxs-photo-album.svg index 8383673..94d3730 100644 --- a/svg/solid/bxs-photo-album.svg +++ b/svg/solid/bxs-photo-album.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-pin.svg b/svg/solid/bxs-pin.svg index 66158c4..842ad04 100644 --- a/svg/solid/bxs-pin.svg +++ b/svg/solid/bxs-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-printer.svg b/svg/solid/bxs-printer.svg index 6d61485..a739e88 100644 --- a/svg/solid/bxs-printer.svg +++ b/svg/solid/bxs-printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-purchase-tag.svg b/svg/solid/bxs-purchase-tag.svg index c2cca08..3da1171 100644 --- a/svg/solid/bxs-purchase-tag.svg +++ b/svg/solid/bxs-purchase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-radio.svg b/svg/solid/bxs-radio.svg index adb628e..21b052a 100644 --- a/svg/solid/bxs-radio.svg +++ b/svg/solid/bxs-radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-rename.svg b/svg/solid/bxs-rename.svg index e64eccc..26759ff 100644 --- a/svg/solid/bxs-rename.svg +++ b/svg/solid/bxs-rename.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-ruler.svg b/svg/solid/bxs-ruler.svg index 272caa3..f924ae9 100644 --- a/svg/solid/bxs-ruler.svg +++ b/svg/solid/bxs-ruler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-share.svg b/svg/solid/bxs-share.svg index e368dd4..83acbce 100644 --- a/svg/solid/bxs-share.svg +++ b/svg/solid/bxs-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-shield-alt-2.svg b/svg/solid/bxs-shield-alt-2.svg index b844562..2156709 100644 --- a/svg/solid/bxs-shield-alt-2.svg +++ b/svg/solid/bxs-shield-alt-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-ship.svg b/svg/solid/bxs-ship.svg index 9bc225c..32d4889 100644 --- a/svg/solid/bxs-ship.svg +++ b/svg/solid/bxs-ship.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-shopping-bag-alt.svg b/svg/solid/bxs-shopping-bag-alt.svg index bba9232..af4eb0b 100644 --- a/svg/solid/bxs-shopping-bag-alt.svg +++ b/svg/solid/bxs-shopping-bag-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-shopping-bag.svg b/svg/solid/bxs-shopping-bag.svg index 36a2de5..474db89 100644 --- a/svg/solid/bxs-shopping-bag.svg +++ b/svg/solid/bxs-shopping-bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-spa.svg b/svg/solid/bxs-spa.svg new file mode 100644 index 0000000..e45cedb --- /dev/null +++ b/svg/solid/bxs-spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/solid/bxs-star.svg b/svg/solid/bxs-star.svg index 635627c..6dfbb84 100644 --- a/svg/solid/bxs-star.svg +++ b/svg/solid/bxs-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-t-shirt.svg b/svg/solid/bxs-t-shirt.svg index 35df14f..6e68e95 100644 --- a/svg/solid/bxs-t-shirt.svg +++ b/svg/solid/bxs-t-shirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-tag-x.svg b/svg/solid/bxs-tag-x.svg index 8102788..8a1da87 100644 --- a/svg/solid/bxs-tag-x.svg +++ b/svg/solid/bxs-tag-x.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-tag.svg b/svg/solid/bxs-tag.svg index 6e8430f..8cdad4e 100644 --- a/svg/solid/bxs-tag.svg +++ b/svg/solid/bxs-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-terminal.svg b/svg/solid/bxs-terminal.svg index c21869a..b57e1a7 100644 --- a/svg/solid/bxs-terminal.svg +++ b/svg/solid/bxs-terminal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-trophy.svg b/svg/solid/bxs-trophy.svg index 5fb0a59..3982331 100644 --- a/svg/solid/bxs-trophy.svg +++ b/svg/solid/bxs-trophy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-upvote.svg b/svg/solid/bxs-upvote.svg index b374fe7..77d9dbe 100644 --- a/svg/solid/bxs-upvote.svg +++ b/svg/solid/bxs-upvote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-user-circle.svg b/svg/solid/bxs-user-circle.svg index 3d32428..c212b2a 100644 --- a/svg/solid/bxs-user-circle.svg +++ b/svg/solid/bxs-user-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-wallet-alt.svg b/svg/solid/bxs-wallet-alt.svg index fdb6fd4..09436be 100644 --- a/svg/solid/bxs-wallet-alt.svg +++ b/svg/solid/bxs-wallet-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-wallet.svg b/svg/solid/bxs-wallet.svg index 2b2a17b..b0b5598 100644 --- a/svg/solid/bxs-wallet.svg +++ b/svg/solid/bxs-wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-watch-alt.svg b/svg/solid/bxs-watch-alt.svg index a341ca6..9df7c4a 100644 --- a/svg/solid/bxs-watch-alt.svg +++ b/svg/solid/bxs-watch-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-watch.svg b/svg/solid/bxs-watch.svg index c765ba6..17d93e5 100644 --- a/svg/solid/bxs-watch.svg +++ b/svg/solid/bxs-watch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-widget.svg b/svg/solid/bxs-widget.svg index 058572a..269e6e9 100644 --- a/svg/solid/bxs-widget.svg +++ b/svg/solid/bxs-widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/solid/bxs-wrench.svg b/svg/solid/bxs-wrench.svg index b4a50d0..532b2d6 100644 --- a/svg/solid/bxs-wrench.svg +++ b/svg/solid/bxs-wrench.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file