This commit is contained in:
Dwi Swandhana
2026-06-09 08:56:30 +07:00
parent fb6e11c0e6
commit b793755d95
1851 changed files with 344010 additions and 2 deletions

No files matched your search

+143
View File
@@ -0,0 +1,143 @@
/* ==============
Account Pages
===================*/
.accountbg {
position: absolute;
background-size: cover;
height: 100%;
width: 100%;
top: 0;
}
.account-page-full {
right: 0;
position: absolute;
height: 100%;
margin: 0;
width: 540px;
background-color: $white;
.card {
border: none;
}
}
.account-copyright {
position: absolute;
bottom: 0;
width: 100%;
}
.checkmark {
width: 100px;
margin: 0 auto;
padding: 20px 0;
}
.path {
stroke-dasharray: 1000;
stroke-dashoffset: 0;
animation: dash 2s ease-in-out;
-webkit-animation: dash 2s ease-in-out;
}
.spin {
animation: spin 2s;
-webkit-animation: spin 2s;
transform-origin: 50% 50%;
-webkit-transform-origin: 50% 50%;
}
@-webkit-keyframes dash {
0% {
stroke-dashoffset: 1000;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes dash {
0% {
stroke-dashoffset: 1000;
}
100% {
stroke-dashoffset: 0;
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes text {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes text {
0% {
opacity: 0; }
100% {
opacity: 1;
}
}
.text-error {
color: $custom;
text-shadow: rgba($custom,0.3) 5px 1px, rgba($custom,0.2) 10px 3px;
font-size: 84px;
line-height: 90px;
}
@media (max-width: 768px) {
.account-pages.enlarged {
min-height: 100%;
}
.account-pages {
.account-page-full {
width: 100%;
}
}
}
// Maintenance
.svg-computer {
stroke-dasharray: 1134;
stroke-dashoffset: -1134;
animation: draw-me 5s infinite;
animation-direction: normal;
height: 200px;
}
@keyframes draw-me {
from {
stroke-dashoffset: -1134;
}
to {
stroke-dashoffset: 0;
}
}
+128
View File
@@ -0,0 +1,128 @@
/* =============
Alerts
============= */
.alert-custom {
color: $custom;
background-color: lighten($custom,55%);
border-color: lighten($custom,20%);
}
.alert-primary {
color: $primary;
background-color: lighten($primary,38%);
border-color: lighten($primary,20%);
}
.alert-secondary {
color: $secondary;
background-color: lighten($secondary,35%);
border-color: lighten($secondary,20%);
}
.alert-success {
color: $success;
background-color: lighten($success,55%);
border-color: lighten($success,20%);
}
.alert-danger {
color: $danger;
background-color: lighten($danger,33%);
border-color: lighten($danger,20%);
}
.alert-warning {
color: $warning;
background-color: lighten($warning,45%);
border-color: lighten($warning,20%);
}
.alert-info {
color: $info;
background-color: lighten($info,35%);
border-color: lighten($info,20%);
}
.alert-light {
background-color: lighten($light,5%);
border-color: $light;
}
.alert-dark {
color: $dark;
background-color: lighten($dark,65%);
border-color: lighten($dark,40%);
}
// Toastr Notification
.jq-toast-single {
padding: 15px;
font-family: $font-primary;
background-color: $custom;
font-size: 13px;
line-height: 22px;
h2 {
font-family: $font-secondary;
}
a{
font-size: 14px;
&:hover {
color: $white;
}
}
}
.jq-has-icon {
padding: 10px 10px 10px 50px;
}
.jq-icon-info {
background-color: $info;
color: $white;
border-color: $info;
}
.jq-icon-success {
background-color: $success;
color: $white;
border-color: $success;
}
.jq-icon-warning {
background-color: $warning;
color: $white;
border-color: $warning;
}
.jq-icon-error {
background-color: $danger;
color: $white;
border-color: $danger;
}
.close-jq-toast-single {
position: absolute;
top: -12px;
right: -12px;
font-size: 20px;
cursor: pointer;
height: 32px;
width: 32px;
background-color: $dark;
border-radius: 50%;
text-align: center;
line-height: 32px;
}
.jq-toast-loader {
height: 3px;
top: 0;
border-radius: 0;
}
@@ -0,0 +1,348 @@
/* =============
Bootstrap-custom
============= */
.breadcrumb {
background-color: transparent;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 0;
a{
color: $muted;
}
}
.breadcrumb>li+li:before {
padding: 0 5px;
color: $muted;
content: "\f105" !important;
font-family: FontAwesome;
}
code {
color: $custom;
}
/* Blockquote */
.blockquote {
font-size: 1.1rem;
}
.media {
margin-top: 25px;
}
/* Dropdown */
.dropdown-menu {
padding: 4px 0;
font-size: $font-size-base;
box-shadow: 0 3px 12px rgba(0,0,0,.05);
border-color: $light;
}
.dropdown-menu-animated {
display: block;
visibility: hidden;
opacity: 0;
transition: all 300ms ease;
-moz-transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
-ms-transition: all 300ms ease;
margin-top: 20px!important;
}
.show>.dropdown-menu {
visibility: visible;
opacity: 1;
margin-top: 0 !important;
}
.dropdown-item.active, .dropdown-item:active{
color: $dark;
text-decoration: none;
background-color: darken($white,3%);
}
.dropdown-item {
padding: 6px 1.5rem;
}
.dropdown-lg {
width: 320px;
}
.arrow-none {
&:after {
border: none;
margin: 0;
display: none;
}
}
/* Background colors */
.bg-custom {
background-color: $custom !important;
}
.bg-primary {
background-color: $primary !important;
}
.bg-success {
background-color: $success !important;
}
.bg-info {
background-color: $info !important;
}
.bg-warning {
background-color: $warning !important;
}
.bg-danger {
background-color: $danger !important;
}
.bg-muted {
background-color: $light7 !important;
}
.bg-purple {
background-color: $purple !important;
}
.bg-pink {
background-color: $pink !important;
}
.bg-white {
background-color: $white !important;
}
.bg-dark {
background-color: $dark !important;
}
.bg-light {
background-color: $light !important;
}
/* Text colors */
.text-custom {
color: $custom !important;
}
.text-white {
color: $white !important;
}
.text-danger {
color: $danger !important;
}
.text-muted {
color: $muted !important;
}
.text-primary {
color: $primary !important;
}
.text-warning {
color: $warning !important;
}
.text-success {
color: $success !important;
}
.text-info {
color: $info !important;
}
.text-pink {
color: $pink !important;
}
.text-purple {
color: $purple !important;
}
.text-dark {
color: $dark !important;
}
/* Border colors */
.border-primary {
border-color: $primary !important;
}
.border-success {
border-color: $success !important;
}
.border-info {
border-color: $info !important;
}
.border-warning {
border-color: $warning !important;
}
.border-danger {
border-color: $danger !important;
}
.border-dark {
border-color: $dark !important;
}
.border-pink {
border-color: $pink !important;
}
.border-purple {
border-color: $purple !important;
}
.border-custom {
border-color: $custom !important;
}
/* Badge */
.badge {
font-family: $font-secondary;
box-shadow: $shadow;
padding: .35em .5em;
font-weight: 500;
}
.badge-custom {
background: $custom;
color: $white;
}
.badge-primary {
background-color: $primary;
}
.badge-secondary {
background-color: $secondary;
}
.badge-success {
background-color: $success;
}
.badge-info {
background-color: $info;
}
.badge-warning {
background-color: $warning;
color: $white;
}
.badge-danger {
background-color: $danger;
}
.badge-purple {
background-color: $purple;
color: $white;
}
.badge-pink {
background-color: $pink;
color: $white;
}
.badge-dark {
background-color: $dark;
}
/* Pagination/ Pager */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.pagination > li > a,
.pagination > li > span {
color: $dark;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
background-color: $light;
}
.pagination-split li {
margin-left: 5px;
display: inline-block;
float: left;
}
.pagination-split li:first-child {
margin-left: 0;
}
.pagination-split li a {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.page-item.active .page-link {
background: $custom;
border-color: $custom;
}
.pager li > a, .pager li > span {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: $dark;
}
.list-group-item.active, .list-group-item.active:focus,
.list-group-item.active:hover {
background-color: $custom;
border-color: $custom;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
color: fade($white,70%);
}
+366
View File
@@ -0,0 +1,366 @@
/* =============
Buttons
============= */
.btn {
border-radius: 2px;
font-size: $font-size-base;
outline: none !important;
padding: .375rem 1.1rem;
}
.btn-group-sm>.btn, .btn-sm{
padding: .2rem .8rem;
}
.btn-group-lg>.btn, .btn-lg {
padding: .7rem 1.6rem;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: 0 0 0 100px rgba(0,0,0,.1) inset;
box-shadow: 0 0 0 100px rgba(0,0,0,.1) inset;
}
.dropdown-toggle-split {
padding-right: .5625rem;
padding-left: .5625rem;
}
.dropleft {
.dropdown-toggle-split {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
.btn-custom,.btn-primary, .btn-success, .btn-info, .btn-warning,
.btn-danger, .btn-inverse, .btn-purple, .btn-pink{
color: $white !important;
}
.btn-custom {
background-color: $custom;
border-color: $custom;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom:active, .btn-custom.active,
.btn-custom.focus, .btn-custom:active, .btn-custom:focus, .btn-custom:hover,
.open > .dropdown-toggle.btn-custom {
background-color: darken($custom, 5%);
border: 1px solid darken($custom, 5%);
}
.btn-custom.focus, .btn-custom:focus,.btn-outline-custom.focus, .btn-outline-custom:focus,
.btn-custom:not([disabled]):not(.disabled).active, .btn-custom:not([disabled]):not(.disabled):active, .show>.btn-custom.dropdown-toggle {
box-shadow: 0 0 0 2px rgba($custom,.5);
}
.btn-primary{
background-color: $primary;
border: 1px solid $primary;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
.btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover,
.open > .dropdown-toggle.btn-primary,.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
background-color: darken($primary, 5%);
border-color: darken($primary, 5%);
}
.btn-primary.focus, .btn-primary:focus,.btn-outline-primary.focus, .btn-outline-primary:focus,
.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show>.btn-primary.dropdown-toggle,
.btn-primary:not([disabled]):not(.disabled).active:focus, .btn-primary:not([disabled]):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus{
box-shadow: 0 0 0 2px rgba($primary,.5);
}
.btn-secondary {
background-color: $secondary;
border-color: $secondary;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active,
.btn-secondary.focus, .btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover,
.open > .dropdown-toggle.btn-secondary {
background-color: darken($secondary, 5%);
border-color: darken($secondary, 5%);
}
.btn-secondary.focus, .btn-secondary:focus,.btn-outline-secondary.focus, .btn-outline-secondary:focus{
box-shadow: 0 0 0 2px rgba($light7,0.5);
}
.btn-light {
border-color: $light;
}
.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active,
.btn-light.focus, .btn-light:active, .btn-light:focus, .btn-light:hover,
.open > .dropdown-toggle.btn-light {
border-color: darken($white, 25%);
}
.btn-light.focus, .btn-light:focus,.btn-outline-light.focus, .btn-outline-light:focus {
box-shadow: 0 0 0 2px darken($white,15%);
}
.btn-success {
background-color: $success;
border: 1px solid $success;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.focus, .btn-success:active, .btn-success:focus, .btn-success:hover, .open > .dropdown-toggle.btn-success,
.btn-success:not([disabled]):not(.disabled).active, .btn-success:not([disabled]):not(.disabled):active, .show>.btn-success.dropdown-toggle{
background-color: darken($success, 5%);
border-color: darken($success, 5%);
}
.btn-success.focus, .btn-success:focus,.btn-outline-success.focus, .btn-outline-success:focus,
.btn-success:not([disabled]):not(.disabled).active, .btn-success:not([disabled]):not(.disabled):active, .show>.btn-success.dropdown-toggle,
.btn-success:not([disabled]):not(.disabled).active:focus, .btn-success:not([disabled]):not(.disabled):active:focus, .show>.btn-success.dropdown-toggle:focus{
box-shadow: 0 0 0 2px rgba($success,.5);
}
.btn-info {
background-color: $info;
border: 1px solid $info;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover,
.open > .dropdown-toggle.btn-info,.btn-info:not([disabled]):not(.disabled).active, .btn-info:not([disabled]):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
background-color: darken($info, 5%);
border-color: darken($info, 5%);
}
.btn-info.focus, .btn-info:focus,.btn-outline-info.focus, .btn-outline-info:focus,
.btn-info:not([disabled]):not(.disabled).active, .btn-info:not([disabled]):not(.disabled):active, .show>.btn-info.dropdown-toggle,
.btn-info:not([disabled]):not(.disabled).active:focus, .btn-info:not([disabled]):not(.disabled):active:focus, .show>.btn-info.dropdown-toggle:focus{
box-shadow: 0 0 0 2px rgba($info,.5);
}
.btn-warning {
background-color: $warning;
border: 1px solid $warning;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning.focus, .btn-warning:active,
.btn-warning:focus, .btn-warning:hover, .open > .dropdown-toggle.btn-warning ,.btn-warning:not([disabled]):not(.disabled).active,
.btn-warning:not([disabled]):not(.disabled):active, .show>.btn-warning.dropdown-toggle{
background-color: darken($warning, 5%);
border-color: darken($warning, 5%);
}
.btn-warning.focus, .btn-warning:focus,.btn-outline-warning.focus, .btn-outline-warning:focus,
.btn-warning:not([disabled]):not(.disabled).active, .btn-warning:not([disabled]):not(.disabled):active, .show>.btn-warning.dropdown-toggle,
.btn-warning:not([disabled]):not(.disabled).active:focus, .btn-warning:not([disabled]):not(.disabled):active:focus, .show>.btn-warning.dropdown-toggle:focus{
box-shadow: 0 0 0 2px rgba($warning,.5);
}
.btn-danger {
background-color: $danger;
border: 1px solid $danger;
}
.btn-danger:active, .btn-danger:focus, .btn-danger:hover, .btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus,
.btn-danger:hover, .open > .dropdown-toggle.btn-danger,.btn-danger:not([disabled]):not(.disabled).active, .btn-danger:not([disabled]):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
background-color: darken($danger, 5%);
border-color: darken($danger, 5%);
}
.btn-danger.focus, .btn-danger:focus,.btn-outline-danger.focus, .btn-outline-danger:focus,
.btn-danger:not([disabled]):not(.disabled).active, .btn-danger:not([disabled]):not(.disabled):active, .show>.btn-danger.dropdown-toggle,
.btn-danger:not([disabled]):not(.disabled).active:focus, .btn-danger:not([disabled]):not(.disabled):active:focus, .show>.btn-danger.dropdown-toggle:focus{
box-shadow: 0 0 0 2px rgba($danger,.5);
}
.btn-dark {
background-color: $dark;
border: 1px solid $dark;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .btn-dark.focus, .btn-dark:active, .btn-dark:focus, .btn-dark:hover, .open > .dropdown-toggle.btn-dark {
background-color: darken($dark, 5%);
border-color: darken($dark, 5%);
}
.btn-dark.focus, .btn-dark:focus,.btn-outline-dark.focus, .btn-outline-dark:focus,
.btn-dark:not([disabled]):not(.disabled).active, .btn-dark:not([disabled]):not(.disabled):active, .show>.btn-dark.dropdown-toggle{
box-shadow: 0 0 0 2px rgba($dark,.5);
}
.btn-purple {
background-color: $purple;
border: 1px solid $purple;
}
.btn-purple:hover, .btn-purple:focus, .btn-purple:active {
background-color: darken($purple, 5%);
border-color: darken($purple, 5%);
}
.btn-purple.focus, .btn-purple:focus,.btn-outline-purple.focus, .btn-outline-purple:focus {
box-shadow: 0 0 0 2px rgba($purple,.5);
}
.btn-pink {
background-color: $pink;
border: 1px solid $pink;
}
.btn-pink:hover, .btn-pink:focus, .btn-pink:active {
background-color: darken($pink, 5%);
border-color: darken($pink, 5%);
}
.btn-pink.focus, .btn-pink:focus,.btn-outline-pink.focus, .btn-outline-pink:focus {
box-shadow: 0 0 0 2px rgba($pink,.5);
}
/* button Outline */
.btn-outline-custom {
color: $custom;
border-color: $custom;
background-image: none;
background-color: transparent;
&:hover {
background-color: $custom;
border-color: $custom;
color: $white;
}
}
.btn-outline-primary {
color: $primary;
border-color: $primary;
&:hover {
background-color: $primary;
border-color: $primary;
}
}
.btn-outline-success {
color: $success;
border-color: $success;
&:hover {
background-color: $success;
border-color: $success;
}
}
.btn-outline-info {
color: $info;
border-color: $info;
&:hover {
background-color: $info;
border-color: $info;
}
}
.btn-outline-warning {
color: $warning;
border-color: $warning;
&:hover {
background-color: $warning;
border-color: $warning;
}
}
.btn-outline-danger {
color: $danger;
border-color: $danger;
&:hover {
background-color: $danger;
border-color: $danger;
}
}
.btn-outline-dark {
color: $dark;
border-color: $dark;
&:hover {
background-color: $dark;
border-color: $dark;
}
}
.btn-outline-pink {
color: $pink;
background-image: none;
background-color: transparent;
border-color: $pink;
&:hover {
background-color: $pink;
border-color: $pink;
color: $white;
}
}
.btn-outline-purple {
color: $purple;
background-image: none;
background-color: transparent;
border-color: $purple;
&:hover {
background-color: $purple;
border-color: $purple;
color: $white;
}
}
.btn-rounded {
border-radius: 2em;
}
/* Social Buttons */
.btn-facebook {
color: $white !important;
background-color: #3b5998;
}
.btn-twitter {
color: $white !important;
background-color: #00aced;
}
.btn-linkedin {
color: $white !important;
background-color: #007bb6;
}
.btn-dribbble {
color: $white !important;
background-color: #ea4c89;
}
.btn-googleplus {
color: $white !important;
background-color: #dd4b39;
}
.btn-instagram {
color: $white !important;
background-color: #517fa4;
}
.btn-pinterest {
color: $white !important;
background-color: #cb2027;
}
.btn-dropbox {
color: $white !important;
background-color: #007ee5;
}
.btn-flickr {
color: $white !important;
background-color: #ff0084;
}
.btn-tumblr {
color: $white !important;
background-color: #32506d;
}
.btn-skype {
color: $white !important;
background-color: #00aff0;
}
.btn-youtube {
color: $white !important;
background-color: #bb0000;
}
.btn-github {
color: $white !important;
background-color: #171515;
}
+134
View File
@@ -0,0 +1,134 @@
/* =============
Calendar
============= */
.calendar {
float: left;
margin-bottom: 0;
}
.fc-view {
margin-top: 30px;
}
.none-border {
.modal-footer {
border-top: none;
}
}
.fc-toolbar {
margin-bottom: 5px;
margin-top: 15px;
h2 {
font-size: 20px;
font-family: $font-secondary;
line-height: 30px;
text-transform: uppercase;
}
}
.fc-day-grid-event .fc-time {
font-family: $font-secondary;
}
.fc-day {
background: $white;
}
.fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active,
.fc-toolbar button:focus, .fc-toolbar button:hover,
.fc-toolbar .ui-state-hover {
z-index: 0;
}
.fc {
th.fc-widget-header {
background: $light;
font-size: 13px;
line-height: 20px;
padding: 10px 0;
text-transform: uppercase;
}
}
.fc-unthemed th, .fc-unthemed td, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-divider, .fc-unthemed .fc-row, .fc-unthemed .fc-popover {
border-color: $light;
}
.fc-button {
background: $light;
border: none;
color: $light7;
text-transform: capitalize;
box-shadow: none;
border-radius: 3px;
margin: 0 3px;
padding: 6px 12px;
height: auto;
}
.fc-text-arrow {
font-family: inherit;
font-size: 16px;
}
.fc-state-hover {
background: $light3;
}
.fc-state-highlight {
background: #f0f0f0;
}
.fc-state-down, .fc-state-active,.fc-state-disabled {
background-color: $custom;
color: $white;
text-shadow: none;
}
.fc-cell-overlay {
background: #f0f0f0;
}
.fc-unthemed {
.fc-today {
background: $white;
}
}
.fc-event {
border-radius: 2px;
border: none;
cursor: move;
font-size: 13px;
margin: 5px 7px;
padding: 5px 5px;
text-align: center;
}
.external-event {
cursor: move;
margin: 10px 0;
padding: 8px 10px;
color: $white;
}
.fc-basic-view {
td.fc-week-number {
span {
padding-right: 8px;
font-family: $font-secondary;
}
}
td.fc-day-number {
padding-right: 8px;
font-family: $font-secondary;
}
.fc-content {
color: $white;
}
}
.fc-time-grid-event .fc-content {
color: $white;
}
+30
View File
@@ -0,0 +1,30 @@
/* =============
Card
============= */
/* Card Box */
.card-box{
padding: 20px;
border-radius: 3px;
margin-bottom: 30px;
background-color: $white;
}
/* Card */
.card {
border: none;
}
.card-title,.card-header {
margin-top: 0 !important;
}
.card-header,.card-footer {
background-color: $light;
border-bottom-color: darken($light,5%);
}
.card-footer {
border-top-color: darken($light,5%);
}
+150
View File
@@ -0,0 +1,150 @@
/* =============
Charts
============= */
/* Flot chart */
#flotTip {
padding: 8px 12px;
background-color: $white;
z-index: 100;
color: $dark;
opacity: 1;
box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.14);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;;
border-radius: 3px;;
}
.legend tr {
height: 30px;
font-family: $font-secondary;
}
.legendLabel {
padding-left: 5px !important;
line-height: 10px;
padding-right: 20px;
font-size: 13px;
font-weight: 500;
color: rgba($dark,0.6);
text-transform: uppercase;
}
.legendColorBox div div{
border-radius: 50%;
}
/* Morris chart */
.morris-hover.morris-default-style {
border-radius: 3px;
padding: 10px 12px;
background: $white;
border: none;
box-shadow: $shadow;
color: $dark;
}
/* Chartist chart */
.ct-golden-section:before {
float: none;
}
.ct-chart {
max-height: 350px;
.ct-label {
fill: $muted;
color: $muted;
font-size: 13px;
line-height: 1;
}
}
.ct-grid {
stroke: rgba($dark,0.1);
}
.ct-chart.simple-pie-chart-chartist {
.ct-label {
color: $white;
fill: $white;
font-size: 16px;
}
}
.ct-chart .ct-series.ct-series-a .ct-bar, .ct-chart .ct-series.ct-series-a .ct-line, .ct-chart .ct-series.ct-series-a .ct-point, .ct-chart .ct-series.ct-series-a .ct-slice-donut {
stroke: $custom;
}
.ct-chart .ct-series.ct-series-b .ct-bar, .ct-chart .ct-series.ct-series-b .ct-line, .ct-chart .ct-series.ct-series-b .ct-point, .ct-chart .ct-series.ct-series-b .ct-slice-donut {
stroke: $light;
}
.ct-chart .ct-series.ct-series-c .ct-bar, .ct-chart .ct-series.ct-series-c .ct-line, .ct-chart .ct-series.ct-series-c .ct-point, .ct-chart .ct-series.ct-series-c .ct-slice-donut {
stroke: $primary;
}
.ct-chart .ct-series.ct-series-d .ct-bar, .ct-chart .ct-series.ct-series-d .ct-line, .ct-chart .ct-series.ct-series-d .ct-point, .ct-chart .ct-series.ct-series-d .ct-slice-donut {
stroke: $danger;
}
.ct-chart .ct-series.ct-series-e .ct-bar, .ct-chart .ct-series.ct-series-e .ct-line, .ct-chart .ct-series.ct-series-e .ct-point, .ct-chart .ct-series.ct-series-e .ct-slice-donut {
stroke: $info;
}
.ct-chart .ct-series.ct-series-f .ct-bar, .ct-chart .ct-series.ct-series-f .ct-line, .ct-chart .ct-series.ct-series-f .ct-point, .ct-chart .ct-series.ct-series-f .ct-slice-donut {
stroke: $pink;
}
.ct-chart .ct-series.ct-series-g .ct-bar, .ct-chart .ct-series.ct-series-g .ct-line, .ct-chart .ct-series.ct-series-g .ct-point, .ct-chart .ct-series.ct-series-g .ct-slice-donut {
stroke: $warning;
}
.ct-series-a .ct-area, .ct-series-a .ct-slice-pie {
fill: $custom;
}
.ct-series-b .ct-area, .ct-series-b .ct-slice-pie {
fill: $light;
}
.ct-series-c .ct-area, .ct-series-c .ct-slice-pie {
fill: $primary;
}
.ct-series-d .ct-area, .ct-series-d .ct-slice-pie {
fill: $danger;
}
.chartist-tooltip {
position: absolute;
display: inline-block;
opacity: 0;
min-width: 10px;
padding: 2px 10px;
border-radius: 3px;
background: $dark;
color: $white;
text-align: center;
pointer-events: none;
z-index: 1;
-webkit-transition: opacity .2s linear;
-moz-transition: opacity .2s linear;
-o-transition: opacity .2s linear;
transition: opacity .2s linear;
}
.chartist-tooltip.tooltip-show {
opacity: 1;
}
/* Sparkline chart */
.jqstooltip {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
width: auto !important;
height: auto !important;
background-color: $white !important;
box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.14);
padding: 5px 10px !important;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-border-radius: 3px;
border-color: $white !important;
}
.jqsfield {
color: $dark !important;
font-size: 12px !important;
line-height: 18px !important;
}
@@ -0,0 +1,441 @@
/* =============
Checkbox and Radios
============= */
.checkbox {
//padding-left: 20px;
label {
display: inline-block;
padding-left: 8px;
position: relative;
font-weight: normal;
&::before {
-o-transition: 0.3s ease-in-out;
-webkit-transition: 0.3s ease-in-out;
background-color: $white;
border-radius: 3px;
border: 2px solid $muted;
content: "";
display: inline-block;
height: 18px;
left: 0;
margin-left: -18px;
position: absolute;
transition: 0.3s ease-in-out;
width: 18px;
outline: none !important;
}
&::after {
color: $light7;
display: inline-block;
font-size: 11px;
height: 18px;
left: 0;
margin-left: -18px;
padding-left: 3px;
padding-top: 2px;
position: absolute;
top: 0;
width: 18px;
}
}
input[type="checkbox"] {
cursor: pointer;
opacity: 0;
z-index: 1;
outline: none !important;
&:disabled + label {
opacity: 0.65;
}
}
input[type="checkbox"]:focus + label {
&::before {
outline-offset: -2px;
outline: none;
}
}
input[type="checkbox"]:checked + label {
&::after {
content: "";
position: absolute;
top: 3px;
left: 7px;
display: table;
width: 5px;
height: 10px;
border: 1px solid $dark;
border-top-width: 0;
border-left-width: 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
}
input[type="checkbox"]:disabled + label {
&::before {
background-color: $light;
cursor: not-allowed;
}
}
}
.checkbox.checkbox-circle {
label {
&::before {
border-radius: 50%;
}
}
}
.checkbox.checkbox-inline {
margin-top: 0;
}
.checkbox.checkbox-single {
input {
height: 18px;
width: 18px;
position: absolute;
}
label {
height: 18px;
width: 18px;
&:before {
margin-left: 0;
}
&:after {
margin-left: 0;
}
}
}
.checkbox-custom {
input[type="checkbox"]:checked + label {
&::before {
background-color: $custom;
border-color: $custom;
}
&::after {
border-color: $white;
}
}
}
.checkbox-primary {
input[type="checkbox"]:checked + label {
&::before {
background-color: $primary;
border-color: $primary;
}
&::after {
border-color: $white;
}
}
}
.checkbox-danger {
input[type="checkbox"]:checked + label {
&::before {
background-color: $danger;
border-color: $danger;
}
&::after {
border-color: $white;
}
}
}
.checkbox-info {
input[type="checkbox"]:checked + label {
&::before {
background-color: $info;
border-color: $info;
}
&::after {
border-color: $white;
}
}
}
.checkbox-warning {
input[type="checkbox"]:checked + label {
&::before {
background-color: $warning;
border-color: $warning;
}
&::after {
border-color: $white;
}
}
}
.checkbox-success {
input[type="checkbox"]:checked + label {
&::before {
background-color: $success;
border-color: $success;
}
&::after {
border-color: $white;
}
}
}
.checkbox-purple {
input[type="checkbox"]:checked + label {
&::before {
background-color: $purple;
border-color: $purple;
}
&::after {
border-color: $white;
}
}
}
.checkbox-pink {
input[type="checkbox"]:checked + label {
&::before {
background-color: $pink;
border-color: $pink;
}
&::after {
border-color: $white;
}
}
}
.checkbox-dark {
input[type="checkbox"]:checked + label {
&::before {
background-color: $dark;
border-color: $dark;
}
&::after {
border-color: $white;
}
}
}
/* Radios */
.radio {
//padding-left: 20px;
label {
display: inline-block;
padding-left: 8px;
position: relative;
font-weight: normal;
&::before {
-o-transition: border 0.5s ease-in-out;
-webkit-transition: border 0.5s ease-in-out;
background-color: $white;
border-radius: 50%;
border: 2px solid $muted;
content: "";
display: inline-block;
height: 18px;
left: 0;
margin-left: -18px;
position: absolute;
transition: border 0.5s ease-in-out;
width: 18px;
outline: none !important;
}
&::after {
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-ms-transform: scale(0, 0);
-o-transform: scale(0, 0);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-webkit-transform: scale(0, 0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
background-color: $light7;
border-radius: 50%;
content: " ";
display: inline-block;
height: 10px;
left: 6px;
margin-left: -20px;
position: absolute;
top: 4px;
transform: scale(0, 0);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
width: 10px;
}
}
input[type="radio"] {
cursor: pointer;
opacity: 0;
z-index: 1;
outline: none !important;
&:disabled + label {
opacity: 0.65;
}
}
input[type="radio"]:focus + label {
&::before {
outline-offset: -2px;
outline: 5px auto -webkit-focus-ring-color;
outline: thin dotted;
}
}
input[type="radio"]:checked + label {
&::after {
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
}
}
input[type="radio"]:disabled + label {
&::before {
cursor: not-allowed;
}
}
}
.radio.radio-inline {
margin-top: 0;
}
.radio.radio-single {
label {
height: 17px;
}
}
.radio-custom {
input[type="radio"] + label {
&::after {
background-color: $custom;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $custom;
}
&::after {
background-color: $custom;
}
}
}
.radio-primary {
input[type="radio"] + label {
&::after {
background-color: $primary;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $primary;
}
&::after {
background-color: $primary;
}
}
}
.radio-danger {
input[type="radio"] + label {
&::after {
background-color: $danger;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $danger;
}
&::after {
background-color: $danger;
}
}
}
.radio-info {
input[type="radio"] + label {
&::after {
background-color: $info;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $info;
}
&::after {
background-color: $info;
}
}
}
.radio-warning {
input[type="radio"] + label {
&::after {
background-color: $warning;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $warning;
}
&::after {
background-color: $warning;
}
}
}
.radio-success {
input[type="radio"] + label {
&::after {
background-color: $success;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $success;
}
&::after {
background-color: $success;
}
}
}
.radio-purple {
input[type="radio"] + label {
&::after {
background-color: $purple;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $purple;
}
&::after {
background-color: $purple;
}
}
}
.radio-pink {
input[type="radio"] + label {
&::after {
background-color: $pink;
}
}
input[type="radio"]:checked + label {
&::before {
border-color: $pink;
}
&::after {
background-color: $pink;
}
}
}
+54
View File
@@ -0,0 +1,54 @@
/* =============
Count Down - Coming Soon
============= */
.svg-rocket {
height: 80px;
}
.rocket-clouds__bubble,
.rocket-clouds__cloud,
.rocket-rocket,
.rocket-inner__rocket-and-lines {
fill: $custom;
}
#count-down {
margin-top: 30px;
}
#count-down .clock-presenter {
height: 100px;
line-height: 30px;
text-align: center;
}
#count-down .clock-presenter .digit {
margin-top: 20px;
font-size: 26px;
line-height: 42px;
font-family: $font-secondary;
font-weight: 500;
height: 42px;
display: inline-block;
overflow: hidden;
text-align: center;
position: relative;
cursor: default;
color: $dark;
}
#count-down .clock-presenter .note {
position: relative;
bottom: 0;
padding-top: 5px;
cursor: default;
font-size: 13px;
color: $dark;
text-transform: uppercase;
}
@media (max-width: 767px) {
#count-down .clock-presenter {
width: 50%;
float: left;
}
#count-down .hours_dash {
border-right: none;
}
}
+121
View File
@@ -0,0 +1,121 @@
/* =============
Common
============= */
body {
margin: 0;
padding-bottom: 60px;
overflow-x: hidden;
//color: $light7;
font-size: $font-size-base;
background-color: $bg-body;
font-family: $font-primary;
}
html {
position: relative;
min-height: 100%;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
font-family: $font-secondary;
margin: 10px 0;
}
h1 {
line-height: 43px;
font-size: 36px;
}
h2 {
line-height: 35px;
font-size: 30px;
}
h3 {
line-height: 30px;
font-size: 24px;
}
h4 {
line-height: 22px;
font-size: 18px;
}
h5 {
font-size: 15px;
}
h6 {
font-size: 12px;
}
p {
line-height: 1.6;
}
* {
outline: none !important;
}
a {
&:hover {
outline: 0;
text-decoration: none;
}
&:active {
outline: 0;
text-decoration: none;
}
&:focus {
outline: 0;
text-decoration: none;
}
}
.container {
width: auto;
}
.container-alt {
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
}
#wrapper {
height: $height;
overflow: hidden;
width: $width;
}
/* Page titles */
.page-title {
font-size: 18px;
margin: 0;
}
.header-title {
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.02em;
font-size: 14px;
font-weight: 500;
margin-top: 0;
}
.page-title-box {
font-size: 13px;
.breadcrumb {
margin-bottom: 0;
padding: 0;
background-color: transparent;
}
}
+18
View File
@@ -0,0 +1,18 @@
/* ===========
Companies
============== */
.company-card {
.company-logo {
float: left;
height: 60px;
width: 60px;
border-radius: 3px;
}
.company-detail {
margin: 0 0 50px 75px;
}
}
+216
View File
@@ -0,0 +1,216 @@
/* =============
Email
============= */
.inbox-leftbar {
width: 240px;
float: left;
padding: 0 20px 20px 10px;
}
.inbox-rightbar {
margin-left: 250px;
}
.message-list {
display: block;
padding-left: 0;
li {
position: relative;
display: block;
height: 50px;
line-height: 50px;
cursor: default;
transition-duration: .3s;
a{
color: $light7;
}
&:hover {
background: rgba($muted, 0.15);
transition-duration: .05s;
}
.col-mail {
float: left;
position: relative;
}
.col-mail-1 {
width: 320px;
.star-toggle,
.checkbox-wrapper-mail,
.dot {
display: block;
float: left;
}
.dot {
border: 4px solid transparent;
border-radius: 100px;
margin: 22px 26px 0;
height: 0;
width: 0;
line-height: 0;
font-size: 0;
}
.checkbox-wrapper-mail {
margin: 15px 10px 0 20px;
}
.star-toggle {
margin-top: 18px;
font-size: 16px;
margin-left: 5px;
}
.title {
position: absolute;
top: 15px;
left: 110px;
right: 0;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
}
.col-mail-2 {
position: absolute;
top: 0;
left: 320px;
right: 0;
bottom: 0;
.subject,
.date {
position: absolute;
top: 0;
}
.subject {
left: 0;
right: 200px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.date {
right: 0;
width: 170px;
padding-left: 80px;
}
}
}
li.active,li.selected {
background: rgba($muted, 0.15);
transition-duration: .05s;
}
li.active,
li.active:hover {
box-shadow: inset 3px 0 0 $custom;
}
li.unread a{
font-weight: 600;
color: darken($dark,5%);
}
li.blue-dot .col-mail-1 .dot {
border-color: $primary;
}
li.orange-dot .col-mail-1 .dot {
border-color: $warning;
}
li.green-dot .col-mail-1 .dot {
border-color: $success;
}
.checkbox-wrapper-mail {
cursor: pointer;
height: 20px;
width: 20px;
position: relative;
display: inline-block;
box-shadow: inset 0 0 0 1px $muted;
border-radius: 1px;
input {
opacity: 0;
cursor: pointer;
}
input:checked ~ label {
opacity: 1;
}
label {
position: absolute;
top: 3px;
left: 3px;
right: 3px;
bottom: 3px;
cursor: pointer;
background: $muted;
opacity: 0;
margin-bottom: 0 !important;
transition-duration: .05s;
}
label:active {
background: #87949b;
}
}
}
.mail-list {
a {
font-family: $font-secondary;
vertical-align: middle;
color: $light7;
padding: 10px 15px;
display: block;
}
}
.reply-box {
border: 2px solid $light;
}
@media (max-width: 648px) {
.inbox-leftbar {
width: 100%;
}
.inbox-rightbar {
margin-left: 0;
}
}
@media (max-width: 520px) {
.message-list li {
.col-mail-1 {
width: 150px;
.title {
left: 80px;
}
}
.col-mail-2 {
left: 160px;
.date {
text-align: right;
padding-right: 10px;
padding-left: 20px;
}
}
}
}
+25
View File
@@ -0,0 +1,25 @@
/* =============
FAQ
============= */
.question-q-box {
height: 30px;
width: 30px;
color: $white;
background-color: $custom;
text-align: center;
border-radius: 50%;
float: left;
line-height: 30px;
}
.question {
margin-top: 0;
margin-left: 50px;
font-weight: 400;
font-size: 16px;
}
.answer {
margin-left: 50px;
color: $muted;
margin-bottom: 40px;
}
@@ -0,0 +1,52 @@
/* ===========
File Manager
============== */
.file-man-box {
padding: 20px;
border: 1px solid $light;
border-radius: 5px;
position: relative;
margin-bottom: 20px;
.file-close {
color: $danger;
position: absolute;
line-height: 24px;
font-size: 24px;
right: 10px;
top: 10px;
visibility: hidden;
}
.file-img-box {
line-height: 120px;
text-align: center;
img {
height: 64px;
}
}
.file-download {
font-size: 32px;
color: $muted;
position: absolute;
right: 10px;
&:hover {
color: $dark;
}
}
.file-man-title {
padding-right: 25px;
}
&:hover {
box-shadow: $shadow;
.file-close {
visibility: visible;
}
}
}
+250
View File
@@ -0,0 +1,250 @@
/* =============
Form Advanced
============= */
/* Select 2 */
.select2-container {
width: 100% !important;
.select2-selection--single {
border: 1px solid darken($light,1%);
height: 38px;
.select2-selection__rendered {
line-height: 36px;
padding-left: 12px;
}
.select2-selection__arrow {
height: 34px;
width: 34px;
right: 3px;
b{
border-color: darken($light,15%) transparent transparent transparent;
border-width: 6px 6px 0 6px;
}
}
}
}
.select2-container--open {
.select2-selection--single {
.select2-selection__arrow {
b{
border-color: transparent transparent darken($light,15%) transparent !important;
border-width: 0 6px 6px 6px !important;
}
}
}
}
.select2-results__option {
padding: 6px 12px;
}
.select2-dropdown {
border: 1px solid darken($light,5%);
box-shadow: $shadow;
}
.select2-container--default {
.select2-search--dropdown {
padding: 10px;
background-color: lighten($light,5%);
.select2-search__field {
border: 1px solid darken($light,5%);
}
}
.select2-results__option--highlighted[aria-selected] {
background-color: $custom;
}
.select2-results__option[aria-selected=true] {
background-color: $light;
color: $dark;
&:hover {
background-color: $custom;
color: $white;
}
}
}
.select2-container .select2-selection--multiple {
min-height: 38px;
border: 1px solid darken($light,5%) !important;
.select2-selection__rendered {
padding: 2px 10px;
}
.select2-search__field {
margin-top: 7px;
border: 0;
}
.select2-selection__choice {
background-color: $custom;
border: 1px solid transparent;
color: $white;
border-radius: 3px;
padding: 0 7px;
}
.select2-selection__choice__remove {
color: $white;
margin-right: 5px;
&:hover {
color: $white;
}
}
}
/* AUTOCOMPLETE */
.autocomplete-suggestions {
border: 1px solid $light;
background: $white;
cursor: default;
overflow: auto;
box-shadow: $shadow;
}
.autocomplete-suggestion {
padding: 5px 8px;
white-space: nowrap;
overflow: hidden;
}
.autocomplete-no-suggestion {
padding: 5px 10px;
color: $danger;
}
.autocomplete-selected {
background-color: $custom;
color: $white;
cursor: pointer;
strong {
color: $white !important;
}
}
.autocomplete-suggestions strong {
font-weight: bold;
color: $dark;
}
.autocomplete-group {
padding: 2px 5px;
}
.autocomplete-group strong {
font-weight: bold;
font-size: 16px;
color: $dark;
display: block;
}
/* Bootstrap tagsinput */
.bootstrap-tagsinput {
box-shadow: none;
padding: 3px 7px 5px;
width: 100%;
line-height: 1;
border: 1px solid darken($light,5%);
.label-info {
background-color: $custom;
display: inline-block;
padding: 4px 8px;
font-size: 13px;
margin: 3px 1px;
border-radius: 3px;
}
}
/* Bootstrap select */
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
width: 100% !important;
}
.bootstrap-select {
.dropdown-toggle {
&:focus {
outline: none !important;
}
}
.glyphicon {
padding-right: 6px;
}
}
.bootstrap-select.show>.dropdown-menu>.dropdown-menu {
display: block;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden{
display:none;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li a{
display: block;
width: 100%;
padding: 3px 1.5rem;
clear: both;
font-weight: 400;
color: $dark;
text-align: inherit;
white-space: nowrap;
background: 0 0;
border: 0;
&:hover {
background-color: $custom;
color: $white;
}
}
.bootstrap-select .check-mark::after {
content: "\F12C";
font-family: "Material Design Icons";
}
.bootstrap-select button {
overflow: hidden;
text-overflow: ellipsis;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
margin-top: 0;
}
.bootstrap-select.btn-group .no-results {
background-color: $white;
color: $danger;
}
/* X Editable */
.editable-checklist label{
display: block;
}
.editable-click, a.editable-click, a.editable-click:hover {
color: $custom;
}
/* Bootstrap Fileupload */
.bootstrap-filestyle {
.group-span-filestyle {
.btn {
min-height: 38px;
line-height: 24px;
}
}
}
@@ -0,0 +1,95 @@
/* =============
Form
============= */
label {
font-size: 14px;
color: $dark;
font-family: $font-secondary;
font-weight: 500;
}
select[multiple] option+option, select[size] option+option {
margin-top: 1px;
}
select[multiple] option, select[size] option {
padding: 6px 12px;
border-radius: 2px;
}
select[multiple] {
height: auto;
}
textarea.form-control {
min-height: 90px;
}
.form-control {
border: 1px solid darken($light,3%);
border-radius: 4px;
max-width: 100%;
padding: .469rem .75rem;
font-size: $font-size-base;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
&:focus {
border: 1px solid darken($light,20%);
-webkit-box-shadow: none;
box-shadow: none;
outline: 0;
}
}
.form-control-lg {
padding: 12px 16px;
font-size: 16px;
border-radius: 4px;
}
.form-control-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px;
}
input[type="color"] {
min-height: 38px;
}
.input-group-prepend,.input-group-append {
.btn {
min-height: 38px;
}
}
.form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
font-size: 12px;
}
.custom-select:focus {
box-shadow: none;
}
// Checkbox and Radio
.custom-control-input {
display: none;
}
.custom-control-input:checked~.custom-control-indicator {
background-color: $custom;
}
.form-check-input:only-child {
position: absolute;
}
+120
View File
@@ -0,0 +1,120 @@
/* =============
Form Pickers
============= */
/* Time Picker */
.bootstrap-timepicker-widget table td input {
height: 32px;
width: 32px;
color: $white;
background-color: $custom;
border-radius: 50%;
}
.bootstrap-timepicker-widget table td a:hover {
background-color: transparent;
border: 1px solid transparent;
color: $custom;
}
/* Color Picker */
.colorpicker-selectors i {
margin-top: 5px;
margin-left: 5px;
}
/* Datepicker */
.datepicker-dropdown {
padding: 10px !important;
}
.datepicker>div {
display: inherit;
}
.datepicker td, .datepicker th {
width: 30px;
height: 30px;
}
.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active, .datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active, .datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.selected, .datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover{
background-color: $custom !important;
color: $white !important;
background-image: none !important;
text-shadow: none !important;
}
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
background-color: $custom !important;
color: $white !important;
background-image: none !important;
}
.datepicker-inline {
border: 2px solid darken($light,5%);
width: 240px;
}
.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover,
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover{
background: $light;
}
/* Daterange Picker */
.daterangepicker td.active, .daterangepicker td.active:hover {
background: $custom;
}
.daterangepicker .input-mini.active {
border: 1px solid rgba($dark,0.3);
}
.daterangepicker .ranges li {
border-radius: 2px;
color: $dark;
font-size: 12px;
background-color: $light;
border-color: $light;
}
.daterangepicker select.hourselect, .daterangepicker select.minuteselect,
.daterangepicker select.secondselect, .daterangepicker select.ampmselect{
border: 1px solid rgba($dark,0.3);
padding: 2px;
width: 60px;
}
.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
background: $custom;
border: 1px solid $custom;
color: $white;
}
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
border: none;
}
/* Clock picker */
.clockpicker-canvas line {
stroke: lighten($custom,45%);
}
.clockpicker-canvas-bearing, .clockpicker-canvas-fg,.clockpicker-canvas-bg {
fill: lighten($custom,45%);
}
@@ -0,0 +1,18 @@
/* =============
Form Uploads
============= */
/* Dropzone */
.dropzone {
min-height: 230px;
border: 2px dashed rgba(0, 0, 0, 0.3);
background: white;
border-radius: 6px;
.dz-message {
font-size: 30px;
}
}
@@ -0,0 +1,25 @@
/* =============
Form Validation
============= */
.parsley-errors-list {
margin: 0;
padding: 0;
}
.parsley-errors-list > li {
list-style: none;
color: $danger;
margin-top: 5px;
padding-left: 20px;
position: relative;
&:before {
content: "\F159";
font-family: "Material Design Icons";
position: absolute;
left: 2px;
top: -1px;
}
}
+104
View File
@@ -0,0 +1,104 @@
/* =============
Form Wizard
============= */
.wizard > .content {
background: $white;
min-height: 240px;
padding: 20px;
margin-top: 0;
}
.wizard > .content > .body {
padding: 0;
position: relative;
ul > li {
display: block;
line-height: 30px;
}
label.error {
color: $danger;
margin-left: 0;
}
label {
display: inline-block;
margin-top: 10px;
}
input {
border-color: darken($light,3%);
}
}
.wizard > .steps {
background-color: lighten($light,5%);
.number {
border-radius: 50%;
background-color: rgba($white,0.3);
display: inline-block;
line-height: 30px;
margin-right: 10px;
width: 30px;
text-align: center;
}
.disabled {
a ,a:hover,a:active{
background: transparent;
color: $dark;
cursor: default;
border: none;
}
}
.current {
a {
background: $custom;
&:hover,&:active {
background: $custom;
.number {
color: $white;
}
}
.number {
color: $white;
}
}
}
.done {
a {
background: $light;
color: $dark;
&:hover,&:active {
background: $light;
color: $dark;
}
}
}
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active{
border-radius: 2px;
margin: 0;
}
.wizard > .actions {
padding: 0 20px;
margin: 0 !important;
a,a:hover,a:active {
background: $custom;
border-radius: 2px;
color: $white;
}
.disabled {
a,a:hover,a:active {
background: darken($white,5%);
color: $dark;
cursor: default;
border: none;
}
}
}
+112
View File
@@ -0,0 +1,112 @@
/* =============
Gallery
============= */
.port {
margin-bottom: 30px;
}
.portfolioFilter {
a {
transition: all 0.3s ease-out;
color: $dark;
border-radius: 3px;
padding: 5px 10px;
display: inline-block;
margin-bottom: 5px;
font-family: $font-secondary;
&:hover {
background-color: $custom;
color: $white;
}
}
a.current {
background-color: $custom;
color: $white;
box-shadow: $shadow;
}
}
.portfolio-masonry-box {
overflow: hidden;
position: relative;
padding: 0;
margin-top: 30px;
.portfolio-masonry-img {
position: relative;
overflow: hidden;
border-radius: 5px;
&:after {
content: " ";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba($dark, 0);
-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
}
.portfolio-masonry-img > img {
-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
-moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
-o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
border-radius: 0;
}
.portfolio-masonry-detail {
opacity: 0;
width: 100%;
padding: 20px 20px 0 20px;
box-sizing: border-box;
position: absolute;
left: 0;
text-align: center;
overflow: hidden;
-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
h4{
margin-bottom: 3px;
color: $white !important;
}
p{
color: $white !important;
text-transform: uppercase;
font-size: 12px;
}
}
}
.portfolio-masonry-box:hover {
.portfolio-masonry-detail {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
transform: translateY(-100%);
z-index: 3;
opacity: 1;
}
.portfolio-masonry-img:after {
background: rgba($dark,0.8);
}
.portfolio-masonry-img > img {
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-o-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
}
+210
View File
@@ -0,0 +1,210 @@
/* =============
Helper classes
============= */
.m-b-30 {
margin-bottom: 30px;
}
.m-t-50 {
margin-top: 50px;
}
@media (max-width: 767px) {
.mt-md-30 {
margin-top: 30px;
}
}
.p-l-r-10 {
padding-left: 10px;
padding-right: 10px;
}
.w-xs {
min-width: 80px;
}
.w-sm {
min-width: 95px;
}
.w-md {
min-width: 110px;
}
.w-lg {
min-width: 140px;
}
.center-page {
float: none !important;
margin: 0 auto !important;
}
.text-overflow {
text-overflow: ellipsis;
white-space: nowrap;
display: block;
width: 100%;
overflow: hidden;
}
.pull-in {
margin-left: -20px;
margin-right: -20px;
}
.font-600 {
font-weight: 600;
}
.font-normal {
font-weight: normal;
}
.font-light {
font-weight: 300;
}
.font-13 {
font-size: 13px !important;
}
.font-14 {
font-size: 14px !important;
}
.font-15 {
font-size: 15px !important;
}
.font-16 {
font-size: 16px !important;
}
.font-18 {
font-size: 18px !important;
}
.bx-shadow {
box-shadow: $shadow;
}
.bx-shadow-lg {
box-shadow: $shadow-lg;
}
.bx-shadow-none {
box-shadow: none !important;
}
.thumb-sm {
height: 36px;
width: 36px;
}
.thumb-md {
height: 48px;
width: 48px;
}
.thumb-lg {
height: 88px;
width: 88px;
}
.thumb-xl {
height: 120px;
width: 120px;
}
// Slimscroll
.slimScrollDiv {
height: auto !important;
}
/* Table type box */
.table-box {
display: table;
height: 100%;
width: 100%;
.table-detail {
display: table-cell;
vertical-align: middle;
}
}
/* Button demo */
.button-list {
margin-left: -8px;
margin-bottom: -12px;
.btn {
margin-bottom: 12px;
margin-left: 8px;
}
}
/* Demo only */
.icon-list-demo {
div {
cursor: pointer;
line-height: 45px;
white-space: nowrap;
text-overflow: ellipsis;
display: block;
overflow: hidden;
p {
margin-bottom: 0;
line-height: inherit;
}
}
i {
text-align: center;
vertical-align: middle;
font-size: 22px;
width: 50px;
height: 50px;
line-height: 50px;
margin-right: 12px;
color: rgba($dark,0.7);
border-radius: 3px;
display: inline-block;
transition: all 0.2s;
}
[class^="pe-7s-"], [class*=" pe-7s-"] {
font-weight: 600;
}
.col-md-4 {
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-border-radius: 3px;
background-clip: padding-box;
margin-bottom: 10px;
&:hover,&:hover i {
color: $custom;
}
}
}
.social-links li a {
border-radius: 50%;
color: rgba($light7,0.8);
display: inline-block;
height: 30px;
line-height: 27px;
border: 2px solid rgba($light7,0.5);
text-align: center;
width: 30px;
&:hover {
color: $light7;
border: 2px solid $light7;
}
}
+114
View File
@@ -0,0 +1,114 @@
/* =============
Maps
============= */
.gmaps,
.gmaps-panaroma {
height: 300px;
background: $light;
border-radius: 3px;
}
.gmaps-overlay {
display: block;
text-align: center;
color: $white;
font-size: 16px;
line-height: 40px;
background: $custom;
border-radius: 4px;
padding: 10px 20px;
}
.gmaps-overlay_arrow {
left: 50%;
margin-left: -16px;
width: 0;
height: 0;
position: absolute;
}
.gmaps-overlay_arrow.above {
bottom: -15px;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-top: 16px solid $custom;
}
.gmaps-overlay_arrow.below {
top: -15px;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-bottom: 16px solid $custom;
}
.gmaps-full {
z-index: 99;
margin: 0 -20px -10px -20px;
.gmaps-full1 {
height: 80vh;
width: 100%;
}
}
/* Vector Map */
.jvectormap-zoomin,
.jvectormap-zoomout {
width: 10px;
height: 10px;
line-height: 10px;
}
.jvectormap-zoomout {
top: 40px;
}
.jvectormap-tip {
border: none;
background: $dark;
color: white;
font-family: $font-secondary;
font-size: 14px;
padding: 5px 8px;
}
/* Mapael Map */
.mapael .map {
position: relative;
}
.mapael .mapTooltip {
position: absolute;
background-color: $custom;
opacity: 0.95;
border-radius: 3px;
padding: 2px 10px;
z-index: 1000;
max-width: 200px;
display: none;
color: $white;
font-family: $font-secondary;
}
.mapael .zoomIn, .mapael .zoomOut, .mapael .zoomReset {
display: inline-block;
text-align: center;
vertical-align: middle;
border-radius: 2px;
font-weight: 500;
cursor: pointer;
background-color: $custom;
text-decoration: none;
color: $white;
font-size: 14px;
position: absolute;
top: 0;
left: 10px;
width: 24px;
height: 24px;
line-height: 24px;
}
.map .zoomIn {
top: 25px;
}
.map .zoomOut {
top: 50px;
}
+696
View File
@@ -0,0 +1,696 @@
/* ===========
Menu
=============*/
.container-fluid {
max-width: 95%;
}
.wrapper {
padding-top: 120px;
}
.page-title-box {
padding: 22px 0;
}
#topnav {
position: fixed;
right: 0;
left: 0;
top: 0;
z-index: 1030;
border: 0;
-webkit-transition: all .5s ease;
transition: all .5s ease;
min-height: 62px;
background: $white;
box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.2);
.has-submenu.active {
a{
color: $white;
i {
color: $white;
}
}
.submenu {
li.active > a{
color: $custom;
}
}
}
.topbar-main {
//background: $bg-gradient;
//box-shadow: $shadow;
.logo {
color: $dark !important;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
line-height: 60px;
text-transform: uppercase;
float: left;
}
.logo-small {
display: none;
}
.badge-topbar {
position: absolute;
top: 7px;
right: 7px;
z-index: 99;
}
.nav > li > a {
height: 36px;
width: 36px;
padding: 0;
font-size: 24px;
line-height: 35px;
text-align: center;
border-radius: 50%;
margin: 12px 8px;
color: rgba($dark,0.7);
&:focus,&:hover {
background-color: rgba($dark,0.1);
color: $dark;
}
}
.dropdown-menu-lg {
.list-group {
margin-bottom: 0;
}
.list-group-item {
border: none;
padding: 10px 20px;
}
.media-heading {
margin-bottom: 0;
}
.media-body {
p {
color: #828282;
}
}
}
.navbar-nav {
margin: 0;
}
.topbar-right-menu {
li {
float: left;
}
}
}
.navbar-custom {
background-color: $custom;
}
.navbar-toggle {
border: 0;
position: relative;
padding: 0;
margin: 0;
cursor: pointer;
&:hover {
background-color: transparent;
span {
background-color: $dark;
}
}
&:focus {
background-color: transparent;
span {
background-color: $dark;
}
}
.lines {
width: 25px;
display: block;
position: relative;
margin: 10px 10px 0 0;
padding-top: 13px;
height: 44px;
-webkit-transition: all .5s ease;
transition: all .5s ease;
}
span {
height: 2px;
width: 100%;
background-color: rgba($dark,0.8);
display: block;
margin-bottom: 5px;
-webkit-transition: -webkit-transform .5s ease;
transition: -webkit-transform .5s ease;
transition: transform .5s ease;
}
}
.navbar-toggle.open {
span {
position: absolute;
&:first-child {
top: 18px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
&:nth-child(2) {
visibility: hidden;
}
&:last-child {
width: 100%;
top: 18px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
}
}
.navigation-menu {
list-style: none;
margin: 0;
padding: 0;
}
.navigation-menu > li {
display: inline-block;
position: relative;
}
.navigation-menu > li > a {
display: block;
color: rgba($white,0.7);
font-weight: 500;
font-size: 16px;
-webkit-transition: all .5s ease;
transition: all .5s ease;
line-height: 20px;
padding-left: 25px;
padding-right: 25px;
&:hover {
color: $white;
}
&:focus {
color: $white;
}
&:active {
color: $white;
}
i {
font-size: 15px;
margin-right: 8px;
-webkit-transition: all .5s ease;
transition: all .5s ease;
}
}
.navigation-menu > li > a:hover, .navigation-menu > li > a:focus {
background-color: transparent;
}
}
/*
Responsive Menu
*/
@media (min-width: 992px) {
#topnav {
.navigation-menu > li > a {
padding-top: 20px;
padding-bottom: 20px;
}
.navigation-menu > li:first-of-type > a {
padding-left: 0;
}
.navigation-menu > li.last-elements .submenu {
left: auto;
right: 0;
}
.navigation-menu > li.last-elements .submenu > li.has-submenu .submenu {
left: auto;
right: 100%;
margin-left: 0;
margin-right: 10px;
}
//.navigation-menu > li {
// &:first-of-type {
// a {
// padding-left: 0px;
// }
// }
//}
.navigation-menu > li:hover a {
color: $white;
i {
color: $white;
}
}
.navigation-menu>li>ul>li.has-submenu:active>a ,
.navigation-menu>li>ul>li.has-submenu:hover>a {
color: $custom;
}
.navigation-menu > li .submenu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
border: 1px solid #e7e7e7;
padding: 15px 0;
list-style: none;
min-width: 200px;
text-align: left;
visibility: hidden;
opacity: 0;
margin-top: 10px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
background-color: $white;
box-shadow: $shadow;
}
.navigation-menu > li .submenu.megamenu {
white-space: nowrap;
width: auto;
}
.navigation-menu > li .submenu.megamenu > li {
overflow: hidden;
width: 200px;
display: inline-block;
vertical-align: top;
}
.navigation-menu > li .submenu > li.has-submenu > a:after {
content: "\F142";
font-family: "Material Design Icons";
position: absolute;
right: 20px;
top: 5px;
font-size: 18px;
}
.navigation-menu > li .submenu > li .submenu {
left: 100%;
top: 0;
margin-left: 10px;
margin-top: -1px;
}
.navigation-menu > li .submenu li {
position: relative;
}
.navigation-menu > li .submenu li ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.navigation-menu > li .submenu li a {
display: block;
padding: 8px 25px;
clear: both;
white-space: nowrap;
font-size: 15px;
color: $dark;
-webkit-transition: all .35s ease;
transition: all .35s ease;
}
.navigation-menu > li .submenu li a:hover {
color: $custom;
}
.navigation-menu > li .submenu li span {
display: block;
padding: 8px 25px;
clear: both;
line-height: 1.42857143;
white-space: nowrap;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 500;
color: $dark;
}
.navbar-toggle {
display: none;
}
}
#topnav #navigation {
display: block !important;
}
}
@media (max-width: 991px) {
.wrapper {
padding-top: 60px;
}
.container {
width: auto !important;
}
#topnav {
.navigation-menu {
float: none;
max-height: 400px;
text-align: left;
}
.navigation-menu > li {
display: block;
}
.navigation-menu > li > a {
color: $dark;
padding: 15px;
i {
display: inline-block;
margin-right: 10px;
margin-bottom: 0;
vertical-align: inherit;
}
}
.navigation-menu > li > a:after {
position: absolute;
right: 15px;
}
.navigation-menu > li .submenu {
display: none;
list-style: none;
padding-left: 20px;
margin: 0;
}
.navigation-menu > li .submenu li a {
display: block;
position: relative;
padding: 7px 20px;
color: $dark;
}
.navigation-menu > li .submenu li a:hover {
color: $custom;
}
.navigation-menu > li .submenu li.has-submenu > a:after {
content: "\F140";
font-family: "Material Design Icons";
position: absolute;
right: 30px;
}
.navigation-menu > li .submenu.open {
display: block;
}
.navigation-menu > li .submenu .submenu {
display: none;
list-style: none;
}
.navigation-menu > li .submenu .submenu.open {
display: block;
}
.navigation-menu > li .submenu.megamenu > li > ul {
list-style: none;
padding-left: 0;
}
.navigation-menu > li .submenu.megamenu > li > ul > li > span {
display: block;
position: relative;
padding: 15px;
text-transform: uppercase;
font-size: 11px;
letter-spacing: 2px;
color: $dark;
}
.navigation-menu > li.has-submenu.open > a {
color: $custom;
}
.navbar-header {
float: left;
}
}
#navigation {
position: absolute;
top: 62px;
left: 0;
width: 100%;
display: none;
height: auto;
padding-bottom: 0;
overflow: auto;
border-top: 1px solid #e7e7e7;
border-bottom: 1px solid #e7e7e7;
background-color: $white;
}
#navigation.open {
display: block;
overflow-y: auto;
}
#topnav .has-submenu.active a {
color: $custom;
&:active,&:focus,i {
color: $custom;
}
}
}
@media (min-width: 768px) {
#topnav .navigation-menu > li.has-submenu:hover > .submenu {
visibility: visible;
opacity: 1;
margin-top: 0;
}
#topnav .navigation-menu > li.has-submenu:hover > .submenu > li.has-submenu:hover > .submenu {
visibility: visible;
opacity: 1;
margin-left: 0;
margin-right: 0;
}
.navbar-toggle {
display: block;
}
}
.topbar-custom {
border-radius: 0;
margin-bottom: 0;
.nav-link {
padding: 0;
line-height: 60px;
color: $dark;
}
.dropdown-toggle {
&:after {
content: initial;
}
}
.menu-left {
overflow: hidden;
}
}
/* Footer */
.footer {
border-top: 1px solid rgba(0, 0, 0, 0.1);
bottom: 0;
text-align:left !important;
padding: 20px 0;
position: absolute;
right: 0;
background-color: $white;
left: 0;
}
/* Search */
.app-search {
position: relative;
padding-top: 18px;
a {
position: absolute;
top: 18px;
left: 220px;
display: block;
height: 34px;
line-height: 34px;
width: 34px;
text-align: center;
color: rgba($white, 0.5);
&:hover {
color: $white;
}
}
.form-control,
.form-control:focus {
border: 1px solid rgba($white, 0.3);
font-size: 13px;
height: 34px;
color: $white;
padding-left: 20px;
padding-right: 40px;
background: transparent;
box-shadow: none;
border-radius: 30px;
width: 200px;
}
}
.app-search input {
&::-webkit-input-placeholder {
color: rgba($white,70%);
}
&:-moz-placeholder {
color: rgba($white,70%);
}
&::-moz-placeholder {
color: rgba($white,70%);
}
&:-ms-input-placeholder {
color: rgba($white,70%);
}
}
/* Page titles */
.header-title {
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.02em;
font-size: 14px;
font-weight: 700;
}
.page-title-box {
//background-color: $white;
//box-shadow: $shadow;
.breadcrumb {
margin-bottom: 0;
padding: 0;
background-color: transparent !important;
}
}
/* Notification */
.notification-wrapper {
max-height: 190px;
}
.notification-list {
margin-left: 0 !important;
.noti-title {
background-color: $white !important;
padding: 7px 20px;
}
.noti-icon {
font-size: 20px;
padding: 0 15px;
vertical-align: middle;
}
.noti-icon-badge {
display: inline-block;
position: absolute;
top: 14px;
right: 8px;
}
.notify-item {
padding: 10px 20px;
.notify-icon {
float: left;
height: 36px;
width: 36px;
line-height: 36px;
text-align: center;
margin-right: 10px;
border-radius: 50%;
color: $white;
}
.notify-details {
margin-bottom: 0;
overflow: hidden;
margin-left: 45px;
text-overflow: ellipsis;
white-space: nowrap;
b {
font-weight: 500;
}
small {
display: block;
}
span {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 13px;
}
}
.user-msg {
margin-left: 45px;
white-space: normal;
line-height: 16px;
}
}
.profile-dropdown {
.notify-item {
padding: 7px 20px;
}
}
}
.profile-dropdown {
width: 170px;
i {
vertical-align: middle;
margin-right: 5px;
}
span {
vertical-align: middle;
}
}
.nav-user {
padding: 0 12px !important;
img {
height:32px;
width: 32px;
}
}
+116
View File
@@ -0,0 +1,116 @@
/* =============
Modals
============= */
.modal {
.modal-dialog {
.close {
top: 0;
position: absolute;
right: 0;
height: 36px;
width: 36px;
background-color: $dark;
opacity: 1;
border: 2px solid $white;
text-shadow: none;
color: $white;
border-radius: 50%;
padding: 0;
}
.modal-title {
margin: 0;
}
.modal-content {
border: none;
box-shadow: none;
.modal-header {
border-bottom-width: 2px;
margin: 0;
}
.modal-body {
padding: 20px;
}
}
}
}
.modal-backdrop {
background-color: $dark;
}
.modal-backdrop.show {
opacity: .6;
}
.modal-full {
width: 98%;
}
.modal-content {
.nav.nav-tabs + .tab-content {
margin-bottom: 0;
}
.panel-group {
margin-bottom: 0;
}
.panel {
border-top: none;
}
}
/* Custom-modal */
.custombox-open {
body {
padding-right: 0 !important;
}
}
.modal-demo {
background-color: $white;
width: 600px !important;
border-radius: 4px;
display: none;
.close {
position: absolute;
top: 15px;
right: 25px;
color: $light;
}
}
@media (max-width: 768px ) {
.modal-demo {
width: 100% !important;
}
}
.custom-modal-title {
padding: 15px 25px 15px 25px;
line-height: 22px;
font-size: 18px;
background-color: $dark;
color: $white;
text-align: left;
margin: 0;
}
.custom-modal-text {
padding: 20px;
}
.custombox-modal-wrapper {
text-align: left;
}
.custombox-modal-flash, .custombox-modal-rotatedown {
.close {
top: 20px;
z-index: 9999;
}
}
@@ -0,0 +1,71 @@
/* =================
Popover / Tooltips
==================== */
/* Popover */
.popover {
font-family: inherit;
border-color: $light;
box-shadow: $shadow;
.popover-header {
margin-top: 0;
font-size: $font-size-base;
background-color: $light;
padding: 2px 15px;
border: none;
}
}
/* Tooltips */
.tooltip {
font-family: $font-secondary;
.tooltip-inner {
padding: 4px 10px;
border-radius: 2px;
background-color: $dark;
}
}
.tooltip.left .tooltip-arrow {
border-left-color: $dark;
}
.tooltip.top .tooltip-arrow {
border-top-color: $dark;
}
.tooltip.bottom .tooltip-arrow {
border-bottom-color: $dark;
}
.tooltip.right .tooltip-arrow {
border-right-color: $dark;
}
/* Tooltpster */
.tooltipster-sidetip .tooltipster-box {
background-color: $custom;
border: 2px solid $custom;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{
border-top-color: $custom;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{
border-bottom-color: $custom;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{
border-left-color: $custom;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{
border-right-color: $custom;
}
+130
View File
@@ -0,0 +1,130 @@
/* =============
Pricing
============= */
.pricing-plan {
padding-bottom: 50px;
}
.price_card {
background: $white;
border-radius: 5px;
margin-top: 30px;
margin-bottom: 30px;
padding-bottom: 20px;
position: relative;
}
.price_card .name {
display: block;
font-size: 16px;
padding: 0 0 30px;
text-align: center;
width: 100%;
}
.price_card button {
margin-top: 20px;
}
.pricing-header {
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
color: $white;
}
.price {
display: block;
font-size: 48px;
font-weight: 300;
padding: 30px 0 10px;
text-align: center;
width: 100%;
}
.price-features {
color: $muted;
list-style: none;
margin: 0;
padding-left: 0;
padding-top: 20px;
text-align: center;
}
.price-features li {
padding: 15px;
}
.pricing-item {
margin: 0 0 30px;
position: relative;
text-align: center;
}
.pricing-wrap {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 30px 20px;
position: relative;
text-align: center;
}
.pricing-icon {
font-size: 32px;
padding-bottom: 5px;
padding-top: 10px;
position: relative;
z-index: 1;
}
.pricing-title {
font-size: 16px;
font-weight: 700;
margin-bottom: 40px;
position: relative;
text-transform: uppercase;
z-index: 1;
}
.pr-list {
color: $muted;
font-size: 12px;
font-weight: 400;
margin: 0 -20px 30px;
padding: 0;
text-transform: uppercase;
}
.pr-list li {
list-style: none;
padding: 12px 20px;
}
.pricing-num {
font-size: 40px;
font-weight: 700;
line-height: 1;
}
.pricing-num sup {
font-size: 18px;
font-weight: 400;
left: -3px;
margin-left: -7px;
position: relative;
top: -20px;
}
.pr-per {
color: $muted;
font-size: 12px;
}
.pr-button {
margin-top: 30px;
}
+29
View File
@@ -0,0 +1,29 @@
/* =============
Print css
============= */
@media print {
.page-title-box,.topbar-left,.hidden-print,.breadcrumb,.page-title,.footer,#topnav {
display: none;
margin: 0;
padding: 0;
}
.left,.right-bar {
display: none;
}
.content {
margin-top: 0;
padding-top: 0;
}
.content-page {
margin-left: 0;
margin-top: 0;
}
.card-box,body {
border: none;
padding: 0;
margin-bottom: 0;
}
}
+11
View File
@@ -0,0 +1,11 @@
/* =============
Profile
============= */
.profile-user-box {
position: relative;
border-radius: 5px;
}
+108
View File
@@ -0,0 +1,108 @@
/* =============
Progressbars
============= */
.progress {
-webkit-box-shadow: none;
background-color: $light3;
box-shadow: none;
margin-bottom: 18px;
overflow: hidden;
height: 0.7rem;
}
.progress-bar {
box-shadow: none;
font-size: 8px;
font-weight: 600;
line-height: 12px;
background-color: $custom;
}
.progress-bar-primary {
background-color: $primary;
}
.progress-bar-success {
background-color: $success;
}
.progress-bar-info {
background-color: $info;
}
.progress-bar-warning {
background-color: $warning;
}
.progress-bar-danger {
background-color: $danger;
}
.progress-bar-dark {
background-color: $dark;
}
.progress-bar-purple {
background-color: $purple;
}
.progress-bar-pink {
background-color: $pink;
}
/* Progressbar Vertical */
.progress-vertical {
min-height: 250px;
height: 250px;
width: 10px;
position: relative;
display: inline-block;
margin-bottom: 0;
margin-right: 20px;
.progress-bar {
width: 100%;
}
}
.progress-vertical-bottom{
min-height: 250px;
height: 250px;
position: relative;
width: 10px;
display: inline-block;
margin-bottom: 0;
margin-right: 20px;
.progress-bar {
width: 100%;
position: absolute;
bottom: 0;
}
}
.progress-vertical.progress-sm,.progress-vertical-bottom.progress-sm {
width: 5px;
.progress-bar {
font-size: 8px;
line-height: 5px;
}
}
.progress-vertical.progress-md,.progress-vertical-bottom.progress-md {
width: 15px;
.progress-bar {
font-size: 10.8px;
line-height: 14.4px;
}
}
.progress-vertical.progress-lg,.progress-vertical-bottom.progress-lg {
width: 20px;
.progress-bar {
font-size: 12px;
line-height: 20px;
}
}
+47
View File
@@ -0,0 +1,47 @@
/* =============
Projects
============= */
.project-sort-item {
.form-group {
margin-right: 30px;
&:last-of-type {
margin-right: 0;
}
}
}
.project-box {
position: relative;
.badge {
position: absolute;
right: 20px;
}
h4{
text-overflow: ellipsis;
white-space: nowrap;
display: block;
width: 100%;
overflow: hidden;
}
ul {
li{
padding-right: 30px;
}
}
.project-members {
a{
margin: 0 0 10px -12px;
display: inline-block;
border: 3px solid $white;
border-radius: 50%;
box-shadow: $shadow;
&:first-of-type {
margin-left: 0;
}
}
}
}
+211
View File
@@ -0,0 +1,211 @@
/*
Template Name: Abstack - Bootstrap 4 Web App kit
Author: CoderThemes
Email: [email protected]
File: Responsive
*/
@media (min-width: 768px) and (max-width: 991px) {
body {
overflow-x: hidden;
}
.fixedHeader-floating {
top: 60px !important;
}
}
@media (max-width: 768px) {
body {
overflow-x: hidden;
}
.container-fluid {
max-width: 100%;
}
.topbar-left {
width: 70px !important;
span {
display: none !important;
}
i {
display: block !important;
line-height: 70px !important;
}
}
.topbar .topbar-left {
height: 70px;
}
.navbar-nav.navbar-right {
float: right;
}
.content-page {
margin-left: 0 !important;
}
.enlarged .left.side-menu {
margin-left: -70px;
}
.footer {
left: 0 !important;
}
.mobile-sidebar {
left: 0;
}
.mobile-content {
left: 250px;
right: -250px;
}
.dataTables_wrapper {
.col-xs-6 {
width: 100%;
text-align: left;
}
}
div#datatable-buttons_info {
float: none;
}
.ms-container {
width: 100%;
}
.m-t-sm-50 {
margin-top: 50px !important;
}
.fixedHeader-floating {
top: 60px !important;
}
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
background-color: $white;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
left: auto;
position: absolute;
right: 0;
li {
display: block;
}
}
.navbar-nav {
margin: 0;
display: inline-block;
li {
display: inline-block;
line-height: 1px;
}
}
.dropdown-lg {
width: 200px !important;
}
.user-box {
float: right;
}
.dataTables_length {
float: none;
margin-bottom: 10px;
}
.table-auto-res {
display: block;
width: 100%;
overflow-x: auto;
}
}
@media (max-width: 480px) {
.side-menu {
z-index: 10 !important;
}
.button-menu-mobile {
display: block;
}
.search-bar {
display: none !important;
}
.logo-large {
display: none;
}
.logo-small {
display: inline-block !important;
}
.dropdown-menu-lg {
max-width: 230px;
}
}
@media (max-width: 420px) {
.hide-phone {
display: none !important;
}
}
/* Container-alt */
@media (min-width: 768px) {
.container-alt {
width: 750px;
}
}
@media (min-width: 992px) {
.container-alt {
width: 970px;
}
}
@media (min-width: 1200px) {
.container-alt {
width: 1170px;
}
}
@media (max-width: 419px) {
.hidden-xxs {
display: none;
}
.pro-user-name {
display: none;
}
.topbar-left {
width: 70px !important;
}
.page-title {
font-size: 15px;
max-width: 250px;
white-space: nowrap;
}
.editable-responsive {
overflow-x: auto;
}
.page-title-box .breadcrumb {
display: none;
}
.navbar-nav .open .dropdown-menu {
margin-right: -20px;
}
.user-box .dropdown-menu {
margin-right: 0 !important;
}
.dropdown-lg {
width: 200px !important;
}
.user-list .user-list-item .icon,.user-list .user-list-item .avatar {
display: none;
}
.user-list .user-list-item .user-desc {
margin-left: 0;
}
}
+305
View File
@@ -0,0 +1,305 @@
/* =================
Ribbons
==================== */
.ribbon-box {
position: relative;
.ribbon{
position: relative;
float: left;
clear: both;
padding: 5px 12px 5px 12px;
margin-left: -30px;
margin-bottom: 15px;
font-family: $font-secondary;
-moz-box-shadow: 2px 5px 10px rgba($dark, 0.15);
-webkit-box-shadow: 2px 5px 10px rgba($dark, 0.15);
-o-box-shadow: 2px 5px 10px rgba($dark, 0.15);
box-shadow: 2px 5px 10px rgba($dark, 0.15);
color: $white;
font-size: 13px;
&:before{
content: " ";
border-style: solid;
border-width: 10px;
display: block;
position: absolute;
bottom: -10px;
left: 0;
margin-bottom: -10px;
z-index: -1;
}
}
.ribbon + p {
clear: both;
}
.ribbon-custom {
background: $custom;
&:before {
border-color: darken($custom,10%) transparent transparent;
}
}
.ribbon-primary {
background: $primary;
&:before {
border-color: darken($primary,10%) transparent transparent;
}
}
.ribbon-success {
background: $success;
&:before {
border-color: darken($success,10%) transparent transparent;
}
}
.ribbon-info {
background: $info;
&:before {
border-color: darken($info,10%) transparent transparent;
}
}
.ribbon-warning {
background: $warning;
&:before {
border-color: darken($warning,10%) transparent transparent;
}
}
.ribbon-danger {
background: $danger;
&:before {
border-color: darken($danger,10%) transparent transparent;
}
}
.ribbon-pink {
background: $pink;
&:before {
border-color: darken($pink,10%) transparent transparent;
}
}
.ribbon-purple {
background: $purple;
&:before {
border-color: darken($purple,10%) transparent transparent;
}
}
.ribbon-dark {
background: $dark;
&:before {
border-color: darken($dark,10%) transparent transparent;
}
}
/* Ribbon two */
.ribbon-two {
position: absolute;
left: -5px;
top: -5px;
z-index: 1;
overflow: hidden;
width: 75px;
height: 75px;
text-align: right;
span {
font-size: 13px;
color: $white;
font-family: $font-secondary;
text-align: center;
line-height: 20px;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
width: 100px;
display: block;
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
position: absolute;
top: 19px;
left: -21px;
&:before {
content: "";
position: absolute;
left: 0;
top: 100%;
z-index: -1;
border-right: 3px solid transparent;
border-bottom: 3px solid transparent;
}
&:after {
content: "";
position: absolute;
right: 0;
top: 100%;
z-index: -1;
border-left: 3px solid transparent;
border-bottom: 3px solid transparent;
}
}
}
.ribbon-two-custom {
span {
background: $custom;
&:before {
border-left: 3px solid darken($custom,15%);
border-top: 3px solid darken($custom,15%);
}
&:after {
border-right: 3px solid darken($custom,15%);
border-top: 3px solid darken($custom,15%);
}
}
}
.ribbon-two-primary {
span {
background: $primary;
&:before {
border-left: 3px solid darken($primary,15%);
border-top: 3px solid darken($primary,15%);
}
&:after {
border-right: 3px solid darken($primary,15%);
border-top: 3px solid darken($primary,15%);
}
}
}
.ribbon-two-success {
span {
background: $success;
&:before {
border-left: 3px solid darken($success,15%);
border-top: 3px solid darken($success,15%);
}
&:after {
border-right: 3px solid darken($success,15%);
border-top: 3px solid darken($success,15%);
}
}
}
.ribbon-two-info {
span {
background: $info;
&:before {
border-left: 3px solid darken($info,15%);
border-top: 3px solid darken($info,15%);
}
&:after {
border-right: 3px solid darken($info,15%);
border-top: 3px solid darken($info,15%);
}
}
}
.ribbon-two-warning {
span {
background: $warning;
&:before {
border-left: 3px solid darken($warning,15%);
border-top: 3px solid darken($warning,15%);
}
&:after {
border-right: 3px solid darken($warning,15%);
border-top: 3px solid darken($warning,15%);
}
}
}
.ribbon-two-danger {
span {
background: $danger;
&:before {
border-left: 3px solid darken($danger,15%);
border-top: 3px solid darken($danger,15%);
}
&:after {
border-right: 3px solid darken($danger,15%);
border-top: 3px solid darken($danger,15%);
}
}
}
.ribbon-two-pink {
span {
background: $pink;
&:before {
border-left: 3px solid darken($pink,15%);
border-top: 3px solid darken($pink,15%);
}
&:after {
border-right: 3px solid darken($pink,15%);
border-top: 3px solid darken($pink,15%);
}
}
}
.ribbon-two-purple {
span {
background: $purple;
&:before {
border-left: 3px solid darken($purple,15%);
border-top: 3px solid darken($purple,15%);
}
&:after {
border-right: 3px solid darken($purple,15%);
border-top: 3px solid darken($purple,15%);
}
}
}
.ribbon-two-dark {
span {
background: $dark;
&:before {
border-left: 3px solid darken($dark,15%);
border-top: 3px solid darken($dark,15%);
}
&:after {
border-right: 3px solid darken($dark,15%);
border-top: 3px solid darken($dark,15%);
}
}
}
}
@@ -0,0 +1,17 @@
/* =============
Search result
============= */
.search-result-box {
.tab-content {
padding: 30px 30px 10px 30px;
-webkit-box-shadow: none;
box-shadow: none;
-moz-box-shadow: none;
}
.search-item {
padding-bottom: 20px;
border-bottom: 1px solid $light;
margin-bottom: 20px;
}
}
+14
View File
@@ -0,0 +1,14 @@
/* =================
Spinners
==================== */
.sk-rotating-plane,.sk-double-bounce .sk-child,.sk-wave .sk-rect,.sk-wandering-cubes .sk-cube,.sk-spinner-pulse,
.sk-chasing-dots .sk-child,.sk-three-bounce .sk-child,.sk-circle .sk-child:before ,.sk-cube-grid .sk-cube ,
.sk-fading-circle .sk-circle:before,.sk-folding-cube .sk-cube:before{
background-color: $custom;
}
.sk-fading-circle {
.sk-circle {
margin-top: 0;
}
}
+32
View File
@@ -0,0 +1,32 @@
/* =============
Summernote
============= */
.note-editor.note-frame {
border: 3px solid lighten($light,3%);
}
.note-popover .popover-content, .card-header.note-toolbar {
background-color: lighten($light,3%);
padding: 2px 5px 10px 10px;
border: none;
}
.note-editor.note-frame .note-statusbar {
background-color: lighten($light,3%);
}
.note-editor.note-frame .note-editing-area .note-editable {
padding: 10px 20px;
}
.note-btn-group {
.btn-light {
background-color: $custom !important;
color: $white !important;
border-radius: 4px !important;
border: none !important;
margin: 2px;
box-shadow: none !important;
}
}
+73
View File
@@ -0,0 +1,73 @@
/* =========== */
/* Sweet Alert */
/* =========== */
.swal2-modal {
font-family: $font-primary;
box-shadow: 0 10px 33px rgba(0,0,0,.1);
.swal2-title {
font-size: 28px;
}
.swal2-content {
font-size: 16px;
}
.swal2-spacer {
margin: 10px 0;
}
.swal2-file, .swal2-input, .swal2-textarea {
border: 2px solid $muted;
font-size: 16px;
box-shadow: none;
}
.swal2-confirm.btn-confirm {
background-color: $custom !important;
}
.swal2-cancel.btn-cancel {
background-color: $danger !important;
}
.swal2-styled:focus {
box-shadow: none !important;
}
}
.swal2-icon.swal2-question {
color: $custom;
border-color: $custom;
}
.swal2-icon.swal2-success {
border-color: $success;
.line,[class^=swal2-success-line][class$=long],
[class^=swal2-success-line]{
background-color: $success;
}
.placeholder,.swal2-success-ring {
border-color: $success;
}
}
.swal2-icon.swal2-warning {
color: $warning;
border-color: $warning;
}
.swal2-icon.swal2-error {
border-color: $danger;
.line {
background-color: $danger;
}
}
.swal2-modal .swal2-file:focus, .swal2-modal .swal2-input:focus, .swal2-modal .swal2-textarea:focus {
outline: 0;
border: 2px solid $custom;
}
.swal2-container.swal2-shown {
background-color: rgba($dark, 0.9);
}
+360
View File
@@ -0,0 +1,360 @@
/* =============
Tables
============= */
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 12px 10px;
}
.table-sm td, .table-sm th {
padding: .4rem !important;
}
.table-condensed>tbody>tr>td, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>td, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>thead>tr>th {
padding: 7px;
}
th {
font-family: $font-secondary;
font-weight: 500;
}
.table-centered {
td {
vertical-align: middle !important;
}
}
.table-striped tbody tr:nth-of-type(odd),.table-hover tbody tr:hover,.table-active, .table-active>td, .table-active>th {
background-color: lighten($light,5%);
}
.table-success, .table-success>td, .table-success>th {
background-color: rgba($success,0.15);
border-color: rgba($success,0.2);
}
.table-info, .table-info>td, .table-info>th {
background-color: rgba($info,0.15);
border-color: rgba($info,0.2);
}
.table-warning, .table-warning>td, .table-warning>th {
background-color: rgba($warning,0.1);
border-color: rgba($warning,0.2);
}
.table-danger, .table-danger>td, .table-danger>th {
background-color: rgba($danger,0.1);
border-color: rgba($danger,0.2);
}
/* Data table */
.container-fluid.dataTables_wrapper {
max-width: 100%;
padding: 0;
}
div.dt-button-info {
background-color: $custom;
border: none;
color: $white;
box-shadow: none;
border-radius: 3px;
text-align: center;
z-index: 21;
}
div.dt-button-info h2 {
border-bottom: none;
background-color: rgba($white,0.2);
color: $white;
}
table.dataTable {
margin-top: 10px !important;
margin-bottom: 18px !important;
}
.table-bordered.dataTable>thead>tr>td, .table-bordered.dataTable>thead>tr>th {
border-bottom-width: 1px !important;
}
// Key Tables
table.dataTable th.focus,table.dataTable td.focus{
outline: 2px solid $custom !important;
outline-offset: -1px;
background-color: rgba($custom,0.15);
}
// Multi select table
table.dataTable tbody>tr.selected, table.dataTable tbody>tr>.selected {
background-color: $custom;
}
/* Responsive data table */
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
box-shadow: 0 0 3px rgba(67, 89, 102, 0.2);
background-color: $success;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
background-color: $danger;
}
table.dataTable>tbody>tr.child span.dtr-title {
font-family: $font-secondary;
}
/* Responsive Table */
.table-rep-plugin {
.dropdown-menu li.checkbox-row {
padding: 7px 15px;
}
.table-responsive {
border: none;
}
tbody {
th {
font-size: 14px;
font-weight: normal;
}
}
.checkbox-row {
padding-left: 40px;
label {
display: inline-block;
padding-left: 5px;
position: relative;
margin-bottom: 0;
&::before {
-o-transition: 0.3s ease-in-out;
-webkit-transition: 0.3s ease-in-out;
background-color: $white;
border-radius: 3px;
border: 1px solid $muted;
content: "";
display: inline-block;
height: 17px;
left: 0;
margin-left: -20px;
position: absolute;
transition: 0.3s ease-in-out;
width: 17px;
outline: none;
}
&::after {
color: $light3;
display: inline-block;
font-size: 11px;
height: 16px;
left: 0;
margin-left: -20px;
padding-left: 3px;
padding-top: 1px;
position: absolute;
top: -1px;
width: 16px;
}
}
input[type="checkbox"] {
cursor: pointer;
opacity: 0;
z-index: 1;
outline: none;
&:disabled + label {
opacity: 0.65;
}
}
input[type="checkbox"]:focus + label {
&::before {
outline-offset: -2px;
outline: none;
}
}
input[type="checkbox"]:checked + label {
&::after {
content: "\f00c";
font-family: 'FontAwesome';
}
}
input[type="checkbox"]:disabled + label {
&::before {
background-color: $light;
cursor: not-allowed;
}
}
input[type="checkbox"]:checked + label {
&::before {
background-color: $white;
border-color: $custom;
}
&::after {
color: $custom;
}
}
}
table.focus-on tbody tr.focused th, table.focus-on tbody tr.focused td,
.sticky-table-header{
background: $custom;
color: $white;
border-color: $custom;
}
.sticky-table-header.fixed-solution {
top: 120px !important;
}
.btn-default {
background-color: $white;
border: 1px solid rgba($dark, 0.3);
}
.btn-group.pull-right {
float: right;
.dropdown-menu {
left: auto;
right: 0;
}
}
.btn-default.btn-primary {
background-color: $custom;
border-color: $custom;
box-shadow: 0 0 0 2px rgba($custom,.5);
}
}
.table-rep-plugin .btn-toolbar {
display: block;
}
/* Tablesaw Tables */
.tablesaw {
thead {
background: lighten($light,5%);
background-image: none;
border: none;
th {
text-shadow: none;
}
tr:first-child th {
border: none;
font-weight: 500;
font-family: $font-secondary;
}
}
td {
border-top: 1px solid lighten($light,5%) !important;
}
}
.tablesaw td, .tablesaw tbody th {
font-size: inherit;
line-height: inherit;
padding: 10px !important;
}
.tablesaw-stack tbody tr ,.tablesaw tbody tr{
border-bottom: none;
}
.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after, .tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
font-family: FontAwesome;
font-size: 10px;
}
.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after {
content: "\f176";
}
.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
content: "\f175";
}
.tablesaw-bar .btn-select.btn-small:after, .tablesaw-bar .btn-select.btn-micro:after {
font-size: 8px;
padding-right: 10px;
}
.tablesaw-swipe .tablesaw-cell-persist {
box-shadow: none;
border-color: $light;
}
.tablesaw-enhanced .tablesaw-bar .btn {
text-shadow: none;
background-image: none;
text-transform: none;
border: 1px solid darken($light,5%);
}
.tablesaw-enhanced .tablesaw-bar .btn.btn-select {
&:hover {
background: $white;
}
}
.tablesaw thead tr:first-child th,.tablesaw-sortable th.tablesaw-sortable-head button {
padding-top: 1.2em;
padding-bottom: 1em;
}
.tablesaw-enhanced .tablesaw-bar .btn:hover, .tablesaw-enhanced .tablesaw-bar .btn:focus,.tablesaw-enhanced .tablesaw-bar .btn:active {
color: $custom !important;
background-color: $light;
outline: none !important;
box-shadow: none !important;
background-image: none;
}
.tablesaw-columntoggle-popup {
.btn-group {
display: block;
}
}
/* Footable */
.footable-odd {
background-color: $white;
}
.footable-detail-show {
background-color: $light;
}
.footable-row-detail {
background-color: #F0F4F7;
}
.footable-pagination {
li {
margin-left: 5px;
display: inline-block;
float: left;
a{
position: relative;
display: block;
padding: .5rem .75rem;
margin-left: -1px;
line-height: 1.25;
color: $dark;
background-color: $white;
border: 1px solid $light;
}
}
li.active {
a {
color: $white;
}
}
}
.footable > thead > tr > th > span.footable-sort-indicator {
float: right;
}
.footable {
a {
color: $custom;
}
}
+80
View File
@@ -0,0 +1,80 @@
/* =============
Tabs
============= */
.tab-content {
padding: 20px 0 0 0;
}
//Navtab custom
.navtab-bg {
background-color: lighten($light,5%);
}
.nav-tabs>li>a,.nav-pills>li>a {
color: $muted;
font-family: $font-secondary;
}
.nav-pills .nav-item.show .nav-link, .nav-pills .nav-link.active {
background: $custom;
}
/* Vertial tab */
.tabs-vertical-env {
.tab-content {
background: $white;
display: table-cell;
padding: 0 0 0 20px;
vertical-align: top;
}
.nav.tabs-vertical {
display: table-cell;
min-width: 120px;
vertical-align: top;
width: 150px;
li > a {
color: $muted;
white-space: nowrap;
font-family: $font-secondary;
}
li> a.active {
background: $custom;
border: 0;
color: $white;
}
}
}
.tabs-vertical-env-right {
.tab-content {
padding: 0 20px 0 0;
}
}
.tabs-bordered {
border-bottom: 2px solid rgba($muted,0.2) !important;
.nav-item {
margin-bottom: -2px;
}
}
.tabs-bordered li a, .tabs-bordered li a:hover, .tabs-bordered li a:focus {
border: 0 !important;
padding: 10px 20px !important;
}
.tabs-bordered li a.active{
border-bottom: 2px solid $custom !important;
}
/* Navpills */
.nav-pills>li>a {
color: $dark;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
background: $custom;
}
+83
View File
@@ -0,0 +1,83 @@
/* =============
Task board
============= */
.taskList {
min-height: 40px;
margin-bottom: 0;
li {
background-color: $white;
border: 1px solid rgba($light7,0.2);
padding: 10px;
margin-bottom: 15px;
border-radius: 3px;
&:last-of-type {
margin-bottom: 0;
}
}
a {
font-size: 13px;
}
.checkbox {
margin-left: 20px;
margin-top: 5px;
}
}
.task-placeholder {
border: 1px dashed rgba($light,0.9) !important;
background-color: rgba($light,0.2) !important;
padding: 20px;
}
/* Task Detail */
.task-detail .task-dates li {
width: 50%;
float: left;
}
.task-detail .task-tags .bootstrap-tagsinput {
padding: 0px;
border: none;
}
.task-detail .assign-team a {
display: inline-block;
margin: 5px 5px 5px 0px;
}
.task-detail .files-list .file-box {
display: inline-block;
vertical-align: middle;
width: 80px;
padding: 2px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-border-radius: 3px;
background-clip: padding-box;
}
.task-detail .files-list .file-box img {
line-height: 70px;
}
.task-detail .files-list .file-box p {
width: 100%;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
// Task detail
.add-new-plus {
height: 32px;
text-align: center;
width: 32px;
display: block;
line-height: 32px;
color: $muted;
font-weight: 700;
background-color: $light;
border-radius: 50%;
}
+19
View File
@@ -0,0 +1,19 @@
/* ===========
Tickets
============== */
.tickets-list {
a {
color: $muted;
white-space: nowrap;
}
img {
height: 32px;
width: 32px;
}
td {
vertical-align: middle;
}
}
+189
View File
@@ -0,0 +1,189 @@
/* =============
Timeline
============= */
.timeline {
border-collapse: collapse;
border-spacing: 0;
display: table;
margin-bottom: 50px;
position: relative;
table-layout: fixed;
width: 100%;
.time-show {
margin-bottom: 30px;
margin-right: -75px;
margin-top: 30px;
position: relative;
}
&:before {
background-color: $light;
bottom: 0;
content: "";
left: 50%;
position: absolute;
top: 30px;
width: 2px;
z-index: 0;
}
.timeline-icon {
-webkit-border-radius: 50%;
background: $light;
border-radius: 50%;
display: block;
height: 20px;
left: -54px;
margin-top: -10px;
position: absolute;
text-align: center;
top: 50%;
width: 20px;
i {
color: $white;
font-size: 13px;
margin-top: 1px;
position: absolute;
left: 4px;
}
}
.time-icon {
&:before {
font-size: 16px;
margin-top: 5px;
}
}
}
h3.timeline-title {
color: $light7;
font-size: 20px;
font-weight: 400;
margin: 0 0 5px;
text-transform: uppercase;
}
.timeline-item {
display: table-row;
&:before {
content: "";
display: block;
width: 50%;
}
.timeline-desk {
.arrow {
border-bottom: 12px solid transparent;
border-right: 12px solid lighten($light,2%) !important;
border-top: 12px solid transparent;
display: block;
height: 0;
left: -12px;
margin-top: -12px;
position: absolute;
top: 50%;
width: 0;
}
.timeline-box {
padding: 20px;
}
}
.timeline-date {
margin-bottom: 10px;
}
}
.timeline-item.alt {
&:after {
content: "";
display: block;
width: 50%;
}
.timeline-desk {
.arrow-alt {
border-bottom: 12px solid transparent;
border-left: 12px solid lighten($light,3%) !important;
border-top: 12px solid transparent;
display: block;
height: 0;
left: auto;
margin-top: -12px;
position: absolute;
right: -12px;
top: 50%;
width: 0;
}
.album {
float: right;
margin-top: 20px;
a {
float: right;
margin-left: 5px;
}
}
}
.timeline-icon {
left: auto;
right: -56px;
}
&:before {
display: none;
}
.panel {
margin-left: 0;
margin-right: 45px;
}
h4,p,.timeline-date {
text-align: right;
}
}
.timeline-desk {
display: table-cell;
vertical-align: top;
width: 50%;
h4 {
font-size: 16px;
font-weight: normal;
margin: 0;
}
.panel {
background: lighten($light,3%);
display: block;
margin-bottom: 5px;
margin-left: 45px;
position: relative;
text-align: left;
border: 0;
}
h5 {
span {
color: $light7;
display: block;
font-size: 12px;
margin-bottom: 4px;
}
}
p {
font-size: 14px;
margin-bottom: 0;
}
.album {
margin-top: 12px;
a {
float: left;
margin-right: 5px;
}
img {
height: 36px;
width: auto;
border-radius: 3px;
}
}
.notification {
background: none repeat scroll 0 0 $white;
margin-top: 20px;
padding: 8px;
}
}
+66
View File
@@ -0,0 +1,66 @@
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700');
// Color variables
$custom: #02c0ce;
$white: #ffffff;
$primary: #2d7bf4;
$secondary: #9a9a9a;
$success: #0acf97;
$info: #4eb7eb;
$warning: #f9bc0b;
$danger: #f1556c;
$purple: #777edd;
$pink: #ff679b;
$muted: #98a6ad;
$light: #e3eaef;
$light3: #f3f3f3;
$light7: #797979;
$dark: #313a46;
// Body Background
$bg-body: #f3f6f8;
// Shadow
$shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
$shadow-lg: 0 0 24px 0 rgba(0, 0, 0, 0.15), 0 1px 0 0 rgba(0, 0, 0, 0.1);
//Background left-sidebar
$bg-leftbar: #ffffff;
//Background left-sidebar Dark
$bg-leftbar-dark: #313541;
$bg-leftbar-menu-color: #7c8e9a;
// Leftbar width
$leftbar-width: 240px;
// Small Leftbar width
$leftbar-width-sm: 170px;
// Width variables
$width: 100%;
// Height variables
$height: 100%;
//Font variables
$font-primary: 'Roboto', sans-serif;
$font-secondary: 'Rubik', sans-serif;
//Font Base
$font-size-base: 14px;
+139
View File
@@ -0,0 +1,139 @@
/* =============
Waves Effect
============= */
/*!
* Waves v0.6.0
* http://fian.my.id/Waves
*
* Copyright 2014 Alfiana E. Sibuea and other contributors
* Released under the MIT license
* https://github.com/fians/Waves/blob/master/LICENSE
*/
.waves-effect {
position: relative;
cursor: pointer;
display: inline-block;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
vertical-align: middle;
z-index: 1;
will-change: opacity, transform;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.waves-effect {
.waves-ripple {
position: absolute;
border-radius: 50%;
width: 20px;
height: 20px;
margin-top: -10px;
margin-left: -10px;
opacity: 0;
background: rgba(0, 0, 0, 0.2);
-webkit-transition: all 0.7s ease-out;
-moz-transition: all 0.7s ease-out;
-o-transition: all 0.7s ease-out;
-ms-transition: all 0.7s ease-out;
transition: all 0.7s ease-out;
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
pointer-events: none;
}
}
.waves-notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
-ms-transition: none !important;
transition: none !important;
}
.waves-circle {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
text-align: center;
width: 2.5em;
height: 2.5em;
line-height: 2.5em;
border-radius: 50%;
-webkit-mask-image: none;
}
.waves-input-wrapper {
border-radius: 0.2em;
vertical-align: bottom;
.waves-button-input {
position: relative;
top: 0;
left: 0;
z-index: 1;
}
}
.waves-block {
display: block;
}
.waves-effect.waves-light {
.waves-ripple {
background-color: rgba($white, 0.4);
}
}
.waves-effect.waves-custom {
.waves-ripple {
background-color: rgba($custom, 0.4);
}
}
.waves-effect.waves-primary {
.waves-ripple {
background-color: rgba($primary, 0.4);
}
}
.waves-effect.waves-success {
.waves-ripple {
background-color: rgba($success, 0.4);
}
}
.waves-effect.waves-info {
.waves-ripple {
background-color: rgba($info, 0.4);
}
}
.waves-effect.waves-warning {
.waves-ripple {
background-color: rgba($warning, 0.4);
}
}
.waves-effect.waves-danger {
.waves-ripple {
background-color: rgba($danger, 0.4);
}
}
.waves-effect.waves-pink {
.waves-ripple {
background-color: rgba($pink, 0.4);
}
}
.waves-effect.waves-purple {
.waves-ripple {
background-color: rgba($purple, 0.4);
}
}
+158
View File
@@ -0,0 +1,158 @@
/* =============
Widgets
============= */
.widget-flat {
border: 2px solid $dark;
position: relative;
i{
position: absolute;
bottom: -20px;
font-size: 78px;
opacity: 0.25;
left: 0;
transition: bottom 0.5s ease 0s;
}
&:hover {
i {
bottom: 0;
}
}
}
.widget-chart-one {
min-height: 120px;
.widget-chart-one-content {
margin-left: 100px;
}
}
.widget-chart-two {
min-height: 120px;
.widget-chart-one-content {
margin-right: 100px;
}
}
.tilebox-one {
i {
font-size: 30px;
}
}
/* Inbox-widget */
.inbox-widget {
.inbox-item {
border-bottom: 1px solid lighten($light,5%);
overflow: hidden;
padding: 10px 0;
position: relative;
.inbox-item-img {
display: block;
float: left;
margin-right: 15px;
width: 40px;
}
img {
width: 40px;
}
.inbox-item-author {
color: $dark;
display: block;
margin: 0;
}
.inbox-item-text {
color: $muted;
display: block;
font-size: 14px;
margin: 0;
}
.inbox-item-date {
color: $muted;
font-size: 11px;
position: absolute;
right: 7px;
top: 2px;
}
}
}
/* Comment List */
.comment-list {
.comment-box-item {
position: relative;
.commnet-item-date {
color: $muted;
font-size: 11px;
position: absolute;
right: 7px;
top: 2px;
}
.commnet-item-msg {
color: $dark;
display: block;
margin: 10px 0;
font-weight: normal;
font-size: 15px;
line-height: 24px;
}
.commnet-item-user {
color: $muted;
display: block;
font-size: 14px;
margin: 0;
}
}
a + a {
margin-top: 15px;
display: block;
}
}
/* Transaction */
.transaction-list {
li{
padding: 7px 0;
border-bottom: 1px solid lighten($light,5%);
clear: both;
position: relative;
}
i{
width: 20px;
position: absolute;
top: 10px;
font-size: 12px;
}
.tran-text {
padding-left: 25px;
white-space: nowrap;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
width: 150px;
}
.tran-price {
margin-left: 30px;
}
}
+62
View File
@@ -0,0 +1,62 @@
/* =============
Wysiwig
============= */
.mce-panel {
border: 1px solid lighten($light, 3%) !important;
background-color: lighten($light, 3%) !important;
}
.mce-menu {
background-color: $white !important;
box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
}
.mce-menubar .mce-menubtn:hover, .mce-menubar .mce-menubtn.mce-active, .mce-menubar .mce-menubtn:focus {
border-color: lighten($light, 3%) !important;
}
.mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus, .mce-menu-item-normal.mce-active,
.mce-primary {
background-color: $custom !important;
}
.mce-window-head .mce-title {
font-family: $font-secondary;
}
.mce-window {
padding: 20px !important;
}
.mce-window-head {
padding-bottom: 20px !important;
border-bottom: 0 !important;
}
.mce-grid-border a:hover, .mce-grid-border a.mce-active {
border-color: $custom !important;
background: $custom !important;
}
.mce-btn {
background-color: $custom !important;
border: none !important;
border-radius: 3px;
color: $white !important;
}
.mce-menubtn button,.mce-btn button {
color: $white !important;
span,i {
color: $white !important;
}
}
.mce-menubar .mce-caret,.mce-btn .mce-caret {
border-top-color: $white !important;
}
.mce-flow-layout {
padding: 5px !important;
}
+14
View File
@@ -0,0 +1,14 @@
/*
Template Name: Highdmin - Responsive Bootstrap 4 Admin Dashboard
Author: CoderThemes
Email: [email protected]
File: Icons
*/
@import "icons/font-awesome/scss/font-awesome";
@import "icons/material-design/scss/materialdesignicons";
@import "icons/feather/feather";
@import "icons/dripicons/dripicons";
@import "icons/simple-line-icons/scss/simple-line-icons";
@@ -0,0 +1,832 @@
@font-face {
font-family: "dripicons-v2";
src: url("../fonts/dripicons-v2.eot");
src: url("../fonts/dripicons-v2.eot?#iefix") format("embedded-opentype"), url("../fonts/dripicons-v2.woff") format("woff"), url("../fonts/dripicons-v2.ttf") format("truetype"), url("../fonts/dripicons-v2.svg#dripicons-v2") format("svg");
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: "dripicons-v2" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
[class^="dripicons-"]:before,
[class*=" dripicons-"]:before {
font-family: "dripicons-v2" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.dripicons-alarm:before {
content: "\61";
}
.dripicons-align-center:before {
content: "\62";
}
.dripicons-align-justify:before {
content: "\63";
}
.dripicons-align-left:before {
content: "\64";
}
.dripicons-align-right:before {
content: "\65";
}
.dripicons-anchor:before {
content: "\66";
}
.dripicons-archive:before {
content: "\67";
}
.dripicons-arrow-down:before {
content: "\68";
}
.dripicons-arrow-left:before {
content: "\69";
}
.dripicons-arrow-right:before {
content: "\6a";
}
.dripicons-arrow-thin-down:before {
content: "\6b";
}
.dripicons-arrow-thin-left:before {
content: "\6c";
}
.dripicons-arrow-thin-right:before {
content: "\6d";
}
.dripicons-arrow-thin-up:before {
content: "\6e";
}
.dripicons-arrow-up:before {
content: "\6f";
}
.dripicons-article:before {
content: "\70";
}
.dripicons-backspace:before {
content: "\71";
}
.dripicons-basket:before {
content: "\72";
}
.dripicons-basketball:before {
content: "\73";
}
.dripicons-battery-empty:before {
content: "\74";
}
.dripicons-battery-full:before {
content: "\75";
}
.dripicons-battery-low:before {
content: "\76";
}
.dripicons-battery-medium:before {
content: "\77";
}
.dripicons-bell:before {
content: "\78";
}
.dripicons-blog:before {
content: "\79";
}
.dripicons-bluetooth:before {
content: "\7a";
}
.dripicons-bold:before {
content: "\41";
}
.dripicons-bookmark:before {
content: "\42";
}
.dripicons-bookmarks:before {
content: "\43";
}
.dripicons-box:before {
content: "\44";
}
.dripicons-briefcase:before {
content: "\45";
}
.dripicons-brightness-low:before {
content: "\46";
}
.dripicons-brightness-max:before {
content: "\47";
}
.dripicons-brightness-medium:before {
content: "\48";
}
.dripicons-broadcast:before {
content: "\49";
}
.dripicons-browser:before {
content: "\4a";
}
.dripicons-browser-upload:before {
content: "\4b";
}
.dripicons-brush:before {
content: "\4c";
}
.dripicons-calendar:before {
content: "\4d";
}
.dripicons-camcorder:before {
content: "\4e";
}
.dripicons-camera:before {
content: "\4f";
}
.dripicons-card:before {
content: "\50";
}
.dripicons-cart:before {
content: "\51";
}
.dripicons-checklist:before {
content: "\52";
}
.dripicons-checkmark:before {
content: "\53";
}
.dripicons-chevron-down:before {
content: "\54";
}
.dripicons-chevron-left:before {
content: "\55";
}
.dripicons-chevron-right:before {
content: "\56";
}
.dripicons-chevron-up:before {
content: "\57";
}
.dripicons-clipboard:before {
content: "\58";
}
.dripicons-clock:before {
content: "\59";
}
.dripicons-clockwise:before {
content: "\5a";
}
.dripicons-cloud:before {
content: "\30";
}
.dripicons-cloud-download:before {
content: "\31";
}
.dripicons-cloud-upload:before {
content: "\32";
}
.dripicons-code:before {
content: "\33";
}
.dripicons-contract:before {
content: "\34";
}
.dripicons-contract-2:before {
content: "\35";
}
.dripicons-conversation:before {
content: "\36";
}
.dripicons-copy:before {
content: "\37";
}
.dripicons-crop:before {
content: "\38";
}
.dripicons-cross:before {
content: "\39";
}
.dripicons-crosshair:before {
content: "\21";
}
.dripicons-cutlery:before {
content: "\22";
}
.dripicons-device-desktop:before {
content: "\23";
}
.dripicons-device-mobile:before {
content: "\24";
}
.dripicons-device-tablet:before {
content: "\25";
}
.dripicons-direction:before {
content: "\26";
}
.dripicons-disc:before {
content: "\27";
}
.dripicons-document:before {
content: "\28";
}
.dripicons-document-delete:before {
content: "\29";
}
.dripicons-document-edit:before {
content: "\2a";
}
.dripicons-document-new:before {
content: "\2b";
}
.dripicons-document-remove:before {
content: "\2c";
}
.dripicons-dot:before {
content: "\2d";
}
.dripicons-dots-2:before {
content: "\2e";
}
.dripicons-dots-3:before {
content: "\2f";
}
.dripicons-download:before {
content: "\3a";
}
.dripicons-duplicate:before {
content: "\3b";
}
.dripicons-enter:before {
content: "\3c";
}
.dripicons-exit:before {
content: "\3d";
}
.dripicons-expand:before {
content: "\3e";
}
.dripicons-expand-2:before {
content: "\3f";
}
.dripicons-experiment:before {
content: "\40";
}
.dripicons-export:before {
content: "\5b";
}
.dripicons-feed:before {
content: "\5d";
}
.dripicons-flag:before {
content: "\5e";
}
.dripicons-flashlight:before {
content: "\5f";
}
.dripicons-folder:before {
content: "\60";
}
.dripicons-folder-open:before {
content: "\7b";
}
.dripicons-forward:before {
content: "\7c";
}
.dripicons-gaming:before {
content: "\7d";
}
.dripicons-gear:before {
content: "\7e";
}
.dripicons-graduation:before {
content: "\5c";
}
.dripicons-graph-bar:before {
content: "\e000";
}
.dripicons-graph-line:before {
content: "\e001";
}
.dripicons-graph-pie:before {
content: "\e002";
}
.dripicons-headset:before {
content: "\e003";
}
.dripicons-heart:before {
content: "\e004";
}
.dripicons-help:before {
content: "\e005";
}
.dripicons-home:before {
content: "\e006";
}
.dripicons-hourglass:before {
content: "\e007";
}
.dripicons-inbox:before {
content: "\e008";
}
.dripicons-information:before {
content: "\e009";
}
.dripicons-italic:before {
content: "\e00a";
}
.dripicons-jewel:before {
content: "\e00b";
}
.dripicons-lifting:before {
content: "\e00c";
}
.dripicons-lightbulb:before {
content: "\e00d";
}
.dripicons-link:before {
content: "\e00e";
}
.dripicons-link-broken:before {
content: "\e00f";
}
.dripicons-list:before {
content: "\e010";
}
.dripicons-loading:before {
content: "\e011";
}
.dripicons-location:before {
content: "\e012";
}
.dripicons-lock:before {
content: "\e013";
}
.dripicons-lock-open:before {
content: "\e014";
}
.dripicons-mail:before {
content: "\e015";
}
.dripicons-map:before {
content: "\e016";
}
.dripicons-media-loop:before {
content: "\e017";
}
.dripicons-media-next:before {
content: "\e018";
}
.dripicons-media-pause:before {
content: "\e019";
}
.dripicons-media-play:before {
content: "\e01a";
}
.dripicons-media-previous:before {
content: "\e01b";
}
.dripicons-media-record:before {
content: "\e01c";
}
.dripicons-media-shuffle:before {
content: "\e01d";
}
.dripicons-media-stop:before {
content: "\e01e";
}
.dripicons-medical:before {
content: "\e01f";
}
.dripicons-menu:before {
content: "\e020";
}
.dripicons-message:before {
content: "\e021";
}
.dripicons-meter:before {
content: "\e022";
}
.dripicons-microphone:before {
content: "\e023";
}
.dripicons-minus:before {
content: "\e024";
}
.dripicons-monitor:before {
content: "\e025";
}
.dripicons-move:before {
content: "\e026";
}
.dripicons-music:before {
content: "\e027";
}
.dripicons-network-1:before {
content: "\e028";
}
.dripicons-network-2:before {
content: "\e029";
}
.dripicons-network-3:before {
content: "\e02a";
}
.dripicons-network-4:before {
content: "\e02b";
}
.dripicons-network-5:before {
content: "\e02c";
}
.dripicons-pamphlet:before {
content: "\e02d";
}
.dripicons-paperclip:before {
content: "\e02e";
}
.dripicons-pencil:before {
content: "\e02f";
}
.dripicons-phone:before {
content: "\e030";
}
.dripicons-photo:before {
content: "\e031";
}
.dripicons-photo-group:before {
content: "\e032";
}
.dripicons-pill:before {
content: "\e033";
}
.dripicons-pin:before {
content: "\e034";
}
.dripicons-plus:before {
content: "\e035";
}
.dripicons-power:before {
content: "\e036";
}
.dripicons-preview:before {
content: "\e037";
}
.dripicons-print:before {
content: "\e038";
}
.dripicons-pulse:before {
content: "\e039";
}
.dripicons-question:before {
content: "\e03a";
}
.dripicons-reply:before {
content: "\e03b";
}
.dripicons-reply-all:before {
content: "\e03c";
}
.dripicons-return:before {
content: "\e03d";
}
.dripicons-retweet:before {
content: "\e03e";
}
.dripicons-rocket:before {
content: "\e03f";
}
.dripicons-scale:before {
content: "\e040";
}
.dripicons-search:before {
content: "\e041";
}
.dripicons-shopping-bag:before {
content: "\e042";
}
.dripicons-skip:before {
content: "\e043";
}
.dripicons-stack:before {
content: "\e044";
}
.dripicons-star:before {
content: "\e045";
}
.dripicons-stopwatch:before {
content: "\e046";
}
.dripicons-store:before {
content: "\e047";
}
.dripicons-suitcase:before {
content: "\e048";
}
.dripicons-swap:before {
content: "\e049";
}
.dripicons-tag:before {
content: "\e04a";
}
.dripicons-tag-delete:before {
content: "\e04b";
}
.dripicons-tags:before {
content: "\e04c";
}
.dripicons-thumbs-down:before {
content: "\e04d";
}
.dripicons-thumbs-up:before {
content: "\e04e";
}
.dripicons-ticket:before {
content: "\e04f";
}
.dripicons-time-reverse:before {
content: "\e050";
}
.dripicons-to-do:before {
content: "\e051";
}
.dripicons-toggles:before {
content: "\e052";
}
.dripicons-trash:before {
content: "\e053";
}
.dripicons-trophy:before {
content: "\e054";
}
.dripicons-upload:before {
content: "\e055";
}
.dripicons-user:before {
content: "\e056";
}
.dripicons-user-group:before {
content: "\e057";
}
.dripicons-user-id:before {
content: "\e058";
}
.dripicons-vibrate:before {
content: "\e059";
}
.dripicons-view-apps:before {
content: "\e05a";
}
.dripicons-view-list:before {
content: "\e05b";
}
.dripicons-view-list-large:before {
content: "\e05c";
}
.dripicons-view-thumb:before {
content: "\e05d";
}
.dripicons-volume-full:before {
content: "\e05e";
}
.dripicons-volume-low:before {
content: "\e05f";
}
.dripicons-volume-medium:before {
content: "\e060";
}
.dripicons-volume-off:before {
content: "\e061";
}
.dripicons-wallet:before {
content: "\e062";
}
.dripicons-warning:before {
content: "\e063";
}
.dripicons-web:before {
content: "\e064";
}
.dripicons-weight:before {
content: "\e065";
}
.dripicons-wifi:before {
content: "\e066";
}
.dripicons-wrong:before {
content: "\e067";
}
.dripicons-zoom-in:before {
content: "\e068";
}
.dripicons-zoom-out:before {
content: "\e069";
}
/*# sourceMappingURL=dripicons.css.map */
File diff suppressed because one or more lines are too long
@@ -0,0 +1,564 @@
@font-face {
font-family: "feather";
src: url("../fonts/feather-webfont.eot");
src: url("../fonts/feather-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/feather-webfont.woff") format("woff"), url("../fonts/feather-webfont.ttf") format("truetype"), url("../fonts/feather-webfont.svg#feather") format("svg");
font-weight: normal;
font-style: normal;
}
/* Character Mapping Method */
[data-fi]:before {
display: inline-block;
font-family: "feather";
content: attr(data-icon);
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* CSS Class Mapping Method */
[class^="fi-"],
[class*=" fi-"] {
display: inline-block;
font-family: "feather";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fi-eye:before {
content: "\e000";
}
.fi-paper-clip:before {
content: "\e001";
}
.fi-mail:before {
content: "\e002";
}
.fi-mail:before {
content: "\e002";
}
.fi-toggle:before {
content: "\e003";
}
.fi-layout:before {
content: "\e004";
}
.fi-link:before {
content: "\e005";
}
.fi-bell:before {
content: "\e006";
}
.fi-lock:before {
content: "\e007";
}
.fi-unlock:before {
content: "\e008";
}
.fi-ribbon:before {
content: "\e009";
}
.fi-image:before {
content: "\e010";
}
.fi-signal:before {
content: "\e011";
}
.fi-target:before {
content: "\e012";
}
.fi-clipboard:before {
content: "\e013";
}
.fi-clock:before {
content: "\e014";
}
.fi-clock:before {
content: "\e014";
}
.fi-watch:before {
content: "\e015";
}
.fi-air-play:before {
content: "\e016";
}
.fi-camera:before {
content: "\e017";
}
.fi-video:before {
content: "\e018";
}
.fi-disc:before {
content: "\e019";
}
.fi-printer:before {
content: "\e020";
}
.fi-monitor:before {
content: "\e021";
}
.fi-server:before {
content: "\e022";
}
.fi-cog:before {
content: "\e023";
}
.fi-heart:before {
content: "\e024";
}
.fi-paragraph:before {
content: "\e025";
}
.fi-align-justify:before {
content: "\e026";
}
.fi-align-left:before {
content: "\e027";
}
.fi-align-center:before {
content: "\e028";
}
.fi-align-right:before {
content: "\e029";
}
.fi-book:before {
content: "\e030";
}
.fi-layers:before {
content: "\e031";
}
.fi-stack:before {
content: "\e032";
}
.fi-stack-2:before {
content: "\e033";
}
.fi-paper:before {
content: "\e034";
}
.fi-paper-stack:before {
content: "\e035";
}
.fi-search:before {
content: "\e036";
}
.fi-zoom-in:before {
content: "\e037";
}
.fi-zoom-out:before {
content: "\e038";
}
.fi-reply:before {
content: "\e039";
}
.fi-circle-plus:before {
content: "\e040";
}
.fi-circle-minus:before {
content: "\e041";
}
.fi-circle-check:before {
content: "\e042";
}
.fi-circle-cross:before {
content: "\e043";
}
.fi-square-plus:before {
content: "\e044";
}
.fi-square-minus:before {
content: "\e045";
}
.fi-square-check:before {
content: "\e046";
}
.fi-square-cross:before {
content: "\e047";
}
.fi-microphone:before {
content: "\e048";
}
.fi-record:before {
content: "\e049";
}
.fi-skip-back:before {
content: "\e050";
}
.fi-rewind:before {
content: "\e051";
}
.fi-play:before {
content: "\e052";
}
.fi-pause:before {
content: "\e053";
}
.fi-stop:before {
content: "\e054";
}
.fi-fast-forward:before {
content: "\e055";
}
.fi-skip-forward:before {
content: "\e056";
}
.fi-shuffle:before {
content: "\e057";
}
.fi-repeat:before {
content: "\e058";
}
.fi-folder:before {
content: "\e059";
}
.fi-umbrella:before {
content: "\e060";
}
.fi-moon:before {
content: "\e061";
}
.fi-thermometer:before {
content: "\e062";
}
.fi-drop:before {
content: "\e063";
}
.fi-sun:before {
content: "\e064";
}
.fi-cloud:before {
content: "\e065";
}
.fi-cloud-upload:before {
content: "\e066";
}
.fi-cloud-download:before {
content: "\e067";
}
.fi-upload:before {
content: "\e068";
}
.fi-download:before {
content: "\e069";
}
.fi-location:before {
content: "\e070";
}
.fi-location-2:before {
content: "\e071";
}
.fi-map:before {
content: "\e072";
}
.fi-battery:before {
content: "\e073";
}
.fi-head:before {
content: "\e074";
}
.fi-briefcase:before {
content: "\e075";
}
.fi-speech-bubble:before {
content: "\e076";
}
.fi-anchor:before {
content: "\e077";
}
.fi-globe:before {
content: "\e078";
}
.fi-box:before {
content: "\e079";
}
.fi-reload:before {
content: "\e080";
}
.fi-share:before {
content: "\e081";
}
.fi-marquee:before {
content: "\e082";
}
.fi-marquee-plus:before {
content: "\e083";
}
.fi-marquee-minus:before {
content: "\e084";
}
.fi-tag:before {
content: "\e085";
}
.fi-power:before {
content: "\e086";
}
.fi-command:before {
content: "\e087";
}
.fi-alt:before {
content: "\e088";
}
.fi-esc:before {
content: "\e089";
}
.fi-bar-graph:before {
content: "\e090";
}
.fi-bar-graph-2:before {
content: "\e091";
}
.fi-pie-graph:before {
content: "\e092";
}
.fi-star:before {
content: "\e093";
}
.fi-arrow-left:before {
content: "\e094";
}
.fi-arrow-right:before {
content: "\e095";
}
.fi-arrow-up:before {
content: "\e096";
}
.fi-arrow-down:before {
content: "\e097";
}
.fi-volume:before {
content: "\e098";
}
.fi-mute:before {
content: "\e099";
}
.fi-content-right:before {
content: "\e100";
}
.fi-content-left:before {
content: "\e101";
}
.fi-grid:before {
content: "\e102";
}
.fi-grid-2:before {
content: "\e103";
}
.fi-columns:before {
content: "\e104";
}
.fi-loader:before {
content: "\e105";
}
.fi-bag:before {
content: "\e106";
}
.fi-ban:before {
content: "\e107";
}
.fi-flag:before {
content: "\e108";
}
.fi-trash:before {
content: "\e109";
}
.fi-expand:before {
content: "\e110";
}
.fi-contract:before {
content: "\e111";
}
.fi-maximize:before {
content: "\e112";
}
.fi-minimize:before {
content: "\e113";
}
.fi-plus:before {
content: "\e114";
}
.fi-minus:before {
content: "\e115";
}
.fi-check:before {
content: "\e116";
}
.fi-cross:before {
content: "\e117";
}
.fi-move:before {
content: "\e118";
}
.fi-delete:before {
content: "\e119";
}
.fi-menu:before {
content: "\e120";
}
.fi-archive:before {
content: "\e121";
}
.fi-inbox:before {
content: "\e122";
}
.fi-outbox:before {
content: "\e123";
}
.fi-file:before {
content: "\e124";
}
.fi-file-add:before {
content: "\e125";
}
.fi-file-subtract:before {
content: "\e126";
}
.fi-help:before {
content: "\e127";
}
.fi-open:before {
content: "\e128";
}
.fi-ellipsis:before {
content: "\e129";
}
/*# sourceMappingURL=feather.css.map */
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,626 @@
@font-face {
font-family: 'Pe-icon-7-stroke';
src: url("../fonts/Pe-icon-7-stroke.eot?d7yf1v");
src: url("../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v") format("embedded-opentype"), url("../fonts/Pe-icon-7-stroke.woff?d7yf1v") format("woff"), url("../fonts/Pe-icon-7-stroke.ttf?d7yf1v") format("truetype"), url("../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke") format("svg");
font-weight: normal;
font-style: normal; }
[class^="pe-7s-"], [class*=" pe-7s-"] {
display: inline-block;
font-family: 'Pe-icon-7-stroke';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.pe-7s-album:before {
content: "\e6aa"; }
.pe-7s-arc:before {
content: "\e6ab"; }
.pe-7s-back-2:before {
content: "\e6ac"; }
.pe-7s-bandaid:before {
content: "\e6ad"; }
.pe-7s-car:before {
content: "\e6ae"; }
.pe-7s-diamond:before {
content: "\e6af"; }
.pe-7s-door-lock:before {
content: "\e6b0"; }
.pe-7s-eyedropper:before {
content: "\e6b1"; }
.pe-7s-female:before {
content: "\e6b2"; }
.pe-7s-gym:before {
content: "\e6b3"; }
.pe-7s-hammer:before {
content: "\e6b4"; }
.pe-7s-headphones:before {
content: "\e6b5"; }
.pe-7s-helm:before {
content: "\e6b6"; }
.pe-7s-hourglass:before {
content: "\e6b7"; }
.pe-7s-leaf:before {
content: "\e6b8"; }
.pe-7s-magic-wand:before {
content: "\e6b9"; }
.pe-7s-male:before {
content: "\e6ba"; }
.pe-7s-map-2:before {
content: "\e6bb"; }
.pe-7s-next-2:before {
content: "\e6bc"; }
.pe-7s-paint-bucket:before {
content: "\e6bd"; }
.pe-7s-pendrive:before {
content: "\e6be"; }
.pe-7s-photo:before {
content: "\e6bf"; }
.pe-7s-piggy:before {
content: "\e6c0"; }
.pe-7s-plugin:before {
content: "\e6c1"; }
.pe-7s-refresh-2:before {
content: "\e6c2"; }
.pe-7s-rocket:before {
content: "\e6c3"; }
.pe-7s-settings:before {
content: "\e6c4"; }
.pe-7s-shield:before {
content: "\e6c5"; }
.pe-7s-smile:before {
content: "\e6c6"; }
.pe-7s-usb:before {
content: "\e6c7"; }
.pe-7s-vector:before {
content: "\e6c8"; }
.pe-7s-wine:before {
content: "\e6c9"; }
.pe-7s-cloud-upload:before {
content: "\e68a"; }
.pe-7s-cash:before {
content: "\e68c"; }
.pe-7s-close:before {
content: "\e680"; }
.pe-7s-bluetooth:before {
content: "\e68d"; }
.pe-7s-cloud-download:before {
content: "\e68b"; }
.pe-7s-way:before {
content: "\e68e"; }
.pe-7s-close-circle:before {
content: "\e681"; }
.pe-7s-id:before {
content: "\e68f"; }
.pe-7s-angle-up:before {
content: "\e682"; }
.pe-7s-wristwatch:before {
content: "\e690"; }
.pe-7s-angle-up-circle:before {
content: "\e683"; }
.pe-7s-world:before {
content: "\e691"; }
.pe-7s-angle-right:before {
content: "\e684"; }
.pe-7s-volume:before {
content: "\e692"; }
.pe-7s-angle-right-circle:before {
content: "\e685"; }
.pe-7s-users:before {
content: "\e693"; }
.pe-7s-angle-left:before {
content: "\e686"; }
.pe-7s-user-female:before {
content: "\e694"; }
.pe-7s-angle-left-circle:before {
content: "\e687"; }
.pe-7s-up-arrow:before {
content: "\e695"; }
.pe-7s-angle-down:before {
content: "\e688"; }
.pe-7s-switch:before {
content: "\e696"; }
.pe-7s-angle-down-circle:before {
content: "\e689"; }
.pe-7s-scissors:before {
content: "\e697"; }
.pe-7s-wallet:before {
content: "\e600"; }
.pe-7s-safe:before {
content: "\e698"; }
.pe-7s-volume2:before {
content: "\e601"; }
.pe-7s-volume1:before {
content: "\e602"; }
.pe-7s-voicemail:before {
content: "\e603"; }
.pe-7s-video:before {
content: "\e604"; }
.pe-7s-user:before {
content: "\e605"; }
.pe-7s-upload:before {
content: "\e606"; }
.pe-7s-unlock:before {
content: "\e607"; }
.pe-7s-umbrella:before {
content: "\e608"; }
.pe-7s-trash:before {
content: "\e609"; }
.pe-7s-tools:before {
content: "\e60a"; }
.pe-7s-timer:before {
content: "\e60b"; }
.pe-7s-ticket:before {
content: "\e60c"; }
.pe-7s-target:before {
content: "\e60d"; }
.pe-7s-sun:before {
content: "\e60e"; }
.pe-7s-study:before {
content: "\e60f"; }
.pe-7s-stopwatch:before {
content: "\e610"; }
.pe-7s-star:before {
content: "\e611"; }
.pe-7s-speaker:before {
content: "\e612"; }
.pe-7s-signal:before {
content: "\e613"; }
.pe-7s-shuffle:before {
content: "\e614"; }
.pe-7s-shopbag:before {
content: "\e615"; }
.pe-7s-share:before {
content: "\e616"; }
.pe-7s-server:before {
content: "\e617"; }
.pe-7s-search:before {
content: "\e618"; }
.pe-7s-film:before {
content: "\e6a5"; }
.pe-7s-science:before {
content: "\e619"; }
.pe-7s-disk:before {
content: "\e6a6"; }
.pe-7s-ribbon:before {
content: "\e61a"; }
.pe-7s-repeat:before {
content: "\e61b"; }
.pe-7s-refresh:before {
content: "\e61c"; }
.pe-7s-add-user:before {
content: "\e6a9"; }
.pe-7s-refresh-cloud:before {
content: "\e61d"; }
.pe-7s-paperclip:before {
content: "\e69c"; }
.pe-7s-radio:before {
content: "\e61e"; }
.pe-7s-note2:before {
content: "\e69d"; }
.pe-7s-print:before {
content: "\e61f"; }
.pe-7s-network:before {
content: "\e69e"; }
.pe-7s-prev:before {
content: "\e620"; }
.pe-7s-mute:before {
content: "\e69f"; }
.pe-7s-power:before {
content: "\e621"; }
.pe-7s-medal:before {
content: "\e6a0"; }
.pe-7s-portfolio:before {
content: "\e622"; }
.pe-7s-like2:before {
content: "\e6a1"; }
.pe-7s-plus:before {
content: "\e623"; }
.pe-7s-left-arrow:before {
content: "\e6a2"; }
.pe-7s-play:before {
content: "\e624"; }
.pe-7s-key:before {
content: "\e6a3"; }
.pe-7s-plane:before {
content: "\e625"; }
.pe-7s-joy:before {
content: "\e6a4"; }
.pe-7s-photo-gallery:before {
content: "\e626"; }
.pe-7s-pin:before {
content: "\e69b"; }
.pe-7s-phone:before {
content: "\e627"; }
.pe-7s-plug:before {
content: "\e69a"; }
.pe-7s-pen:before {
content: "\e628"; }
.pe-7s-right-arrow:before {
content: "\e699"; }
.pe-7s-paper-plane:before {
content: "\e629"; }
.pe-7s-delete-user:before {
content: "\e6a7"; }
.pe-7s-paint:before {
content: "\e62a"; }
.pe-7s-bottom-arrow:before {
content: "\e6a8"; }
.pe-7s-notebook:before {
content: "\e62b"; }
.pe-7s-note:before {
content: "\e62c"; }
.pe-7s-next:before {
content: "\e62d"; }
.pe-7s-news-paper:before {
content: "\e62e"; }
.pe-7s-musiclist:before {
content: "\e62f"; }
.pe-7s-music:before {
content: "\e630"; }
.pe-7s-mouse:before {
content: "\e631"; }
.pe-7s-more:before {
content: "\e632"; }
.pe-7s-moon:before {
content: "\e633"; }
.pe-7s-monitor:before {
content: "\e634"; }
.pe-7s-micro:before {
content: "\e635"; }
.pe-7s-menu:before {
content: "\e636"; }
.pe-7s-map:before {
content: "\e637"; }
.pe-7s-map-marker:before {
content: "\e638"; }
.pe-7s-mail:before {
content: "\e639"; }
.pe-7s-mail-open:before {
content: "\e63a"; }
.pe-7s-mail-open-file:before {
content: "\e63b"; }
.pe-7s-magnet:before {
content: "\e63c"; }
.pe-7s-loop:before {
content: "\e63d"; }
.pe-7s-look:before {
content: "\e63e"; }
.pe-7s-lock:before {
content: "\e63f"; }
.pe-7s-lintern:before {
content: "\e640"; }
.pe-7s-link:before {
content: "\e641"; }
.pe-7s-like:before {
content: "\e642"; }
.pe-7s-light:before {
content: "\e643"; }
.pe-7s-less:before {
content: "\e644"; }
.pe-7s-keypad:before {
content: "\e645"; }
.pe-7s-junk:before {
content: "\e646"; }
.pe-7s-info:before {
content: "\e647"; }
.pe-7s-home:before {
content: "\e648"; }
.pe-7s-help2:before {
content: "\e649"; }
.pe-7s-help1:before {
content: "\e64a"; }
.pe-7s-graph3:before {
content: "\e64b"; }
.pe-7s-graph2:before {
content: "\e64c"; }
.pe-7s-graph1:before {
content: "\e64d"; }
.pe-7s-graph:before {
content: "\e64e"; }
.pe-7s-global:before {
content: "\e64f"; }
.pe-7s-gleam:before {
content: "\e650"; }
.pe-7s-glasses:before {
content: "\e651"; }
.pe-7s-gift:before {
content: "\e652"; }
.pe-7s-folder:before {
content: "\e653"; }
.pe-7s-flag:before {
content: "\e654"; }
.pe-7s-filter:before {
content: "\e655"; }
.pe-7s-file:before {
content: "\e656"; }
.pe-7s-expand1:before {
content: "\e657"; }
.pe-7s-exapnd2:before {
content: "\e658"; }
.pe-7s-edit:before {
content: "\e659"; }
.pe-7s-drop:before {
content: "\e65a"; }
.pe-7s-drawer:before {
content: "\e65b"; }
.pe-7s-download:before {
content: "\e65c"; }
.pe-7s-display2:before {
content: "\e65d"; }
.pe-7s-display1:before {
content: "\e65e"; }
.pe-7s-diskette:before {
content: "\e65f"; }
.pe-7s-date:before {
content: "\e660"; }
.pe-7s-cup:before {
content: "\e661"; }
.pe-7s-culture:before {
content: "\e662"; }
.pe-7s-crop:before {
content: "\e663"; }
.pe-7s-credit:before {
content: "\e664"; }
.pe-7s-copy-file:before {
content: "\e665"; }
.pe-7s-config:before {
content: "\e666"; }
.pe-7s-compass:before {
content: "\e667"; }
.pe-7s-comment:before {
content: "\e668"; }
.pe-7s-coffee:before {
content: "\e669"; }
.pe-7s-cloud:before {
content: "\e66a"; }
.pe-7s-clock:before {
content: "\e66b"; }
.pe-7s-check:before {
content: "\e66c"; }
.pe-7s-chat:before {
content: "\e66d"; }
.pe-7s-cart:before {
content: "\e66e"; }
.pe-7s-camera:before {
content: "\e66f"; }
.pe-7s-call:before {
content: "\e670"; }
.pe-7s-calculator:before {
content: "\e671"; }
.pe-7s-browser:before {
content: "\e672"; }
.pe-7s-box2:before {
content: "\e673"; }
.pe-7s-box1:before {
content: "\e674"; }
.pe-7s-bookmarks:before {
content: "\e675"; }
.pe-7s-bicycle:before {
content: "\e676"; }
.pe-7s-bell:before {
content: "\e677"; }
.pe-7s-battery:before {
content: "\e678"; }
.pe-7s-ball:before {
content: "\e679"; }
.pe-7s-back:before {
content: "\e67a"; }
.pe-7s-attention:before {
content: "\e67b"; }
.pe-7s-anchor:before {
content: "\e67c"; }
.pe-7s-albums:before {
content: "\e67d"; }
.pe-7s-alarm:before {
content: "\e67e"; }
.pe-7s-airplay:before {
content: "\e67f"; }
/*# sourceMappingURL=pe-icon-7-stroke.css.map */
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,832 @@
@font-face {
font-family: "dripicons-v2";
src: url("../fonts/dripicons-v2.eot");
src: url("../fonts/dripicons-v2.eot?#iefix") format("embedded-opentype"), url("../fonts/dripicons-v2.woff") format("woff"), url("../fonts/dripicons-v2.ttf") format("truetype"), url("../fonts/dripicons-v2.svg#dripicons-v2") format("svg");
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: "dripicons-v2" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
[class^="dripicons-"]:before,
[class*=" dripicons-"]:before {
font-family: "dripicons-v2" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.dripicons-alarm:before {
content: "\61";
}
.dripicons-align-center:before {
content: "\62";
}
.dripicons-align-justify:before {
content: "\63";
}
.dripicons-align-left:before {
content: "\64";
}
.dripicons-align-right:before {
content: "\65";
}
.dripicons-anchor:before {
content: "\66";
}
.dripicons-archive:before {
content: "\67";
}
.dripicons-arrow-down:before {
content: "\68";
}
.dripicons-arrow-left:before {
content: "\69";
}
.dripicons-arrow-right:before {
content: "\6a";
}
.dripicons-arrow-thin-down:before {
content: "\6b";
}
.dripicons-arrow-thin-left:before {
content: "\6c";
}
.dripicons-arrow-thin-right:before {
content: "\6d";
}
.dripicons-arrow-thin-up:before {
content: "\6e";
}
.dripicons-arrow-up:before {
content: "\6f";
}
.dripicons-article:before {
content: "\70";
}
.dripicons-backspace:before {
content: "\71";
}
.dripicons-basket:before {
content: "\72";
}
.dripicons-basketball:before {
content: "\73";
}
.dripicons-battery-empty:before {
content: "\74";
}
.dripicons-battery-full:before {
content: "\75";
}
.dripicons-battery-low:before {
content: "\76";
}
.dripicons-battery-medium:before {
content: "\77";
}
.dripicons-bell:before {
content: "\78";
}
.dripicons-blog:before {
content: "\79";
}
.dripicons-bluetooth:before {
content: "\7a";
}
.dripicons-bold:before {
content: "\41";
}
.dripicons-bookmark:before {
content: "\42";
}
.dripicons-bookmarks:before {
content: "\43";
}
.dripicons-box:before {
content: "\44";
}
.dripicons-briefcase:before {
content: "\45";
}
.dripicons-brightness-low:before {
content: "\46";
}
.dripicons-brightness-max:before {
content: "\47";
}
.dripicons-brightness-medium:before {
content: "\48";
}
.dripicons-broadcast:before {
content: "\49";
}
.dripicons-browser:before {
content: "\4a";
}
.dripicons-browser-upload:before {
content: "\4b";
}
.dripicons-brush:before {
content: "\4c";
}
.dripicons-calendar:before {
content: "\4d";
}
.dripicons-camcorder:before {
content: "\4e";
}
.dripicons-camera:before {
content: "\4f";
}
.dripicons-card:before {
content: "\50";
}
.dripicons-cart:before {
content: "\51";
}
.dripicons-checklist:before {
content: "\52";
}
.dripicons-checkmark:before {
content: "\53";
}
.dripicons-chevron-down:before {
content: "\54";
}
.dripicons-chevron-left:before {
content: "\55";
}
.dripicons-chevron-right:before {
content: "\56";
}
.dripicons-chevron-up:before {
content: "\57";
}
.dripicons-clipboard:before {
content: "\58";
}
.dripicons-clock:before {
content: "\59";
}
.dripicons-clockwise:before {
content: "\5a";
}
.dripicons-cloud:before {
content: "\30";
}
.dripicons-cloud-download:before {
content: "\31";
}
.dripicons-cloud-upload:before {
content: "\32";
}
.dripicons-code:before {
content: "\33";
}
.dripicons-contract:before {
content: "\34";
}
.dripicons-contract-2:before {
content: "\35";
}
.dripicons-conversation:before {
content: "\36";
}
.dripicons-copy:before {
content: "\37";
}
.dripicons-crop:before {
content: "\38";
}
.dripicons-cross:before {
content: "\39";
}
.dripicons-crosshair:before {
content: "\21";
}
.dripicons-cutlery:before {
content: "\22";
}
.dripicons-device-desktop:before {
content: "\23";
}
.dripicons-device-mobile:before {
content: "\24";
}
.dripicons-device-tablet:before {
content: "\25";
}
.dripicons-direction:before {
content: "\26";
}
.dripicons-disc:before {
content: "\27";
}
.dripicons-document:before {
content: "\28";
}
.dripicons-document-delete:before {
content: "\29";
}
.dripicons-document-edit:before {
content: "\2a";
}
.dripicons-document-new:before {
content: "\2b";
}
.dripicons-document-remove:before {
content: "\2c";
}
.dripicons-dot:before {
content: "\2d";
}
.dripicons-dots-2:before {
content: "\2e";
}
.dripicons-dots-3:before {
content: "\2f";
}
.dripicons-download:before {
content: "\3a";
}
.dripicons-duplicate:before {
content: "\3b";
}
.dripicons-enter:before {
content: "\3c";
}
.dripicons-exit:before {
content: "\3d";
}
.dripicons-expand:before {
content: "\3e";
}
.dripicons-expand-2:before {
content: "\3f";
}
.dripicons-experiment:before {
content: "\40";
}
.dripicons-export:before {
content: "\5b";
}
.dripicons-feed:before {
content: "\5d";
}
.dripicons-flag:before {
content: "\5e";
}
.dripicons-flashlight:before {
content: "\5f";
}
.dripicons-folder:before {
content: "\60";
}
.dripicons-folder-open:before {
content: "\7b";
}
.dripicons-forward:before {
content: "\7c";
}
.dripicons-gaming:before {
content: "\7d";
}
.dripicons-gear:before {
content: "\7e";
}
.dripicons-graduation:before {
content: "\5c";
}
.dripicons-graph-bar:before {
content: "\e000";
}
.dripicons-graph-line:before {
content: "\e001";
}
.dripicons-graph-pie:before {
content: "\e002";
}
.dripicons-headset:before {
content: "\e003";
}
.dripicons-heart:before {
content: "\e004";
}
.dripicons-help:before {
content: "\e005";
}
.dripicons-home:before {
content: "\e006";
}
.dripicons-hourglass:before {
content: "\e007";
}
.dripicons-inbox:before {
content: "\e008";
}
.dripicons-information:before {
content: "\e009";
}
.dripicons-italic:before {
content: "\e00a";
}
.dripicons-jewel:before {
content: "\e00b";
}
.dripicons-lifting:before {
content: "\e00c";
}
.dripicons-lightbulb:before {
content: "\e00d";
}
.dripicons-link:before {
content: "\e00e";
}
.dripicons-link-broken:before {
content: "\e00f";
}
.dripicons-list:before {
content: "\e010";
}
.dripicons-loading:before {
content: "\e011";
}
.dripicons-location:before {
content: "\e012";
}
.dripicons-lock:before {
content: "\e013";
}
.dripicons-lock-open:before {
content: "\e014";
}
.dripicons-mail:before {
content: "\e015";
}
.dripicons-map:before {
content: "\e016";
}
.dripicons-media-loop:before {
content: "\e017";
}
.dripicons-media-next:before {
content: "\e018";
}
.dripicons-media-pause:before {
content: "\e019";
}
.dripicons-media-play:before {
content: "\e01a";
}
.dripicons-media-previous:before {
content: "\e01b";
}
.dripicons-media-record:before {
content: "\e01c";
}
.dripicons-media-shuffle:before {
content: "\e01d";
}
.dripicons-media-stop:before {
content: "\e01e";
}
.dripicons-medical:before {
content: "\e01f";
}
.dripicons-menu:before {
content: "\e020";
}
.dripicons-message:before {
content: "\e021";
}
.dripicons-meter:before {
content: "\e022";
}
.dripicons-microphone:before {
content: "\e023";
}
.dripicons-minus:before {
content: "\e024";
}
.dripicons-monitor:before {
content: "\e025";
}
.dripicons-move:before {
content: "\e026";
}
.dripicons-music:before {
content: "\e027";
}
.dripicons-network-1:before {
content: "\e028";
}
.dripicons-network-2:before {
content: "\e029";
}
.dripicons-network-3:before {
content: "\e02a";
}
.dripicons-network-4:before {
content: "\e02b";
}
.dripicons-network-5:before {
content: "\e02c";
}
.dripicons-pamphlet:before {
content: "\e02d";
}
.dripicons-paperclip:before {
content: "\e02e";
}
.dripicons-pencil:before {
content: "\e02f";
}
.dripicons-phone:before {
content: "\e030";
}
.dripicons-photo:before {
content: "\e031";
}
.dripicons-photo-group:before {
content: "\e032";
}
.dripicons-pill:before {
content: "\e033";
}
.dripicons-pin:before {
content: "\e034";
}
.dripicons-plus:before {
content: "\e035";
}
.dripicons-power:before {
content: "\e036";
}
.dripicons-preview:before {
content: "\e037";
}
.dripicons-print:before {
content: "\e038";
}
.dripicons-pulse:before {
content: "\e039";
}
.dripicons-question:before {
content: "\e03a";
}
.dripicons-reply:before {
content: "\e03b";
}
.dripicons-reply-all:before {
content: "\e03c";
}
.dripicons-return:before {
content: "\e03d";
}
.dripicons-retweet:before {
content: "\e03e";
}
.dripicons-rocket:before {
content: "\e03f";
}
.dripicons-scale:before {
content: "\e040";
}
.dripicons-search:before {
content: "\e041";
}
.dripicons-shopping-bag:before {
content: "\e042";
}
.dripicons-skip:before {
content: "\e043";
}
.dripicons-stack:before {
content: "\e044";
}
.dripicons-star:before {
content: "\e045";
}
.dripicons-stopwatch:before {
content: "\e046";
}
.dripicons-store:before {
content: "\e047";
}
.dripicons-suitcase:before {
content: "\e048";
}
.dripicons-swap:before {
content: "\e049";
}
.dripicons-tag:before {
content: "\e04a";
}
.dripicons-tag-delete:before {
content: "\e04b";
}
.dripicons-tags:before {
content: "\e04c";
}
.dripicons-thumbs-down:before {
content: "\e04d";
}
.dripicons-thumbs-up:before {
content: "\e04e";
}
.dripicons-ticket:before {
content: "\e04f";
}
.dripicons-time-reverse:before {
content: "\e050";
}
.dripicons-to-do:before {
content: "\e051";
}
.dripicons-toggles:before {
content: "\e052";
}
.dripicons-trash:before {
content: "\e053";
}
.dripicons-trophy:before {
content: "\e054";
}
.dripicons-upload:before {
content: "\e055";
}
.dripicons-user:before {
content: "\e056";
}
.dripicons-user-group:before {
content: "\e057";
}
.dripicons-user-id:before {
content: "\e058";
}
.dripicons-vibrate:before {
content: "\e059";
}
.dripicons-view-apps:before {
content: "\e05a";
}
.dripicons-view-list:before {
content: "\e05b";
}
.dripicons-view-list-large:before {
content: "\e05c";
}
.dripicons-view-thumb:before {
content: "\e05d";
}
.dripicons-volume-full:before {
content: "\e05e";
}
.dripicons-volume-low:before {
content: "\e05f";
}
.dripicons-volume-medium:before {
content: "\e060";
}
.dripicons-volume-off:before {
content: "\e061";
}
.dripicons-wallet:before {
content: "\e062";
}
.dripicons-warning:before {
content: "\e063";
}
.dripicons-web:before {
content: "\e064";
}
.dripicons-weight:before {
content: "\e065";
}
.dripicons-wifi:before {
content: "\e066";
}
.dripicons-wrong:before {
content: "\e067";
}
.dripicons-zoom-in:before {
content: "\e068";
}
.dripicons-zoom-out:before {
content: "\e069";
}
/*# sourceMappingURL=dripicons.css.map */
File diff suppressed because one or more lines are too long
@@ -0,0 +1,638 @@
@charset "UTF-8";
@font-face {
font-family: "dripicons-v2";
src:url("../fonts/dripicons-v2.eot");
src:url("../fonts/dripicons-v2.eot?#iefix") format("embedded-opentype"),
url("../fonts/dripicons-v2.woff") format("woff"),
url("../fonts/dripicons-v2.ttf") format("truetype"),
url("../fonts/dripicons-v2.svg#dripicons-v2") format("svg");
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: "dripicons-v2" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
[class^="dripicons-"]:before,
[class*=" dripicons-"]:before {
font-family: "dripicons-v2" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.dripicons-alarm:before {
content: "\61";
}
.dripicons-align-center:before {
content: "\62";
}
.dripicons-align-justify:before {
content: "\63";
}
.dripicons-align-left:before {
content: "\64";
}
.dripicons-align-right:before {
content: "\65";
}
.dripicons-anchor:before {
content: "\66";
}
.dripicons-archive:before {
content: "\67";
}
.dripicons-arrow-down:before {
content: "\68";
}
.dripicons-arrow-left:before {
content: "\69";
}
.dripicons-arrow-right:before {
content: "\6a";
}
.dripicons-arrow-thin-down:before {
content: "\6b";
}
.dripicons-arrow-thin-left:before {
content: "\6c";
}
.dripicons-arrow-thin-right:before {
content: "\6d";
}
.dripicons-arrow-thin-up:before {
content: "\6e";
}
.dripicons-arrow-up:before {
content: "\6f";
}
.dripicons-article:before {
content: "\70";
}
.dripicons-backspace:before {
content: "\71";
}
.dripicons-basket:before {
content: "\72";
}
.dripicons-basketball:before {
content: "\73";
}
.dripicons-battery-empty:before {
content: "\74";
}
.dripicons-battery-full:before {
content: "\75";
}
.dripicons-battery-low:before {
content: "\76";
}
.dripicons-battery-medium:before {
content: "\77";
}
.dripicons-bell:before {
content: "\78";
}
.dripicons-blog:before {
content: "\79";
}
.dripicons-bluetooth:before {
content: "\7a";
}
.dripicons-bold:before {
content: "\41";
}
.dripicons-bookmark:before {
content: "\42";
}
.dripicons-bookmarks:before {
content: "\43";
}
.dripicons-box:before {
content: "\44";
}
.dripicons-briefcase:before {
content: "\45";
}
.dripicons-brightness-low:before {
content: "\46";
}
.dripicons-brightness-max:before {
content: "\47";
}
.dripicons-brightness-medium:before {
content: "\48";
}
.dripicons-broadcast:before {
content: "\49";
}
.dripicons-browser:before {
content: "\4a";
}
.dripicons-browser-upload:before {
content: "\4b";
}
.dripicons-brush:before {
content: "\4c";
}
.dripicons-calendar:before {
content: "\4d";
}
.dripicons-camcorder:before {
content: "\4e";
}
.dripicons-camera:before {
content: "\4f";
}
.dripicons-card:before {
content: "\50";
}
.dripicons-cart:before {
content: "\51";
}
.dripicons-checklist:before {
content: "\52";
}
.dripicons-checkmark:before {
content: "\53";
}
.dripicons-chevron-down:before {
content: "\54";
}
.dripicons-chevron-left:before {
content: "\55";
}
.dripicons-chevron-right:before {
content: "\56";
}
.dripicons-chevron-up:before {
content: "\57";
}
.dripicons-clipboard:before {
content: "\58";
}
.dripicons-clock:before {
content: "\59";
}
.dripicons-clockwise:before {
content: "\5a";
}
.dripicons-cloud:before {
content: "\30";
}
.dripicons-cloud-download:before {
content: "\31";
}
.dripicons-cloud-upload:before {
content: "\32";
}
.dripicons-code:before {
content: "\33";
}
.dripicons-contract:before {
content: "\34";
}
.dripicons-contract-2:before {
content: "\35";
}
.dripicons-conversation:before {
content: "\36";
}
.dripicons-copy:before {
content: "\37";
}
.dripicons-crop:before {
content: "\38";
}
.dripicons-cross:before {
content: "\39";
}
.dripicons-crosshair:before {
content: "\21";
}
.dripicons-cutlery:before {
content: "\22";
}
.dripicons-device-desktop:before {
content: "\23";
}
.dripicons-device-mobile:before {
content: "\24";
}
.dripicons-device-tablet:before {
content: "\25";
}
.dripicons-direction:before {
content: "\26";
}
.dripicons-disc:before {
content: "\27";
}
.dripicons-document:before {
content: "\28";
}
.dripicons-document-delete:before {
content: "\29";
}
.dripicons-document-edit:before {
content: "\2a";
}
.dripicons-document-new:before {
content: "\2b";
}
.dripicons-document-remove:before {
content: "\2c";
}
.dripicons-dot:before {
content: "\2d";
}
.dripicons-dots-2:before {
content: "\2e";
}
.dripicons-dots-3:before {
content: "\2f";
}
.dripicons-download:before {
content: "\3a";
}
.dripicons-duplicate:before {
content: "\3b";
}
.dripicons-enter:before {
content: "\3c";
}
.dripicons-exit:before {
content: "\3d";
}
.dripicons-expand:before {
content: "\3e";
}
.dripicons-expand-2:before {
content: "\3f";
}
.dripicons-experiment:before {
content: "\40";
}
.dripicons-export:before {
content: "\5b";
}
.dripicons-feed:before {
content: "\5d";
}
.dripicons-flag:before {
content: "\5e";
}
.dripicons-flashlight:before {
content: "\5f";
}
.dripicons-folder:before {
content: "\60";
}
.dripicons-folder-open:before {
content: "\7b";
}
.dripicons-forward:before {
content: "\7c";
}
.dripicons-gaming:before {
content: "\7d";
}
.dripicons-gear:before {
content: "\7e";
}
.dripicons-graduation:before {
content: "\5c";
}
.dripicons-graph-bar:before {
content: "\e000";
}
.dripicons-graph-line:before {
content: "\e001";
}
.dripicons-graph-pie:before {
content: "\e002";
}
.dripicons-headset:before {
content: "\e003";
}
.dripicons-heart:before {
content: "\e004";
}
.dripicons-help:before {
content: "\e005";
}
.dripicons-home:before {
content: "\e006";
}
.dripicons-hourglass:before {
content: "\e007";
}
.dripicons-inbox:before {
content: "\e008";
}
.dripicons-information:before {
content: "\e009";
}
.dripicons-italic:before {
content: "\e00a";
}
.dripicons-jewel:before {
content: "\e00b";
}
.dripicons-lifting:before {
content: "\e00c";
}
.dripicons-lightbulb:before {
content: "\e00d";
}
.dripicons-link:before {
content: "\e00e";
}
.dripicons-link-broken:before {
content: "\e00f";
}
.dripicons-list:before {
content: "\e010";
}
.dripicons-loading:before {
content: "\e011";
}
.dripicons-location:before {
content: "\e012";
}
.dripicons-lock:before {
content: "\e013";
}
.dripicons-lock-open:before {
content: "\e014";
}
.dripicons-mail:before {
content: "\e015";
}
.dripicons-map:before {
content: "\e016";
}
.dripicons-media-loop:before {
content: "\e017";
}
.dripicons-media-next:before {
content: "\e018";
}
.dripicons-media-pause:before {
content: "\e019";
}
.dripicons-media-play:before {
content: "\e01a";
}
.dripicons-media-previous:before {
content: "\e01b";
}
.dripicons-media-record:before {
content: "\e01c";
}
.dripicons-media-shuffle:before {
content: "\e01d";
}
.dripicons-media-stop:before {
content: "\e01e";
}
.dripicons-medical:before {
content: "\e01f";
}
.dripicons-menu:before {
content: "\e020";
}
.dripicons-message:before {
content: "\e021";
}
.dripicons-meter:before {
content: "\e022";
}
.dripicons-microphone:before {
content: "\e023";
}
.dripicons-minus:before {
content: "\e024";
}
.dripicons-monitor:before {
content: "\e025";
}
.dripicons-move:before {
content: "\e026";
}
.dripicons-music:before {
content: "\e027";
}
.dripicons-network-1:before {
content: "\e028";
}
.dripicons-network-2:before {
content: "\e029";
}
.dripicons-network-3:before {
content: "\e02a";
}
.dripicons-network-4:before {
content: "\e02b";
}
.dripicons-network-5:before {
content: "\e02c";
}
.dripicons-pamphlet:before {
content: "\e02d";
}
.dripicons-paperclip:before {
content: "\e02e";
}
.dripicons-pencil:before {
content: "\e02f";
}
.dripicons-phone:before {
content: "\e030";
}
.dripicons-photo:before {
content: "\e031";
}
.dripicons-photo-group:before {
content: "\e032";
}
.dripicons-pill:before {
content: "\e033";
}
.dripicons-pin:before {
content: "\e034";
}
.dripicons-plus:before {
content: "\e035";
}
.dripicons-power:before {
content: "\e036";
}
.dripicons-preview:before {
content: "\e037";
}
.dripicons-print:before {
content: "\e038";
}
.dripicons-pulse:before {
content: "\e039";
}
.dripicons-question:before {
content: "\e03a";
}
.dripicons-reply:before {
content: "\e03b";
}
.dripicons-reply-all:before {
content: "\e03c";
}
.dripicons-return:before {
content: "\e03d";
}
.dripicons-retweet:before {
content: "\e03e";
}
.dripicons-rocket:before {
content: "\e03f";
}
.dripicons-scale:before {
content: "\e040";
}
.dripicons-search:before {
content: "\e041";
}
.dripicons-shopping-bag:before {
content: "\e042";
}
.dripicons-skip:before {
content: "\e043";
}
.dripicons-stack:before {
content: "\e044";
}
.dripicons-star:before {
content: "\e045";
}
.dripicons-stopwatch:before {
content: "\e046";
}
.dripicons-store:before {
content: "\e047";
}
.dripicons-suitcase:before {
content: "\e048";
}
.dripicons-swap:before {
content: "\e049";
}
.dripicons-tag:before {
content: "\e04a";
}
.dripicons-tag-delete:before {
content: "\e04b";
}
.dripicons-tags:before {
content: "\e04c";
}
.dripicons-thumbs-down:before {
content: "\e04d";
}
.dripicons-thumbs-up:before {
content: "\e04e";
}
.dripicons-ticket:before {
content: "\e04f";
}
.dripicons-time-reverse:before {
content: "\e050";
}
.dripicons-to-do:before {
content: "\e051";
}
.dripicons-toggles:before {
content: "\e052";
}
.dripicons-trash:before {
content: "\e053";
}
.dripicons-trophy:before {
content: "\e054";
}
.dripicons-upload:before {
content: "\e055";
}
.dripicons-user:before {
content: "\e056";
}
.dripicons-user-group:before {
content: "\e057";
}
.dripicons-user-id:before {
content: "\e058";
}
.dripicons-vibrate:before {
content: "\e059";
}
.dripicons-view-apps:before {
content: "\e05a";
}
.dripicons-view-list:before {
content: "\e05b";
}
.dripicons-view-list-large:before {
content: "\e05c";
}
.dripicons-view-thumb:before {
content: "\e05d";
}
.dripicons-volume-full:before {
content: "\e05e";
}
.dripicons-volume-low:before {
content: "\e05f";
}
.dripicons-volume-medium:before {
content: "\e060";
}
.dripicons-volume-off:before {
content: "\e061";
}
.dripicons-wallet:before {
content: "\e062";
}
.dripicons-warning:before {
content: "\e063";
}
.dripicons-web:before {
content: "\e064";
}
.dripicons-weight:before {
content: "\e065";
}
.dripicons-wifi:before {
content: "\e066";
}
.dripicons-wrong:before {
content: "\e067";
}
.dripicons-zoom-in:before {
content: "\e068";
}
.dripicons-zoom-out:before {
content: "\e069";
}
@@ -0,0 +1,210 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by Fontastic.me</metadata>
<defs>
<font id="dripicons-v2" horiz-adv-x="512">
<font-face font-family="dripicons-v2" units-per-em="512" ascent="480" descent="-32"/>
<missing-glyph horiz-adv-x="512" />
<glyph glyph-name="alarm" unicode="&#97;" d="M459 344c6 5 30 28 31 62 0 25-11 47-35 67 0 0 0 1 0 1-28 21-53 22-68 20-27-5-46-25-54-35-24 9-50 14-77 14-27 0-53-5-77-13-8 10-26 30-53 35-16 3-40 1-68-20 0 0-1-1-1-1-24-21-35-43-35-68 1-34 25-57 31-62-13-29-21-61-21-96 0-56 21-108 56-147-1-1-1-1-1-1l-32-49c-7-10-4-24 6-30 4-3 8-4 12-4 7 0 14 3 18 10l29 43c38-29 85-46 136-46 51 0 99 17 136 47l30-44c4-7 11-10 18-10 5 0 9 1 12 4 10 6 13 20 7 30l-33 49c0 0-1 1-1 1 34 40 54 91 54 147 1 35-7 67-20 96z m-64 106c9 2 20-2 31-11 13-11 19-22 19-32 0-10-5-19-10-24-17 22-38 41-61 56 6 5 13 10 21 11z m-328-43c0 10 6 21 19 32 11 9 22 13 31 11 8-1 15-6 21-11-23-15-44-34-61-56-4 6-10 14-10 24z m189-339c-99 0-179 81-179 180 0 99 80 181 179 181 99 0 179-81 179-180 0-99-80-181-179-181z m81 131c9-9 9-23 0-31-5-5-10-7-16-7-5 0-11 2-15 7l-66 65c-3 4-6 10-6 15l0 120c0 13 10 23 22 23 12 0 22-10 22-23l0-110z"/>
<glyph glyph-name="align-center" unicode="&#98;" d="M456 412l-400 0c-13 0-23 10-23 22 0 12 10 22 23 22l400 0c13 0 23-10 23-22 0-12-10-22-23-22z m-63-97c0 12-10 22-22 22l-230 0c-12 0-22-10-22-22 0-12 10-22 22-22l230 0c12 0 22 10 22 22z m34-119c0 13-10 23-22 23l-298 0c-12 0-22-10-22-23 0-12 10-22 22-22l298 0c12 0 22 10 22 22z m41-118c0 12-10 22-22 22l-380 0c-12 0-22-10-22-22 0-12 10-22 22-22l379 0c13 0 23 10 23 22z"/>
<glyph glyph-name="align-justify" unicode="&#99;" d="M456 412l-400 0c-13 0-23 10-23 22 0 12 10 22 23 22l400 0c13 0 23-10 23-22 0-12-10-22-23-22z m23-97c0 12-10 22-23 22l-400 0c-13 0-23-10-23-22 0-12 10-22 23-22l400 0c13 0 23 10 23 22z m0-119c0 13-10 23-23 23l-400 0c-13 0-23-10-23-23 0-12 10-22 23-22l400 0c13 0 23 10 23 22z m-201-118c0 12-10 22-22 22l-199 0c-12 0-22-10-22-22 0-12 10-22 22-22l199 0c12 0 22 10 22 22z"/>
<glyph glyph-name="align-left" unicode="&#100;" d="M456 412l-400 0c-13 0-23 10-23 22 0 12 10 22 23 22l400 0c13 0 23-10 23-22 0-12-10-22-23-22z m-148-97c0 12-10 22-22 22l-230 0c-13 0-23-10-23-22 0-12 10-22 23-22l230 0c12 0 22 10 22 22z m68-119c0 13-10 23-22 23l-298 0c-13 0-23-10-23-23 0-12 10-22 23-22l298 0c12 0 22 10 22 22z m83-118c0 12-10 22-23 22l-379 0c-12 0-22-10-22-22 0-12 10-22 22-22l379 0c13 0 23 10 23 22z"/>
<glyph glyph-name="align-right" unicode="&#101;" d="M456 412l-400 0c-13 0-23 10-23 22 0 12 10 22 23 22l400 0c13 0 23-10 23-22 0-12-10-22-23-22z m23-97c0 12-10 22-23 22l-230 0c-12 0-22-10-22-22 0-12 10-22 22-22l230 0c13 0 23 10 23 22z m0-119c0 13-10 23-23 23l-298 0c-12 0-22-10-22-23 0-12 10-22 22-22l298 0c13 0 23 10 23 22z m-2-118c0 12-10 22-22 22l-379 0c-13 0-23-10-23-22 0-12 10-22 23-22l379 0c12 0 22 10 22 22z"/>
<glyph glyph-name="anchor" unicode="&#102;" d="M485 215c-5 5-11 8-18 8l-71 0c-13 0-23-10-23-23 0-12 10-22 23-22l43 0c-22-72-85-123-161-132l0 295c37 10 64 44 64 84 0 48-38 87-86 87-48 0-86-39-86-87 0-40 25-74 64-84l0-295c-78 9-139 60-161 132l43 0c13 0 23 10 23 22 0 13-10 23-23 23l-71 0c-7 0-13-3-18-8-4-5-6-11-5-17 20-115 118-198 234-198 116 0 214 83 233 198 1 6 0 12-4 17z m-271 210c0 24 19 42 42 42 23 0 42-18 42-42 0-23-19-42-42-42-23 0-42 19-42 42z"/>
<glyph glyph-name="archive" unicode="&#103;" d="M87 390c0 12 10 22 23 22l292 0c12 0 22-10 22-22 0-13-10-23-22-23l-292 0c-13 0-23 10-23 23z m59 55l220 0c10 0 19 9 19 20 0 10-9 19-19 19l-220 0c-10 0-19-9-19-19 0-11 9-20 19-20z m366-81l0-61c0-2-1-4-1-6l-71-259c-3-9-11-16-21-16l-327 0c-10 0-19 7-21 17l-70 258c0 1 0 2-1 4 0 1 0 2 0 3l0 60c0 12 10 22 22 22 13 0 23-10 23-22l0-41 422 0 0 41c0 12 10 22 23 22 12 0 22-10 22-22z m-52-86l-409 0 58-211 292 0z m-270-111l132 0c12 0 22 10 22 22 0 12-10 22-22 22l-132 0c-12 0-22-10-22-22 0-12 10-22 22-22z"/>
<glyph glyph-name="arrow-down" unicode="&#104;" d="M444 236c-4 8-12 14-21 14l-72 0 0 206c0 13-13 23-25 23l-140 0c-12 0-25-10-25-23l0-206-72 0c-9 0-17-6-21-14-3-8-1-18 5-25l167-170c4-5 10-7 16-7 6 0 12 2 16 7l167 170c6 7 8 17 5 25z m-188-146l-114 116 44 0c13 0 20 8 20 20l0 208 100 0 0-208c0-12 7-20 20-20l44 0z"/>
<glyph glyph-name="arrow-left" unicode="&#105;" d="M456 351l-206 0 0 72c0 9-6 17-14 21-8 3-18 1-25-5l-170-167c-5-4-8-10-8-16 0-6 3-12 7-16l170-167c5-4 10-6 16-6 3 0 7 0 9 1 9 4 15 12 15 21l0 72 206 0c12 0 22 13 22 25l0 140c1 12-9 25-22 25z m-22-145l-208 0c-12 0-20-7-20-20l0-44-116 114 116 114 0-44c0-13 8-20 20-20l208 0z"/>
<glyph glyph-name="arrow-right" unicode="&#106;" d="M472 272l-170 167c-7 6-18 8-25 5-9-4-15-12-15-21l0-72-206 0c-13 0-23-13-23-25l0-140c0-12 10-25 23-25l206 0 0-72c0-9 6-17 14-21 3-1 6-1 9-1 6 0 12 2 16 6l170 167c4 4 6 10 6 16 0 6-1 12-5 16z m-166-130l0 44c0 13-8 20-20 20l-208 0 0 100 208 0c12 0 20 7 20 20l0 44 116-114z"/>
<glyph glyph-name="arrow-thin-down" unicode="&#107;" d="M411 190l-139-139c-5-4-10-6-16-6-6 0-11 2-16 6l-139 139c-9 9-9 23 0 31 9 9 23 9 32 0l101-101 0 325c0 12 10 22 22 22 12 0 22-10 22-22l0-325 102 101c8 9 22 9 31 0 9-8 9-22 0-31z"/>
<glyph glyph-name="arrow-thin-left" unicode="&#108;" d="M467 256c0-12-10-22-22-22l-325 0 101-102c9-8 9-22 0-31-4-4-10-6-16-6-5 0-11 2-15 6l-139 139c-9 9-9 23 0 32l139 139c9 9 23 9 31 0 9-9 9-23 0-32l-101-101 325 0c12 0 22-10 22-22z"/>
<glyph glyph-name="arrow-thin-right" unicode="&#109;" d="M461 240l-139-139c-4-4-10-6-15-6-6 0-11 2-16 6-9 9-9 23 0 32l101 101-325 0c-12 0-22 10-22 22 0 12 10 22 22 22l325 0-101 102c-9 8-9 22 0 31 8 9 22 9 31 0l139-139c9-9 9-23 0-32z"/>
<glyph glyph-name="arrow-thin-up" unicode="&#110;" d="M411 291c-5-5-10-7-16-7-5 0-11 2-15 7l-102 101 0-325c0-12-10-22-22-22-12 0-22 10-22 22l0 325-102-101c-8-9-22-9-31 0-9 8-9 22 0 31l139 139c9 9 23 9 31 0l139-139c10-9 10-23 1-31z"/>
<glyph glyph-name="arrow-up" unicode="&#111;" d="M439 302l-167 170c-4 4-10 7-16 7-6 0-12-3-16-7l-167-170c-6-6-8-18-5-25 4-9 12-15 21-15l72 0 0-206c0-12 13-22 25-22l140 0c12 0 25 10 25 22l0 206 72 0c9 0 17 6 21 14 3 8 1 19-5 26z m-113 4c-13 0-20-8-20-20l0-208-100 0 0 208c0 12-7 20-20 20l-44 0 114 116 114-116z"/>
<glyph glyph-name="article" unicode="&#112;" d="M423 501l-334 0c-12 0-22-10-22-22l0-446c0-12 10-22 22-22l334 0c12 0 22 10 22 22l0 446c0 12-10 22-22 22z m-22-445l-290 0 0 400 290 0z m-234 80c0 11 9 20 19 20l133 0c10 0 19-9 19-20 0-10-8-19-19-19l-133 0c-10 0-19 9-19 19z m0 78c0 11 9 20 19 20l133 0c10 0 19-9 19-20 0-10-8-19-19-19l-133 0c-10 0-19 9-19 19z m172 162c0 10-8 19-19 19l-134 0c-10 0-19-9-19-19l0-78c0-11 9-20 19-20l134 0c11 0 19 9 19 20z m-133-20l95 0 0-39-95 0z"/>
<glyph glyph-name="backspace" unicode="&#113;" d="M512 258l0-98c0-14-8-25-22-25-14 0-23 11-23 25l0 73-380 0 57-56c10-9 9-25-1-35-5-5-12-7-18-7-6 0-13 2-18 7l-100 98c-4 5-7 12-7 18 0 7 3 13 7 17l100 99c9 9 25 9 35 0 9-9 9-25-1-35l-56-56 401 0c7 0 14-3 19-8 4-4 7-11 7-17z"/>
<glyph glyph-name="basket" unicode="&#114;" d="M490 351l-61 0c0 0-1 1-1 2l-105 128c-8 10-22 12-31 4-10-8-12-23-4-33l83-101-230 0 83 101c8 10 6 24-4 32-9 8-23 7-31-3l-105-129c0 0-1-1-1-1l-61 0c-12 0-22-8-22-20l0-84c0-12 10-24 22-24l7 0 42-170c5-19 22-31 42-31l286 0c20 0 37 13 42 31l42 170 7 0c12 0 22 12 22 24l0 84c0 12-10 20-22 20z m-445-45l422 0 0-39-422 0z m353-239l-284 0-39 156 362 0z"/>
<glyph glyph-name="basketball" unicode="&#115;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m161-392c-14 13-38 41-47 84 43 6 75 15 95 22-5-40-23-76-48-106z m-370 107c20-8 52-17 95-23-8-43-33-71-47-84-25 30-43 66-48 107z m35 149c18-19 56-67 62-127-54 8-86 20-99 26 4 37 17 72 37 101z m384-101c-12-6-44-18-98-26 5 60 44 108 62 127 20-29 33-64 36-101z m-143-31c-14-1-29-2-45-2l0 224c48-5 90-25 123-56-21-22-74-84-78-166z m-89-3c-16 1-31 1-45 2-4 83-58 145-78 167 33 30 75 51 122 56l0-225z m-48-42c15-1 30-2 48-2l0-151c-40 4-77 20-108 43 20 19 50 55 60 110z m92-3c17 1 33 2 48 3 10-55 40-92 60-111-30-23-68-38-108-43z"/>
<glyph glyph-name="battery-empty" unicode="&#116;" d="M490 317l-17 0 0 61c0 13-9 23-22 23l-429 0c-12 0-22-10-22-23l0-244c0-13 10-23 22-23l429 0c12 0 22 10 22 23l0 61 17 0c12 0 22 8 22 20l0 82c0 12-10 20-22 20z m-61-161l-384 0 0 200 384 0z"/>
<glyph glyph-name="battery-full" unicode="&#117;" d="M195 211l0 90c0 12 10 22 22 22l39 0c12 0 22-10 22-22l0-90c0-12-10-22-22-22l-39 0c-12 0-22 10-22 22z m139-22l39 0c12 0 22 10 22 22l0 57c0 6-1 11-5 15l-29 33c-5 5-10 7-17 7l-10 0c-12 0-22-9-22-21l0-91c0-12 10-22 22-22z m-234 0l39 0c12 0 22 10 22 22l0 90c0 12-10 22-22 22l-39 0c-12 0-22-10-22-22l0-90c0-12 10-22 22-22z m412 108l0-82c0-12-10-20-22-20l-17 0 0-61c0-13-9-23-22-23l-429 0c-12 0-22 10-22 23l0 244c0 13 10 23 22 23l429 0c12 0 22-10 22-23l0-61 17 0c12 0 22-8 22-20z m-83 59l-384 0 0-200 384 0z"/>
<glyph glyph-name="battery-low" unicode="&#118;" d="M490 317l-17 0 0 61c0 13-9 23-22 23l-429 0c-12 0-22-10-22-23l0-244c0-13 10-23 22-23l429 0c12 0 22 10 22 23l0 61 17 0c12 0 22 8 22 20l0 82c0 12-10 20-22 20z m-61-161l-384 0 0 200 384 0z m-268 55c0-12-10-22-22-22l-39 0c-12 0-22 10-22 22l0 90c0 12 10 22 22 22l39 0c12 0 22-10 22-22z"/>
<glyph glyph-name="battery-medium" unicode="&#119;" d="M490 317l-17 0 0 61c0 13-9 23-22 23l-429 0c-12 0-22-10-22-23l0-244c0-13 10-23 22-23l429 0c12 0 22 10 22 23l0 61 17 0c12 0 22 8 22 20l0 82c0 12-10 20-22 20z m-61-161l-384 0 0 200 384 0z m-268 55c0-12-10-22-22-22l-39 0c-12 0-22 10-22 22l0 90c0 12 10 22 22 22l39 0c12 0 22-10 22-22z m117 0c0-12-10-22-22-22l-39 0c-12 0-22 10-22 22l0 90c0 12 10 22 22 22l39 0c12 0 22-10 22-22z"/>
<glyph glyph-name="bell" unicode="&#120;" d="M467 114c-37 0-51 22-51 158 0 107-49 174-132 184l0 34c0 13-10 23-22 23-13 0-23-10-23-23l0-33c-89-7-140-75-140-184 0-137-17-158-54-158-12-1-23-9-23-22 0-12 10-21 23-21l144 0c2-16 7-37 20-51 12-13 28-20 46-20 18 0 34 7 46 20 13 15 19 35 21 51l145 0c13 0 23 9 23 21 0 13-10 21-23 21z m-199-63c-2-3-5-6-13-6-7 0-11 3-13 6-4 5-7 10-8 21l19 0c1 0 2 0 4 0 1 0 2 0 3 0l18 0c-2-11-5-16-10-21z m-9 66c-1 0-2 0-3 0-1 0-2 0-3 0l-132 0c21 39 21 99 21 156 0 91 39 139 111 139l6 0c71 0 111-48 111-139 0-57 0-117 20-156z m79 197c1-10-7-20-18-20-1 0-1 0-1 0-10 0-19 8-20 18-1 25-21 34-23 35-10 5-14 16-11 26 4 10 15 14 26 10 2-1 45-18 47-69z"/>
<glyph glyph-name="blog" unicode="&#121;" d="M423 501l-334 0c-12 0-22-10-22-22l0-446c0-12 10-22 22-22l334 0c12 0 22 10 22 22l0 446c0 12-10 22-22 22z m-22-445l-290 0 0 400 290 0z m-242 94c0 13 10 23 22 23l150 0c12 0 22-10 22-23 0-12-10-22-22-22l-150 0c-12 0-22 10-22 22z m3 106c0 12 10 22 22 22l147 0c12 0 22-10 22-22 0-12-10-22-22-22l-147 0c-12 0-22 10-22 22z m0 106c0 12 10 22 22 22l147 0c12 0 22-10 22-22 0-13-10-23-22-23l-147 0c-12 0-22 10-22 23z"/>
<glyph glyph-name="bluetooth" unicode="&#122;" d="M289 256l99 99c9 8 9 22 0 31l-116 119c-7 7-16 9-24 5-9-3-14-11-14-20l0-179-79 78c-9 9-23 8-32 0-9-9-8-23 0-32l103-101-102-102c-9-9-9-23 0-32 4-4 10-6 15-6 6 0 11 2 16 6l79 79 0-179c0-9 5-17 14-20 2-1 5-2 8-2 6 0 12 2 16 7l117 119c8 9 8 23 0 31z m-11 179l63-64-63-63z m0-358l0 127 63-63z"/>
<glyph glyph-name="bold" unicode="&#65;" d="M334 266c21 20 34 48 34 79 0 61-50 111-111 111l-118 0c-12 0-22-10-22-22l0-356c0-12 10-22 22-22l145 0c61 0 111 50 111 111 0 43-24 80-61 99z m-173 146l96 0c36 0 66-30 66-67 0-37-30-67-66-67l-96 0z m123-312l-123 0 0 134 123 0c37 0 67-30 67-67 0-37-30-67-67-67z"/>
<glyph glyph-name="bookmark" unicode="&#66;" d="M356 512l-200 0c-12 0-22-10-22-22l0-468c0-9 5-17 13-20 3-1 6-2 9-2 6 0 12 2 16 7l82 87 86-87c6-6 16-8 25-5 8 3 13 11 13 20l0 468c0 12-10 22-22 22z m-22-436l-65 66c-4 5-10 8-15 8-6 0-12-4-16-8l-60-64 0 389 156 0z"/>
<glyph glyph-name="bookmarks" unicode="&#67;" d="M295 417l-161 0c-13 0-23-8-23-20l0-375c0-9 6-17 14-20 3-1 6-2 9-2 6 0 11 2 16 7l63 66 66-67c6-6 16-8 24-5 9 4 14 12 14 21l0 375c0 12-10 20-22 20z m-22-341l-45 45c-4 5-10 7-15 7-7 0-12-3-17-7l-40-43 0 295 117 0z m122 419l0-374c0-11-9-20-19-20-11 0-20 9-20 20l0 352-117 0 0-7c0-11-9-20-19-20-11 0-20 9-20 20l0 29c0 11 6 17 17 17l161 0c11 0 17-6 17-17z"/>
<glyph glyph-name="box" unicode="&#68;" d="M416 378l-320 0c-12 0-22-10-22-22l-3-284c0-6 2-11 6-16 5-4 10-6 16-6l325 0c6 0 12 2 16 6 4 5 6 10 6 16l-2 284c0 12-10 22-22 22z m-160-283l-141 0 3 239 275 0 2-239z m71 178c0-13-10-23-22-23l-98 0c-12 0-22 10-22 23 0 12 10 22 22 22l97 0c13 0 23-10 23-22z m167 89c-1 0-3 0-4 0-11 0-20 7-22 18l-7 37-410 0-7-37c-2-13-14-20-26-18-12 2-20 14-18 26l11 56c2 10 11 18 22 18l446 0c10 0 20-8 21-18l11-56c3-12-5-23-17-26z"/>
<glyph glyph-name="briefcase" unicode="&#69;" d="M505 385c-4 3-9 5-15 5l-117 0 0 66c0 13-11 23-24 23l-186 0c-13 0-24-10-24-23l0-66-117 0c-12 0-22-8-22-20l0-314c0-13 10-23 22-23l468 0c12 0 22 10 22 23l0 313c0 6-2 11-7 16z m-321 49l144 0 0-44-144 0z m283-89l0-117-155 0 0 9c0 9-9 13-19 13l-74 0c-10 0-19-5-19-13l0-9-155 0 0 117z m-189-128l0-11-44 0 0 11z m-233-139l0 117 155 0 0-6c0-9 9-16 19-16l75 0c9 0 18 7 18 16l0 6 156 0 0-117z"/>
<glyph glyph-name="brightness-low" unicode="&#70;" d="M256 352c-53 0-96-43-96-96 0-53 43-96 96-96 53 0 96 43 96 96 0 53-43 96-96 96z m0-148c-28 0-52 24-52 52 0 28 24 52 52 52 28 0 52-24 52-52 0-28-24-52-52-52z m-22 204l0 21c0 12 10 22 22 22 12 0 22-10 22-22l0-21c0-12-10-22-22-22-12 0-22 10-22 22z m217-152c0-12-10-22-22-22l-21 0c-12 0-22 10-22 22 0 12 10 22 22 22l21 0c12 0 22-10 22-22z m-173-152l0-21c0-12-10-22-22-22-12 0-22 10-22 22l0 21c0 12 10 22 22 22 12 0 22-10 22-22z m-174 130l-21 0c-12 0-22 10-22 22 0 12 10 22 22 22l21 0c12 0 22-10 22-22 0-12-10-22-22-22z m244 114c-9 9-9 23 0 32l14 13c9 9 23 9 31 0 9-8 9-22 0-31l-13-14c-5-5-10-7-16-7-6 1-12 3-16 7z m45-198c9-9 9-23 0-32-4-4-10-7-15-7-6 0-11 3-16 7l-14 14c-9 9-9 23 0 32 9 9 23 9 32 0z m-229 14c9-9 9-23 0-32l-14-13c-4-5-10-7-15-7-6 0-11 2-16 7-9 8-9 22 0 31l14 14c8 9 22 9 31 0z m-45 198c-9 9-9 23 0 32 8 9 22 9 31 0l14-14c9-9 9-23 0-32-4-4-10-6-15-6-6 0-12 2-16 6z"/>
<glyph glyph-name="brightness-max" unicode="&#71;" d="M256 380c-68 0-124-56-124-124 0-68 56-124 124-124 68 0 124 56 124 124 0 68-56 124-124 124z m0-204c-44 0-80 36-80 80 0 44 36 80 80 80 44 0 80-36 80-80 0-44-36-80-80-80z m-22 268l0 46c0 12 10 22 22 22 12 0 22-10 22-22l0-46c0-13-10-23-22-23-12 0-22 10-22 23z m278-188c0-12-10-22-22-22l-46 0c-13 0-23 10-23 22 0 12 10 22 23 22l46 0c12 0 22-10 22-22z m-234-188l0-46c0-12-10-22-22-22-12 0-22 10-22 22l0 46c0 13 10 23 22 23 12 0 22-10 22-23z m-210 166l-46 0c-12 0-22 10-22 22 0 12 10 22 22 22l46 0c13 0 23-10 23-22 0-12-10-22-23-22z m305 139c-9 9-9 23 0 32l32 32c9 9 23 9 32 0 9-9 9-23 0-32l-32-32c-5-5-10-7-16-7-6 0-12 2-16 7z m64-267c9-9 9-23 0-31-5-5-10-7-16-7-5 0-11 2-15 7l-33 32c-9 9-9 23 0 32 9 9 23 9 32 0z m-298 33c9-9 9-23 0-32l-32-32c-5-4-10-7-16-7-5 0-11 3-15 7-9 9-9 23 0 32l32 32c8 8 22 8 31 0z m-64 267c-9 9-9 23 0 31 9 9 23 9 32 0l32-32c9-9 9-23 0-32-4-4-10-6-15-6-6 0-12 2-16 6z"/>
<glyph glyph-name="brightness-medium" unicode="&#72;" d="M256 380c-68 0-124-56-124-124 0-68 56-124 124-124 68 0 124 56 124 124 0 68-56 124-124 124z m-80-124c0 44 36 80 80 80l0-159c-44-1-80 35-80 79z m58 188l0 46c0 12 10 22 22 22 12 0 22-10 22-22l0-46c0-13-10-23-22-23-12 0-22 10-22 23z m278-188c0-12-10-22-22-22l-46 0c-13 0-23 10-23 22 0 12 10 22 23 22l46 0c12 0 22-10 22-22z m-234-188l0-46c0-12-10-22-22-22-12 0-22 10-22 22l0 46c0 13 10 23 22 23 12 0 22-10 22-23z m-210 166l-46 0c-12 0-22 10-22 22 0 12 10 22 22 22l46 0c13 0 23-10 23-22 0-12-10-22-23-22z m305 139c-9 9-9 23 0 32l32 32c9 9 23 9 32 0 9-9 9-23 0-32l-32-32c-5-5-10-7-16-7-6 1-12 2-16 7z m64-267c9-9 9-23 0-31-5-5-10-7-16-7-5 0-11 2-15 7l-33 32c-9 9-9 23 0 32 9 9 23 9 32 0z m-298 33c9-9 9-23 0-32l-32-32c-5-4-10-7-16-7-5 0-11 3-15 7-9 9-9 23 0 32l32 32c8 8 22 8 31 0z m-64 267c-9 9-9 23 0 31 9 9 23 9 32 0l32-32c9-9 9-23 0-32-4-4-10-6-15-6-6 0-12 2-16 6z"/>
<glyph glyph-name="broadcast" unicode="&#73;" d="M509 321c-5 17-15 30-30 38-19 10-41 9-57 6l-32 114c-2 8-8 14-16 16-8 1-16-1-22-7-79-89-112-111-200-149l-69-20c-61-17-96-82-79-143 9-29 28-54 56-69 17-10 36-15 55-15 9 0 18 1 27 4l7-26c4-14 12-27 22-37l12-11c4-4 10-6 15-6 6 0 12 2 16 7 9 9 9 23-1 32l-12 11c-4 4-7 10-9 16l-7 26 32 9c92 14 134 13 247-19 2-1 4-1 6-1 6 0 12 2 16 7 5 5 8 13 5 21l-32 114c14 6 34 16 45 34 8 15 10 31 5 48z m-428-175c-16 9-28 24-34 42-10 38 11 77 48 88l50 15 23-81 16-56-50-14c-18-5-37-3-53 6z m227 24c-25 0-50-2-80-6l-32 114-8 28c70 32 108 57 170 123l79-278c-52 14-90 19-129 19z m158 127c-4-6-12-11-20-14l-11 39c9 1 18 1 24-3 3-1 6-3 8-10 2-6 0-10-1-12z m-142 36c7-9 5-21-4-27-21-14-44-27-45-28-3-1-6-2-9-2-7 0-14 4-17 11-5 9-1 21 8 26 0 0 22 11 40 24 9 7 21 5 27-4z"/>
<glyph glyph-name="browser" unicode="&#74;" d="M490 462l-468 0c-12 0-22-10-22-22l0-368c0-12 10-22 22-22l468 0c12 0 22 10 22 22l0 368c0 12-10 22-22 22z m-23-95l-155 0 0 50 155 0z m-333 0l0 50 55 0 0-50z m89 50l55 0 0-50-55 0z m-123 0l0-50-55 0 0 50z m-55-322l0 233 422 0 0-233z"/>
<glyph glyph-name="browser-upload" unicode="&#75;" d="M278 250l1-228c0-12-10-22-22-22-13 0-23 10-23 22l0 229-65-65c-9-8-23-8-32 0-8 9-8 23 0 32l103 102c9 8 23 8 31 0l102-102c9-9 9-23 0-32-4-4-10-6-15-6-6 0-11 2-16 6z m234 240l0-371c0-13-10-24-22-24l-137 0c-12 0-22 10-22 22 0 12 10 22 22 22l114 0 0 239-422 0 0-239 116 0c12 0 22-10 22-22 0-12-10-22-22-22l-139 0c-12 0-22 11-22 24l0 371c0 12 10 22 22 22l468 0c12 0 22-10 22-22z m-289-73l55 0 0 50-55 0z m-34 50l-55 0 0-50 55 0z m-144-50l55 0 0 50-55 0z m422 0l0 50-155 0 0-50z"/>
<glyph glyph-name="brush" unicode="&#76;" d="M512 464c0 12-5 24-14 33l-1 1c-18 18-48 18-66 1l-272-252c-37 7-76-3-104-31-38-38-38-80-37-106 0-3 0-6 0-9-1-21-11-46-16-54-3-6-3-12-1-18 2-6 7-11 12-13 27-11 53-16 78-16 44 0 85 17 117 48 26 27 41 58 41 90 0 8-1 15-2 22l251 271c9 9 14 20 14 33z m-335-384c-33-33-78-43-125-30 5 14 10 32 10 50 0 4 0 7 0 11 0 23-1 49 24 73 27 27 71 27 98 0 14-13 21-29 21-46 0-19-10-40-28-58z m290 382c0 0-1-1-1-1l-239-257c-4 4-7 8-11 12-4 4-8 7-12 11l257 239c0 0 1 1 1 1 1 1 3 1 4 0l1-1c0-1 0-2 0-2 0-1 0-2 0-2z"/>
<glyph glyph-name="calendar" unicode="&#77;" d="M122 391l0 71c0 15 13 28 28 28 16 0 28-13 28-28l0-71c0-16-12-28-28-28-15 0-28 12-28 28z m240-28c15 0 28 12 28 28l0 71c0 15-13 28-28 28-16 0-28-13-28-28l0-71c0-16 12-28 28-28z m150 63l0-376c0-12-10-22-22-22l-468 0c-12 0-22 10-22 22l0 376c0 13 10 25 22 25l52 0c12 0 22-10 22-22 0-13-10-23-22-23l-29 0 0-94 422 0 0 94-29 0c-12 0-22 10-22 23 0 12 10 22 22 22l52 0c12 0 22-12 22-25z m-45-354l0 201-422 0 0-201z m-246 334l70 0c12 0 22 10 22 23 0 12-10 22-22 22l-70 0c-12 0-22-10-22-22 0-13 10-23 22-23z"/>
<glyph glyph-name="camcorder" unicode="&#78;" d="M500 393c-8 4-18 3-25-2l-91-68 0 50c0 12-8 22-20 22l-342 0c-12 0-22-10-22-22l0-234c0-12 10-22 22-22l342 0c12 0 20 10 20 22l0 50 91-68c4-2 10-4 14-4 4 0 7 0 10 2 8 4 13 12 13 20l0 234c0 8-5 16-12 20z m-161-232l-294 0 0 190 294 0z m128 23l-77 59 0 26 77 59z"/>
<glyph glyph-name="camera" unicode="&#79;" d="M256 362c-70 0-127-58-127-129 0-72 57-129 127-129 70 0 127 57 127 129 0 71-57 129-127 129z m0-215c-46 0-83 38-83 85 0 47 37 85 83 85 46 0 83-38 83-84 0-47-37-86-83-86z m62 80c-1-10-10-17-20-17-1 0-1 0-2 0-11 2-19 11-17 22 2 16-17 25-18 26-9 4-14 16-9 25 4 10 15 14 25 10 18-8 46-30 41-66z m-43-24c4-4 7-10 7-16 0-6-3-12-7-16-5-3-10-6-16-6-5 0-11 2-15 6-4 5-7 10-7 16 0 6 2 12 7 16 4 4 10 6 15 6 6 0 12-2 16-6z m215 164l-86 0-24 89c-3 10-12 17-22 17l-205 0c-10 0-19-7-22-17l-24-89-85 0c-12 0-22-9-22-21l0-285c0-12 10-22 22-22l468 0c12 0 22 10 22 22l0 285c0 12-10 21-22 21z m-23-284l-422 0 0 240 80 0c10 0 19 7 21 16l24 90 172 0 24-90c2-9 11-16 21-16l80 0z"/>
<glyph glyph-name="card" unicode="&#80;" d="M512 382c0 23-18 41-41 41l-430 0c-23 0-41-18-41-41l0-252c0-23 18-41 41-41l430 0c23 0 42 18 42 41l0 252z m-45-4l0-39-422 0 0 39z m-422-244l0 139 422 0 0-139z m381 72c0-12-10-22-23-22l-105 0c-13 0-23 10-23 22 0 12 10 22 23 22l105 0c13 0 23-10 23-22z"/>
<glyph glyph-name="cart" unicode="&#81;" d="M511 360l-60-187c-4-14-16-23-30-23l-230 0c-13 0-26 9-30 21l-88 235-51 0c-12 0-22 10-22 23 0 12 10 22 22 22l66 0c10 0 18-6 22-15l90-241 212 0 47 150-262 0c-12 0-22 10-22 22 0 13 10 23 22 23l293 0c7 0 14-4 18-10 4-5 5-13 3-20z m-308-239c-10 0-19-4-26-11-7-6-11-16-11-25 0-10 4-19 11-26 7-7 16-11 26-11 9 0 18 4 25 11 7 7 11 16 11 26 0 9-4 19-11 25-7 7-16 11-25 11z m199 0c-9 0-19-4-25-11-7-6-11-16-11-25 0-10 4-19 11-26 6-7 16-11 25-11 10 0 19 4 26 11 7 7 11 16 11 26 0 9-4 19-11 25-7 7-16 11-26 11z"/>
<glyph glyph-name="checklist" unicode="&#82;" d="M201 434c0 16 13 28 28 28l244 0c16 0 28-12 28-28 0-15-12-28-28-28l-244 0c-15 0-28 13-28 28z m272-150l-244 0c-15 0-28-12-28-28 0-16 13-28 28-28l244 0c16 0 28 12 28 28 0 16-12 28-28 28z m0-178l-244 0c-15 0-28-13-28-28 0-16 13-28 28-28l244 0c16 0 28 12 28 28 0 15-12 28-28 28z m-334 370c0 10-9 19-19 19l-84 0c-10 0-19-9-19-19l0-84c0-10 9-19 19-19l84 0c10 0 19 9 19 19z m0-262c0-10-9-19-19-19l-84 0c-10 0-19 9-19 19l0 84c0 10 9 19 19 19l84 0c10 0 19-9 19-19z m-33 64l-50 0 0-44 50 0z m33-242c0-10-9-19-19-19l-84 0c-10 0-19 9-19 19l0 84c0 10 9 19 19 19l84 0c10 0 19-9 19-19z m-33 64l-50 0 0-50 50 0z"/>
<glyph glyph-name="checkmark" unicode="&#83;" d="M191 111c-6 0-12 3-17 8l-111 110c-10 10-10 26 0 36 10 10 25 10 36 0l93-93 222 221c10 10 26 10 36 0 10-10 10-25 0-35l-240-239c-6-5-12-8-19-8z"/>
<glyph glyph-name="chevron-down" unicode="&#84;" d="M256 161c-6 0-12 3-16 7l-139 145c-9 9-9 23 0 31 9 9 23 9 32 0l123-128 123 128c8 9 23 9 32 0 9-8 9-22 0-31l-139-145c-4-4-10-7-16-7z"/>
<glyph glyph-name="chevron-left" unicode="&#85;" d="M344 133c9-8 9-23 0-32-4-4-10-6-16-6-5 0-11 2-15 6l-145 139c-4 4-7 10-7 16 0 6 3 12 7 16l145 139c9 9 23 9 31 0 9-9 9-23 0-32l-128-123z"/>
<glyph glyph-name="chevron-right" unicode="&#86;" d="M351 256c0-6-3-12-7-16l-145-139c-4-4-10-6-15-6-6 0-12 2-16 6-9 9-9 23 0 32l128 123-128 123c-9 8-9 23 0 32 8 9 22 9 31 0l145-139c4-4 7-10 7-16z"/>
<glyph glyph-name="chevron-up" unicode="&#87;" d="M395 161c-6 0-12 3-16 7l-123 128-123-128c-8-9-23-9-32 0-9 8-9 22 0 31l139 145c4 4 10 7 16 7 6 0 12-3 16-7l139-145c9-9 9-23 0-31-5-4-10-7-16-7z"/>
<glyph glyph-name="clipboard" unicode="&#88;" d="M429 462l-83 0-9 23c-6 16-22 27-39 27l-79 0c-18 0-33-11-39-27l-9-23-88 0c-12 0-22-11-22-23l0-417c0-12 10-22 22-22l346 0c12 0 22 10 22 22l0 417c0 12-10 23-22 23z m-242-45c9 0 18 6 21 14l13 36 75 0 13-36c4-9 12-14 22-14l17 0-16-31c-3-5-8-8-13-8l-121 0c-5 0-10 3-13 7l-19 32z m219-372l-300 0 0 372 9 0 31-55c0-1 1 0 1-1 11-17 30-27 51-27l120 0c21 0 42 10 52 29 0 1 1 2 1 2l26 52 9 0z"/>
<glyph glyph-name="clock" unicode="&#89;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-467c-117 0-211 94-211 211 0 117 94 211 211 211 117 0 211-94 211-211 0-117-94-211-211-211z m85 158c9-9 9-23 0-32-4-5-10-7-15-7-6 0-12 2-16 7l-70 69c-4 4-6 10-6 16l0 132c0 13 10 23 22 23 12 0 22-10 22-23l0-123z"/>
<glyph glyph-name="clockwise" unicode="&#90;" d="M484 279l-78-78c-4-4-10-6-16-6-6 0-12 2-16 6l-77 78c-8 9-8 23 0 32 9 8 23 8 32 0l43-43c-6 80-72 144-153 144-84 0-152-70-152-156 0-86 68-156 153-156 31 0 61 10 86 27 10 8 24 5 31-5 7-10 5-24-5-31-33-23-72-35-112-35-109 0-198 89-198 200 0 111 89 200 198 200 102 0 187-79 196-181l35 36c9 8 23 8 32 0 9-9 9-23 1-32z"/>
<glyph glyph-name="cloud" unicode="&#48;" d="M396 78c-111 0-294 0-297 0-49 0-90 37-98 88-6 39 11 92 73 120-14 62 21 114 67 136 30 14 62 15 92 5 26-8 50-26 68-51 27 15 60 16 87 1 24-13 46-41 43-83 60-19 84-70 81-115-4-49-41-101-116-101z m-202 312c-12 0-24-3-34-8-33-15-58-53-38-101 2-6 2-12-1-18-2-5-7-10-13-11-66-21-65-66-63-79 4-25 23-50 54-50 1 0 185-1 297-1 46 0 69 30 71 61 3 30-16 65-64 71-6 1-12 5-15 10-3 5-5 11-3 18 6 26-1 47-18 57-15 8-38 8-57-11-5-5-12-7-19-6-7 1-13 5-16 11-22 42-53 57-81 57z"/>
<glyph glyph-name="cloud-download" unicode="&#49;" d="M506 265c-3-48-40-99-113-99-33 0-50 0-50 0-12 0-22 10-22 23 0 12 10 22 22 22 0 0 17 0 50 0 45 0 67 28 69 57 3 30-16 63-62 69-7 1-12 5-15 10-4 5-5 11-4 18 6 25 0 45-16 54-14 8-37 8-56-11-5-5-12-7-18-6-7 1-13 6-17 12-31 58-79 62-111 47-31-15-55-51-36-96 2-6 2-13-1-18-2-6-7-10-13-12-66-21-64-64-62-76 3-24 22-48 51-48l68 0c13 0 23-10 23-22 0-13-10-22-23-22l-68 0c-47 0-88 36-95 85-6 39 10 90 70 117-13 60 20 110 66 131 47 23 112 16 156-44 28 15 60 16 87 1 22-13 43-40 41-81 58-18 82-68 79-111z m-174-135l-54-54 0 202c0 12-10 23-23 23-12 0-22-11-22-23l1-202-54 54c-9 9-23 9-32 0-9-9-9-23 0-31l92-93c4-4 10-7 15-7 6 0 12 3 16 7l92 92c9 9 9 23 0 32-8 9-22 9-31 0z"/>
<glyph glyph-name="cloud-upload" unicode="&#50;" d="M512 225c-3-48-41-101-115-101-34 0-52 0-52 0-12 0-22 10-22 22 0 12 10 21 22 21 0 0 18 1 52 1 46 0 69 31 71 61 2 30-17 64-65 71-6 1-11 4-15 9-3 5-4 12-3 18 6 26 0 47-18 56-14 9-38 8-56-10-5-5-13-7-19-6-7 1-13 5-17 11-32 61-81 64-114 48-32-15-57-52-37-99 2-6 2-13-1-18-3-6-8-10-13-12-68-20-67-65-65-78 4-25 23-50 54-50l69 0c12 0 22-11 22-23 0-12-10-24-22-24l-69 2c-49 0-90 38-97 89-6 39 10 91 73 119-15 61 20 113 66 134 48 23 116 17 160-45 28 15 61 16 88 1 23-14 45-41 42-83 59-18 84-69 81-114z m-178-18c5-4 10-7 16-7 6 0 11 3 16 7 9 9 9 23 0 32l-94 94c-4 4-10 6-16 6-6 0-12-2-16-6l-94-95c-9-9-9-23 0-32 9-8 23-8 32 0l56 58 0-208c0-13 10-23 23-23 12 0 22 10 22 23l-1 207z"/>
<glyph glyph-name="code" unicode="&#51;" d="M328 95c-6 0-11 2-16 6-8 9-8 23 1 32l128 123-128 123c-9 8-9 23-1 32 9 9 23 9 32 0l145-139c4-4 6-10 6-16 0-6-2-12-6-16l-145-139c-5-4-10-6-16-6z m-128 6c8 9 8 23-1 32l-128 123 128 123c9 8 9 23 1 32-9 9-23 9-32 0l-145-139c-4-4-6-10-6-16 0-6 2-12 6-16l145-139c5-4 10-6 16-6 5 0 11 2 16 6z"/>
<glyph glyph-name="contract" unicode="&#52;" d="M492 49c9-9 9-23 0-32-4-4-10-6-16-6-5 0-11 2-16 6l-121 121 0-57c0-13-10-23-22-23-12 0-22 10-22 23l0 111c0 6 3 12 7 16 4 3 10 6 16 6l111 0c12 0 22-10 22-22 0-12-10-22-22-22l-57 0z m-175 246l111 0c12 0 22 10 22 22 0 12-10 22-22 22l-57 0 123 124c9 9 9 23 0 31-9 9-23 9-31 0l-124-123 0 57c0 12-10 23-22 23-12 0-22-10-22-22l0-112c0-6 2-11 7-15 4-5 9-7 15-7z m-123 154c-12 0-21-10-21-22l0-57-123 123c-9 8-23 8-32 0-9-9-9-23 0-31l122-122-57 0 0-1c-11 0-22-10-22-22 0-13 10-23 22-23l111 0c6 0 11 3 16 7 4 5 6 10 6 16l0 111c0 11-10 21-22 21z m-1-232l-111 0c-12 0-22-10-22-22 0-12 10-22 22-22l57 0-121-123c-9-9-9-23 0-32 4-4 10-6 16-6 6 0 12 2 17 6l122 121 0-57c0-12 8-21 21-21l-1 0c12 0 22 9 22 21l0 111c0 6-2 12-6 17-4 4-10 7-16 7z"/>
<glyph glyph-name="contract-2" unicode="&#53;" d="M225 227c4-5 7-11 7-17l0-116c0-12-10-21-22-21l0 0c-12 0-21 8-21 20l0 63-139-138c-4-5-11-7-17-7-5 0-11 2-15 7-9 9-9 23 0 32l138 139-63 0c-12 0-22 10-22 22 0 13 10 23 22 23l117 0c6 0 11-3 15-7z m269 267c-9 9-22 9-31 0l-140-141 0 64c0 12-10 23-23 23-12 0-22-10-22-23l0-116c0-7 2-12 6-16 5-5 10-6 16-6l117 0c12 0 22 10 22 22 0 12-10 22-22 22l-64 0 141 140c9 9 9 23 0 31z"/>
<glyph glyph-name="conversation" unicode="&#54;" d="M490 378l-217 0 0 52c0 9-13 21-21 21l-235 0c-10 0-17-12-17-21l0-143c0-9 8-20 17-20l34 0 44-48c4-4 8-5 13-5 2 0 3 0 5 1 7 3 10 9 10 17l0 35 33 0 0-103c0-13 13-25 25-25l153 0 0-68c0-9 4-17 13-20 3-1 5-2 8-2 6 0 12 1 16 6l83 84 36 0c12 0 22 12 22 25l0 187c0 12-10 27-22 27z m-382-77c-9 0-19-4-19-14l0-11-19 21c-3 4-7 4-12 4l-25 0 0 116 201 0 0-39-53 0c-12 0-25-15-25-27l0-50z m359-117l-22 0c-6 0-11-1-16-6l-51-51 0 37c0 12-11 20-23 20l-155 0 0 150 267 0z m-234 100c0 9 7 17 16 17l107 0c9 0 16-8 16-17 0-10-7-17-16-17l-107 0c-9 0-16 7-16 17z m162-12c-4 3-5 7-5 12 0 4 1 9 5 12 6 6 17 6 24 0 3-4 5-8 5-12 0-5-2-9-5-12-4-3-8-5-12-5-5 1-10 2-12 5z"/>
<glyph glyph-name="copy" unicode="&#55;" d="M256 390c-4 4-9 5-14 5l-166 0c-11 0-26-7-26-17l0-352c0-12 15-25 26-25l263 0c12 0 17 14 17 25l0 253c0 5 0 10-4 14z m55-112l-72 0 0 72z m-216-233l0 311 105 0 0-96c0-11 10-21 21-21l96 0 0-194z m364 367l-97 97c-4 2-7 3-11 3l-167 0c-9 0-17-5-17-14l0-53c0-10 7-17 17-17 9 0 16 8 16 17l0 34 117 0 0-94c0-10 8-18 17-18l95 0 0-206-23 0c-10 0-17-7-17-16 0-10 8-17 17-17l42 0c9 0 14 8 14 18l0 254c0 4-1 8-3 12z m-108 61l71-72-71 0z"/>
<glyph glyph-name="crop" unicode="&#56;" d="M494 457c9 9 9 23 0 32-8 9-23 9-32 0l-66-66-279 0 0 41c0 12-10 22-22 22-13 0-23-10-23-22l0-41-39 0c-12 0-22-10-22-22 0-13 10-23 22-23l39 0 0-277c0-1 1-1 1-2 0-1 0-2 0-3 0 0 1-1 1-2 0-1 1-2 1-2 0-1 0-1 1-2 0-1 0-2 1-2 0-1 1-2 1-2 1-1 1-1 2-1 1-2 2-2 3-3 0 0 0-1 1-1 1 0 2-1 3-1 1 0 1-1 3-1 0 0 1-1 2-1 1 0 3 0 4 0l288 0 0-39c0-12 10-22 22-22 13 0 23 10 23 22l0 39 38 0c13 0 23 10 23 22 0 12-10 22-23 22l-38 0 0 271z m-143-79l-234-225 0 225z m33-256l-234 0 234 227z"/>
<glyph glyph-name="cross" unicode="&#57;" d="M393 154c10-10 10-25 0-35-5-5-11-8-17-8-7 0-13 3-18 8l-102 101-102-101c-5-5-11-8-18-8-6 0-12 3-17 8-10 10-10 25 0 35l101 102-101 102c-10 10-10 25 0 35 10 10 25 10 35 0l102-101 102 101c10 10 25 10 35 0 10-10 10-25 0-35l-101-102z"/>
<glyph glyph-name="crosshair" unicode="&#33;" d="M257 512c-1 0-1 0 0 0-1 0-1 0 0 0-142 0-257-115-257-256 0-141 115-256 255-256 142 0 256 115 256 256 1 141-114 256-254 256z m21-466l0 57c0 12-10 22-22 22-12 0-22-10-22-22l0-57c-100 10-178 89-188 188l57 0c12 0 22 10 22 22 0 12-10 22-22 22l-57 0c10 99 88 178 188 188l0-57c0-12 10-22 22-22 12 0 22 10 22 22l0 57c100-10 178-89 188-188l-57 0c-12 0-22-10-22-22 0-12 10-22 22-22l57 0c-10-99-88-178-188-188z"/>
<glyph glyph-name="cutlery" unicode="&#34;" d="M461 60c9-9 9-23 0-32-5-4-10-6-16-6-5 0-11 2-15 7l-177 177-175-177c-5-5-10-7-16-7-5 0-11 2-15 7-9 9-9 23 0 32l174 177-30 29-4-4c-14-14-33-22-53-22-20 0-39 8-53 22l-74 73c-9 8-9 22 0 31 9 9 22 9 31 0l74-73c6-6 14-9 22-9 8 0 16 3 22 9l5 5-96 94c-9 9-9 23 0 32 8 9 22 9 31 0l95-95 6 6c12 11 12 31 0 43l-74 73c-9 9-9 23 0 32 9 9 23 9 32 0l73-74c30-29 30-77 0-106l-5-6 29-29 197 199c3 4 10 7 15 7 6 0 12-3 16-7 49-49 41-119-21-181l-76-76c-8-8-22-8-31 0-9 9-9 23 0 32l75 75c45 45 44 79 34 100l-177-180z"/>
<glyph glyph-name="device-desktop" unicode="&#35;" d="M470 473l-428 0c-23 0-42-19-42-42l0-247c0-23 19-45 42-45l142 0 0-23-43-34c-7-6-11-17-7-26 3-9 11-17 21-17l200 0c10 0 18 8 22 17 3 9 0 20-7 26l-42 34 0 23 142 0c23 0 42 22 42 45l0 247c0 23-19 42-42 42z m-174-383l13-12-109 0 15 13c4 4 8 10 8 16l0 32 66 0 0-32c0-6 3-13 7-17z m171 94l-422 0 0 245 422 0z"/>
<glyph glyph-name="device-mobile" unicode="&#36;" d="M294 89c0-9-7-17-17-17l-43 0c-9 0-16 8-16 17 0 10 7 17 16 17l43 0c10 0 17-7 17-17z m107 381l0-428c0-23-19-42-43-42l-204 0c-24 0-43 19-43 42l0 428c0 23 19 42 43 42l204 0c24 0 43-19 43-42z m-245-3l0-294 200 0 0 294z m200-422l0 94-200 0 0-94z"/>
<glyph glyph-name="device-tablet" unicode="&#37;" d="M287 83c0-9-7-16-17-16l-28 0c-10 0-17 7-17 16 0 10 7 17 17 17l28 0c10 0 17-7 17-17z m175 387l0-428c0-23-19-42-42-42l-328 0c-23 0-42 19-42 42l0 428c0 23 19 42 42 42l328 0c23 0 42-19 42-42z m-367-3l0-306 322 0 0 306z m322-422l0 83-322 0 0-83z"/>
<glyph glyph-name="direction" unicode="&#38;" d="M278 22c-1 0-3 0-4 1-10 1-17 9-18 19l-19 194-195 19c-10 2-18 9-19 19-2 10 4 19 13 24l423 190c8 3 18 2 25-5 6-7 8-17 4-25l-190-423c-4-8-12-13-20-13z m-148 269l128-13c11-1 19-9 20-20l14-128 131 293z"/>
<glyph glyph-name="disc" unicode="&#39;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-45c117 0 211-94 211-211 0-29-6-58-17-84l-125 62c8 25 2 54-18 74-20 20-48 25-73 18l-45 91c-4 8-14 12-23 8-8-4-11-14-7-23l46-93c0 0 0 0-1-1 0 0 0 0 0 0l-127 62c38 59 104 97 179 97z m-24-187c7 7 15 10 24 10 9 0 17-3 24-10 13-13 13-35 0-48-13-13-35-13-48 0-13 13-13 35 0 48z m138-202l-29 59c-4 8-14 12-23 8-8-4-11-14-7-23l29-59c-26-11-55-18-84-18-117 0-211 94-211 211 0 29 6 58 17 84l125-62c-8-25-2-53 18-73 14-14 33-21 51-21 18 0 37 7 51 21 0 0 1 0 1 0l126-63c-16-25-38-47-64-64z m-50 103c3-3 6-8 6-14 0-5-3-10-6-14-3-4-9-6-14-6-5 0-10 3-14 6-4 3-5 9-5 14 0 5 2 10 5 14 7 7 21 7 28 0z"/>
<glyph glyph-name="document" unicode="&#40;" d="M423 501l-334 0c-12 0-22-10-22-22l0-446c0-12 10-22 22-22l334 0c12 0 22 10 22 22l0 446c0 12-10 22-22 22z m-22-445l-290 0 0 400 290 0z m-237 147c0 11 9 20 20 20l65 0c11 0 20-9 20-20 0-10-9-19-20-19l-65 0c-11 0-20 9-20 19z m3 89c0 11 9 20 19 20l133 0c10 0 19-9 19-20 0-10-8-19-19-19l-133 0c-10 0-19 9-19 19z m0 84c0 10 9 19 19 19l133 0c10 0 19-9 19-19 0-11-8-20-19-20l-133 0c-10 0-19 9-19 20z m165-161c4-3 6-8 6-14 0-5-2-10-6-13-3-4-9-6-14-6-5 0-10 2-14 6-3 3-5 8-5 13 0 5 2 10 5 14 8 8 21 8 28 0z"/>
<glyph glyph-name="document-delete" unicode="&#41;" d="M439 370l-123 124c-5 5-10 7-17 7l-210 0c-12 0-22-10-22-22l0-446c0-12 10-22 22-22l334 0c12 0 22 10 22 22l0 322c0 6-2 11-6 15z m-38-25l-112 0 0 111 2 0z m-290-289l0 400 134 0 0-133c0-12 9-22 22-22l134 0 0-245z m209 166l-37-37 37-36c8-8 8-20 0-28-4-4-9-5-14-5-5 0-10 1-14 5l-36 36-36-36c-4-4-9-6-14-6-5 0-10 2-14 6-8 8-8 20 0 27l37 37-37 36c-8 8-8 21 0 28 8 8 20 8 27 0l36-37 37 37c7 8 20 8 27 0 9-7 9-19 1-27z"/>
<glyph glyph-name="document-edit" unicode="&#42;" d="M479 461l-39 40c-4 4-8 5-13 5-4 0-8-1-11-5l-233-236c-2-2-3-3-4-6l-27-66c-2-6-1-13 4-18 4-3 8-5 12-5 2 0 4 1 6 1l66 27c2 1 4 2 5 3l234 237c7 6 7 17 0 23z m-254-234l-27-11 11 28 218 222 17-17z m170 20l0-225c0-12-11-22-23-22l-316 0c-13 0-23 10-23 22l0 424c0 13 10 21 23 21l231 0c12 0 22-10 22-22 0-12-10-22-22-22l-209 0 0-378 273 0 0 202c0 12 10 22 22 22 12 0 22-10 22-22z"/>
<glyph glyph-name="document-new" unicode="&#43;" d="M439 370l-123 124c-5 5-10 7-17 7l-210 0c-12 0-22-10-22-22l0-446c0-12 10-22 22-22l334 0c12 0 22 10 22 22l0 322c0 6-2 11-6 15z m-38-25l-112 0 0 111 2 0z m-290-289l0 400 134 0 0-133c0-12 9-22 22-22l134 0 0-245z"/>
<glyph glyph-name="document-remove" unicode="&#44;" d="M439 370l-123 124c-5 5-10 7-17 7l-210 0c-12 0-22-10-22-22l0-446c0-12 10-22 22-22l334 0c12 0 22 10 22 22l0 322c0 6-2 11-6 15z m-38-25l-112 0 0 111 2 0z m-290-289l0 400 134 0 0-133c0-12 9-22 22-22l134 0 0-245z m215 130c0-10-9-19-20-19l-100 0c-11 0-20 9-20 19 0 11 9 20 20 20l100 0c11 0 20-9 20-20z"/>
<glyph glyph-name="dot" unicode="&#45;" d="M256 217c-10 0-21 4-28 12-7 7-11 17-11 27 0 10 4 20 11 28 7 7 17 11 28 11 10 0 20-4 27-11 8-7 12-17 12-28 0-10-4-20-12-27-7-8-17-12-27-12z"/>
<glyph glyph-name="dots-2" unicode="&#46;" d="M189 217c-10 0-20 4-28 12-7 7-11 17-11 27 0 10 5 20 11 28 8 7 18 11 28 11 10 0 20-4 27-11 8-7 12-17 12-28 0-10-4-20-12-27-7-8-17-12-27-12z m161 12c7 7 12 17 12 27 0 10-5 20-12 28-7 7-17 11-27 11-10 0-21-4-28-11-7-7-11-17-11-28 0-10 4-20 11-27 7-8 17-12 28-12 10 0 20 4 27 12z"/>
<glyph glyph-name="dots-3" unicode="&#47;" d="M117 217c-10 0-21 4-28 12-7 7-11 17-11 27 0 10 4 20 11 28 7 7 17 11 28 11 10 0 20-4 27-11 7-7 12-17 12-28 0-10-5-20-12-27-7-8-17-12-27-12z m166 12c8 7 12 17 12 27 0 10-4 20-12 28-7 7-17 11-27 11-10 0-21-4-28-11-7-7-11-17-11-28 0-10 4-20 11-27 7-8 17-12 28-12 10 0 20 4 27 12z m139 0c8 7 12 17 12 27 0 10-4 20-12 28-7 7-17 11-27 11-10 0-20-4-28-11-7-7-11-17-11-28 0-10 5-20 11-27 8-8 18-12 28-12 10 0 20 4 27 12z"/>
<glyph glyph-name="download" unicode="&#58;" d="M495 185l0-152c0-15-12-27-28-27l-422 0c-16 0-28 12-28 27l0 152c0 15 12 28 28 28 15 0 27-13 27-28l0-124 368 0 0 124c0 15 12 28 27 28 16 0 28-13 28-28z m-259-35c5-5 12-8 20-8 8 0 14 3 20 8l111 114c10 11 10 28-1 39-11 11-28 11-39 0l-63-65 0 241c0 15-12 27-28 27-16 0-28-12-28-27l0-241-63 64c-11 11-29 11-40 1-11-11-11-29 0-40z"/>
<glyph glyph-name="duplicate" unicode="&#59;" d="M490 131l-336 0c-13 0-23 10-23 23l0 336c0 12 10 22 23 22l336 0c12 0 22-10 22-22l0-336c0-13-10-23-22-23z m-314 45l291 0 0 291-291 0z m194-149l0 59c0 9-8 16-17 16-9 0-17-7-17-16l0-53-302 0 0 303 52 0c9 0 16 7 16 16 0 9-7 17-16 17l-59 0c-15 0-27-12-27-27l0-316c0-14 12-26 27-26l316 0c15 0 27 12 27 27z"/>
<glyph glyph-name="enter" unicode="&#60;" d="M495 440l0-368c0-12-10-22-22-22l-290 0c-12 0-22 10-22 22l0 102c0 12 10 22 23 22 12 0 22-10 22-22l0-79 245 0 0 322-245 0 0-79c0-12-10-22-22-22-13 0-23 10-23 22l0 102c0 12 10 22 22 22l290 0c12 0 22-10 22-22z m-236-256c-9-9-9-23 0-32 4-4 10-6 15-6 6 0 12 2 16 6l87 88c9 9 9 23 0 32l-86 89c-9 9-23 9-32 0-9-9-9-23 0-32l49-50-269-1c-12 0-22-10-22-22 0-12 10-22 22-22l269 0z"/>
<glyph glyph-name="exit" unicode="&#61;" d="M334 174l0-102c0-12-9-22-21-22l-291 0c-12 0-22 10-22 22l0 368c0 12 10 22 22 22l291 0c12 0 21-10 21-22l0-102c0-12-10-22-22-22-13 0-23 10-23 22l0 79-244 0 0-322 244 0 0 79c0 12 10 22 23 22 12 0 22-10 22-22z m171 99l-86 88c-9 9-23 9-32 0-9-9-9-23 0-32l49-50-270-1c-12 0-22-10-22-22 0-12 10-22 22-22l270 0-49-50c-9-9-9-23 0-32 4-4 10-6 15-6 6 0 12 2 16 6l87 88c9 10 9 24 0 33z"/>
<glyph glyph-name="expand" unicode="&#62;" d="M501 479l0-112c0-12-10-22-22-22-13 0-23 10-23 22l0 58-129-129c-4-5-10-7-15-7-6 0-11 2-16 7-9 8-9 22 0 31l129 129-58 0c-12 0-22 10-22 23 0 12 10 22 22 22l112 0c6 0 11-2 15-7 5-4 7-9 7-15z m-22-312c-13 0-23-10-23-22l0-58-127 126c-8 9-23 9-32 0-9-9-9-23 0-32l125-125-57 0c-12 0-22-10-22-23 0-12 10-22 22-22l111 0c7 0 13 2 17 7 5 4 8 10 8 15l0 112c0 12-10 22-22 22z m-296 47l-127-127 0 58c0 12-10 22-23 22-12 0-22-10-22-22l0-112c0-6 2-11 7-15 4-5 10-7 16-7l111 0c12 0 23 10 23 22 0 13-11 23-23 23l-58 0 127 127c9 8 9 22 0 31-8 9-23 9-31 0z m-96 240l58 0c12 0 22 10 22 22 0 13-10 23-22 23l-112 0c-6 0-11-3-15-7-5-4-7-9-7-16l0-111c0-12 10-22 22-22 13 0 23 10 23 22l0 58 128-129c5-4 10-6 16-6 5 0 11 2 15 6 9 9 9 23 0 32z"/>
<glyph glyph-name="expand-2" unicode="&#63;" d="M501 479l0-117c0-13-10-23-22-23-13 0-23 10-23 23l0 63-140-141c-5-4-10-6-16-6-6 0-11 2-16 6-9 9-9 23 0 32l141 140-63 0c-13 0-23 10-23 23 0 12 10 22 23 22l117 0c6 0 11-2 15-7 5-4 7-9 7-15z m-307-254l-138-138 0 63c0 13-10 23-23 23-12 0-22-10-22-23l0-117c0-6 2-11 7-15 4-5 9-7 15-7l117 0c13 0 23 10 23 22 0 13-10 23-23 23l-63 0 139 138c9 9 9 23 0 32-9 8-23 8-32-1z"/>
<glyph glyph-name="experiment" unicode="&#64;" d="M499 489c-4 7-12 12-20 12l-446 0c-8 0-16-5-20-12-4-7-2-16 3-23l173-255 0-168c0-17 12-32 30-32l74 0c18 0 30 14 30 32l0 168 173 255c5 7 7 16 3 23z m-216-259c-3-3-5-7-5-12l0-162-44 0 0 162c0 5-2 9-5 12l-53 78c11 3 24 6 39 6 17 0 29-3 42-7 13-3 26-6 45-7 11 0 21 1 30 2z m82 119c-1 0-24-10-63-10-14 0-24 3-36 7-13 3-29 7-51 7-25 0-47-6-63-11l-77 114 362 0z m-46 37c-4 4-7 10-7 16 0 6 2 11 7 15 4 4 10 7 15 7 7 0 12-2 16-7 4-4 7-10 7-15 0-6-2-12-7-16-4-4-10-6-16-6-5 0-11 2-15 6z"/>
<glyph glyph-name="export" unicode="&#91;" d="M406 86l0-28c0-12-10-19-23-19l-363 0c-12 0-20 7-20 19l0 275c0 13 8 24 20 24l65 0c12 0 22-10 22-23 0-12-10-22-22-22l-40 0 0-229 317 0 0 3c0 13 10 23 22 23 12 0 22-10 22-23z m99 208l-138-141c-6-7-16-8-24-5-9 4-15 12-15 21l0 61c-44 1-151-3-190-72-4-7-12-12-19-12-2 0-4 0-6 1-10 3-17 12-17 22 0 3 0 89 65 153 40 42 95 64 167 68l0 61c0 9 6 17 14 20 9 4 19 2 25-5l139-140c8-9 8-23-1-32z m-48 16l-84 86 0-28c0-12-10-22-22-22-69 0-122-18-158-55-17-17-28-35-36-53 53 31 119 37 160 37 21 0 35-2 36-2 12-1 20-11 20-22l0-27z"/>
<glyph glyph-name="feed" unicode="&#93;" d="M343 55c0-17-14-30-30-30-1 0-1 0-1 0-17 1-30 15-30 32 3 79-15 138-56 176-65 61-166 51-167 51-17-2-32 10-34 27-2 17 10 32 27 34 5 1 130 13 216-66 54-51 79-127 75-224z m-240 118c-19 0-38-8-51-21-14-13-21-32-21-51 0-19 7-38 21-51 13-14 32-22 51-22 19 0 38 8 51 22 14 13 21 32 21 51 0 19-7 38-21 51-13 13-32 21-51 21z m270 215c-127 119-313 98-321 97-17-2-29-17-27-34 2-16 17-29 34-26 2 0 166 18 273-81 67-62 98-159 93-287-1-16 12-31 29-31 1 0 1 0 1 0 16 0 30 12 31 29 7 146-31 258-113 333z"/>
<glyph glyph-name="flag" unicode="&#94;" d="M483 511c-11 3-21-3-25-13-6-14-65-75-116-77-29-1-55 19-84 40-37 27-77 57-129 47-78-15-114-84-116-88-2-4-2-10-1-15l22-99 65-289c2-11 12-18 22-18 1 0 3 0 5 1 12 3 19 14 16 27l-37 168c10 16 38 54 83 64 26 6 47-1 72-9 27-8 58-19 98-10 84 19 141 120 143 250 0 10-7 19-18 21z m-135-228c-27-6-49 1-74 10-27 9-58 19-96 10-38-8-67-30-86-51l-2 10-33 144c9 15 35 49 79 58 34 6 62-15 95-39 32-24 68-50 112-49 38 2 76 24 106 48-13-67-46-128-101-141z"/>
<glyph glyph-name="flashlight" unicode="&#95;" d="M238 256c0-9-7-17-17-17l-42 0c-9 0-16 8-16 17 0 9 7 17 16 17l42 0c10 0 17-8 17-17z m274 130l0-260c0-17-14-32-32-32l-53 0c-91 1-147 51-165 73l-230 0c-18 0-32 14-32 32l0 115c0 18 14 31 32 31l229 0c19 22 74 72 166 72l53 0c18 0 32-14 32-31z m-467-175l38 0 0 90-38 0z m350-70l0 230c-67-11-106-60-106-61-5-6-10-9-17-9l-155 0 0-90 155 0c7 0 12-3 16-9 2-2 40-50 107-61z m72 232l-38 0 0-234 38 0z"/>
<glyph glyph-name="folder" unicode="&#96;" d="M445 384l-192 0-24 40c-4 6-11 10-19 10l-143 0c-12 0-22-10-22-22l0-312c0-12 10-22 22-22l378 0c12 0 22 10 22 22l0 261c0 12-10 23-22 23z m-22-262l-334 0 0 268 108 0 24-40c4-7 12-11 19-11l183 0z"/>
<glyph glyph-name="folder-open" unicode="&#123;" d="M507 297c-4 6-11 9-17 9l-28 0 0 61c0 10-8 17-18 17l-195 0-25 41c-4 6-10 9-17 9l-144 0c-10 0-18-6-18-17l0-111-23 0c-6 0-13-3-17-8-4-5-6-13-4-19l41-189c2-10 11-18 21-18l381 0c10 0 18 8 21 17l46 189c2 7 0 14-4 19z m-424 98l113 0 25-41c3-6 10-9 17-9l185 0 0-39-340 0z m343-278l-345 0-31 145 411 0z"/>
<glyph glyph-name="forward" unicode="&#124;" d="M72 95c-1 0-4 0-5 0-10 3-17 11-17 22 0 3 1 88 64 152 41 40 96 63 166 67l0 59c0 9 6 17 14 21 9 3 18 1 25-5l137-139c8-9 8-23 0-32l-137-139c-6-6-16-8-25-5-8 4-14 12-14 21l0 60c-44 1-150-3-188-71-4-7-12-11-20-11z m196 127c21 0 35-2 37-2 11-1 20-10 20-22l0-27 83 85-83 85 0-27c0-12-10-22-22-22-69 0-122-19-157-55-16-16-27-34-35-52 52 31 117 37 157 37z"/>
<glyph glyph-name="gaming" unicode="&#125;" d="M338 340c5-4 8-11 8-18 0-6-3-13-8-18-4-4-11-7-17-7-7 0-14 3-18 7-5 5-7 12-7 18 0 7 2 13 7 18 4 4 11 7 18 7 6 0 13-3 17-7z m39-35c-6 0-12-3-17-7-5-5-8-11-8-18 0-7 3-13 8-18 4-4 11-7 17-7 7 0 14 3 18 7 5 5 7 11 7 18 0 7-2 13-7 18-4 4-11 7-18 7z m-189 12l-15 0 0 15c0 7-7 14-14 14-8 0-14-7-14-14l0-15-15 0c-8 0-14-6-14-14 0-7 6-14 14-14l15 0 0-14c0-8 6-14 14-14 7 0 14 6 14 14l0 14 15 0c8 0 14 7 14 14 0 8-6 14-14 14z m324-173c0-24-13-43-35-52-21-7-54-4-84 30-15 17-39 47-52 63-72-16-140-6-169 0-13-16-38-46-52-63-22-25-45-34-65-34-8 0-14 2-20 4-22 8-35 28-35 52 0 65 42 168 56 199-5 15-3 32 5 46 11 18 30 32 46 33 15 2 34-7 47-13 25 4 104 16 204 0 12 6 32 15 47 13 16-1 35-15 46-33 8-14 10-31 5-46 14-30 56-133 56-199z m-45 0c0 66-55 189-55 190-3 6-3 13 0 19 3 5 3 9 1 13-3 6-10 11-12 12-5 0-19-6-29-11-5-2-10-4-15-2-114 20-201 0-202 0-5-2-10-1-15 2-11 5-24 11-29 11-3-1-10-6-12-12-2-5-2-8 0-13 3-6 3-13 1-19 0-1-55-124-55-190 0-5 2-8 5-10 8-3 22 2 36 17 19 23 59 73 60 73 5 8 15 10 23 8 1 0 88-25 173 0 2 0 4 1 6 1 7 0 14-3 18-9 0 0 40-50 60-73 14-16 28-20 35-17 4 2 6 5 6 10z"/>
<glyph glyph-name="gear" unicode="&#126;" d="M256 149c-59 0-107 47-107 107 0 59 47 107 107 107 59 0 107-47 107-107 0-59-48-107-107-107z m0 175c-37 0-68-31-68-68 0-37 31-68 68-68 37 0 68 31 68 68 0 37-31 68-68 68z m0-324l-3 0c-19 0-36 2-37 2-9 1-16 8-17 17l-6 40c-12 4-24 9-35 15l-31-24c-7-5-17-5-24 0-1 1-14 11-28 25l-2 2c-14 14-24 27-25 28-5 7-5 16 0 24l25 32c-6 11-11 23-15 35l-39 6c-8 1-15 8-16 17-1 1-3 18-3 37l0 3c0 19 2 36 2 37 1 9 8 16 17 17l40 6c4 12 9 24 15 35l-24 31c-5 7-5 17 0 24 1 1 11 14 25 28l2 2c14 14 27 24 28 25 7 5 16 5 24 0l32-25c11 6 23 11 35 15l6 39c1 8 8 15 17 16 1 1 18 3 37 3l3 0c19 0 36-2 37-2 9-1 16-8 17-17l6-40c12-4 24-9 35-15l31 24c7 5 17 5 24 0 1-1 14-11 28-25l2-2c14-14 24-27 25-28 5-7 5-16 0-24l-24-32c6-11 10-23 14-35l39-6c9-1 16-8 17-17 0-1 2-18 2-38l0-2c0-20-2-37-2-38-1-9-8-15-17-17l-40-5c-4-13-9-24-15-36l24-31c5-7 5-17 0-24-1-1-11-14-25-28l-2-2c-14-14-27-24-28-25-7-5-16-5-24 0l-32 25c-11-6-23-10-35-14l-6-39c-1-9-8-16-17-17-1 0-18-2-37-2z m-20 40c5 0 11 0 17 0l3 0c6 0 12 0 17 0l5 37c1 8 7 14 15 16 18 4 34 11 49 21 5 2 10 3 15 2 3-1 6-2 8-4l30-22c3 3 8 7 12 11l3 3c4 4 8 8 11 12l-22 30c-5 6-5 15-1 22 9 15 16 31 20 47 2 9 8 15 17 17l37 5c0 5 0 11 0 17l0 2c0 6 0 12 0 17l-37 5c-8 1-14 7-16 15-4 18-11 34-20 49-1 1-2 2-2 4-2 6-1 14 3 19l22 30c-3 3-7 8-11 12l-3 3c-4 4-8 8-12 11l-30-22c-7-5-17-5-23 0-15 9-31 16-47 20-8 2-14 8-16 17l-5 37c-5 1-11 1-17 1l-2 0c-6 0-12 0-17-1l-5-38c-1-9-8-15-17-16-17-4-33-11-47-20-5-3-10-3-15-2-3 0-6 2-8 4l-29 22c-4-3-8-7-13-12l-2-2c-4-4-8-9-12-13l23-29c5-7 5-15 1-23-1 0-1-1-1-1-9-15-16-31-20-47-2-8-8-14-17-16l-37-5c0-5 0-11 0-17l0-2c0-6 0-12 0-17l37-5c9-1 15-8 16-17 0 0 0-1 0-1 4-16 11-32 20-46 3-5 4-11 2-17-1-2-3-4-4-7l-22-29c3-3 7-8 12-12l2-3c4-4 9-8 13-11l29 22c7 6 18 5 25-1 14-8 30-15 46-19 8-2 14-8 15-17z"/>
<glyph glyph-name="graduation" unicode="&#92;" d="M499 337l-234 105c-6 3-13 3-18 0l-234-105c-7-4-13-11-13-20 0-9 6-16 13-20l20-10 0-78c0-8 7-14 14-14 8 0 14 6 14 14l0 64 34-18 0-95c0-4 1-7 3-10 2-4 53-79 155-79 105 0 154 76 156 79 2 2 3 6 3 10l0 92 89 45c8 4 12 12 12 20-1 9-7 16-14 20z m-126-171c-11-13-49-56-120-56-69 0-108 42-119 56l0 69 112-57c3-2 7-2 10-2 3 0 7 0 11 2l106 54z m-117 57l-183 92 183 82 183-82z m-195-47c4-3 7-10 7-15 0-6-2-12-7-16-4-4-10-6-15-6-6 0-12 2-16 6-4 4-7 10-7 16 0 5 3 12 7 15 4 4 10 7 16 7 5 0 11-2 15-7z"/>
<glyph glyph-name="graph-bar" unicode="&#57344;" d="M406 17c-18 0-33 15-33 33l0 412c0 18 15 33 33 33 19 0 34-15 34-33l0-412c0-18-15-33-34-33z m-117 33l0 276c0 18-15 34-33 34-18 0-33-16-33-34l0-276c0-18 15-33 33-33 18 0 33 15 33 33z m-150 0l0 140c0 19-15 34-33 34-19 0-34-15-34-34l0-140c0-18 15-33 34-33 18 0 33 15 33 33z"/>
<glyph glyph-name="graph-line" unicode="&#57345;" d="M33 56c-5 0-10 1-14 4-13 7-17 25-10 38l68 113c5 8 14 14 23 14 10 0 19-4 24-12l29-40 61 105c5 7 14 13 23 14 9 0 18-4 23-12l54-71 141 233c7 14 25 18 38 10 13-8 17-25 10-39l-162-268c-5-8-14-13-23-14-9 0-18 4-24 11l-53 72-62-105c-5-8-13-13-23-14-9 0-18 4-24 12l-28 40-47-77c-5-9-14-14-24-14z"/>
<glyph glyph-name="graph-pie" unicode="&#57346;" d="M187 305l-168 0c-10 0-19 9-19 19 0 104 84 188 187 188 11 0 19-9 19-19l0-168c1-11-8-20-19-20z m-146 39l127 0 0 127c-66-8-119-61-127-127z m232-344c-132 0-238 102-238 229 0 12 10 22 22 22l204 0 0 204c0 12 10 22 22 22 124 0 229-109 229-238 0-132-107-239-239-239z m-192 206c11-91 93-161 192-161 107 0 194 87 194 194 0 97-72 181-161 192l0-202c0-13-10-23-23-23z"/>
<glyph glyph-name="headset" unicode="&#57347;" d="M495 274l0-141c0-12-10-22-23-22-12 0-22 10-22 22l1 141c0 52-20 100-57 137-37 36-85 56-137 56 0 0-1 0-1 0-107 0-194-86-195-192l0-141c0-13-10-23-22-23-12 0-22 10-22 23l0 141c0 131 108 237 239 237 0 0 1 0 1 0 64 0 124-25 168-70 46-45 70-105 70-168z m-291-12c4-4 5-8 5-13l0-225c0-11-9-18-20-18-73 0-97 42-100 65 0 1 0 0 0 1l0 127c0 1 0 1 0 2 3 23 27 66 100 66 0 0 1 0 1 0 5 0 10-1 14-5z m-34-34c-35-6-41-27-42-30l-1-125c2-4 8-24 43-30z m254-29l0-126c0-1 0-1 0-2-3-23-27-65-100-65-11 0-20 7-20 18l0 224c0 5 2 10 5 14 4 3 9 5 14 5 0 0 1 0 1 0 73 0 97-43 100-66 0-1 0-1 0-2z m-39-126l0 125c-2 4-8 24-43 30l1-185c35 7 41 27 42 30z"/>
<glyph glyph-name="heart" unicode="&#57348;" d="M483 390c-23 50-71 83-122 83-52 0-86-23-105-47-19 24-53 47-105 47-51 0-99-33-122-83-23-53-13-112 28-157 97-110 183-187 185-188 4-4 9-5 15-5 5 0 10 1 15 5 1 1 86 79 184 188 40 45 50 104 27 157z m-61-128c-72-81-138-144-166-171-28 27-94 90-166 171-29 33-37 72-20 110 15 34 48 57 81 57 67 0 82-50 83-56 3-10 11-17 21-17 10 0 19 7 22 17 2 5 17 56 83 56 33 0 66-23 82-58 17-37 9-76-20-109z m-5 65c0-11-7-20-19-21 0 0-1 0-1 0-10 0-19 8-19 18-2 32-23 37-27 38-10 1-18 11-17 21 2 11 12 18 23 17 19-3 56-22 60-73z m-27-33c4-4 7-10 7-15 0-6-2-12-7-16-4-4-10-6-15-6-6 0-12 2-16 6-4 4-7 10-7 16 0 5 3 12 7 15 4 4 10 7 16 7 5 0 11-3 15-7z"/>
<glyph glyph-name="help" unicode="&#57349;" d="M437 437c-49 48-113 75-181 75-68 0-132-27-181-75-48-49-75-113-75-181 0-68 27-132 75-181 49-48 113-75 181-75 68 0 132 27 181 75 48 49 75 113 75 181 0 68-27 132-75 181z m-50-150l76 12c3-14 4-29 4-43 0-14-1-29-4-43l-76 12c4 20 4 42 0 62z m67 45l-79-13c-7 12-14 23-24 32-9 10-20 18-32 24l13 79c27-11 53-27 74-48 21-22 37-47 48-74z m-198-166c-24 0-47 9-63 26-18 17-27 40-27 63 0 24 10 47 27 64 17 18 40 26 63 26 23 0 46-9 63-26 18-17 27-40 27-64 0-23-10-46-27-63-16-17-39-26-63-26z m0 301c14 0 29-1 43-4l-12-76c-20 5-42 5-62 0l-12 76c14 3 29 4 43 4z m-150-61c21 21 47 38 74 48l13-79c-12-7-23-14-32-24-10-9-17-20-24-32l-79 13c11 27 27 52 48 74z m-61-150c0 14 1 29 4 43l76-12c-2-10-4-20-4-31 0-11 1-21 4-31l-76-12c-3 14-4 29-4 43z m13-76l79 13c7-12 14-23 24-32 10-10 21-17 32-24l-12-79c-27 10-53 27-74 48-22 22-38 47-49 74z m198-135c-14 0-29 1-43 4l12 76c10-2 20-4 31-4 11 0 21 1 31 4l12-76c-14-3-29-4-43-4z m150 61c-21-21-47-38-74-48l-13 79c12 7 23 14 32 24 10 10 18 21 24 32l79-12c-11-28-27-53-48-75z"/>
<glyph glyph-name="home" unicode="&#57350;" d="M490 239c-6 0-11 3-16 6l-218 214-218-214c-9-8-23-8-32 1-8 9-8 23 1 32l233 228c9 8 23 8 32 0l233-228c9-9 9-23 1-32-5-4-11-7-16-7z m-49-217l0 218c0 12-10 22-22 22-13 0-23-10-23-22l0-195-69 0 0 119c0 16-14 29-30 29l-82 0c-16 0-30-13-30-29l0-119-69 0 0 195c0 12-10 22-23 22-12 0-22-10-22-22l0-218c0-12 10-22 22-22l115 0c12 0 22 10 22 22l0 127 53 0 0-127c0-12 10-22 22-22l114 0c12 0 22 10 22 22z"/>
<glyph glyph-name="hourglass" unicode="&#57351;" d="M434 56l-22 0 0 58c0 32-32 60-64 86-10 9-25 23-31 29l0 54c6 6 21 20 31 29 32 26 64 54 64 86l0 58 22 0c12 0 22 10 22 23 0 12-10 22-22 22l-356 0c-12 0-22-10-22-22 0-13 10-23 22-23l22 0 0-58c0-32 32-60 64-86 10-9 25-23 31-29l0-54c-6-6-21-20-31-29-32-26-64-54-64-86l0-58-22 0c-12 0-22-10-22-23 0-12 10-22 22-22l356 0c12 0 22 10 22 22 0 13-10 23-22 23z m-289 58c0 12 31 38 48 52 26 23 46 40 46 61l0 58c0 22-20 38-46 61-17 14-48 40-48 52l0 58 222 0 0-58c0-12-31-38-48-52-26-23-46-40-46-61l0-58c0-21 20-38 46-61 17-14 48-40 48-52l0-58-222 0z m161 292l0 11c0 11 9 20 20 20 10 0 19-8 19-20l0-11c0-10-9-19-19-19-11 0-20 9-20 19z"/>
<glyph glyph-name="inbox" unicode="&#57352;" d="M512 294c0 0 0 2 0 2 0 1 0 1-1 2 0 1 0 2 0 3 0 0-1 1-1 2 0 0 0 1-1 1 0 1-1 2-1 3 0 0 0 0 0 0l-121 147c-4 5-10 8-17 8l-228 0c-7 0-13-3-17-8l-120-147c0 0-1 0-1 0 0-1-1-1-1-3 0 0 0-1-1-1 0-1 0-1 0-2 0-1-1-2-1-3 0 0 0-1 0-2 0 0 0-2 0-2 0-1 0-1 0-1l0-200c-1-23 19-43 44-43l422 0c25 0 45 20 45 44l0 199c0 0 0 1 0 1z m-360 123l207 0 83-100-73 0c-6 0-12-4-17-8l-50-59-92 0-50 59c-5 5-10 8-17 8l-74 0z m315-322l-422 0 0 178 88 0 48-56c6-7 14-11 23-11l104 0c9 0 16 5 23 11l48 56 88 0z"/>
<glyph glyph-name="information" unicode="&#57353;" d="M241 101c-4 0-9 2-12 5-6 4-9 11-7 19l27 139-15-9c-9-5-21-2-26 8-5 9-3 21 7 26l52 30c6 4 15 3 21-1 6-5 9-12 8-20l-29-144 24 10c10 4 21 0 25-10 5-10 0-22-10-26l-57-25c-2-1-5-2-8-2z m55 266c5 5 8 13 8 20 0 7-2 14-8 19-5 5-12 9-19 9-8 0-15-3-20-9-5-5-8-12-8-19 0-7 3-15 8-20 5-5 12-8 20-8 7 0 14 3 19 8z m216-111c0 141-115 256-256 256-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256z m-45 0c0-117-94-211-211-211-117 0-211 94-211 211 0 117 94 211 211 211 117 0 211-94 211-211z"/>
<glyph glyph-name="italic" unicode="&#57354;" d="M282 342c5-5 6-13 5-20l-41-211c10 4 22 0 27-10 6-10 2-24-9-30l-14-8c-5-2-11-4-17-4-7 0-14 2-20 7-12 9-17 22-14 36l39 204-9 0c-13 0-23 10-23 22 0 13 10 23 23 23l36 0c7 0 13-4 17-9z m-10 95c-14 0-26-11-26-26 0-14 12-26 26-26 15 0 26 12 26 26 0 15-12 26-26 26z"/>
<glyph glyph-name="jewel" unicode="&#57355;" d="M506 338l-94 100c-5 4-10 7-16 7l-280 0c-6 0-12-3-16-7l-94-100c-8-9-8-22 1-31l233-234c5-5 10-7 16-7 6 0 12 2 16 7l233 234c9 9 9 22 1 31z m-354-32l42-120-121 120z m123 95l36-56-110 0 36 56z m-19-280l0 1-62 184 124 0-62-184z m104 185l79 0-121-120z m81 39l-85 0-35 56 65 0z m-315 56l65 0-35-56-85 0z"/>
<glyph glyph-name="lifting" unicode="&#57356;" d="M429 390l0-268c0-12-10-22-23-22-12 0-22 10-22 22l0 112-256 0 0-112c0-12-10-22-22-22-13 0-23 10-23 22l0 268c0 12 10 22 23 22 12 0 22-10 22-22l0-112 256 0 0 112c0 12 10 22 22 22 13 0 23-10 23-22z m-396-33c-12 0-22-10-22-23l0-157c0-12 10-22 22-22 13 0 23 10 23 22l0 157c0 13-10 23-23 23z m446 0c-13 0-23-10-23-23l0-157c0-12 10-22 23-22 12 0 22 10 22 22l0 157c0 13-10 23-22 23z"/>
<glyph glyph-name="lightbulb" unicode="&#57357;" d="M256 512c-91 0-167-76-167-169 0-56 22-102 67-133l0-54c0-6 4-12 8-16 4-4 10-6 16-6 0 0 1 0 2 0l153 12c12 1 22 10 22 22l0 42c39 28 67 77 67 133-1 93-77 169-168 169z m67-270c-7-4-11-12-11-19l0-34-112-9 0 43c0 7-3 15-10 19-38 22-56 56-56 101 0 69 55 124 122 124 67 0 122-55 122-124 0-44-20-82-55-101z m31-143c1-13-8-23-21-24l-152-12c0 0-1 0-1 0-12 0-21 9-23 21-1 12 9 23 21 24l152 11c13 1 23-8 24-20z m-48-71c1-12-9-22-21-24l-55-4c0 0-1 0-1 0-12 0-21 9-23 21-1 12 9 22 21 24l55 4c12 1 23-8 24-21z m38 316c-1-10-9-18-19-18-1 0-1 0-2 0-10 1-18 11-17 21 3 32-24 44-28 45-10 4-15 15-11 25 3 10 14 15 24 12 21-8 58-35 53-85z"/>
<glyph glyph-name="link" unicode="&#57358;" d="M505 156l-132 133c-9 9-23 9-32 0l-43-44-53 53 44 43c9 9 9 23 0 32l-133 132c-9 9-22 9-31 0l-118-118c-5-4-7-10-7-16 0-6 2-11 7-15l132-133c5-4 10-7 16-7 5 0 11 3 15 7l44 44 52-53-43-43c-9-9-9-23 0-32l132-132c5-5 10-7 16-7 6 0 11 2 15 7l119 118c9 9 9 23 0 31z m-350 114l-101 101 87 87 101-101-28-28-17 17c-9 9-23 9-32 0-9-9-9-23 0-32l17-16z m216-216l-101 101 28 28 17-17c4-5 10-7 16-7 5 0 11 2 15 7 9 9 9 23 0 32l-17 16 28 28 101-101z"/>
<glyph glyph-name="link-broken" unicode="&#57359;" d="M207 245c0-12-10-22-22-22l-35-2c-5 0-10 2-14 6l-129 130c-5 5-7 10-7 16 0 7 2 12 7 16l116 116c9 9 23 9 32 0l130-130c9-9 9-23 0-31-9-9-23-8-32 0l-114 115-85-85 107-107 23 0c13 0 23-10 23-22z m298-90l-129 129c-4 5-9 6-14 6l-35-1c-12 0-22-10-22-22 0-12 10-22 22-22l24 0 108-107-86-85-114 115c-9 9-23 9-32 0-9-9-9-23 0-31l130-130c5-5 10-7 16-7 6 0 12 2 16 7l116 116c5 4 7 10 7 16 0 6-2 11-7 16z m-166 231c13 0 23 10 23 22l0 56c0 12-10 22-23 22-12 0-22-10-22-22l0-56c0-12 10-22 22-22z m66-69l55 0c12 0 23 10 23 22 0 13-11 23-23 23l-55 0c-13 0-23-10-23-23 0-12 10-22 23-22z m-232-187c-13 0-23-10-23-23l0-55c0-12 10-23 23-23 12 0 22 11 22 23l0 55c0 13-10 23-22 23z m-69 65l-56 0c-12 0-22-10-22-22 0-13 10-23 22-23l56 0c12 0 22 10 22 23 0 12-10 22-22 22z"/>
<glyph glyph-name="list" unicode="&#57360;" d="M508 429c0-19-15-34-34-34l-306 0c-19 0-34 15-34 34 0 18 15 33 34 33l306 0c19 0 34-15 34-33z m-340-206l174 0c18 0 33 15 33 33 0 18-15 33-33 33l-174 0c-19 0-34-15-34-33 0-18 15-33 34-33z m245-106l-245 0c-19 0-34-15-34-34 0-18 15-33 34-33l245 0c19 0 34 15 34 33 0 19-15 34-34 34z m-375 348c-10 0-19-4-26-11-6-7-11-16-11-25 0-10 4-19 11-26 6-7 16-11 25-11 10 0 19 4 26 11 7 7 10 16 10 26 0 9-3 18-10 25-6 7-16 11-25 11z m0-173c-10 0-19-4-26-10-6-7-11-17-11-26 0-9 4-19 11-26 6-6 16-10 25-10 10 0 19 4 26 10 7 7 10 17 10 26 0 9-3 19-10 26-6 6-16 10-25 10z m0-172c-10 0-19-4-26-11-6-7-11-16-11-26 0-9 4-18 11-25 6-7 16-11 25-11 10 0 19 4 26 11 7 7 10 16 10 25 0 10-3 19-10 26-6 7-16 11-25 11z"/>
<glyph glyph-name="loading" unicode="&#57361;" d="M256 369c-12 0-22 10-22 22l0 96c0 12 10 22 22 22 12 0 22-10 22-22l0-96c0-12-10-22-22-22z m-66-22c10 8 12 21 5 31l-57 78c-7 10-21 12-31 5-10-7-12-21-5-31l56-78c5-6 11-9 18-9 5 0 10 1 14 4z m-41-56c3 12-3 25-15 28l-91 29c-12 4-25-2-28-14-4-11 3-24 14-28l92-29c2-1 4-2 6-2 10 0 18 7 22 16z m-106-127l91 29c12 4 18 16 15 28-4 12-17 18-28 14l-92-29c-11-4-18-16-14-28 3-9 12-15 21-15 2 0 5 0 7 1z m95-108l57 78c7 10 5 23-5 31-10 7-24 5-31-5l-57-78c-7-10-5-24 5-31 4-3 9-4 13-4 7 0 14 3 18 9z m140-31l0 96c0 12-10 22-22 22-12 0-22-10-22-22l0-96c0-12 10-22 22-22 12 0 22 10 22 22z m127 26c10 7 12 21 5 31l-57 78c-7 10-21 12-31 5-10-8-12-21-5-31l56-78c5-6 12-9 18-9 5 0 10 1 14 4z m92 127c4 11-3 24-14 27l-92 30c-11 4-24-3-28-15-3-11 3-24 15-27l91-30c2 0 5-1 7-1 9 1 18 7 21 16z m-106 99l92 29c11 4 18 16 14 28-4 12-16 18-28 14l-91-29c-12-4-18-16-15-28 3-9 12-16 22-16 2 0 4 1 6 2z m-38 75l57 78c7 10 5 24-5 31-10 7-24 5-32-5l-56-78c-7-10-5-23 5-31 4-3 9-4 13-4 7 0 14 3 18 9z"/>
<glyph glyph-name="location" unicode="&#57362;" d="M381 468c-32 28-77 44-125 44-48 0-93-16-125-44-39-34-59-86-59-151 0-139 161-304 168-310 5-5 10-7 16-7 6 0 12 2 16 7 7 6 168 171 168 310 0 65-20 117-59 151z m-125-413c-15 17-39 45-62 78-50 71-77 135-77 184 0 139 106 150 139 150 129 0 139-115 139-150 0-98-99-218-139-262z m0 361c-49 0-88-41-88-90 0-50 39-90 88-90 49 0 88 41 88 90 0 50-39 90-88 90z m0-141c-27 0-50 23-50 51 0 29 23 51 50 51 27 0 50-22 50-51 0-28-23-51-50-51z"/>
<glyph glyph-name="lock" unicode="&#57363;" d="M406 328l-16 0 0 39c0 82-56 139-134 139-78 0-134-57-134-139l0-39-16 0c-13 0-23-10-23-22l0-278c0-12 10-22 23-22l300 0c13 0 23 10 23 22l0 278c0 12-10 22-23 22z m-239 39c0 57 37 95 89 95 52 0 89-38 89-95l0-39-178 0z m217-317l-256 0 0 234 256 0z"/>
<glyph glyph-name="lock-open" unicode="&#57364;" d="M406 328l-239 0 0 39c0 57 36 95 88 95 38 0 68-20 81-54 4-12 17-17 29-13 11 5 17 17 12 29-19 51-65 82-122 82-77 0-133-57-133-139l0-39-16 0c-13 0-23-10-23-22l0-278c0-12 10-22 23-22l300 0c13 0 23 10 23 22l0 278c0 12-10 22-23 22z m-22-278l-256 0 0 234 256 0z"/>
<glyph glyph-name="mail" unicode="&#57365;" d="M512 385c0 0 0 1 0 2 0 0 0 1 0 1 0 1-1 2-1 3 0 0 0 1 0 2 0 0-1 1-1 2-1 0-1 1-1 2 0 0 0 0 0 0-1 1-1 1-1 1-1 1-2 2-2 2-1 1-1 1-2 1 0 1-1 1-1 1-1 1-2 1-2 1-1 1-1 1-2 2 0 0-1 0-2 0-1 0-1 1-2 1-1 0-2 0-2 0-1 0-2 0-2 0l-469 0c0 0-1 0-1 0-1 0-2 0-3 0 0 0-1-1-2-1 0 0-2 0-2 0-1 0-1-1-2-2 0 0-1 0-1-1-1 0-2 0-2-1-1 0-1-1-2-1 0 0-1-1-1-2-1 0-1 0-2-1 0 0 0 0 0 0 0-1-1-2-1-2 0-1 0-2-1-2 0-1 0-1 0-2 0-1-1-1-1-3 0 0 0-1 0-1 0-1 0-2 0-2 0 0 0-1 0-1l0-256c0-12 10-22 22-22l468 0c12 0 22 10 22 22l-1 257c0-1 0 0 0 0z m-90-23l-166-124-166 124z m-377-212l0 189 198-146c4-3 8-5 13-5 5 0 9 2 13 5l198 146 0-189z"/>
<glyph glyph-name="map" unicode="&#57366;" d="M502 430l-117 55c-1 0-1 0-1 0-1 1-2 1-2 1-1 0-2 0-2 0-1 0-2 0-3 0 0 0-1 0-2 0 0 0-2 0-2 0-1 0-2-1-2-1-1 0-1 0-1 0l-110-51-111 51c0 0 0 0-1 0-1 1-2 1-2 1-1 0-2 0-2 0-1 0-2 0-3 0 0 0-1 0-2 0 0 0-2 0-2 0-1 0-2-1-2-1-1 0-1 0-1 0l-121-55c-7-4-13-10-13-18l0-362c0-7 5-13 11-17 3-2 7-3 11-3 2 0 6 1 9 2l109 51 110-51c2 0 3-1 4-1 0 0 0 0 1 0 1 0 2 0 4 0 1 0 3 0 4 0 0 0 0 0 1 0 1 1 2 1 3 1l110 51 109-51c3-1 6-1 9-1 4 0 6 1 9 3 5 4 7 10 7 17l0 361c1 8-2 14-9 18z m-268-349l-73 36 0 319 73-37z m-195 318l78 37 0-319-78-36z m239 0l78 37 0-319-78-36z m195-318l-78 36 0 319 78-37z"/>
<glyph glyph-name="media-loop" unicode="&#57367;" d="M440 332l0-221c0-12-10-22-23-22l-322 0c-13 0-23 10-23 22l0 221c0 12 10 24 23 24l123 0-30 30c-9 9-8 22 0 30 9 9 23 9 32 0l68-68c8-9 8-23 0-31l-68-69c-5-4-10-6-16-6-5 0-11 2-15 6-9 9-9 24 0 32l30 31-102 0 0-178 278 0 0 179-47 0c-12 0-22 10-22 22 0 12 10 22 22 22l69 0c13 0 23-12 23-24z"/>
<glyph glyph-name="media-next" unicode="&#57368;" d="M331 273l-234 184c-6 5-15 6-23 3-8-4-13-12-13-20l0-368c0-8 5-16 13-20 3-1 7-2 9-2 5 0 10 2 14 5l234 184c6 4 8 10 8 17 0 7-3 13-8 17z m-225-155l0 276 175-138z m345 313l0-354c0-14-11-25-25-25-14 0-25 11-25 25l0 354c0 14 11 25 25 25 14 0 25-11 25-25z"/>
<glyph glyph-name="media-pause" unicode="&#57369;" d="M184 440l0-368c0-15-13-27-28-27-16 0-28 12-28 27l0 368c0 15 12 27 28 27 15 0 28-12 28-27z m172 27c-15 0-28-12-28-27l0-368c0-15 13-27 28-27 16 0 28 12 28 27l0 368c0 15-12 27-28 27z"/>
<glyph glyph-name="media-play" unicode="&#57370;" d="M387 273l-234 184c-7 5-16 6-23 3-8-4-13-12-13-20l0-368c0-8 5-16 13-20 3-1 6-2 9-2 5 0 10 2 14 5l234 184c5 4 8 10 8 17 0 7-3 13-8 17z m-226-155l0 276 176-138z"/>
<glyph glyph-name="media-previous" unicode="&#57371;" d="M438 460c-8 4-17 2-23-3l-231-184c-6-4-9-10-9-17 0-7 4-13 9-17l231-184c4-3 9-5 14-5 3 0 6 1 9 2 8 4 13 12 13 20l0 368c0 8-5 16-13 20z m-32-341l-173 137 173 137z m-300 312l0-354c0-14-11-25-25-25-14 0-25 11-25 25l0 354c0 14 11 25 25 25 14 0 25-11 25-25z"/>
<glyph glyph-name="media-record" unicode="&#57372;" d="M256 42c-118 0-214 96-214 214 0 118 96 214 214 214 118 0 214-96 214-214 0-118-96-214-214-214z m0 378c-91 0-164-73-164-164 0-91 73-164 164-164 91 0 164 73 164 164 0 91-73 164-164 164z"/>
<glyph glyph-name="media-shuffle" unicode="&#57373;" d="M380 345c-24 0-82-58-125-100-65-62-126-123-175-123l-30 0c-12 0-22 10-22 23 0 12 10 22 22 22l30 0c31 0 94 62 144 111 61 59 114 112 156 112l28 0-30 29c-9 9-9 22 0 31 9 9 23 9 32 0l68-69c5-4 7-10 7-15 0-6-2-12-7-16l-69-68c-4-5-10-7-16-7-5 0-11 3-15 7-9 9-9 24 0 32l30 31z m29-115c-9 9-23 9-32 0-9-9-9-23 0-32l31-31-29 0c-18 0-49 27-79 55-9 8-23 8-32-1-8-8-8-23 1-32 47-43 78-67 111-67l28 0-30-29c-9-9-9-22 0-31 4-5 10-6 15-6 6 0 12 2 16 6l68 69c5 4 7 10 7 15 0 6-2 12-7 16z m-359 115l30 0c24 0 59-30 86-55 5-4 10-6 15-6 7 0 13 2 17 7 8 9 8 24-2 32-43 40-80 67-116 67l-30 0c-12 0-22-10-22-22 0-12 10-23 22-23z"/>
<glyph glyph-name="media-stop" unicode="&#57374;" d="M467 442c0 14-11 25-25 25l-378 0c-14 0-25-11-25-25l0-378c0-14 11-25 25-25l378 0c14 0 25 11 25 25z m-50-353l-328 0 0 328 328 0z"/>
<glyph glyph-name="medical" unicode="&#57375;" d="M505 385c-4 3-9 5-15 5l-117 0 0 66c0 13-11 23-24 23l-186 0c-13 0-24-10-24-23l0-66-117 0c-12 0-22-8-22-20l0-314c0-13 10-23 22-23l468 0c12 0 22 10 22 23l0 313c0 6-2 11-7 16z m-321 49l144 0 0-44-144 0z m283-356l-422 0 0 267 422 0z m-302 136c0 11 9 20 20 20l49 0 0 49c0 11 9 20 19 20 11 0 20-9 20-20l0-49 54 0c11 0 20-9 20-20 0-10-9-19-20-19l-54 0 0-53c0-10-9-19-20-19-10 0-19 8-19 19l0 53-49 0c-11 0-20 9-20 19z"/>
<glyph glyph-name="menu" unicode="&#57376;" d="M434 381l-356 0c-20 0-36 16-36 36 0 20 16 37 36 37l356 0c20 0 36-17 36-37 0-20-16-36-36-36z m36-125c0 20-16 36-36 36l-356 0c-20 0-36-16-36-36 0-20 16-36 36-36l356 0c20 0 36 16 36 36z m0-161c0 20-16 36-36 36l-356 0c-20 0-36-16-36-36 0-20 16-37 36-37l356 0c20 0 36 17 36 37z"/>
<glyph glyph-name="message" unicode="&#57377;" d="M490 479l-468 0c-12 0-22-10-22-23l0-284c0-12 10-22 22-22l262 0 0-94c0-10 7-18 15-21 3-2 6-2 9-2 6 0 13 3 17 8l92 109 73 0c12 0 22 10 22 22l0 284c0 13-10 23-22 23z m-23-284l-60 0c-6 0-14-4-18-8l-61-71 0 56c0 12-7 23-20 23l-263 0 0 239 422 0z m-363 161c0 12 10 22 22 22l161 0c12 0 22-10 22-22 0-12-10-22-22-22l-161 0c-12 0-22 10-22 22z m244-17c-4 4-7 10-7 16 0 6 2 11 7 15 4 5 10 7 15 7 7 0 12-2 16-7 4-4 7-10 7-15 0-7-3-12-7-16-4-5-10-7-16-7-5 1-11 3-15 7z"/>
<glyph glyph-name="meter" unicode="&#57378;" d="M405 373l-108-232c-9-24-26-38-44-38-15 0-28 8-35 20-8 14-8 32 2 47l141 227c7 11 22 15 34 9 11-6 16-20 10-33z m38-67c-8 9-22 10-32 1-9-8-9-22-1-32 37-40 57-92 57-147 0-12 10-22 23-22 12 0 22 10 22 22 0 66-24 130-69 178z m-169 37c12-1 23 8 24 20 1 12-8 23-20 24-8 0-15 1-22 1-141 0-256-117-256-261 0-12 10-22 22-22 13 0 23 10 23 22 0 120 94 216 211 216 6 1 12 0 18 0z"/>
<glyph glyph-name="microphone" unicode="&#57379;" d="M380 22c0-12-10-22-23-22l-203 0c-13 0-23 10-23 22 0 13 10 23 23 23l82 0 0 37c0 11 9 20 20 20 11 0 20-9 20-20l0-37 82 0c12 0 22-10 22-23z m-5 329c-11 0-20-9-20-20l0-145c0-8-3-16-9-21-5-6-13-9-20-9l-140 0c-7 0-15 3-20 9-6 6-9 13-9 21l0 145c0 11-9 20-20 20-11 0-20-9-20-20l0-145c0-18 7-36 20-49 13-13 31-20 49-20l140 0c18 0 36 7 49 20 13 14 20 31 20 49l0 145c0 11-9 20-20 20z m-179-152c-8 9-12 20-12 31l0 232c0 12 4 23 12 33 9 11 21 17 33 17l54 0c25 0 45-27 45-49l0-231c0-23-20-48-45-48l-54-1c-12 0-24 5-33 16z m33 31c0-1 1-3 3-4l48 0c1 1 3 3 3 5l0 232c0 1-2 3-3 4l-48 0c-2-1-3-3-3-5z"/>
<glyph glyph-name="minus" unicode="&#57380;" d="M378 231l-244 0c-14 0-25 11-25 25 0 14 11 25 25 25l244 0c14 0 25-11 25-25 0-14-11-25-25-25z"/>
<glyph glyph-name="monitor" unicode="&#57381;" d="M512 440c0 12-10 22-22 22l-468 0c-12 0-22-10-22-22l0-290c0-12 10-22 22-22l468 0c12 0 22 10 22 22z m-45-267l-422 0 0 244 422 0z m-80-101c0-12-10-22-22-22l-218 0c-12 0-22 10-22 22 0 13 10 23 22 23l217 0c13 0 23-10 23-23z"/>
<glyph glyph-name="move" unicode="&#57382;" d="M512 254c0-6-2-11-7-15l-78-78c-5-5-10-6-16-6-5 0-11 2-15 6-9 9-9 24 0 32l40 41-158 0 0-158 41 41c9 9 23 8 32 0 9-9 8-23 0-32l-79-78c-4-5-10-7-16-7-6 0-11 2-16 7l-78 78c-9 8-9 22 0 31 9 9 23 9 31 0l41-40 0 158-158 0 41-41c9-9 9-24 0-33-5-4-10-6-16-6-5 0-11 2-15 6l-79 79c-5 4-7 9-7 15 0 6 2 12 7 16l78 78c9 9 23 9 32 0 9-9 8-22 0-31l-41-39 158 0 0 158-41-40c-9-9-23-9-31 0-9 9-8 23 0 31l78 78c9 9 23 9 32 0l79-78c9-8 9-22 0-31-5-5-10-7-16-7-6 0-12 2-16 7l-41 40 0-158 158 0-41 40c-9 9-9 21 0 30 9 9 23 9 32 0l78-78c5-4 7-10 7-16z"/>
<glyph glyph-name="music" unicode="&#57383;" d="M495 477c0 7-3 13-9 17-5 5-11 6-18 5l-280-57c-11-2-18-11-18-22l0-255c-16 9-35 14-55 14-25 0-49-8-68-24-20-16-30-36-30-60 0-48 44-84 98-84 26 0 49 7 67 22 19 16 29 37 29 60l0 0 2 218 236 48 0-132c-15 8-33 12-53 12-25 0-49-7-68-22-20-16-31-37-31-61 0-47 45-84 99-84 51 0 94 34 98 79 0 0 0 3 0 9z m-340-410c-10-9-24-11-40-11-29 0-54 16-54 39 0 10 5 19 15 26 10 9 24 12 40 12 29 0 54-18 54-40 0-10-5-18-15-26z m59 284l0 51 236 48 0-50z m182-234c-29 0-54 18-54 40 0 10 5 18 14 26 11 9 25 12 40 12 28 0 55-15 55-36l0-6c-6-21-27-36-55-36z"/>
<glyph glyph-name="network-1" unicode="&#57384;" d="M364 125c-25 0-46-19-55-36l-121 0c-10 0-15 5-15 15l0 124 136 0c9-22 30-36 55-36 33 0 60 27 60 59 0 32-27 59-60 59-25 0-46-15-55-37l-136 0 0 119c0 0-2 1-2 1 22 9 37 30 37 54 0 33-27 59-59 59-33 1-60-26-60-58 0-24 16-46 38-55 0 0 1 0 1 0l0-289c0-34 26-59 60-59l121 0c9-23 30-39 55-39 33 0 60 27 60 59 0 32-28 60-60 60z m0 152c14 0 26-12 26-26 0-14-12-26-26-26-15 0-26 12-26 26 0 14 11 26 26 26z m-216 197c15 0 26-12 26-26 0-14-11-26-26-26-14 0-26 12-26 26 0 14 12 26 26 26z m216-436c-15 0-26 12-26 26 0 14 11 26 26 26 14 0 26-12 26-26 0-14-12-26-26-26z"/>
<glyph glyph-name="network-2" unicode="&#57385;" d="M429 447c0 33-27 59-59 59-33 0-60-26-60-59 0-24 15-45 37-54-1-10-7-72-94-104-40-15-69-34-86-54l0 158c22 9 36 30 36 54 0 33-28 59-60 59-33 0-58-26-58-59 0-24 15-45 37-54l0-274c-22-9-38-30-38-54 0-33 26-59 58-59 33 0 61 26 61 59 0 24-14 45-37 54l0 18c0 6 3 74 102 110 118 43 124 135 124 146 22 9 37 30 37 54z m-287 26c15 0 26-12 26-26 0-13-12-25-26-25-14 0-25 12-25 25 0 14 11 26 25 26z m0-434c-14 0-25 12-25 26 0 13 12 25 25 25 15 0 26-12 26-25 0-14-12-26-26-26z m228 383c-15 0-26 12-26 25 0 14 12 26 26 26 14 0 25-12 25-26 0-13-11-25-25-25z"/>
<glyph glyph-name="network-3" unicode="&#57386;" d="M462 119l0 120c0 34-24 62-58 62l-126 0 0 91c0 0 0 1 0 1 22 9 37 30 37 54 0 33-26 59-59 59-33 0-59-26-59-59 0-24 16-45 37-54 0 0 0-1 0-1l0-91-126 0c-34 0-58-28-58-62l0-120c-22-9-38-30-38-54 0-33 25-59 58-59 32 0 60 26 60 59 0 24-19 45-36 54l0 120c0 10 5 17 13 17l127 0 0-137c-23-9-37-30-37-54 0-33 26-59 59-59 33 0 59 26 59 59 0 24-14 45-37 54l0 137 126 0c9 0 13-8 13-17l0-120c-16-9-35-30-35-54 0-33 28-59 60-59 33 0 58 26 58 59 0 24-16 45-38 54z m-206 354c14 0 26-12 26-26 0-13-12-25-26-25-14 0-26 12-26 25 0 14 12 26 26 26z m-187-434c-14 0-26 12-26 26 0 13 12 25 26 25 14 0 26-12 26-25 0-14-12-26-26-26z m187 0c-14 0-26 12-26 26 0 13 12 25 26 25 14 0 26-12 26-25 0-14-12-26-26-26z m187 0c-14 0-26 12-26 26 0 13 12 25 26 25 14 0 26-12 26-25 0-14-12-26-26-26z"/>
<glyph glyph-name="network-4" unicode="&#57387;" d="M215 450c0 33-26 59-59 59-32 0-61-26-61-59 0-25 16-47 33-55l0-278c-17-8-33-30-33-55 0-33 28-59 60-59 33 0 59 26 59 59 0 25-14 47-36 55l0 278c22 8 37 30 37 55z m-58 25c14 0 26-11 26-25 0-14-12-26-26-26-13 0-25 12-25 26 0 14 11 25 25 25z m0-438c-13 0-25 11-25 25 0 14 12 26 25 26 14 0 26-12 26-26 0-14-12-25-26-25z m227 80l0 278c17 8 33 30 33 55 0 33-28 59-61 59-33 0-59-26-59-59 0-25 15-47 37-55l0-278c-22-8-37-30-37-55 0-33 26-59 59-59 32 0 61 26 61 59 0 25-16 47-33 55z m-29 358c13 0 25-11 25-25 0-14-12-26-25-26-14 0-26 12-26 26 0 14 12 25 26 25z m0-438c-14 0-26 11-26 25 0 14 12 26 26 26 13 0 25-12 25-26 0-14-11-25-25-25z"/>
<glyph glyph-name="network-5" unicode="&#57388;" d="M278 119l0 273c0 0 0 1 0 1 21 9 36 30 36 54 0 33-26 59-58 59-32 0-58-26-58-59 0-24 15-45 36-54 0 0 0-1 0-1l0-273c-21-9-36-30-36-54 0-33 26-59 58-59 32 0 58 26 58 59 0 24-15 45-36 54z m-22 354c14 0 25-12 25-26 0-13-11-25-25-25-14 0-25 12-25 25 0 14 11 26 25 26z m0-434c-14 0-25 12-25 26 0 13 11 25 25 25 14 0 25-12 25-25 0-14-11-26-25-26z"/>
<glyph glyph-name="pamphlet" unicode="&#57389;" d="M454 495c-5 4-12 4-18 1l-117-55-118 55c-1 0-1 0-1 1-1 1-2 1-2 1-1 0-2 0-3 0 0 0-1 0-2 0 0 0-2 0-2 0-1 0-2 0-2 0-1 0-2-1-3-1 0 0 0 0-1-1l-128-59c-7-3-12-10-12-17l0-387c0-6 5-12 10-16 3-3 7-3 11-3 3 0 6 0 9 2l118 55 118-55c1-1 2-2 3-2 0 0 0 0 1 0 1 0 2 0 4 0 2 0 2 0 4 0 0 0 0 0 1 0 1 1 2 1 3 2l125 59c7 3 10 10 10 17l0 387c0 6-2 12-8 16z m-153-431l-90 41 0 343 90-41z m-218 343l90 41 0-343-90-41z m340-302l-84-41 0 343 84 41z"/>
<glyph glyph-name="paperclip" unicode="&#57390;" d="M473 308c8-7 8-20 0-28l-221-220c-37-38-79-57-119-57-10 0-20 1-30 4-39 10-69 40-80 81-13 50 5 105 50 150l247 246c40 40 96 27 128-5 44-44 32-96 2-125l-249-248c-32-33-70-31-89-11-19 19-21 55 12 89l168 168c8 8 20 8 28 0 8-8 8-20 0-28l-169-168c-15-15-17-29-12-34 6-6 20-3 34 11l249 249c25 25 14 53-2 70-19 19-50 28-73 4l-246-246c-35-35-50-76-40-112 7-27 27-47 53-53 34-10 74 6 110 42l222 222c7 7 19 7 27-1z"/>
<glyph glyph-name="pencil" unicode="&#57391;" d="M496 478l-18 18c-11 10-24 16-39 16-15 0-28-6-39-16l-352-352c-2-3-3-5-5-8l-41-105c-4-9-2-18 5-24 4-5 10-7 15-7 3 0 6 1 9 2l105 41c3 1 6 3 8 5l352 352c22 21 22 56 0 78z m-414-365l32-31-52-20z m382 318l-307-307-32 32 306 308c3 3 6 3 8 3 2 0 5 0 8-3l18-18c4-4 4-10-1-15z"/>
<glyph glyph-name="phone" unicode="&#57392;" d="M493 442c-1 1-1 1-2 2l-60 52c-8 8-19 12-31 10-11-1-22-5-29-13-1 0-1-1-2-2l-59-74c-16-17-15-42 1-59 1-1 2-2 3-2l30-20c-2-11-17-41-72-96-55-55-86-70-96-72l-20 30c0 1-1 2-2 3-17 16-43 16-59 1l-74-59c0-1-1-1-2-2-16-16-17-44-2-60l52-60c1 0 1 0 1-1 10-10 26-14 43-14 31 0 66 12 84 20 36 14 105 47 174 116 51 52 93 113 117 175 10 27 33 96 5 125z m-154-269c-103-103-219-131-238-122l-51 59 72 57 20-30c0 0 0-1 1-1 7-9 16-13 27-14 11 0 44-2 132 87 22 21 89 88 86 132 0 11-5 20-13 27 0 0-1 1-2 1l-28 20 57 73 58-51c10-19-18-135-121-238z"/>
<glyph glyph-name="photo" unicode="&#57393;" d="M490 451l-468 0c-12 0-22-10-22-22l0-346c0-12 10-22 22-22l468 0c12 0 22 10 22 22l0 346c0 12-10 22-22 22z m-23-45l0-186-37 31c-8 7-20 7-28 0l-60-50-140 121c-8 7-20 7-28 1l-129-104 0 187z m-422-300l0 55 142 116 140-122c8-7 20-7 29 0l60 50 51-44 0-55z m245 225c0 22 18 40 41 40 23 0 41-18 41-40 0-23-18-41-41-41-23 0-41 18-41 41z"/>
<glyph glyph-name="photo-group" unicode="&#57394;" d="M510 371l-53-255c-1-8-8-14-16-14-1 0-2 0-3 1-9 2-15 11-13 19l50 239-320 65-8-36c-2-9-11-14-20-13-8 3-14 11-12 20l11 52c3 9 11 15 20 13l352-71c4-1 8-4 10-8 2-3 3-8 2-12z m-104-304c0-12-10-22-22-22l-362 0c-12 0-22 10-22 22l0 272c0 13 10 23 22 23l362 0c12 0 22-10 22-23z m-361 250l0-137 94 76c7 6 18 6 26-1l105-93 44 38c8 6 16 6 23 0l19-19 0 136z m311-228l0 41-31 29-42-38c-8-6-18-6-25 0l-108 94-105-86 0-40z m-92 138c19 0 34 15 34 33 0 19-16 34-34 34-19 0-34-15-34-34-1-18 15-33 34-33z"/>
<glyph glyph-name="pill" unicode="&#57395;" d="M462 462c-24 26-57 39-92 39-35 0-67-13-92-39l-228-228c-26-25-39-58-39-92 0-35 13-68 39-92 24-25 57-39 92-39 35 0 68 13 92 39l229 228c25 25 38 58 38 93 0 35-13 67-39 91z m-259-381c-17-16-38-25-61-25-23 0-45 9-61 25-16 16-25 38-25 60 0 23 9 45 25 61l93 93c26-17 89-62 122-121z m228 228l-107-106c-35 57-92 100-122 121l107 107c17 16 38 25 61 25 23 0 45-9 61-25 16-16 25-38 25-60 0-23-9-45-25-62z m-111 66c8-8 8-20 0-28l-27-27c-4-4-9-6-14-6-5 0-10 2-14 6-7 8-7 20 0 28l27 27c8 7 20 7 28 0z m45 45c3-4 6-10 6-16 0-6-2-12-6-16-4-3-10-6-16-6-6 0-12 2-16 6-4 5-6 10-6 16 0 6 2 12 6 16 5 4 10 6 16 6 6 0 12-2 16-6z"/>
<glyph glyph-name="pin" unicode="&#57396;" d="M505 365l-140 140c-9 9-23 9-32 0-1-1-42-43-26-98l-64-63c-35 11-124 29-191-37-9-9-9-23 0-32l96-96-141-141c-9-9-9-23 0-32 4-4 10-6 15-6 6 0 11 2 16 7l141 141 96-96c4-4 10-6 16-6 5 0 11 2 15 6 66 67 48 157 37 191l64 64c54-16 96 25 98 26 9 9 9 23 0 32z m-94-12c-8 4-18 2-25-5l-83-83c-6-6-9-16-5-24 0 0 10-25 11-57 2-33-5-60-20-83l-94 94-95 94c60 40 137 10 140 9 8-4 18-2 24 5l84 83c7 7 8 17 4 25-8 17-5 32 0 44l103-103c-11-4-27-7-44 1z m-132-121c1-2 8-18 8-35 0-11-9-19-20-19 0 0 0 0 0 0-11 1-20 10-19 20 0 7-3 16-4 18-5 11 0 22 10 26 10 4 21 0 25-10z"/>
<glyph glyph-name="plus" unicode="&#57397;" d="M403 253c0-14-11-25-25-25l-100 0 0-94c0-14-11-25-25-25-14 0-25 11-25 25l0 94-94 0c-14 0-25 11-25 25 0 14 11 25 25 25l94 0 0 100c0 14 11 25 25 25 14 0 25-11 25-25l0-100 100 0c14 0 25-11 25-25z"/>
<glyph glyph-name="power" unicode="&#57398;" d="M256 248c-12 0-22 10-22 22l0 192c0 12 10 22 22 22 12 0 22-10 22-22l0-192c0-12-9-22-22-22z m211-8c0 82-45 155-117 191-11 5-24 1-30-10-6-11-1-25 10-30 57-29 93-87 93-151 0-93-75-168-167-168-92 0-167 75-167 168 0 65 36 122 93 151 11 6 16 19 10 30-6 11-19 16-30 10-72-36-117-109-117-191 0-117 94-212 211-212 117 0 211 95 211 212z"/>
<glyph glyph-name="preview" unicode="&#57399;" d="M508 268c-4 6-94 138-252 138-158 0-248-132-252-138-5-7-5-17 0-25 4-5 94-137 252-137 158 0 248 132 252 138 5 7 5 17 0 24z m-252-118c-107 0-181 76-206 106 25 31 98 106 206 106 107 0 181-76 206-106-26-31-99-106-206-106z m13 197c-25 4-49-3-69-18-40-30-49-88-18-129 15-20 36-32 61-36 4 0 9-1 12-1 20 0 39 7 56 18 40 31 49 89 18 130-14 20-36 33-60 36z m22-138c-12-10-28-14-43-11-16 2-30 10-39 22-19 27-14 64 12 83 12 10 28 14 43 11 16-2 30-10 39-22 19-27 14-64-12-83z m-2 80c4-4 7-10 7-15 0-6-3-12-7-16-4-4-10-6-16-6-6 0-11 2-15 6-5 5-7 10-7 16 0 6 2 11 7 15 4 5 10 7 15 7 6 0 12-3 16-7z"/>
<glyph glyph-name="print" unicode="&#57400;" d="M490 417l-112 0 0 67c0 10-5 17-13 17l-218 0c-8 0-13-7-13-17l0-67-112 0c-12 0-22-9-22-21l0-256c0-12 10-23 22-23l82 0-13-87c-1-6 0-12 4-17 4-4 9-7 15-7l292 0c6 0 11 3 15 8 4 4 6 10 5 15l-14 88 82 0c12 0 22 11 22 23l0 256c0 12-10 21-22 21z m-323 50l178 0 0-50-178 0z m-35-422l22 139 204 0 22-139z m335 116l-66 0-7 46c-2 9-9 16-19 16l-238 0c-10 0-18-7-20-16l-6-46-66 0 0 212 422 0z m-365 156c0 10 7 17 17 17l52 0c9 0 17-7 17-17 0-9-8-16-17-16l-52 0c-9 0-17 7-17 16z"/>
<glyph glyph-name="pulse" unicode="&#57401;" d="M512 195c0-12-10-22-22-22l-105 0c-9 0-18 5-21 14l-17 47-54-184c-3-10-12-17-21-17 0 0-1 0-1 0-10 1-19 8-21 18l-72 311-43-173c-3-10-11-16-22-16l-91 0c-12 0-22 10-22 22 0 12 10 22 22 22l74 0 61 245c3 10 12 17 22 17 10 0 19-8 22-18l73-318 50 169c3 10 12 16 21 16 10 1 18-5 22-14l34-97 89 0c12 0 22-10 22-22z"/>
<glyph glyph-name="question" unicode="&#57402;" d="M339 370c18-20 26-47 22-76-6-54-45-73-80-73-2 0-3 0-3 0l0-13c0-12-10-22-22-22-12 0-22 10-22 22l0 18c0 18 8 40 47 40 22 0 33 11 36 33 1 8 1 27-12 42-11 11-28 17-51 17-50 0-52-32-52-36 0-12-10-22-22-22-12 0-23 10-23 22 0 22 18 81 97 81 46 0 72-18 85-33z m-85-203c-7 0-14-3-19-8-5-5-8-13-8-20 0-7 2-14 8-19 5-5 12-9 19-9 8 0 15 3 20 9 5 5 8 12 8 19 0 7-3 15-8 20-5 5-12 8-20 8z m258 89c0-141-115-256-256-256-141 0-256 115-256 256 0 141 115 256 256 256 141 0 256-115 256-256z m-45 0c0 117-94 211-211 211-117 0-211-94-211-211 0-117 94-211 211-211 117 0 211 94 211 211z"/>
<glyph glyph-name="reply" unicode="&#57403;" d="M399 269c-41 40-98 63-165 67l0 59c0 9-7 17-15 21-9 3-19 1-25-5l-137-139c-9-9-9-23 0-32l137-139c6-6 16-8 25-5 8 4 15 12 15 21l0 60c44 1 149-3 187-71 4-7 11-11 19-11 2 0 4 0 6 0 10 3 17 11 17 22-1 3-1 88-64 152z m-191-49c-11-1-19-10-19-22l0-27-83 85 83 85 0-27c0-12 9-22 21-22 120 0 171-58 192-107-78 47-188 36-194 35z"/>
<glyph glyph-name="reply-all" unicode="&#57404;" d="M449 269c-41 40-98 63-165 67l0 59c0 9-7 17-15 21-9 3-19 1-25-5l-138-139c-8-9-9-23 0-32l137-139c6-6 17-8 26-5 8 4 15 12 15 21l0 60c44 1 149-3 187-71 4-7 11-11 19-11 1 0 3 0 5 0 10 3 18 11 18 22-1 3 0 88-64 152z m-191-49c-11-1-19-10-19-22l0-27-83 85 83 85 0-27c0-12 9-22 21-22 120 0 171-58 192-107-78 47-188 36-194 35z m-83-88c9-8 9-22 0-31-4-5-10-7-15-7-6 0-12 2-16 7l-137 139c-8 9-8 23 0 31l137 139c9 9 23 9 31 0 9-9 9-23 0-32l-122-122z"/>
<glyph glyph-name="return" unicode="&#57405;" d="M456 332l0-221c0-12-10-22-22-22l-328 0c-12 0-22 10-22 22 0 13 10 23 22 23l306 0 0 178-280 0 31-32c8-8 8-23 0-32-5-4-11-6-16-6-6 0-11 2-16 6l-69 69c-4 4-6 10-6 15 0 6 2 12 6 16l69 68c9 9 23 9 32 0 9-9 8-22 0-31l-31-29 302 0c12 0 22-12 22-24z"/>
<glyph glyph-name="retweet" unicode="&#57406;" d="M505 182l-69-69c-5-4-10-7-16-7-5 0-12 3-15 7l-71 69c-9 9-9 23-1 31 9 9 23 9 31 0l31-32 0 147-195 0c-12 0-22 10-22 23 0 12 10 22 22 22l220 0c12 0 20-10 20-22l0-169 33 32c9 9 24 8 33 0 8-9 8-23-1-32z m-193-32l-195 0 0 148 30-32c5-4 10-7 16-7 5 0 11 3 15 7 9 9 8 23 0 31l-70 70c-9 8-23 8-32 0l-69-69c-9-9-9-23 0-31 9-9 24-9 33 0l33 31 0-169c0-12 7-23 20-23l220 0c12 0 22 10 22 23 0 12-11 21-23 21z"/>
<glyph glyph-name="rocket" unicode="&#57407;" d="M510 490c-1 11-9 20-20 21-141 11-242-57-305-143-34 11-71 7-105-12-33-18-61-49-78-87-4-9-3-19 5-26 6-6 17-8 25-3 36 19 76 15 100-9l98-98c0 0 0-1 0-1 24-23 28-64 9-99-4-9-2-19 4-26 4-4 10-6 16-6 3 0 6 0 9 2 38 18 69 45 88 78 19 34 23 71 11 106 25 18 48 38 67 61 59 67 85 149 76 242z m-435-194c24 23 54 38 85 32-9-15-16-31-23-46-18 10-40 15-62 14z m222-221c0 22-5 44-15 63 16 7 32 14 47 23 5-32-8-62-32-86z m-45 99l-78 79c39 105 137 217 293 214 5-186-148-267-215-293z m144 222c7-6 11-16 11-25 0-10-4-19-11-26-6-7-16-11-25-11-10 0-19 4-26 11-7 7-11 16-11 26 0 9 4 19 11 25 7 7 16 11 26 11 9 0 19-4 25-11z m-313-231c-26-26-27-77-27-87 0-12 10-22 22-22 0 0 1 0 1 0 12 0 61 1 86 26 15 16 19 32 19 43 0 15-6 29-18 41-28 28-63 19-83-1z m51-51c-6-5-18-9-31-11 2 13 6 25 11 30 4 4 7 6 11 6 3 0 6-2 10-5 3-3 5-7 5-9-1-4-4-8-6-11z"/>
<glyph glyph-name="scale" unicode="&#57408;" d="M263 161c0-12-10-22-23-22l-218 0c-12 0-22 10-22 22 0 13 10 23 22 23l218 0c13 0 23-10 23-23z m227 23l-19 0c-12 0-22-10-22-23 0-12 10-22 22-22l19 0c12 0 22 10 22 22 0 13-10 23-22 23z m-410 167c0 37 30 66 66 66 37 0 67-30 67-66 0-36-30-66-67-66-36 0-66 29-66 66z m44 0c0-12 10-22 22-22 13 0 23 10 23 22 0 12-10 22-23 22-12 0-22-10-22-22z m296-190c0-37-30-66-67-66-37 0-67 30-67 66 0 36 30 66 67 66 37 1 67-29 67-66z m-45 0c0 12-10 22-22 22-12 0-22-10-22-22 0-12 10-22 22-22 12 0 22 10 22 22z m-353 167l13 0c12 0 22 10 22 23 0 12-10 22-22 22l-13 0c-12 0-22-10-22-22 0-13 10-23 22-23z m490 23c0 12-10 22-22 22l-227 0c-12 0-22-10-22-22 0-13 10-23 22-23l227 0c12 0 22 10 22 23z"/>
<glyph glyph-name="search" unicode="&#57409;" d="M322 500c-95 0-173-79-173-174 0-41 14-78 37-108l-164-166c-9-10-9-25 0-35 5-5 11-7 18-7 6 0 12 2 17 7l164 166c28-20 63-32 100-32 95 0 173 78 173 174 0 96-77 175-172 175z m0-305c-71 0-128 58-128 130 0 72 57 130 128 130 70 0 128-58 128-130 0-72-58-130-128-130z m86 128c-1-10-10-17-19-17-1 0-2 0-3 0-10 2-18 11-16 22 3 29-29 44-31 44-9 5-13 16-9 26 4 9 16 14 26 10 2-1 60-27 52-85z m-41-43c4-3 7-10 7-15 0-6-2-12-7-16-4-4-10-6-15-6-6 0-12 2-16 6-4 4-7 10-7 16 0 5 3 12 7 15 4 4 10 7 16 7 5 0 11-2 15-7z"/>
<glyph glyph-name="shopping-bag" unicode="&#57410;" d="M444 372c-4 4-9 6-15 6l-56 0 0 10c0 66-54 118-116 118l-2 0c-62 0-116-52-116-118l0-10-56 0c-12 0-22-10-22-23l0-327c0-12 10-22 22-22l346 0c12 0 22 10 22 22l0 328c0 5-2 11-7 16z m-260 16c0 41 33 74 71 74l2 0c38 0 71-33 71-74l0-10-144 0z m222-338l-300 0 0 284 33 0 0-38c0-13 10-23 22-23 13 0 23 10 23 23l0 38 144 0 0-38c0-13 10-23 23-23 12 0 22 10 22 23l0 38 33 0z"/>
<glyph glyph-name="skip" unicode="&#57411;" d="M461 189l-99-99c-5-5-11-8-18-8-6 0-12 3-17 8-10 9-10 25 0 35l56 56-316 0c-7 0-14 3-19 8-5 4-9 11-9 17l0 127c0 14 11 25 25 25 14 0 25-11 25-25l0-102 293 0-55 57c-10 9-10 25 0 35 9 9 25 9 35 0l99-99c10-10 10-26 0-35z m-393 188c7 0 14 3 19 8 5 5 9 12 9 20 0 7-3 14-9 19-5 5-12 8-19 8-7 0-15-3-20-8-5-5-8-12-8-19 0-8 3-15 8-20 5-4 13-8 20-8z"/>
<glyph glyph-name="stack" unicode="&#57412;" d="M451 422c0 59-98 90-195 90-97 0-195-31-195-90 0 0 0-1 0-1 0 0 0-1 0-1l0-333c0-57 98-87 195-87 97 0 195 30 195 87l0 333c0 0 0 1 0 1 0 1 0 1 0 1z m-45-168c0-12-53-43-150-43-97 0-150 30-150 43l0 109c38-20 94-30 150-30 56 0 112 10 150 30z m-150 213c99 0 150-31 150-45 0-13-51-45-150-45-99 0-150 32-150 45 0 14 51 45 150 45z m0-422c-97 0-150 30-150 42l0 109c38-19 94-29 150-29 56 0 112 10 150 29l0-109c0-12-53-42-150-42z m95 228l0 28c0 10 9 19 19 19 11 0 20-9 20-19l0-28c0-10-9-19-20-19-10 0-19 8-19 19z"/>
<glyph glyph-name="star" unicode="&#57413;" d="M393 22c-4 0-8 1-12 4l-125 81-125-81c-8-5-18-5-25 0-7 6-11 15-9 24l40 139-118 100c-7 5-10 15-7 24 3 9 11 14 20 15l141 10 63 139c3 8 11 13 20 13 9 0 17-5 20-13l63-139 141-10c9 0 17-6 20-15 3-9 0-18-7-24l-117-99 39-139c3-9 0-19-8-24-4-3-9-5-14-5z m-137 134c4 0 8-1 12-4l88-57-27 96c-2 9 0 18 7 23l86 73-99 8c-8 1-15 6-19 13l-48 106-48-106c-4-7-11-12-19-13l-99-7 86-73c7-6 9-15 7-23l-27-97 88 57c4 3 8 4 12 4z"/>
<glyph glyph-name="stopwatch" unicode="&#57414;" d="M452 403c5-4 10-6 15-6 7 0 13 3 17 8 9 8 8 23-1 31l-29 26-29 27c-9 8-24 7-32-2-8-9-7-23 2-32l12-11-22-25c-25 19-55 33-87 40-1 7-4 15-9 22-6 8-17 17-39 18 0 0 0 0-1 0-19 0-30-8-36-15-7-8-10-18-11-25-103-22-180-113-180-222 0-125 102-228 227-228 126 0 227 102 227 228 0 59-22 112-58 153l22 25z m-203-348c-100 0-182 81-182 182 0 101 82 183 182 183 101 0 183-82 183-183 0-101-82-182-183-182z m39 182c0-21-18-38-39-38-21 0-38 17-38 38 0 13 6 25 17 31l0 90c0 13 10 23 22 23 13 0 23-10 23-23l0-90c11-6 15-18 15-31z"/>
<glyph glyph-name="store" unicode="&#57415;" d="M223 203c0 11-9 20-20 20l-72 0c-11 0-20-9-20-20l0-72c0-11 9-20 20-20l72 0c11 0 20 9 20 20z m-73-19l34 0 0-34-34 0z m356 187l-50 50 0 58c0 12-10 22-22 22l-356 0c-12 0-22-10-22-22l0-58-50-50c-4-4-6-10-6-16l0-57c0-12 10-20 22-20l468 0c12 0 22 8 22 21l0 56c0 6-2 12-6 16z m-94 85l0-27-312 0 0 27z m55-133l-422 0 0 23 45 44 332 0 45-44z m12-90l0-200c0-12-10-22-23-22l-76 0c-12 0-22 9-22 21l0 118-52 0 0-117c0-12-10-22-23-22l-227 0c-12 0-23 10-23 22l0 200c0 12 10 22 23 22 12 0 22-10 22-22l0-177 184 0 0 119c0 12 9 20 21 20l97 0c12 0 20-8 20-20l0-119 34 0 0 177c0 12 10 22 22 22 12 0 23-10 23-22z"/>
<glyph glyph-name="suitcase" unicode="&#57416;" d="M500 379c-8 8-19 11-29 11l-120 0 0 66c0 13-13 23-25 23l-140 0c-12 0-25-10-25-23l0-66-120 0c-23 0-41-17-41-39l0-276c0-23 18-42 41-42l429 0c23 0 41 19 41 42l0 275c1 11-3 21-11 29z m-133-34l0-267-222 0 0 267z m-161 89l100 0 0-44-100 0z m-161-89l66 0 0-267-66 0z m422-267l-66 0 0 267 66 0z"/>
<glyph glyph-name="swap" unicode="&#57417;" d="M512 203c0-6-2-12-7-15l-103-104c-5-4-10-6-16-6-5 0-11 3-15 7-9 8-9 23 0 32l65 67-218 0c-12 0-22 10-22 22 0 12 10 22 22 22l218 0-65 64c-9 9-9 22 0 30 9 9 22 9 31 0l104-103c4-4 6-10 6-16z m-436 81l218 0c12 0 22 10 22 22 0 12-10 22-22 22l-218 0 65 67c9 9 9 24 0 32-9 9-22 9-31 1l-103-104c-5-3-7-9-7-15 0-6 2-12 7-16l103-103c5-5 10-7 16-7 5 0 11 2 15 7 9 9 9 21 0 30z"/>
<glyph glyph-name="tag" unicode="&#57418;" d="M490 401l-329 0c-5 0-10-3-14-6l-139-122c-5-5-8-11-8-17 0-7 3-12 8-17l139-122c4-3 9-6 14-6l329 0c12 0 22 10 22 23l0 244c0 13-10 23-22 23z m-23-245l-297 0-114 100 114 100 297 0z m-316 126c7 6 17 10 26 10 9 0 19-4 26-10 6-7 10-17 10-26 0-9-4-19-10-26-7-6-17-10-26-10-9 0-19 4-26 10-6 7-10 17-10 26 0 9 4 19 10 26z"/>
<glyph glyph-name="tag-delete" unicode="&#57419;" d="M490 401l-329 0c-5 0-10-3-14-6l-139-122c-5-5-8-11-8-17 0-7 3-12 8-17l139-122c4-3 9-6 14-6l329 0c12 0 22 10 22 23l0 244c0 13-10 23-22 23z m-23-245l-297 0-114 100 114 100 297 0z m-222 70l30 30-30 30c-7 8-7 20 0 27 8 8 20 8 28 0l30-30 30 30c8 8 20 8 27 0 8-7 8-20 0-27l-29-30 30-30c7-8 7-20 0-27-4-4-9-6-14-6-5 0-10 2-14 6l-30 30-30-30c-4-4-9-6-14-6-5 0-10 2-14 6-7 7-7 19 0 27z"/>
<glyph glyph-name="tags" unicode="&#57420;" d="M419 225c0 6-3 12-7 15l-208 205c-4 4-9 6-14 6l-166 11c-7 0-13-2-17-7-5-4-8-10-7-17l11-163c0-6 2-11 6-15l208-204c5-4 10-6 16-6 6 0 11 2 16 6l155 153c4 4 7 10 7 16z m-178-121l-186 183-9 129 133-9 186-182z m-96 262c6-6 10-15 10-23 0-9-4-17-10-24-6-6-15-10-24-10-9 0-17 4-24 10-6 7-10 15-10 24 0 9 3 17 10 23 6 6 15 10 24 10 9 0 18-4 24-10z m367-141c0-5-2-10-6-14l-155-153c-4-3-9-5-14-5-5 0-10 2-14 5-7 8-7 20 0 28l142 138-195 191c-7 8-7 20 0 27 8 8 21 8 28 0l208-203c4-4 6-9 6-14z"/>
<glyph glyph-name="thumbs-down" unicode="&#57421;" d="M179 512c70 0 178-23 205-42 6-4 9-11 9-18l0-218c0-6-3-13-8-17-2-1-41-32-81-54-51-28-86-67-94-92-11-30-25-71-71-71-22 0-39 12-49 33-19 44 1 104 35 151-23 5-50 12-67 17-30 10-51 32-55 59-4 28 10 57 40 78 22 58 59 151 86 166 10 6 28 8 50 8z m169-73c-42 17-172 36-197 26-12-11-45-86-68-149-2-4-5-8-8-11-19-12-28-27-27-39 2-10 11-18 24-23 28-9 97-24 98-24 8-1 14-7 17-15 3-8 1-16-5-21-50-54-59-110-50-132 3-6 5-6 7-6 11 0 16 7 28 41 13 39 60 85 115 115 26 15 53 34 66 44z m88 15l0-222c0-20 16-36 36-36 21 0 37 16 37 36l0 222c0 20-16 36-37 36-20 0-36-16-36-36z"/>
<glyph glyph-name="thumbs-up" unicode="&#57422;" d="M333 0c-69 0-178 23-204 42-7 4-10 11-10 18l0 218c0 6 3 13 8 17 2 1 41 32 82 54 50 28 85 67 94 92 10 30 24 71 70 71 22 0 39-12 49-33 19-44-1-104-35-151 23-5 50-12 67-17 31-10 51-32 55-59 4-28-10-57-39-78-22-59-59-151-87-166-10-6-28-8-50-8z m-169 73c42-17 172-36 197-26 12 11 45 86 68 149 2 4 5 8 8 11 19 12 28 27 27 39-2 10-11 18-24 23-28 9-97 24-98 24-8 1-14 7-17 15-3 8-1 16 5 21 50 54 59 110 50 132-3 6-5 6-7 6-11 0-16-7-28-41-13-39-60-85-115-115-26-15-53-34-66-44z m-88-15l0 222c0 21-16 37-36 37-21 0-37-16-37-37l0-222c0-20 16-36 36-36 20 0 37 16 37 36z"/>
<glyph glyph-name="ticket" unicode="&#57423;" d="M151 277l126-126c5-5 12-7 19-7 6 0 13 2 18 7l47 47c5 5 7 11 7 18 0 7-2 14-7 19l-126 126c-5 5-11 7-19 7-6 0-13-2-18-7l-47-47c-10-10-10-27 0-37z m65 55l116-116-36-36-116 116z m289-129l-302 302c-9 9-23 9-32 0l-42-42c-6-6-8-16-5-24 6-15 2-32-9-43-11-11-28-14-43-9-8 4-17 1-24-5l-42-42c-4-4-6-10-6-16 0-6 2-11 7-15l302-302c4-5 10-7 15-7 7 0 12 2 16 7l42 42c6 6 9 16 5 24-6 15-2 32 9 43 11 11 28 14 43 9 8-4 18-1 24 5l42 42c9 9 9 23 0 31z m-64-33c-28 6-56-2-76-23-21-20-29-49-24-76l-17-18-270 271 17 18c28-6 56 2 76 23 21 20 29 49 24 76l17 18 271-271z"/>
<glyph glyph-name="time-reverse" unicode="&#57424;" d="M512 256c0-120-97-217-216-217-44 0-86 13-122 38-10 7-13 20-6 31 7 10 21 13 31 6 29-20 63-31 97-31 95 0 171 78 171 173 0 95-76 173-171 173-92 0-168-74-171-167l51 52c9 9 23 9 32 0 9-8 9-22 0-31l-85-85c-4-5-10-7-16-7-6 0-11 2-15 7l-85 85c-9 9-9 23 0 32 9 9 22 9 31 0l43-43c7 112 101 201 215 201 119 0 216-97 216-217z m-217 126c-12 0-22-10-22-22l0-104c0-6 2-12 7-16l48-47c4-5 10-7 16-7 5 0 12 2 16 7 8 8 8 22-1 31l-42 41 0 95c0 12-10 22-22 22z"/>
<glyph glyph-name="to-do" unicode="&#57425;" d="M139 413l0 71c0 16 12 28 28 28 16 0 28-12 28-28l0-71c0-16-12-28-28-28-16 0-28 12-28 28z m206-28c16 0 28 12 28 28l0 71c0 16-12 28-28 28-16 0-28-12-28-28l0-71c0-16 12-28 28-28z m-188-96l198 0c12 0 22 10 22 23 0 12-10 22-22 22l-198 0c-12 0-22-10-22-22 0-13 10-23 22-23z m310 184l-46 0c-12 0-22-10-22-22 0-12 10-22 22-22l24 0 0-379-378 0 0 379 24 0c12 0 22 10 22 22 0 12-10 22-22 22l-46 0c-13 0-23-12-23-24l0-421c0-12 10-22 23-22l422 0c13 0 23 10 23 22l0 421c0 12-10 24-23 24z m-229-44l36 0c13 0 23 10 23 22 0 12-10 22-23 22l-36 0c-13 0-23-10-23-22 0-12 10-22 23-22z m-81-240l198 0c12 0 22 10 22 22 0 13-10 23-22 23l-198 0c-12 0-22-10-22-23 0-12 10-22 22-22z"/>
<glyph glyph-name="toggles" unicode="&#57426;" d="M467 240l0-218c0-12-10-22-22-22-12 0-22 10-22 22l0 218c0 13 10 23 22 23 12 0 22-10 22-23z m-22 209c12 0 22 10 22 22l0 19c0 12-10 22-22 22-12 0-22-10-22-22l0-19c0-12 10-22 22-22z m-312-193c0-37-30-67-66-67-36 0-67 30-67 67 0 37 30 67 66 67 36 0 67-30 67-67z m-45 0c0 12-10 22-21 22-12 0-22-10-22-22 0-12 10-22 21-22 12 0 22 10 22 22z m234-110c0-36-30-66-66-66-36 0-66 30-66 66 0 37 30 67 66 67 36 0 66-29 66-67z m-44 0c0 13-10 23-22 23-12 0-22-10-22-23 0-12 10-22 22-22 12 0 22 10 22 22z m234 207c0-37-30-67-66-67-36 0-66 30-66 67 0 37 30 67 66 67 36 0 66-30 66-67z m-45 0c0 12-10 22-21 22-12 0-22-10-22-22 0-12 10-22 22-22 11 0 21 9 21 22z m-211-296c-12 0-22-10-22-22l0-13c0-12 10-22 22-22 12 0 22 10 22 22l0 13c0 12-10 22-22 22z m0 184c12 0 22 10 22 22l0 227c0 12-10 22-22 22-12 0-22-10-22-22l0-227c0-12 10-22 22-22z m-189-81c-12 0-22-10-22-23l0-115c0-12 10-22 22-22 12 0 22 10 22 22l0 115c0 13-10 23-22 23z m0 191c12 0 22 10 22 22l0 117c0 12-10 22-22 22-12 0-22-10-22-22l0-117c0-12 10-22 22-22z"/>
<glyph glyph-name="trash" unicode="&#57427;" d="M436 343l-17-322c0-12-11-21-22-21l-282 0c-11 0-22 9-22 21l-17 322c-1 12 9 23 21 23 12 1 23-9 23-21l16-300 240 0 16 300c1 12 11 22 24 21 11 0 21-11 20-23z m59 74c0-12-10-22-22-22l-434 0c-12 0-22 10-22 22 0 13 10 23 22 23l122 0 0 50c0 10 8 16 18 16l154 0c10 0 18-6 18-16l0-50 122 0c12 0 22-10 22-23z m-295 23l112 0 0 27-112 0z m10-362c11 0 19 10 19 21l-5 240c0 11-9 20-20 20-11 0-20-9-19-20l5-241c0-11 9-20 20-20z m92 0c10 0 19 9 19 19l6 241c0 10-9 20-19 20-11 0-20-9-20-19l-6-240c0-12 9-21 20-21-1 0-1 0 0 0z"/>
<glyph glyph-name="trophy" unicode="&#57428;" d="M301 355l0 50c0 10 8 19 19 19 11 0 19-9 19-19l0-50c0-11-8-19-19-19-11 0-19 8-19 19z m18-76c6 0 12 3 15 7 4 5 7 10 7 16 0 6-2 11-7 15-3 5-10 7-15 7-6 0-12-2-16-7-4-4-6-10-6-15 0-6 2-12 6-16 4-4 10-7 16-7z m147 22c-16-18-37-28-61-32-13-75-66-113-127-120l0-82 48 0c12 0 22-10 22-22 0-13-10-23-22-23l-140 0c-12 0-22 10-22 23 0 12 10 22 22 22l48 0 0 82c-61 7-114 45-126 120-25 4-45 14-62 32-46 47-44 128-43 131 0 10 9 19 19 19l84 0 0 16c0 13 9 23 21 23l258 0c12 0 21-10 21-23l0-16 84 0c10 0 19-9 19-19 0-3 2-85-43-131z m-392 26c9-9 21-15 32-18l0 103-64 0c3-22 9-61 32-85z m288 118l-212 0 0-144c0-81 55-109 106-109 51 0 106 29 106 109z m76-118c22 22 29 57 32 85l-64 0 0-103c11 3 23 9 32 18z"/>
<glyph glyph-name="upload" unicode="&#57429;" d="M495 185l0-152c0-15-12-27-28-27l-422 0c-16 0-28 12-28 27l0 152c0 15 12 28 28 28 15 0 27-13 27-28l0-124 368 0 0 124c0 15 12 28 27 28 16 0 28-13 28-28z m-330 161l63 65 0-241c0-16 12-28 28-28 16 0 28 12 28 28l0 240 63-64c6-6 13-9 20-9 8 0 14 3 20 8 11 11 11 28 0 40l-111 113c-6 6-13 8-20 8-7 0-14-2-20-8l-111-113c-10-12-10-29 1-40 10-11 28-10 39 1z"/>
<glyph glyph-name="user" unicode="&#57430;" d="M256 194c82 0 150 68 150 150 0 84-68 151-150 151-82 0-150-67-150-150 0-83 68-151 150-151z m0 257c58 0 105-48 105-106 0-58-47-106-105-106-58 0-105 48-105 106 0 58 47 106 105 106z m70-271c-8 2-16 0-22-5l-48-41-48 41c-7 5-14 7-22 5-31-10-186-64-186-141 0-12 10-22 22-22l468 0c12 0 22 10 22 22 0 77-155 131-186 141z m-270-119c25 26 84 55 133 72l53-45c8-7 20-7 28 0l53 45c49-17 108-46 133-72z"/>
<glyph glyph-name="user-group" unicode="&#57431;" d="M197 210c65 0 118 53 118 117 0 65-53 118-118 118-65 0-118-53-118-118 1-64 53-117 118-117z m0 191c41 0 73-33 73-73 0-40-32-73-73-73-41 0-73 33-73 73 0 40 33 73 73 73z m53-202c-6 2-12 1-18-2l-35-21-35 21c-6 3-12 4-18 2-34-11-144-50-144-110 0-12 10-22 22-22l350 0c12 0 22 10 22 22 0 60-110 99-144 110z m-188-88c19 15 51 30 85 43l38-23c8-5 16-5 23 0l38 23c34-12 66-28 85-43z m444 17c0-9-7-17-16-17l-75 0c-9 0-17 8-17 17 0 9 8 17 17 17l50 0c-9 11-22 20-39 29-8 4-11 14-6 22 4 8 14 11 22 7 24-13 64-40 64-75z m-93 147c0 24-20 44-44 44-6 0-12-1-17-3-9-4-19 0-22 8-3 9 1 19 9 22 9 4 19 6 30 6 43 0 77-34 77-77 0-43-35-77-77-77-22 0-43 9-58 26-6 6-5 17 2 23 6 6 17 6 23-2 8-9 21-15 34-15 23 1 43 21 43 45z"/>
<glyph glyph-name="user-id" unicode="&#57432;" d="M347 203c43 0 78 35 78 78 0 43-35 78-78 78-43 0-78-35-78-78 0-43 35-78 78-78z m0 123c24 0 44-20 44-45 0-24-20-44-44-44-25 0-45 20-45 44 0 25 20 45 45 45z m-260-9c0 10 8 17 17 17l97 0c9 0 17-7 17-17 0-9-8-16-17-16l-97 0c-9 0-17 7-17 16z m114-78l-97 0c-9 0-17 8-17 17 0 9 8 17 17 17l97 0c9 0 17-8 17-17 0-9-8-17-17-17z m-25-44c0-10-7-17-16-17l-56 0c-9 0-17 7-17 17 0 9 8 16 17 16l56 0c9 0 16-7 16-16z m336 191c0 20-17 37-37 37l-438 0c-20 0-37-17-37-37l0-260c0-20 17-37 37-37l438 0c20 0 37 17 37 37z m-467-8l422 0 0-232c-23 24-65 39-81 45-3 1-7 1-11 0l-28-10-29 10c-3 1-7 0-11-1-18-6-70-23-91-56l-171 0z m220-244c13 11 30 16 48 23l28-10c3-1 8-1 11 0l29 9c17-6 34-12 47-23l-163 0z"/>
<glyph glyph-name="vibrate" unicode="&#57433;" d="M6 371c-9 10-8 26 2 34 90 75 182 49 260 14 82-38 148-34 203 11 10 9 26 7 35-4 9-10 7-26-3-34-39-32-83-49-132-49-38 0-80 10-124 31-77 35-142 48-206-7-11-8-27-7-35 4z m465-81c-54-45-121-48-203-11-78 35-169 62-259-14-11-8-12-24-3-34 9-11 25-12 35-3 65 54 129 42 207 6 44-20 85-30 124-30 48 0 92 16 131 48 11 9 12 25 3 35-8 10-24 12-35 3z m0-140c-54-45-121-48-203-11-78 36-169 62-259-13-11-9-12-25-3-35 9-10 25-11 35-3 65 54 129 42 207 7 44-20 85-31 124-31 48 0 92 16 131 48 11 9 12 25 3 35-8 10-24 12-35 3z"/>
<glyph glyph-name="view-apps" unicode="&#57434;" d="M111 356c-10 0-20 5-28 12-7 7-11 17-11 27 0 10 5 20 11 28 8 7 18 11 28 11 10 0 20-4 28-11 7-7 11-17 11-28 0-10-4-20-11-27-8-7-18-12-28-12z m172 12c8 7 12 17 12 27 0 10-4 20-12 28-7 7-17 11-27 11-10 0-21-4-28-11-7-7-11-17-11-28 0-10 4-20 11-27 7-7 17-12 28-12 10 0 20 5 27 12z m145 0c7 7 12 17 12 27 0 10-5 20-12 28-7 7-17 11-27 11-10 0-21-4-28-11-7-7-11-17-11-28 0-10 4-20 11-27 7-7 17-12 28-12 10 0 20 5 27 12z m-289-139c7 7 11 17 11 27 0 10-4 20-11 28-8 7-18 11-28 11-10 0-20-4-28-11-7-7-11-17-11-28 0-10 5-20 11-27 8-8 18-12 28-12 10 0 20 4 28 12z m144 0c8 7 12 17 12 27 0 10-4 20-12 28-7 7-17 11-27 11-10 0-21-4-28-11-7-7-11-17-11-28 0-10 4-20 11-27 7-8 17-12 28-12 10 0 20 4 27 12z m145 0c7 7 12 17 12 27 0 10-5 20-12 28-7 7-17 11-27 11-10 0-21-4-28-11-7-7-11-17-11-28 0-10 4-20 11-27 7-8 17-12 28-12 10 0 20 4 27 12z m-289-139c7 7 11 17 11 27 0 10-4 20-11 28-8 7-18 11-28 11-10 0-20-5-28-11-7-8-11-18-11-28 0-10 5-20 11-27 8-8 18-12 28-12 10 0 20 4 28 12z m144 0c8 7 12 17 12 27 0 10-4 20-12 28-7 7-17 11-27 11-10 0-21-5-28-11-7-8-11-18-11-28 0-10 4-20 11-27 7-8 17-12 28-12 10 0 20 4 27 12z m145 0c7 7 12 17 12 27 0 10-5 20-12 28-7 7-17 11-27 11-10 0-21-5-28-11-7-8-11-18-11-28 0-10 4-20 11-27 7-8 17-12 28-12 10 0 20 4 27 12z"/>
<glyph glyph-name="view-list" unicode="&#57435;" d="M142 434c0 16 13 28 28 28l309 0c15 0 27-12 27-28 0-15-12-28-27-28l-309 0c-15 0-28 13-28 28z m337-150l-309 0c-15 0-28-12-28-28 0-16 13-28 28-28l309 0c15 0 27 12 27 28 0 16-12 28-27 28z m0-178l-309 0c-15 0-28-13-28-28 0-16 13-28 28-28l309 0c15 0 27 12 27 28 0 15-12 28-27 28z m-429 187c-22 0-39-18-39-40 0-21 17-39 39-39 22 0 39 18 39 39 0 22-18 40-39 40z m0 180c-22 0-39-18-39-39 0-22 17-40 39-40 22 0 39 18 39 40 0 21-18 39-39 39z m0-355c-22 0-39-18-39-40 0-21 17-39 39-39 22 0 39 18 39 39 0 22-18 40-39 40z"/>
<glyph glyph-name="view-list-large" unicode="&#57436;" d="M482 282l-249 0c-17 0-30 14-30 30l0 75c0 17 13 30 30 30l248 0c17 0 30-13 30-30l0-75c1-16-12-30-29-30z m-235 45l220 0 0 46-220 0z m235-232l-249 0c-17 0-30 13-30 30l0 75c0 16 13 30 30 30l248 0c17 0 30-14 30-30l0-75c1-17-12-30-29-30z m-235 44l220 0 0 46-220 0z m-115 143l-101 0c-17 0-31 14-31 31l0 73c0 17 14 31 31 31l101 0c17 0 31-14 31-31l0-73c0-17-14-31-31-31z m-87 45l74 0 0 46-74 0z m87-232l-101 0c-17 0-31 14-31 31l0 73c0 17 14 31 31 31l101 0c17 0 31-14 31-31l0-73c0-17-14-31-31-31z m-87 44l74 0 0 46-74 0z"/>
<glyph glyph-name="view-thumb" unicode="&#57437;" d="M194 285l-152 0c-17 0-31 14-31 32l0 119c0 18 14 31 31 31l152 0c17 0 31-13 31-31l0-119c0-18-14-32-31-32z m-138 45l125 0 0 93-125 0z m414-45l-152 0c-17 0-31 14-31 32l0 119c0 18 14 31 31 31l152 0c17 0 31-13 31-31l0-119c0-18-14-32-31-32z m-139 45l125 0 0 93-125 0z m-137-285l-152 0c-17 0-31 13-31 31l0 119c0 18 14 32 31 32l152 0c17 0 31-14 31-32l0-119c0-18-14-31-31-31z m-138 44l125 0 0 93-125 0z m414-44l-152 0c-17 0-31 13-31 31l0 119c0 18 14 32 31 32l152 0c17 0 31-14 31-32l0-119c0-18-14-31-31-31z m-139 44l125 0 0 93-125 0z"/>
<glyph glyph-name="volume-full" unicode="&#57438;" d="M210 488c-9 3-17 2-24-5l-110-110-54 0c-12 0-22-10-22-22l0-190c0-12 10-22 22-22l55 0 109-110c5-5 10-7 16-7 3 0 5 1 8 2 8 3 13 12 13 21l0 422c0 9-5 18-13 21z m-32-389l-77 78c-5 4-9 7-15 7l-41 0 0 144 41 0c6 0 10 3 15 7l77 78z m118 63c-4-5-11-7-17-7-5 0-10 1-15 5-9 9-10 23-1 31 55 63 5 123 0 130-9 9-8 23 1 31 9 8 24 7 32-2 29-32 67-113 0-188z m67-60c-4-5-10-7-16-7-5 0-11 2-15 6-9 8-10 22-2 31 110 123 4 243 0 248-8 10-7 23 2 32 9 8 23 7 31-2 2-2 136-156 0-308z m71-45c-5-5-11-7-17-7-5 0-11 2-15 6-9 8-10 22-2 31 62 70 82 148 57 231-19 63-56 106-57 106-8 9-7 23 2 31 9 9 23 7 32-1 1-2 175-200 0-397z"/>
<glyph glyph-name="volume-low" unicode="&#57439;" d="M299 488c-8 3-17 2-24-5l-109-110-55 0c-12 0-22-10-22-22l0-190c0-12 10-22 22-22l55 0 110-110c4-5 10-7 16-7 2 0 4 1 7 2 8 3 13 12 13 21l0 422c0 9-5 18-13 21z m-32-389l-77 78c-5 4-9 7-15 7l-41 0 0 144 41 0c6 0 10 3 14 7l78 78z m119 63c-5-5-11-7-17-7-6 0-11 1-15 5-9 9-10 23-2 31 58 64 3 127 0 130-8 8-7 23 2 31 9 8 23 7 31-2 30-32 67-113 1-188z"/>
<glyph glyph-name="volume-medium" unicode="&#57440;" d="M254 488c-9 3-18 2-24-5l-109-110-54 0c-12 0-22-10-22-22l0-190c0-12 10-22 22-22l54 0 109-110c5-5 10-7 16-7 3 0 5 1 8 2 8 3 13 12 13 21l0 422c0 9-5 18-13 21z m-31-389l-78 78c-4 4-9 7-15 7l-41 0 0 144 41 0c6 0 11 3 15 7l78 78z m117 63c-4-5-11-7-17-7-5 0-10 1-15 5-9 9-10 23-1 31 55 63 5 123 0 130-9 9-8 23 2 31 9 8 23 7 31-2 29-32 66-113 0-188z m67-60c-5-5-11-7-17-7-5 0-10 2-15 6-9 8-10 22-2 31 110 122 5 243 0 248-8 10-7 23 2 31 10 9 23 8 31-1 2-2 137-156 1-308z"/>
<glyph glyph-name="volume-off" unicode="&#57441;" d="M224 488c-8 3-18 1-25-5l-107-110-53 0c-12 0-22-10-22-22l0-190c0-12 10-22 22-22l53 0 107-110c4-5 10-7 16-7 3 0 6 1 9 2 9 3 15 12 15 21l0 422c0 9-6 18-15 21z m-29-389l-77 78c-4 4-11 7-17 7l-40 0 0 144 40 0c6 0 13 3 18 7l76 78z m294 90c9-9 9-23 0-32-5-3-10-6-16-6-6 0-12 3-16 7l-64 66-64-66c-5-4-10-7-16-7-6 0-11 3-16 6-9 9-9 23 0 32l65 67-65 67c-8 9-8 23 1 32 9 8 23 8 31-1l64-66 64 66c9 9 23 9 32 1 9-9 9-23 1-32l-66-67z"/>
<glyph glyph-name="wallet" unicode="&#57442;" d="M402 238c8-8 11-18 11-28 0-10-3-20-11-27-7-8-17-12-27-12-10 0-20 4-28 12-8 7-11 17-11 27 0 10 4 20 11 28 7 7 17 11 28 11 10 0 20-4 27-11z m104 86l0-246c0-25-20-45-45-45l-403 0c-29 0-52 24-52 53l0 326c0 37 30 67 66 67l308 0c31 0 54-25 54-56l0-33 10 0c35 0 62-31 62-66z m-459 88c0-12 10-22 22-22l321 0 0 34c0 6-5 10-10 10l-311 0c-12 0-22-10-22-22z m415-88c0 10-8 21-18 21l-385 0c-5 0-9-7-9-12l0-247c0-4 4-8 8-8l403 0c1 0 1 0 1 0z"/>
<glyph glyph-name="warning" unicode="&#57443;" d="M490 28l-468 0c-8 0-15 4-19 11-4 7-4 15 0 22l234 412c3 7 11 11 19 11 8 0 16-4 19-11l234-412c4-6 4-15 0-22-4-7-11-11-19-11z m-429 44l391 0-196 345z m217 133l0 104c0 12-10 22-22 22-12 0-22-10-22-22l0-104c0-12 10-22 22-22 12 0 22 10 22 22z m-3-92c5 5 9 12 9 19 0 8-3 15-9 20-5 5-12 8-19 8-7 0-14-3-19-8-5-5-9-12-9-20 0-7 3-14 9-19 5-5 12-8 19-8 7 0 14 3 19 8z"/>
<glyph glyph-name="web" unicode="&#57444;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m21-466c-2 0-3 0-4-1l0 121c29 0 55 1 79 3-21-65-61-109-75-123z m-42 0c-15 15-54 58-75 123 24-2 50-3 79-3l0-121c-1 0-2 1-4 1z m-190 210c0 14 1 28 3 41 13 2 36 6 69 9-3-16-5-33-5-51 0-17 2-34 4-50-32 4-56 7-68 9-2 14-3 28-3 42z m101 0c0 19 3 37 6 53 26 2 54 4 87 4l0-114c-32 1-61 2-88 4-2 16-5 34-5 53z m130 210c15-15 53-59 75-123-23 2-49 3-78 3l0 121c1 0 2-1 3-1z m-37 1l0-121c-29 0-55-1-78-3 21 64 60 108 74 123 2 0 3 1 4 1z m34-268l0 114c32-1 61-2 87-4 3-16 6-34 6-53 0-19-2-37-5-53-26-2-55-3-88-4z m122 107c32-3 56-7 68-9 3-13 4-27 4-41 0-14-1-28-3-41-13-2-36-6-69-9 3 16 4 33 4 51 0 16-2 34-4 49z m58 27c-16 2-38 5-66 8-14 47-37 86-56 113 56-21 100-66 122-121z m-272 121c-20-27-42-65-56-113-28-2-50-5-66-8 22 55 67 100 122 121z m-122-275c16-2 38-5 66-8 13-47 35-86 55-113-55 22-99 66-121 121z m273-121c20 27 42 65 55 113 28 2 50 5 66 8-22-55-66-99-121-121z"/>
<glyph glyph-name="weight" unicode="&#57445;" d="M452 339c-2 22-21 39-44 39l-41 0 0 10c0 66-48 118-110 118l-2 0c-62 0-110-52-110-118l0-10-41 0c-23 0-41-17-44-39l-32-308c-1-7 1-13 5-18 5-5 11-7 17-7l412 0c6 0 12 2 17 7 4 4 6 11 5 17z m-263 49c0 41 29 74 66 74l2 0c37 0 66-33 66-74l0-10-134 0z m-114-338l29 284 303 0 29-284z"/>
<glyph glyph-name="wifi" unicode="&#57446;" d="M424 286c11-11 12-28 1-39-5-6-13-9-20-9-7 0-14 2-19 7-124 113-257 6-262 2-12-10-30-9-39 3-10 12-9 29 3 39 61 50 208 114 336-3z m-166-155c-14 0-28-5-38-15-10-10-15-24-15-38 0-13 5-27 15-37 10-10 24-15 38-15 14 0 27 5 37 15 10 10 16 24 16 37 0 14-6 28-16 38-10 10-23 15-37 15z m245 231c-132 115-260 109-344 83-89-27-148-80-150-83-11-11-12-28-1-39 10-11 28-12 39-1 1 0 52 47 129 70 102 32 200 7 290-72 5-4 12-7 19-7 8 0 15 4 21 10 9 11 8 29-3 39z m-339-152c-12-10-14-27-4-39 9-12 27-14 39-5 2 2 61 48 111 1 6-5 12-7 19-7 7 0 15 3 20 9 11 11 11 29-1 39-68 62-150 28-184 2z"/>
<glyph glyph-name="wrong" unicode="&#57447;" d="M437 437c-100 99-262 99-362 0-100-100-100-262 0-362 50-51 115-76 180-76 66 0 132 25 181 76 101 100 101 262 1 362z m-331-331c-77 78-82 200-15 283l298-298c-83-67-205-62-283 15z m315 17l-298 298c38 31 86 46 133 46 54 0 109-20 150-61 77-78 82-200 15-283z"/>
<glyph glyph-name="zoom-in" unicode="&#57448;" d="M505 43l-194 191c23 29 37 66 37 105 0 96-78 173-174 173-97 0-174-77-174-173 0-95 78-172 174-172 38 0 73 12 101 32l195-192c5-5 11-7 17-7 7 0 13 2 18 7 9 10 9 26 0 36z m-460 296c0 71 57 128 129 128 72 0 130-57 130-128 0-70-59-128-130-128-71 0-129 58-129 128z m216-2c0-11-9-20-19-20l-47 0 0-44c0-11-9-20-20-20-10 0-19 9-19 20l0 44-50 0c-10 0-19 9-19 20 0 10 9 19 19 19l50 0 0 51c0 10 9 19 19 19 11 0 20-9 20-19l0-51 47 0c11 0 19-9 19-19z"/>
<glyph glyph-name="zoom-out" unicode="&#57449;" d="M505 43l-194 191c23 29 37 66 37 105 0 96-78 173-174 173-97 0-174-77-174-173 0-95 78-172 174-172 38 0 73 12 101 32l195-192c5-5 11-7 17-7 7 0 13 2 18 7 9 10 9 26 0 36z m-460 296c0 71 57 128 129 128 72 0 130-57 130-128 0-70-59-128-130-128-71 0-129 58-129 128z m216-2c0-11-9-20-19-20l-136 0c-10 0-19 9-19 20 0 10 9 19 19 19l136 0c11 0 19-9 19-19z"/>
</font></defs></svg>

After

Width:  |  Height:  |  Size: 97 KiB

@@ -0,0 +1,564 @@
@font-face {
font-family: "feather";
src: url("../fonts/feather-webfont.eot");
src: url("../fonts/feather-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/feather-webfont.woff") format("woff"), url("../fonts/feather-webfont.ttf") format("truetype"), url("../fonts/feather-webfont.svg#feather") format("svg");
font-weight: normal;
font-style: normal;
}
/* Character Mapping Method */
[data-fi]:before {
display: inline-block;
font-family: "feather";
content: attr(data-icon);
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* CSS Class Mapping Method */
[class^="fi-"],
[class*=" fi-"] {
display: inline-block;
font-family: "feather";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fi-eye:before {
content: "\e000";
}
.fi-paper-clip:before {
content: "\e001";
}
.fi-mail:before {
content: "\e002";
}
.fi-mail:before {
content: "\e002";
}
.fi-toggle:before {
content: "\e003";
}
.fi-layout:before {
content: "\e004";
}
.fi-link:before {
content: "\e005";
}
.fi-bell:before {
content: "\e006";
}
.fi-lock:before {
content: "\e007";
}
.fi-unlock:before {
content: "\e008";
}
.fi-ribbon:before {
content: "\e009";
}
.fi-image:before {
content: "\e010";
}
.fi-signal:before {
content: "\e011";
}
.fi-target:before {
content: "\e012";
}
.fi-clipboard:before {
content: "\e013";
}
.fi-clock:before {
content: "\e014";
}
.fi-clock:before {
content: "\e014";
}
.fi-watch:before {
content: "\e015";
}
.fi-air-play:before {
content: "\e016";
}
.fi-camera:before {
content: "\e017";
}
.fi-video:before {
content: "\e018";
}
.fi-disc:before {
content: "\e019";
}
.fi-printer:before {
content: "\e020";
}
.fi-monitor:before {
content: "\e021";
}
.fi-server:before {
content: "\e022";
}
.fi-cog:before {
content: "\e023";
}
.fi-heart:before {
content: "\e024";
}
.fi-paragraph:before {
content: "\e025";
}
.fi-align-justify:before {
content: "\e026";
}
.fi-align-left:before {
content: "\e027";
}
.fi-align-center:before {
content: "\e028";
}
.fi-align-right:before {
content: "\e029";
}
.fi-book:before {
content: "\e030";
}
.fi-layers:before {
content: "\e031";
}
.fi-stack:before {
content: "\e032";
}
.fi-stack-2:before {
content: "\e033";
}
.fi-paper:before {
content: "\e034";
}
.fi-paper-stack:before {
content: "\e035";
}
.fi-search:before {
content: "\e036";
}
.fi-zoom-in:before {
content: "\e037";
}
.fi-zoom-out:before {
content: "\e038";
}
.fi-reply:before {
content: "\e039";
}
.fi-circle-plus:before {
content: "\e040";
}
.fi-circle-minus:before {
content: "\e041";
}
.fi-circle-check:before {
content: "\e042";
}
.fi-circle-cross:before {
content: "\e043";
}
.fi-square-plus:before {
content: "\e044";
}
.fi-square-minus:before {
content: "\e045";
}
.fi-square-check:before {
content: "\e046";
}
.fi-square-cross:before {
content: "\e047";
}
.fi-microphone:before {
content: "\e048";
}
.fi-record:before {
content: "\e049";
}
.fi-skip-back:before {
content: "\e050";
}
.fi-rewind:before {
content: "\e051";
}
.fi-play:before {
content: "\e052";
}
.fi-pause:before {
content: "\e053";
}
.fi-stop:before {
content: "\e054";
}
.fi-fast-forward:before {
content: "\e055";
}
.fi-skip-forward:before {
content: "\e056";
}
.fi-shuffle:before {
content: "\e057";
}
.fi-repeat:before {
content: "\e058";
}
.fi-folder:before {
content: "\e059";
}
.fi-umbrella:before {
content: "\e060";
}
.fi-moon:before {
content: "\e061";
}
.fi-thermometer:before {
content: "\e062";
}
.fi-drop:before {
content: "\e063";
}
.fi-sun:before {
content: "\e064";
}
.fi-cloud:before {
content: "\e065";
}
.fi-cloud-upload:before {
content: "\e066";
}
.fi-cloud-download:before {
content: "\e067";
}
.fi-upload:before {
content: "\e068";
}
.fi-download:before {
content: "\e069";
}
.fi-location:before {
content: "\e070";
}
.fi-location-2:before {
content: "\e071";
}
.fi-map:before {
content: "\e072";
}
.fi-battery:before {
content: "\e073";
}
.fi-head:before {
content: "\e074";
}
.fi-briefcase:before {
content: "\e075";
}
.fi-speech-bubble:before {
content: "\e076";
}
.fi-anchor:before {
content: "\e077";
}
.fi-globe:before {
content: "\e078";
}
.fi-box:before {
content: "\e079";
}
.fi-reload:before {
content: "\e080";
}
.fi-share:before {
content: "\e081";
}
.fi-marquee:before {
content: "\e082";
}
.fi-marquee-plus:before {
content: "\e083";
}
.fi-marquee-minus:before {
content: "\e084";
}
.fi-tag:before {
content: "\e085";
}
.fi-power:before {
content: "\e086";
}
.fi-command:before {
content: "\e087";
}
.fi-alt:before {
content: "\e088";
}
.fi-esc:before {
content: "\e089";
}
.fi-bar-graph:before {
content: "\e090";
}
.fi-bar-graph-2:before {
content: "\e091";
}
.fi-pie-graph:before {
content: "\e092";
}
.fi-star:before {
content: "\e093";
}
.fi-arrow-left:before {
content: "\e094";
}
.fi-arrow-right:before {
content: "\e095";
}
.fi-arrow-up:before {
content: "\e096";
}
.fi-arrow-down:before {
content: "\e097";
}
.fi-volume:before {
content: "\e098";
}
.fi-mute:before {
content: "\e099";
}
.fi-content-right:before {
content: "\e100";
}
.fi-content-left:before {
content: "\e101";
}
.fi-grid:before {
content: "\e102";
}
.fi-grid-2:before {
content: "\e103";
}
.fi-columns:before {
content: "\e104";
}
.fi-loader:before {
content: "\e105";
}
.fi-bag:before {
content: "\e106";
}
.fi-ban:before {
content: "\e107";
}
.fi-flag:before {
content: "\e108";
}
.fi-trash:before {
content: "\e109";
}
.fi-expand:before {
content: "\e110";
}
.fi-contract:before {
content: "\e111";
}
.fi-maximize:before {
content: "\e112";
}
.fi-minimize:before {
content: "\e113";
}
.fi-plus:before {
content: "\e114";
}
.fi-minus:before {
content: "\e115";
}
.fi-check:before {
content: "\e116";
}
.fi-cross:before {
content: "\e117";
}
.fi-move:before {
content: "\e118";
}
.fi-delete:before {
content: "\e119";
}
.fi-menu:before {
content: "\e120";
}
.fi-archive:before {
content: "\e121";
}
.fi-inbox:before {
content: "\e122";
}
.fi-outbox:before {
content: "\e123";
}
.fi-file:before {
content: "\e124";
}
.fi-file-add:before {
content: "\e125";
}
.fi-file-subtract:before {
content: "\e126";
}
.fi-help:before {
content: "\e127";
}
.fi-open:before {
content: "\e128";
}
.fi-ellipsis:before {
content: "\e129";
}
/*# sourceMappingURL=feather.css.map */
File diff suppressed because one or more lines are too long
@@ -0,0 +1,572 @@
@charset "UTF-8";
@font-face {
font-family: "feather";
src:url("../fonts/feather-webfont.eot");
src:url("../fonts/feather-webfont.eot?#iefix") format("embedded-opentype"),
url("../fonts/feather-webfont.woff") format("woff"),
url("../fonts/feather-webfont.ttf") format("truetype"),
url("../fonts/feather-webfont.svg#feather") format("svg");
font-weight: normal;
font-style: normal;
}
/* Character Mapping Method */
[data-fi]:before {
display: inline-block;
font-family: "feather";
content: attr(data-icon);
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
//speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* CSS Class Mapping Method */
[class^="fi-"],
[class*=" fi-"] {
display: inline-block;
font-family: "feather";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
//speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fi-eye:before {
content: "\e000";
}
.fi-paper-clip:before {
content: "\e001";
}
.fi-mail:before {
content: "\e002";
}
.fi-mail:before {
content: "\e002";
}
.fi-toggle:before {
content: "\e003";
}
.fi-layout:before {
content: "\e004";
}
.fi-link:before {
content: "\e005";
}
.fi-bell:before {
content: "\e006";
}
.fi-lock:before {
content: "\e007";
}
.fi-unlock:before {
content: "\e008";
}
.fi-ribbon:before {
content: "\e009";
}
.fi-image:before {
content: "\e010";
}
.fi-signal:before {
content: "\e011";
}
.fi-target:before {
content: "\e012";
}
.fi-clipboard:before {
content: "\e013";
}
.fi-clock:before {
content: "\e014";
}
.fi-clock:before {
content: "\e014";
}
.fi-watch:before {
content: "\e015";
}
.fi-air-play:before {
content: "\e016";
}
.fi-camera:before {
content: "\e017";
}
.fi-video:before {
content: "\e018";
}
.fi-disc:before {
content: "\e019";
}
.fi-printer:before {
content: "\e020";
}
.fi-monitor:before {
content: "\e021";
}
.fi-server:before {
content: "\e022";
}
.fi-cog:before {
content: "\e023";
}
.fi-heart:before {
content: "\e024";
}
.fi-paragraph:before {
content: "\e025";
}
.fi-align-justify:before {
content: "\e026";
}
.fi-align-left:before {
content: "\e027";
}
.fi-align-center:before {
content: "\e028";
}
.fi-align-right:before {
content: "\e029";
}
.fi-book:before {
content: "\e030";
}
.fi-layers:before {
content: "\e031";
}
.fi-stack:before {
content: "\e032";
}
.fi-stack-2:before {
content: "\e033";
}
.fi-paper:before {
content: "\e034";
}
.fi-paper-stack:before {
content: "\e035";
}
.fi-search:before {
content: "\e036";
}
.fi-zoom-in:before {
content: "\e037";
}
.fi-zoom-out:before {
content: "\e038";
}
.fi-reply:before {
content: "\e039";
}
.fi-circle-plus:before {
content: "\e040";
}
.fi-circle-minus:before {
content: "\e041";
}
.fi-circle-check:before {
content: "\e042";
}
.fi-circle-cross:before {
content: "\e043";
}
.fi-square-plus:before {
content: "\e044";
}
.fi-square-minus:before {
content: "\e045";
}
.fi-square-check:before {
content: "\e046";
}
.fi-square-cross:before {
content: "\e047";
}
.fi-microphone:before {
content: "\e048";
}
.fi-record:before {
content: "\e049";
}
.fi-skip-back:before {
content: "\e050";
}
.fi-rewind:before {
content: "\e051";
}
.fi-play:before {
content: "\e052";
}
.fi-pause:before {
content: "\e053";
}
.fi-stop:before {
content: "\e054";
}
.fi-fast-forward:before {
content: "\e055";
}
.fi-skip-forward:before {
content: "\e056";
}
.fi-shuffle:before {
content: "\e057";
}
.fi-repeat:before {
content: "\e058";
}
.fi-folder:before {
content: "\e059";
}
.fi-umbrella:before {
content: "\e060";
}
.fi-moon:before {
content: "\e061";
}
.fi-thermometer:before {
content: "\e062";
}
.fi-drop:before {
content: "\e063";
}
.fi-sun:before {
content: "\e064";
}
.fi-cloud:before {
content: "\e065";
}
.fi-cloud-upload:before {
content: "\e066";
}
.fi-cloud-download:before {
content: "\e067";
}
.fi-upload:before {
content: "\e068";
}
.fi-download:before {
content: "\e069";
}
.fi-location:before {
content: "\e070";
}
.fi-location-2:before {
content: "\e071";
}
.fi-map:before {
content: "\e072";
}
.fi-battery:before {
content: "\e073";
}
.fi-head:before {
content: "\e074";
}
.fi-briefcase:before {
content: "\e075";
}
.fi-speech-bubble:before {
content: "\e076";
}
.fi-anchor:before {
content: "\e077";
}
.fi-globe:before {
content: "\e078";
}
.fi-box:before {
content: "\e079";
}
.fi-reload:before {
content: "\e080";
}
.fi-share:before {
content: "\e081";
}
.fi-marquee:before {
content: "\e082";
}
.fi-marquee-plus:before {
content: "\e083";
}
.fi-marquee-minus:before {
content: "\e084";
}
.fi-tag:before {
content: "\e085";
}
.fi-power:before {
content: "\e086";
}
.fi-command:before {
content: "\e087";
}
.fi-alt:before {
content: "\e088";
}
.fi-esc:before {
content: "\e089";
}
.fi-bar-graph:before {
content: "\e090";
}
.fi-bar-graph-2:before {
content: "\e091";
}
.fi-pie-graph:before {
content: "\e092";
}
.fi-star:before {
content: "\e093";
}
.fi-arrow-left:before {
content: "\e094";
}
.fi-arrow-right:before {
content: "\e095";
}
.fi-arrow-up:before {
content: "\e096";
}
.fi-arrow-down:before {
content: "\e097";
}
.fi-volume:before {
content: "\e098";
}
.fi-mute:before {
content: "\e099";
}
.fi-content-right:before {
content: "\e100";
}
.fi-content-left:before {
content: "\e101";
}
.fi-grid:before {
content: "\e102";
}
.fi-grid-2:before {
content: "\e103";
}
.fi-columns:before {
content: "\e104";
}
.fi-loader:before {
content: "\e105";
}
.fi-bag:before {
content: "\e106";
}
.fi-ban:before {
content: "\e107";
}
.fi-flag:before {
content: "\e108";
}
.fi-trash:before {
content: "\e109";
}
.fi-expand:before {
content: "\e110";
}
.fi-contract:before {
content: "\e111";
}
.fi-maximize:before {
content: "\e112";
}
.fi-minimize:before {
content: "\e113";
}
.fi-plus:before {
content: "\e114";
}
.fi-minus:before {
content: "\e115";
}
.fi-check:before {
content: "\e116";
}
.fi-cross:before {
content: "\e117";
}
.fi-move:before {
content: "\e118";
}
.fi-delete:before {
content: "\e119";
}
.fi-menu:before {
content: "\e120";
}
.fi-archive:before {
content: "\e121";
}
.fi-inbox:before {
content: "\e122";
}
.fi-outbox:before {
content: "\e123";
}
.fi-file:before {
content: "\e124";
}
.fi-file-add:before {
content: "\e125";
}
.fi-file-subtract:before {
content: "\e126";
}
.fi-help:before {
content: "\e127";
}
.fi-open:before {
content: "\e128";
}
.fi-ellipsis:before {
content: "\e129";
}
@@ -0,0 +1,158 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="featherregular" horiz-adv-x="3072" >
<font-face units-per-em="3072" ascent="2304" descent="-768" />
<missing-glyph horiz-adv-x="600" />
<glyph unicode=" " horiz-adv-x="600" />
<glyph unicode="&#x09;" horiz-adv-x="600" />
<glyph unicode="&#xa0;" horiz-adv-x="600" />
<glyph unicode="&#x2000;" horiz-adv-x="1152" />
<glyph unicode="&#x2001;" horiz-adv-x="2304" />
<glyph unicode="&#x2002;" horiz-adv-x="1152" />
<glyph unicode="&#x2003;" horiz-adv-x="2304" />
<glyph unicode="&#x2004;" horiz-adv-x="768" />
<glyph unicode="&#x2005;" horiz-adv-x="576" />
<glyph unicode="&#x2006;" horiz-adv-x="384" />
<glyph unicode="&#x2007;" horiz-adv-x="384" />
<glyph unicode="&#x2008;" horiz-adv-x="288" />
<glyph unicode="&#x2009;" horiz-adv-x="460" />
<glyph unicode="&#x200a;" horiz-adv-x="128" />
<glyph unicode="&#x202f;" horiz-adv-x="460" />
<glyph unicode="&#x205f;" horiz-adv-x="576" />
<glyph unicode="&#x2400;" horiz-adv-x="600" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#xe000;" d="M1536 1920q209 0 406.5 -63.5t346.5 -165t280.5 -224.5t221 -246t155 -224.5t96.5 -164.5l30 -64q-7 -15 -19 -40.5t-56.5 -104t-95 -155t-133 -180t-170.5 -193t-208.5 -180.5t-247 -154.5t-284.5 -104t-322 -40.5q-209 0 -406.5 63.5t-346.5 164.5t-280.5 223 t-221 244.5t-155 223.5t-96.5 165l-30 63q7 15 19 40.5t56.5 104.5t95 155.5t133 181t170.5 194t208.5 181t247 155.5t284.5 104.5t322 40.5zM1536 1664q-140 0 -275 -37t-243.5 -95.5t-212 -141.5t-179 -163.5t-146.5 -173t-113 -158.5t-79 -132q37 -65 79 -130.5t113 -157 t146.5 -171t179 -161.5t212 -140t243.5 -94.5t275 -36.5t275 37t243.5 95t212 140.5t179 162.5t146.5 172t113 158t79 131q-37 65 -79 131t-113 158t-146.5 172t-179 162.5t-212 140.5t-243.5 95t-275 37zM1536 1280q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150 t-150 362t150 362t362 150zM1536 1024q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75z" />
<glyph unicode="&#xe001;" d="M2022 2304q125 0 240 -47q120 -48 212 -140q93 -94 140 -211q46 -113 46 -240t-46 -240q-47 -117 -140 -211l-1178 -1178q-54 -54 -128 -85q-72 -28 -144 -28t-144 28q-74 31 -128 85q-56 56 -84 127q-28 68 -28 144q0 77 28 145q28 70 84 127l1087 1086q38 38 91 38 q52 0 90 -38t38 -90q0 -53 -38 -91l-1087 -1086q-37 -37 -37 -91q0 -53 37 -90q40 -38 91 -38t91 38l1178 1178q111 111 111 270t-111 270q-114 112 -271 112q-158 0 -270 -112l-1181 -1175q-92 -92 -140 -212q-47 -115 -47 -241q0 -124 47 -241q48 -119 140 -211 q95 -94 212 -141t241 -47t241 47t212 141l1176 1176q38 38 91 38q52 0 90 -38t38 -90q0 -53 -38 -91l-1176 -1176q-129 -129 -297 -197q-160 -66 -337 -66q-176 0 -337 66q-168 68 -297 197q-128 128 -196 296q-66 162 -66 337q0 176 66 337q67 166 196 297h1l1180 1175 q92 92 211 140q117 47 240 47z" />
<glyph unicode="&#xe002;" d="M512 1920h2048q159 0 271.5 -112.5t112.5 -271.5v-1536q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v1536q0 159 112.5 271.5t271.5 112.5zM2688 0v1398l-1072 -858q-34 -28 -80 -28t-80 28l-1072 858v-1398q0 -53 37.5 -90.5 t90.5 -37.5h2048q53 0 90.5 37.5t37.5 90.5zM2560 1664h-2048q-19 0 -42 -7l1066 -853l1066 853q-23 7 -42 7z" />
<glyph unicode="&#xe003;" d="M1024 1792h1024q208 0 397.5 -81t327 -218.5t218.5 -327t81 -397.5t-81 -397.5t-218.5 -327t-327 -218.5t-397.5 -81h-1024q-208 0 -397.5 81t-327 218.5t-218.5 327t-81 397.5t81 397.5t218.5 327t327 218.5t397.5 81zM1024 1280q212 0 362 -150t150 -362t-150 -362 t-362 -150t-362 150t-150 362t150 362t362 150zM1024 1024q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75zM2048 1536h-1024q-209 0 -385.5 -103t-279.5 -279.5t-103 -385.5t103 -385.5t279.5 -279.5t385.5 -103h1024q209 0 385.5 103 t279.5 279.5t103 385.5t-103 385.5t-279.5 279.5t-385.5 103z" />
<glyph unicode="&#xe004;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM1024 -384v1536h-640v-1408q0 -53 37.5 -90.5t90.5 -37.5h512zM2688 -256v1408h-1408v-1536 h1280q53 0 90.5 37.5t37.5 90.5zM2560 1920h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-384h2304v384q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe005;" d="M2176 2176q151 0 291.5 -57t251.5 -168t168 -251.5t57 -291.5q0 -150 -57.5 -291.5t-167.5 -251.5l-384 -384q-11 -11 -33 -31q-107 -95 -239 -144.5t-271 -49.5q-175 0 -331 75q-117 55 -212 150t-150 212q75 75 181 75q37 0 75 -11q65 -105 170 -170q123 -75 267 -75 q100 0 194 38t168 112l384 384q74 74 112 168t38 194t-38 194t-112 168t-168 112t-194 38t-194 -38t-168 -112l-269 -269q-128 35 -265 35q-22 0 -62 -2q20 22 31 33l384 384q110 110 251.5 167.5t291.5 57.5zM1280 1280q175 0 331 -75q117 -55 212 -150t150 -212 q-75 -75 -181 -75q-37 0 -75 11q-65 105 -170 170q-123 75 -267 75q-100 0 -194 -38t-168 -112l-384 -384q-74 -74 -112 -168t-38 -194t38 -194t112 -168t168 -112t194 -38t194 38t168 112l269 269q128 -35 265 -35q22 0 62 2q-20 -22 -31 -33l-384 -384 q-111 -111 -251.5 -168t-291.5 -57q-150 0 -291.5 57.5t-251.5 167.5q-111 111 -168 251.5t-57 291.5t57 291.5t168 251.5l384 384q11 11 33 31q107 95 239 144.5t271 49.5z" />
<glyph unicode="&#xe006;" d="M1536 2176q165 0 312 -53.5t261 -147.5t205 -223.5t151.5 -280t94.5 -319.5q101 -507 214.5 -801.5t297.5 -478.5h-1174q22 -63 22 -128q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5q0 65 22 128h-1174q184 184 297.5 478.5t214.5 801.5 q34 169 94.5 319.5t151.5 280t205 223.5t261 147.5t312 53.5zM1536 -128q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5zM1536 1920q-116 0 -218.5 -36t-175.5 -92t-135.5 -134.5t-101.5 -152.5t-70.5 -158t-46.5 -138.5 t-25 -106.5q-128 -645 -282 -974h2110q-154 329 -282 974q-10 52 -25 106.5t-46.5 138.5t-70.5 158t-101.5 152.5t-135.5 134.5t-175.5 92t-218.5 36z" />
<glyph unicode="&#xe007;" d="M1536 2176q209 0 385.5 -103t279.5 -279.5t103 -385.5v-512h256q159 0 271.5 -112.5t112.5 -271.5v-768q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v768q0 159 112.5 271.5t271.5 112.5h256v512q0 209 103 385.5t279.5 279.5t385.5 103 zM2560 640h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-768q0 -53 37.5 -90.5t90.5 -37.5h2048q53 0 90.5 37.5t37.5 90.5v768q0 53 -37.5 90.5t-90.5 37.5zM1536 1920q-212 0 -362 -150t-150 -362v-512h1024v512q0 212 -150 362t-362 150z" />
<glyph unicode="&#xe008;" d="M1536 2176q209 0 385.5 -103t279.5 -279.5t103 -385.5v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128q0 212 -150 362t-362 150t-362 -150t-150 -362v-512h1536q159 0 271.5 -112.5t112.5 -271.5v-768q0 -159 -112.5 -271.5t-271.5 -112.5h-2048 q-159 0 -271.5 112.5t-112.5 271.5v768q0 159 112.5 271.5t271.5 112.5h256v512q0 209 103 385.5t279.5 279.5t385.5 103zM2560 640h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-768q0 -53 37.5 -90.5t90.5 -37.5h2048q53 0 90.5 37.5t37.5 90.5v768q0 53 -37.5 90.5t-90.5 37.5z " />
<glyph unicode="&#xe009;" d="M896 2176h1280q159 0 271.5 -112.5t112.5 -271.5v-2432l-1024 768l-1024 -768v2432q0 159 112.5 271.5t271.5 112.5zM2176 1920h-1280q-53 0 -90.5 -37.5t-37.5 -90.5v-1920l768 576l768 -576v1920q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe010;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2688 75l-640 640l-1099 -1099h1611q53 0 90.5 37.5t37.5 90.5v331zM2560 1920h-2048 q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h75l1461 1461l640 -640v1355q0 53 -37.5 90.5t-90.5 37.5zM1024 1664q159 0 271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5zM1024 1408 q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe011;" d="M1536 1792q393 0 765 -138t675 -406q43 -37 43 -96q0 -50 -32 -85l-6 -6q-37 -37 -90 -37q-50 0 -85 32q-267 236 -595.5 358t-674.5 122t-674.5 -122t-595.5 -358q-35 -32 -85 -32q-59 0 -96 43q-32 35 -32 85q0 59 43 96q304 268 675.5 406t764.5 138zM1537 256 q174 0 323 -88q30 -18 47 -47.5t17 -63.5t-18 -64q-9 -15 -20 -26q-37 -37 -91 -37q-36 0 -64 17q-91 53 -194 53q-104 0 -195 -53q-32 -18 -65 -18q-73 0 -111 63q-18 30 -18 64q0 73 63 111q151 89 326 89zM1536 1023q242 0 471 -80t420 -237q47 -38 47 -99q0 -46 -29 -81 q-6 -8 -8 -10q-37 -37 -90 -37q-47 0 -82 29q-156 128 -344 194t-385 66t-385 -66t-344 -194q-35 -29 -81 -29q-61 0 -99 47q-29 35 -29 81q0 61 47 99q190 157 420 237t471 80z" />
<glyph unicode="&#xe012;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1536 1664q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1536 1408q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51z M1536 1152q159 0 271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5zM1536 896q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe013;" d="M1280 2176h512q124 0 223 -71.5t139 -184.5h150q159 0 271.5 -112.5t112.5 -271.5v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-1536q-159 0 -271.5 112.5t-112.5 271.5v1792q0 159 112.5 271.5t271.5 112.5h150q40 113 139 184.5t223 71.5zM2304 1664h-150 q-40 -113 -139 -184.5t-223 -71.5h-512q-124 0 -223 71.5t-139 184.5h-150q-53 0 -90.5 -37.5t-37.5 -90.5v-1792q0 -53 37.5 -90.5t90.5 -37.5h1536q53 0 90.5 37.5t37.5 90.5v1792q0 53 -37.5 90.5t-90.5 37.5zM1792 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe014;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1536 1664q53 0 90.5 -37.5t37.5 -90.5v-715l347 -346q37 -37 37 -91t-37 -91t-91 -37t-91 37 l-384 384q-37 37 -37 91v768q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe015;" d="M1152 2304h768q159 0 271.5 -112.5t112.5 -271.5v-294q180 -160 282 -383.5t102 -474.5t-102 -474t-282 -384v-294q0 -159 -112.5 -271.5t-271.5 -112.5h-768q-159 0 -271.5 112.5t-112.5 271.5v294q-180 161 -282 384t-102 474t102 474.5t282 383.5v294 q0 159 112.5 271.5t271.5 112.5zM2048 -384v120q-240 -120 -512 -120t-512 120v-120q0 -53 37.5 -90.5t90.5 -37.5h768q53 0 90.5 37.5t37.5 90.5zM1536 1664q-182 0 -348 -71t-286 -191t-191 -286t-71 -348t71 -348t191 -286t286 -191t348 -71t348 71t286 191t191 286 t71 348t-71 348t-191 286t-286 191t-348 71zM1536 1408q53 0 90.5 -37.5t37.5 -90.5v-459l219 -218q37 -37 37 -91t-37 -91t-91 -37t-91 37l-256 256q-37 37 -37 91v512q0 53 37.5 90.5t90.5 37.5zM1920 2048h-768q-53 0 -90.5 -37.5t-37.5 -90.5v-120q240 120 512 120 t512 -120v120q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe016;" d="M512 2048h2048q159 0 271.5 -112.5t112.5 -271.5v-1280q0 -159 -112.5 -271.5t-271.5 -112.5h-320l-192 256h512q53 0 90.5 37.5t37.5 90.5v1280q0 53 -37.5 90.5t-90.5 37.5h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-1280q0 -53 37.5 -90.5t90.5 -37.5h512l-192 -256h-320 q-159 0 -271.5 112.5t-112.5 271.5v1280q0 159 112.5 271.5t271.5 112.5zM1792 -256l-256 341l-256 -341h512zM768 -512l768 1024l768 -1024h-1536z" />
<glyph unicode="&#xe017;" d="M1024 2048h1024l256 -384h384q159 0 271.5 -114.5t112.5 -273.5v-1406q0 -159 -112.5 -270.5t-271.5 -111.5h-2304q-159 0 -271.5 112.5t-112.5 271.5v1406q0 159 112.5 272.5t271.5 113.5h384zM1536 1280q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5 t-136.5 -204t-204 -136.5t-248.5 -51t-248.5 51t-204 136.5t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51zM1536 1024q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM2167 1408 l-251 384h-755l-256 -384h-521q-53 0 -90.5 -38t-37.5 -92v-1406q0 -53 37.5 -90.5t90.5 -37.5h2304q54 0 91 36.5t37 89.5v1406q0 54 -38 93t-90 39h-521z" />
<glyph unicode="&#xe018;" d="M384 1664h1408q159 0 271.5 -112.5t112.5 -271.5v-233l896 489v-1536l-896 489v-233q0 -159 -112.5 -271.5t-271.5 -112.5h-1408q-159 0 -271.5 112.5t-112.5 271.5v1024q0 159 112.5 271.5t271.5 112.5zM1792 1408h-1408q-53 0 -90.5 -37.5t-37.5 -90.5v-1024 q0 -53 37.5 -90.5t90.5 -37.5h1408q53 0 90.5 37.5t37.5 90.5v1024q0 53 -37.5 90.5t-90.5 37.5zM2816 431v674l-617 -337z" />
<glyph unicode="&#xe019;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1536 1280q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150z M1536 1024q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75z" />
<glyph unicode="&#xe020;" d="M1152 2048h768q159 0 271.5 -112.5t112.5 -271.5v-640h256q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-278q-40 -113 -139 -184.5t-223 -71.5h-768q-124 0 -223 71.5t-139 184.5h-278q-159 0 -271.5 112.5t-112.5 271.5v512 q0 159 112.5 271.5t271.5 112.5h256v640q0 159 112.5 271.5t271.5 112.5zM1920 0h-768q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5h768q53 0 90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5zM2560 768h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5 t90.5 -37.5h278q40 113 139 184.5t223 71.5h768q124 0 223 -71.5t139 -184.5h278q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM1920 1792h-768q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1024v640q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe021;" d="M512 2048h2048q159 0 271.5 -112.5t112.5 -271.5v-1280q0 -159 -112.5 -271.5t-271.5 -112.5h-896v-256h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h384v256h-896q-159 0 -271.5 112.5 t-112.5 271.5v1280q0 159 112.5 271.5t271.5 112.5zM2560 1792h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-1280q0 -53 37.5 -90.5t90.5 -37.5h2048q53 0 90.5 37.5t37.5 90.5v1280q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe022;" d="M1536 2176q262 0 507 -31.5t449.5 -92t328 -161t123.5 -227.5v-1792q0 -127 -123.5 -227.5t-328 -161t-449.5 -92t-507 -31.5t-507 31.5t-449.5 92t-328 161t-123.5 227.5v1792q0 127 123.5 227.5t328 161t449.5 92t507 31.5zM2688 -126v583q-196 -99 -505 -150t-647 -51 t-647 51t-505 150v-585q6 -22 53.5 -53t145.5 -67t228 -66t321 -50t404 -20t404 20t321 50.5t228 66.5t145.5 67t53.5 54zM2688 770v583q-196 -99 -505 -150t-647 -51t-647 51t-505 150v-585q6 -22 53.5 -53t145.5 -67t228 -66t321 -50t404 -20t404 20t320.5 50t227.5 66 t146 67.5t54 54.5zM1536 1920q-211 0 -401 -20t-319 -49.5t-227.5 -65t-147.5 -67t-57 -54.5q8 -23 57 -54.5t147.5 -67t227.5 -65t319 -49.5t401 -20t401 20t319 49.5t227.5 65t147.5 67t57 54.5q-8 23 -57 54.5t-147.5 67t-227.5 65t-319 49.5t-401 20z" />
<glyph unicode="&#xe023;" d="M1536 2304q159 0 271.5 -112.5t112.5 -271.5v-66q47 -16 113 -46l46 46q113 113 272 113q158 0 271 -113t113 -271q0 -159 -113 -272l-46 -46q30 -66 46 -113h66q159 0 271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5h-66q-16 -47 -46 -113l46 -46 q113 -113 113 -272q0 -158 -113 -271t-271 -113q-159 0 -272 113l-46 46q-66 -30 -113 -46v-66q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5v66q-47 16 -113 46l-46 -46q-113 -113 -271 -113q-159 0 -271.5 113t-112.5 271q0 160 112 272l46 46 q-30 66 -46 113h-66q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5h66q16 47 46 113l-46 46q-112 112 -112 272q0 158 112.5 271t271.5 113q158 0 271 -113l46 -46q66 30 113 46v66q0 159 112.5 271.5t271.5 112.5zM1536 2048q-53 0 -90.5 -37.5t-37.5 -90.5 v-265q-224 -32 -409 -169l-187 187q-38 38 -90 38q-53 0 -90.5 -37.5t-37.5 -90.5q0 -54 37 -91l187 -187q-137 -185 -169 -409h-265q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5h265q32 -224 169 -409l-187 -187q-37 -37 -37 -91q0 -53 37.5 -90.5t90.5 -37.5 q52 0 90 38l187 187q185 -137 409 -169v-265q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v265q224 32 409 169l187 -187q38 -38 91 -38t90.5 37.5t37.5 90.5t-38 91l-187 187q137 185 169 409h265q53 0 90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5h-265 q-32 224 -169 409l187 187q38 38 38 91t-37.5 90.5t-90.5 37.5t-91 -38l-187 -187q-185 137 -409 169v265q0 53 -37.5 90.5t-90.5 37.5zM1536 1280q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM1536 1024q-106 0 -181 -75t-75 -181 t75 -181t181 -75t181 75t75 181t-75 181t-181 75z" />
<glyph unicode="&#xe024;" d="M2260 2048q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -150 -57.5 -291.5t-167.5 -251.5l-1267 -1267l-1267 1267q-110 110 -167.5 251.5t-57.5 291.5q0 209 103 385.5t279.5 279.5t385.5 103q151 0 291.5 -57t251.5 -168l181 -181l181 181q110 110 251.5 167.5 t291.5 57.5zM2260 1792q-100 0 -194 -38t-168 -112l-362 -362l-362 362q-74 74 -168 112t-194 38q-140 0 -257.5 -68.5t-186 -186t-68.5 -257.5q0 -100 38 -194t112 -168l1086 -1086l1086 1086q74 74 112 168t38 194q0 140 -68.5 257.5t-186 186t-257.5 68.5z" />
<glyph unicode="&#xe025;" d="M1280 2176h1152q53 0 90.5 -37.5t37.5 -90.5v-2560q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v2432h-256v-2432q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v1152h-512q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5 t385.5 103zM1792 896v1024h-512q-212 0 -362 -150t-150 -362t150 -362t362 -150h512z" />
<glyph unicode="&#xe026;" d="M384 1664h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 128h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 640 h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 1152h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe027;" d="M384 1664h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 128h1792q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1792q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 640 h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 1152h1792q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1792q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe028;" d="M384 1664h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM640 128h1792q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1792q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 640 h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM640 1152h1792q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1792q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe029;" d="M384 1664h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM896 128h1792q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1792q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 640 h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM896 1152h1792q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1792q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe030;" d="M640 2176h2048v-2816h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2432 -384v256h-1792q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5h1792zM2432 128v1792h-1792q-53 0 -90.5 -37.5t-37.5 -90.5v-1686q63 22 128 22h1792z " />
<glyph unicode="&#xe031;" d="M0 1408l1536 768l1536 -768l-1536 -768zM1536 -161l1248 625l288 -144l-1536 -769l-1536 769l288 144zM1536 383l1248 624l288 -144l-1536 -768l-1536 768l288 144zM2500 1408l-964 482l-964 -482l964 -482z" />
<glyph unicode="&#xe032;" d="M1408 2176h1152q159 0 271.5 -112.5t112.5 -271.5v-1152q0 -159 -112.5 -271.5t-271.5 -112.5h-512v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-1152q-159 0 -271.5 112.5t-112.5 271.5v1152q0 159 112.5 271.5t271.5 112.5h512v512q0 159 112.5 271.5t271.5 112.5z M1024 640v384h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-1152q0 -53 37.5 -90.5t90.5 -37.5h1152q53 0 90.5 37.5t37.5 90.5v512h-384q-159 0 -271.5 112.5t-112.5 271.5zM2560 1920h-1152q-53 0 -90.5 -37.5t-37.5 -90.5v-1152q0 -53 37.5 -90.5t90.5 -37.5h1152 q53 0 90.5 37.5t37.5 90.5v1152q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe033;" d="M1152 2048h1280q159 0 271.5 -112.5t112.5 -271.5v-1280q0 -159 -112.5 -271.5t-271.5 -112.5h-1280q-159 0 -271.5 112.5t-112.5 271.5v1280q0 159 112.5 271.5t271.5 112.5zM512 1514v-1642q0 -53 37.5 -90.5t90.5 -37.5h1642q-40 -113 -139 -184.5t-223 -71.5h-1280 q-159 0 -271.5 112.5t-112.5 271.5v1280q0 124 71.5 223t184.5 139zM2432 1792h-1280q-53 0 -90.5 -37.5t-37.5 -90.5v-1280q0 -53 37.5 -90.5t90.5 -37.5h1280q53 0 90.5 37.5t37.5 90.5v1280q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe034;" d="M640 2304h1792q159 0 271.5 -112.5t112.5 -271.5v-2304q0 -159 -112.5 -271.5t-271.5 -112.5h-1792q-159 0 -271.5 112.5t-112.5 271.5v2304q0 159 112.5 271.5t271.5 112.5zM1024 128h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5zM1024 640h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM2432 2048h-1792q-53 0 -90.5 -37.5t-37.5 -90.5v-2304q0 -53 37.5 -90.5t90.5 -37.5h1792q53 0 90.5 37.5 t37.5 90.5v2304q0 53 -37.5 90.5t-90.5 37.5zM1024 1152h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM1024 1664h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe035;" d="M1152 2304h1280q159 0 271.5 -112.5t112.5 -271.5v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-1280q-159 0 -271.5 112.5t-112.5 271.5v1792q0 159 112.5 271.5t271.5 112.5zM512 1770v-2154q0 -53 37.5 -90.5t90.5 -37.5h1642q-40 -113 -139 -184.5t-223 -71.5h-1280 q-159 0 -271.5 112.5t-112.5 271.5v1792q0 124 71.5 223t184.5 139zM2432 2048h-1280q-53 0 -90.5 -37.5t-37.5 -90.5v-1792q0 -53 37.5 -90.5t90.5 -37.5h1280q53 0 90.5 37.5t37.5 90.5v1792q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe036;" d="M1280 2176q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5q0 -201 -65.5 -385t-186.5 -334l727 -726q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-726 727q-150 -121 -334 -186.5t-385 -65.5q-234 0 -447.5 91.5t-367.5 245.5t-245.5 367.5 t-91.5 447.5t91.5 447.5t245.5 367.5t367.5 245.5t447.5 91.5zM1280 1920q-182 0 -348 -71t-286 -191t-191 -286t-71 -348t71 -348t191 -286t286 -191t348 -71t348 71t286 191t191 286t71 348t-71 348t-191 286t-286 191t-348 71z" />
<glyph unicode="&#xe037;" d="M1280 2176q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5q0 -201 -65.5 -385t-186.5 -334l727 -726q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-726 727q-150 -121 -334 -186.5t-385 -65.5q-234 0 -447.5 91.5t-367.5 245.5t-245.5 367.5 t-91.5 447.5t91.5 447.5t245.5 367.5t367.5 245.5t447.5 91.5zM1280 1920q-182 0 -348 -71t-286 -191t-191 -286t-71 -348t71 -348t191 -286t286 -191t348 -71t348 71t286 191t191 286t71 348t-71 348t-191 286t-286 191t-348 71zM1280 1536q53 0 90.5 -37.5t37.5 -90.5 v-256h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h256v256q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe038;" d="M1280 2176q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5q0 -201 -65.5 -385t-186.5 -334l727 -726q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-726 727q-150 -121 -334 -186.5t-385 -65.5q-234 0 -447.5 91.5t-367.5 245.5t-245.5 367.5 t-91.5 447.5t91.5 447.5t245.5 367.5t367.5 245.5t447.5 91.5zM1280 1920q-182 0 -348 -71t-286 -191t-191 -286t-71 -348t71 -348t191 -286t286 -191t348 -71t348 71t286 191t191 286t71 348t-71 348t-191 286t-286 191t-348 71zM896 1152h768q53 0 90.5 -37.5t37.5 -90.5 t-37.5 -90.5t-90.5 -37.5h-768q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe039;" d="M1070 1839q52 0 90 -37.5t38 -90.5t-38 -91l-596 -596h1228q234 0 447.5 -91t367.5 -245.5t245.5 -367.5t91.5 -448v-128q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90v128q0 182 -71 348t-191 286t-286 191t-348 71h-1228l596 -597q38 -38 38 -90 q0 -53 -37.5 -91t-90.5 -38t-91 38l-814 815q-37 37 -37 91q0 53 37 90l814 815q38 38 91 38z" />
<glyph unicode="&#xe040;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1536 1408q53 0 90.5 -37.5t37.5 -90.5v-384h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5 t-90.5 -37.5h-384v-384q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384h-384q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h384v384q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe041;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1024 896h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe042;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1967 1153q53 0 90.5 -37.5t37.5 -90.5t-38 -91l-543 -543q-37 -37 -90 -37q-54 0 -91 37l-272 271 q-37 37 -37 91q0 53 37.5 90.5t90.5 37.5t91 -38l181 -181l452 453q38 38 91 38z" />
<glyph unicode="&#xe043;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1536 1920q-234 0 -447.5 -91.5t-367.5 -245.5t-245.5 -367.5 t-91.5 -447.5t91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5t447.5 91.5t367.5 245.5t245.5 367.5t91.5 447.5t-91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5zM1898 1259q53 0 91 -37.5t38 -90.5t-38 -91l-272 -272l272 -271q38 -38 38 -90q0 -53 -38 -90.5 t-91 -37.5t-90 37l-272 271l-271 -271q-37 -37 -91 -37q-53 0 -90.5 37t-37.5 90q0 54 37 91l272 271l-272 272q-37 37 -37 90t37.5 91t90.5 38t91 -38l271 -272l272 272q38 38 90 38z" />
<glyph unicode="&#xe044;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2560 1920h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h2048 q53 0 90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5zM1536 1408q53 0 90.5 -37.5t37.5 -90.5v-384h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-384v-384q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384h-384q-53 0 -90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5h384v384q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe045;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2560 1920h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h2048 q53 0 90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5zM1024 896h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe046;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2560 1920h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h2048 q53 0 90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5zM2048 1213q52 0 90 -37.5t38 -90.5t-38 -91l-633 -633q-37 -37 -90 -37q-54 0 -91 37l-362 362q-37 37 -37 91q0 53 37.5 90.5t90.5 37.5q52 0 90 -38l271 -272l543 543q38 38 91 38z" />
<glyph unicode="&#xe047;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2560 1920h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h2048 q53 0 90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5zM1898 1259q53 0 91 -38t38 -91t-38 -91l-272 -271l272 -271q38 -38 38 -91t-38 -90.5t-91 -37.5t-90 37l-272 272l-272 -272q-36 -37 -90 -37q-55 0 -91.5 36.5t-36.5 91.5q0 54 37 91l272 271l-272 271 q-37 37 -37 91q0 53 37.5 91t90.5 38q54 0 90 -38l272 -272l272 272q38 38 90 38z" />
<glyph unicode="&#xe048;" d="M2432 1152q53 0 90.5 -37.5t37.5 -90.5v-256q0 -192 -69.5 -369.5t-189 -311t-285 -223t-352.5 -112.5v-264h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h384v264q-187 23 -352.5 112.5t-285 223 t-189 311t-69.5 369.5v256q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-256q0 -209 103 -385.5t279.5 -279.5t385.5 -103t385.5 103t279.5 279.5t103 385.5v256q0 53 37.5 90.5t90.5 37.5zM1536 2304q212 0 362 -150t150 -362v-1024q0 -212 -150 -362t-362 -150 t-362 150t-150 362v1024q0 212 150 362t362 150zM1536 2048q-106 0 -181 -75t-75 -181v-1024q0 -106 75 -181t181 -75t181 75t75 181v1024q0 106 -75 181t-181 75z" />
<glyph unicode="&#xe049;" d="M1536 1920q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5t-91.5 -447.5t-245.5 -367.5t-367.5 -245.5t-447.5 -91.5t-447.5 91.5t-367.5 245.5t-245.5 367.5t-91.5 447.5t91.5 447.5t245.5 367.5t367.5 245.5t447.5 91.5zM1536 1664q-182 0 -348 -71 t-286 -191t-191 -286t-71 -348t71 -348t191 -286t286 -191t348 -71t348 71t286 191t191 286t71 348t-71 348t-191 286t-286 191t-348 71z" />
<glyph unicode="&#xe050;" d="M2176 1792q53 0 90.5 -37.5t37.5 -90.5q0 -54 -37 -91l-806 -805l806 -806q37 -37 37 -91q0 -53 -37.5 -90t-90.5 -37q-54 0 -91 37l-896 896q-37 39 -37 91q0 51 37 90l896 896q38 38 91 38zM768 1792q53 0 90.5 -37.5t37.5 -90.5v-1792q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5v1792q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe051;" d="M2304 1792q53 0 90.5 -37.5t37.5 -90.5t-38 -91l-805 -805l805 -805q38 -38 38 -91t-37.5 -90.5t-90.5 -37.5q-54 0 -91 37l-896 896q-37 37 -37 91t37 91l896 896q37 37 91 37zM1536 1792q53 0 90.5 -37.5t37.5 -90.5t-38 -91l-805 -805l805 -805q38 -38 38 -91 t-37.5 -90.5t-90.5 -37.5q-54 0 -91 37l-896 896q-37 37 -37 91t37 91l896 896q37 37 91 37z" />
<glyph unicode="&#xe052;" d="M512 -384v2304l1920 -1152zM1934 768l-1166 700v-1400z" />
<glyph unicode="&#xe053;" d="M2048 1920q159 0 271.5 -112.5t112.5 -271.5v-1536q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5v1536q0 159 112.5 271.5t271.5 112.5zM1024 1920q159 0 271.5 -112.5t112.5 -271.5v-1536q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5 t-112.5 271.5v1536q0 159 112.5 271.5t271.5 112.5zM1024 1664q-53 0 -90.5 -37.5t-37.5 -90.5v-1536q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v1536q0 53 -37.5 90.5t-90.5 37.5zM2048 1664q-53 0 -90.5 -37.5t-37.5 -90.5v-1536q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v1536q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe054;" d="M768 1920h1536q159 0 271.5 -112.5t112.5 -271.5v-1536q0 -159 -112.5 -271.5t-271.5 -112.5h-1536q-159 0 -271.5 112.5t-112.5 271.5v1536q0 159 112.5 271.5t271.5 112.5zM2304 1664h-1536q-53 0 -90.5 -37.5t-37.5 -90.5v-1536q0 -53 37.5 -90.5t90.5 -37.5h1536 q53 0 90.5 37.5t37.5 90.5v1536q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe055;" d="M1408 1792q53 0 90 -37l896 -896q38 -38 38 -91t-38 -91l-896 -896q-37 -37 -90 -37t-90.5 37.5t-37.5 90.5q0 54 37 91l805 805l-805 805q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5zM640 1792q53 0 90 -37l896 -896q38 -38 38 -91t-38 -91l-896 -896q-37 -37 -90 -37 t-90.5 37.5t-37.5 90.5q0 54 37 91l805 805l-805 805q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5z" />
<glyph unicode="&#xe056;" d="M768 1792q53 0 91 -38l896 -896q37 -37 37 -90q0 -54 -37 -91l-896 -896q-37 -37 -91 -37q-53 0 -90.5 37t-37.5 90q0 52 37 91l806 806l-806 805q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5zM2176 1792q53 0 90.5 -37.5t37.5 -90.5v-1792q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5v1792q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe057;" d="M2304 2304q53 0 91 -38l512 -512q37 -37 37 -90q0 -54 -37 -91l-512 -512q-37 -37 -91 -37q-53 0 -90.5 37.5t-37.5 90.5q0 51 37 90l294 294h-203q-180 0 -338 -78.5t-265 -214.5q-165 -210 -165 -475q0 -267 -128 -496q-68 -123 -165 -221q-142 -145 -331 -226 t-400 -81h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h256q181 0 338.5 78t264.5 214q165 210 165 476q0 267 128 496q69 124 165 220q142 145 331 226.5t400 81.5h203l-294 293q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5zM2304 512q53 0 91 -38l512 -512 q37 -37 37 -91q0 -53 -37 -90l-512 -512q-37 -37 -91 -37q-53 0 -90.5 37t-37.5 90q0 52 37 91l294 294h-203q-211 0 -400 81t-331 226q77 113 128 241q107 -136 264.5 -214t338.5 -78h203l-294 293q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5zM256 1792h256q211 0 400 -81.5 t331 -226.5q-78 -115 -128 -241q-107 136 -265 214.5t-338 78.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe058;" d="M128 640h768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-432l347 -339l1 -1q148 -149 339 -225q183 -75 385 -75t385 75q100 41 187.5 100.5t149 122t112 134t81 131.5t51.5 120q18 50 66 72.5t97 5.5q50 -18 72.5 -65.5t5.5 -96.5q-42 -128 -122 -254 t-180 -226q-184 -184 -423 -281q-232 -94 -482 -94q-249 0 -482 94q-239 97 -423 281l-375 367v-486q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v768q0 53 37.5 90.5t90.5 37.5zM1536 2048q249 0 482 -94q239 -97 423 -281l2 -2l373 -365v486q0 53 37.5 90.5 t90.5 37.5t90.5 -37.5t37.5 -90.5v-768q0 -53 -37.5 -90.5t-90.5 -37.5h-768q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h432l-348 340q-146 146 -332.5 223t-391.5 77q-202 0 -385 -75q-191 -76 -339 -225q-60 -53 -131.5 -161.5t-110.5 -221.5q-18 -50 -66 -72.5 t-97 -5.5q-50 18 -72.5 65.5t-5.5 96.5q42 128 122 254t180 226q184 184 423 281q233 94 482 94z" />
<glyph unicode="&#xe059;" d="M512 2048h640l256 -384h1152q159 0 271.5 -112.5t112.5 -271.5v-1408q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v1792q0 159 112.5 271.5t271.5 112.5zM1271 1408l-247 384h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-1792 q0 -53 37.5 -90.5t90.5 -37.5h2048q53 0 90.5 37.5t37.5 90.5v1408q0 53 -37.5 90.5t-90.5 37.5h-1289z" />
<glyph unicode="&#xe060;" d="M1536 2176q225 0 437.5 -63t390 -179t320 -273.5t237 -353.5t130.5 -411q21 -124 21 -256h-1408v-768q0 -106 75 -181t181 -75t181 75t75 181q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5q0 -212 -150 -362t-362 -150t-362 150t-150 362v768h-1408q0 132 21 256 q36 215 130.5 411t237 353.5t320 273.5t390 179t437.5 63zM1536 1920q-304 0 -571 -134t-445.5 -367t-237.5 -523h2508q-59 290 -237.5 523t-445.5 367t-571 134z" />
<glyph unicode="&#xe061;" d="M1536 2048q43 0 85 -3q-85 -183 -85 -381q0 -182 71 -348t191 -286t286 -191t348 -71q198 0 381 85q3 -42 3 -85q0 -174 -46 -340t-128.5 -306.5t-200.5 -258.5t-258.5 -200.5t-306.5 -128.5t-340 -46t-340 46t-306.5 128.5t-258.5 200.5t-200.5 258.5t-128.5 306.5 t-46 340t46 340t128.5 306.5t200.5 258.5t258.5 200.5t306.5 128.5t340 46zM1284 1761q-165 -42 -307.5 -136t-245 -223t-161 -293.5t-58.5 -340.5q0 -208 81 -397.5t218.5 -327t327 -218.5t397.5 -81q176 0 340.5 58.5t293.5 161t223 245t136 307.5q-43 -4 -97 -4 q-234 0 -447 91.5t-367.5 246t-246 367.5t-91.5 447q0 54 4 97z" />
<glyph unicode="&#xe062;" d="M1472 2304q185 0 316.5 -131.5t131.5 -316.5v-1377q119 -99 187.5 -240.5t68.5 -302.5q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5q0 161 68.5 302.5t187.5 240.5v1377q0 185 131.5 316.5t316.5 131.5zM1472 2048 q-80 0 -136 -56t-56 -136v-1516q-115 -55 -185.5 -163.5t-70.5 -240.5q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5q0 132 -70.5 240.5t-185.5 163.5v1516q0 80 -56 136t-136 56z" />
<glyph unicode="&#xe063;" d="M721 1327l815 815l815 -815q166 -166 251.5 -378t85.5 -437q0 -226 -85.5 -437t-251.5 -377t-378 -252t-437 -86t-437 86t-378 252q-165 166 -251 377.5t-86 436.5t86 437t251 378zM2170 1146l-634 634l-634 -634q-128 -129 -195 -294t-67 -340t66.5 -339.5t195.5 -293.5 t294 -196t340 -67q176 0 340.5 67t293.5 196t195.5 293t66.5 340q0 175 -66.5 340t-195.5 294z" />
<glyph unicode="&#xe064;" d="M1536 1536q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM722 82q53 0 90.5 -38t37.5 -91q0 -52 -38 -90l-181 -181q-38 -38 -90 -38q-53 0 -90.5 37.5 t-37.5 90.5q0 54 37 91l181 181q38 38 91 38zM1536 -256q53 0 90.5 -37.5t37.5 -90.5v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 53 37.5 90.5t90.5 37.5zM128 896h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-53 0 -90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5zM1536 1280q-212 0 -362 -150t-150 -362t150 -362t362 -150t362 150t150 362t-150 362t-362 150zM2351 82q52 0 90 -38l181 -181q38 -38 38 -91q0 -52 -38 -90t-90 -38q-53 0 -91 38l-181 181q-37 37 -37 90t37.5 91t90.5 38zM541 1892 q52 0 90 -38l181 -181q38 -38 38 -90q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -91 37l-181 181q-37 37 -37 91q0 53 37.5 90.5t90.5 37.5zM1536 2304q53 0 90.5 -37.5t37.5 -90.5v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 53 37.5 90.5t90.5 37.5z M2688 896h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM2532 1892q52 0 90 -38t38 -90q0 -53 -38 -91l-181 -181q-37 -37 -90 -37q-55 0 -91.5 36.5t-36.5 91.5q0 53 37 90l181 181q38 38 91 38z" />
<glyph unicode="&#xe065;" d="M1920 1920q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5t-91.5 -447.5t-245.5 -367.5t-367.5 -245.5t-447.5 -91.5h-1152q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103h66q79 223 238 396.5t380.5 272.5t467.5 99z M1920 1664q-166 0 -319.5 -59.5t-270 -161.5t-195 -244t-101.5 -303h-266q-212 0 -362 -150t-150 -362t150 -362t362 -150h1152q182 0 348 71t286 191t191 286t71 348t-71 348t-191 286t-286 191t-348 71z" />
<glyph unicode="&#xe066;" d="M1920 2048q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5q0 -218 -79.5 -419t-216 -352t-326 -250.5t-402.5 -123.5v258q215 31 390.5 155.5t276.5 317t101 414.5q0 182 -71 348t-191 286t-286 191t-348 71q-166 0 -319.5 -59.5t-270 -161.5t-195 -244 t-101.5 -303h-266q-212 0 -362 -150t-150 -362q0 -116 45.5 -215t119.5 -162.5t164.5 -99t182.5 -35.5h512v-256h-512q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103h66q79 223 238 396.5t380.5 272.5t467.5 99zM1664 1024q53 0 91 -38 l384 -384q37 -37 37 -90q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-165 166v-843q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v843l-165 -166q-37 -37 -91 -37q-53 0 -90.5 37.5t-37.5 90.5q0 51 37 90l384 384q38 38 91 38z" />
<glyph unicode="&#xe067;" d="M1920 2048q234 0 447.5 -91.5t367.5 -245.5t245.5 -367.5t91.5 -447.5q0 -255 -105 -482t-290 -387.5t-420 -232.5l63 62q54 55 84 128q28 68 28 148q0 20 -1 28q178 124 281.5 317.5t103.5 418.5q0 182 -71 348t-191 286t-286 191t-348 71q-166 0 -319.5 -59.5 t-270 -161.5t-195 -244t-101.5 -303h-266q-212 0 -362 -150t-150 -362q0 -116 45.5 -215t119.5 -162.5t164.5 -99t182.5 -35.5h150q35 -88 90 -144l113 -112h-353q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103h66q79 223 238 396.5 t380.5 272.5t467.5 99zM1664 1024q53 0 90.5 -37.5t37.5 -90.5v-843l165 166q37 37 91 37q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91l-384 -384q-37 -37 -91 -37t-91 37l-384 384q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5q54 0 91 -37l165 -166v843q0 53 37.5 90.5 t90.5 37.5z" />
<glyph unicode="&#xe068;" d="M640 2304h1792q159 0 271.5 -112.5t112.5 -271.5v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-512v256h512q53 0 90.5 37.5t37.5 90.5v1792q0 53 -37.5 90.5t-90.5 37.5h-1792q-53 0 -90.5 -37.5t-37.5 -90.5v-1792q0 -53 37.5 -90.5t90.5 -37.5h512v-256h-512 q-159 0 -271.5 112.5t-112.5 271.5v1792q0 159 112.5 271.5t271.5 112.5zM1536 1408q54 0 91 -37l512 -512q37 -37 37 -91q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -91 37l-293 294v-1611q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v1611l-293 -294 q-39 -37 -91 -37q-53 0 -90.5 37.5t-37.5 90.5q0 52 37 91l512 512q37 37 91 37z" />
<glyph unicode="&#xe069;" d="M1920 1792h512q159 0 271.5 -112.5t112.5 -271.5v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-1792q-159 0 -271.5 112.5t-112.5 271.5v1792q0 159 112.5 271.5t271.5 112.5h512v-256h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-1792q0 -53 37.5 -90.5t90.5 -37.5h1792 q53 0 90.5 37.5t37.5 90.5v1792q0 53 -37.5 90.5t-90.5 37.5h-512v256zM1536 2304q53 0 90.5 -37.5t37.5 -90.5v-1611l293 294q37 37 91 37q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91l-512 -512q-37 -37 -91 -37t-91 37l-512 512q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5 q54 0 91 -37l293 -294v1611q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe070;" d="M0 896l3072 1408l-1408 -3072l-384 1280zM1714 -44l838 1828l-1828 -838l762 -228z" />
<glyph unicode="&#xe071;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1664 1913v-377q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v377q-198 -22 -375.5 -109t-311.5 -221t-221 -311.5t-109 -375.5h377q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-377q22 -198 109 -375.5t221 -311.5t311.5 -221t375.5 -109v377q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-377 q198 22 375.5 109t311.5 221t221 311.5t109 375.5h-377q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h377q-22 198 -109 375.5t-221 311.5t-311.5 221t-375.5 109z" />
<glyph unicode="&#xe072;" d="M2048 1664l1024 640v-2432l-1024 -640l-1024 640l-1024 -640v2432l1024 640zM896 94v1827l-640 -400v-1827zM1920 1442l-768 481v-1829l768 -480v1828zM2816 14v1828l-640 -400v-1828z" />
<glyph unicode="&#xe073;" d="M384 1664h1920q159 0 271.5 -112.5t112.5 -271.5q159 0 271.5 -112.5t112.5 -271.5v-256q0 -159 -112.5 -271.5t-271.5 -112.5q0 -159 -112.5 -271.5t-271.5 -112.5h-1920q-159 0 -271.5 112.5t-112.5 271.5v1024q0 159 112.5 271.5t271.5 112.5zM2304 1408h-1920 q-53 0 -90.5 -37.5t-37.5 -90.5v-1024q0 -53 37.5 -90.5t90.5 -37.5h1920q53 0 90.5 37.5t37.5 90.5v1024q0 53 -37.5 90.5t-90.5 37.5zM2688 1024v-512q53 0 90.5 37.5t37.5 90.5v256q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe074;" d="M1536 2304q209 0 385.5 -103t279.5 -279.5t103 -385.5v-384q0 -160 -62 -303t-173 -249q292 -46 519 -135.5t355.5 -211.5t128.5 -257v-252q0 -159 -112.5 -271.5t-271.5 -112.5h-2304q-159 0 -271.5 112.5t-112.5 271.5v253q0 135 128.5 257t355 211.5t518.5 134.5 q-110 107 -172 249.5t-62 302.5v384q0 209 103 385.5t279.5 279.5t385.5 103zM1536 384q-278 0 -536.5 -44.5t-450.5 -124.5q-77 -32 -137.5 -68t-92 -65t-47.5 -50.5t-16 -34.5v-253q0 -53 37.5 -90.5t90.5 -37.5h2304q53 0 90.5 37.5t37.5 90.5v252q0 13 -16 34.5 t-47.5 50.5t-92 65t-137.5 69q-192 80 -450.5 124.5t-536.5 44.5zM1536 2048q-212 0 -362 -150t-150 -362v-384q0 -212 150 -362t362 -150t362 150t150 362v384q0 212 -150 362t-362 150z" />
<glyph unicode="&#xe075;" d="M1280 2048h512q159 0 271.5 -112.5t112.5 -271.5v-128h384q159 0 271.5 -112.5t112.5 -271.5v-1280q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v1280q0 159 112.5 271.5t271.5 112.5h384v128q0 159 112.5 271.5t271.5 112.5zM640 -256 v1536h-128q-53 0 -90.5 -37.5t-37.5 -90.5v-1280q0 -53 37.5 -90.5t90.5 -37.5h128zM2176 -256v1536h-1280v-1536h1280zM2560 1280h-128v-1536h128q53 0 90.5 37.5t37.5 90.5v1280q0 53 -37.5 90.5t-90.5 37.5zM1792 1792h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-128h768v128 q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe076;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-1408q0 -159 -112.5 -271.5t-271.5 -112.5h-1024l-896 -640v640h-128q-159 0 -271.5 112.5t-112.5 271.5v1408q0 159 112.5 271.5t271.5 112.5zM2560 1920h-2048q-53 0 -90.5 -37.5t-37.5 -90.5v-1408q0 -53 37.5 -90.5 t90.5 -37.5h384v-399l558 399h1106q53 0 90.5 37.5t37.5 90.5v1408q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe077;" d="M1536 2176q212 0 362 -150t150 -362q0 -177 -108 -314.5t-276 -180.5v-1546q213 24 402.5 123.5t326 250.5t216 352t79.5 419q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5q0 -287 -111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449 t-111.5 547.5q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5q0 -218 79.5 -419t216 -352t326 -250.5t402.5 -123.5v1546q-168 43 -276 180.5t-108 314.5q0 212 150 362t362 150zM1536 1920q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75z" />
<glyph unicode="&#xe078;" d="M1536 2176q36 0 54 -1q186 -7 361.5 -61.5t324.5 -146.5t273.5 -221.5t211 -281.5t135 -330.5t48.5 -365.5t-48.5 -365.5t-135 -330.5t-211 -281.5t-273.5 -221.5t-324.5 -146.5t-361.5 -61.5q-18 -1 -54 -1t-54 1q-186 7 -361.5 61.5t-324.5 146.5t-273.5 221.5 t-211 281.5t-135 330.5t-48.5 365.5t48.5 365.5t135 330.5t211 281.5t273.5 221.5t324.5 146.5t361.5 61.5q18 1 54 1zM901 640h-510q40 -357 275 -627t578 -360q-130 197 -226.5 446.5t-116.5 540.5zM1915 640h-758q10 -128 41.5 -256t70.5 -226.5t90 -194.5t92 -158 t85 -119q44 57 85 119.5t92 158.5t90 194.5t70.5 226t41.5 255.5zM1244 1883q-343 -90 -578 -360t-275 -627h510q35 522 343 987zM2681 640h-509q-37 -523 -344 -987q343 90 578 360t275 627zM1536 1850q-44 -57 -84.5 -119.5t-92 -158.5t-90.5 -194.5t-70.5 -226 t-41.5 -255.5h758q-10 128 -41.5 256t-70.5 226.5t-90 194.5t-92 158t-85 119zM1828 1883q307 -464 344 -987h509q-40 357 -275 627t-578 360z" />
<glyph unicode="&#xe079;" d="M128 1664l1408 640l1408 -640v-1792l-1408 -640l-1408 640v1792zM1408 942l-1024 465v-1370l1024 -466v1371zM2688 37v1370l-1024 -465v-1371zM2480 1594l-944 429l-944 -429l944 -429z" />
<glyph unicode="&#xe080;" d="M1408 2048q249 0 482 -94q239 -97 423 -281q1 -1 375 -367v486q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-768q0 -53 -37.5 -90.5t-90.5 -37.5h-768q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h432q-278 270 -348 340q-149 149 -339 225q-183 75 -385 75 t-385 -75q-191 -76 -339 -225q-148 -148 -225 -339q-75 -183 -75 -385t75 -385q77 -191 225 -339q148 -149 339 -225q183 -75 385 -75t385 75q190 76 339 225q166 166 242 383q17 50 65 72.5t98 5.5q50 -18 73 -66t5 -98q-46 -131 -124.5 -256t-177.5 -222 q-184 -184 -423 -281q-233 -94 -482 -94t-482 94q-239 97 -423 281t-281 423q-94 233 -94 482t94 482q97 239 281 423t423 281q233 94 482 94z" />
<glyph unicode="&#xe081;" d="M2304 2048q212 0 362 -150t150 -362t-150 -362t-362 -150q-113 0 -213.5 46.5t-172.5 129.5l-649 -325q11 -53 11 -107t-11 -107l649 -325q72 83 172.5 129.5t213.5 46.5q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362q0 54 11 107l-649 325 q-72 -83 -172.5 -129.5t-213.5 -46.5q-212 0 -362 150t-150 362t150 362t362 150q113 0 213.5 -46.5t172.5 -129.5l649 325q-11 53 -11 107q0 212 150 362t362 150zM768 1024q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75zM2304 256 q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75zM2304 1792q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181t-75 181t-181 75z" />
<glyph unicode="&#xe082;" d="M2304 2176h256q159 0 271.5 -112.5t112.5 -271.5v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 53 -37.5 90.5t-90.5 37.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM256 128q53 0 90.5 -37.5t37.5 -90.5v-256q0 -53 37.5 -90.5 t90.5 -37.5h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-159 0 -271.5 112.5t-112.5 271.5v256q0 53 37.5 90.5t90.5 37.5zM256 1152q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5 t90.5 37.5zM1280 -384h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM512 2176h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-53 0 -90.5 -37.5t-37.5 -90.5v-256q0 -53 -37.5 -90.5 t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 159 112.5 271.5t271.5 112.5zM2816 128q53 0 90.5 -37.5t37.5 -90.5v-256q0 -159 -112.5 -271.5t-271.5 -112.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h256q53 0 90.5 37.5t37.5 90.5v256q0 53 37.5 90.5 t90.5 37.5zM2816 1152q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5t90.5 37.5zM1280 2176h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z " />
<glyph unicode="&#xe083;" d="M1536 1408q53 0 90.5 -37.5t37.5 -90.5v-384h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-384v-384q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384h-384q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h384v384q0 53 37.5 90.5t90.5 37.5z M256 128q53 0 90.5 -37.5t37.5 -90.5v-256q0 -53 37.5 -90.5t90.5 -37.5h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-159 0 -271.5 112.5t-112.5 271.5v256q0 53 37.5 90.5t90.5 37.5zM256 1152q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5 t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5t90.5 37.5zM1280 -384h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM512 2176h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256 q-53 0 -90.5 -37.5t-37.5 -90.5v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 159 112.5 271.5t271.5 112.5zM2816 128q53 0 90.5 -37.5t37.5 -90.5v-256q0 -159 -112.5 -271.5t-271.5 -112.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5 h256q53 0 90.5 37.5t37.5 90.5v256q0 53 37.5 90.5t90.5 37.5zM2816 1152q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5t90.5 37.5zM1280 2176h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512 q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM2304 2176h256q159 0 271.5 -112.5t112.5 -271.5v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 53 -37.5 90.5t-90.5 37.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe084;" d="M2304 2176h256q159 0 271.5 -112.5t112.5 -271.5v-256q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 53 -37.5 90.5t-90.5 37.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM256 128q53 0 90.5 -37.5t37.5 -90.5v-256q0 -53 37.5 -90.5 t90.5 -37.5h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-159 0 -271.5 112.5t-112.5 271.5v256q0 53 37.5 90.5t90.5 37.5zM256 1152q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5 t90.5 37.5zM1280 -384h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM512 2176h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256q-53 0 -90.5 -37.5t-37.5 -90.5v-256q0 -53 -37.5 -90.5 t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256q0 159 112.5 271.5t271.5 112.5zM2816 128q53 0 90.5 -37.5t37.5 -90.5v-256q0 -159 -112.5 -271.5t-271.5 -112.5h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h256q53 0 90.5 37.5t37.5 90.5v256q0 53 37.5 90.5 t90.5 37.5zM1024 896h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM2816 1152q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5t90.5 37.5 zM1280 2176h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe085;" d="M128 2176h1448l1256 -1255q112 -112 112 -271q0 -160 -112 -272l-906 -906q-112 -112 -271 -112q-160 0 -272 112l-1255 1256v1448zM2651 740l-1181 1180h-1086v-1086l1180 -1181q38 -37 91 -37t90 37l906 906q37 37 37 90t-37 91zM1088 1536q133 0 226.5 -93.5 t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5zM1088 1280q-26 0 -45 -19t-19 -45t19 -45t45 -19t45 19t19 45t-19 45t-45 19z" />
<glyph unicode="&#xe086;" d="M2441 1545q177 -177 274 -407q101 -238 101 -498t-101 -498q-97 -230 -274 -407t-407 -274q-238 -101 -498 -101t-498 101q-230 97 -407 274t-274 407q-101 238 -101 498t101 498q97 230 274 407q37 37 90 37t91 -37t38 -90t-38 -91q-141 -141 -220 -325 q-80 -192 -80 -399t80 -399q79 -184 220 -325t325 -220q192 -80 399 -80t399 80q184 79 325 220t220 325q80 192 80 399t-80 399q-79 184 -220 325q-38 38 -38 91t38 90t91 37t90 -37zM1536 2176q53 0 90.5 -37.5t37.5 -90.5v-1280q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5v1280q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe087;" d="M2304 2048q212 0 362 -150t150 -362t-150 -362t-362 -150h-256v-512h256q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362v1v255h-512v-256q0 -212 -150 -362t-362 -150t-362 150t-150 362t150 362t362 150h256v512h-256q-212 0 -362 150t-150 362 t150 362t362 150t362 -150t150 -362v-256h512v256q0 212 150 362t362 150zM1024 0v256h-256q-106 0 -181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM768 1792q-106 0 -181 -75t-75 -181t75 -181t181 -75h256v256q0 106 -75 181t-181 75zM1792 512v512h-512v-512h512z M2304 256h-256v-256q0 -106 75 -181t181 -75t181 75t75 181t-75 181t-181 75zM2304 1792q-106 0 -181 -75t-75 -181v-256h256q106 0 181 75t75 181t-75 181t-181 75z" />
<glyph unicode="&#xe088;" d="M384 1792h640q73 0 111 -64l987 -1728h566q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-640q-73 0 -111 64l-987 1728h-566q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM1792 1792h640q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-640 q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe089;" d="M1677 2169q259 -26 491.5 -143t408.5 -310q173 -190 269 -431q98 -249 98 -517q0 -287 -111 -548q-103 -247 -301 -448q-201 -198 -448 -301q-261 -111 -548 -111q-268 0 -517 98q-241 96 -431 269q-193 176 -310 408.5t-143 491.5q-5 57 32.5 99t95.5 42q49 0 85.5 -33 t41.5 -82q21 -213 116.5 -403t254.5 -334q155 -143 352 -220q204 -80 423 -80q235 0 448 90q202 85 367 247q162 165 247 367q90 213 90 448q0 219 -80 423q-77 197 -220 352q-144 159 -334 254.5t-403 116.5q-49 5 -82 41.5t-33 85.5q0 38 14.5 65t38.5 40t45.5 18t42.5 5z M256 2176h768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-459l1062 -1062q37 -36 37 -90q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-1061 1062v-459q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v768q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe090;" d="M2560 2176q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM512 640q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5 v512q0 159 112.5 271.5t271.5 112.5zM512 384q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM1536 1408q159 0 271.5 -112.5t112.5 -271.5v-1280q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5 t-112.5 271.5v1280q0 159 112.5 271.5t271.5 112.5zM1536 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-1280q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v1280q0 53 -37.5 90.5t-90.5 37.5zM2560 1920q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe091;" d="M1536 2176q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM512 640q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5 v512q0 159 112.5 271.5t271.5 112.5zM512 384q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM1536 1920q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5 v2048q0 53 -37.5 90.5t-90.5 37.5zM2560 1408q159 0 271.5 -112.5t112.5 -271.5v-1280q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5v1280q0 159 112.5 271.5t271.5 112.5zM2560 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-1280q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v1280q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe092;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM1408 640v1273q-213 -24 -402.5 -123.5t-326 -250.5 t-216 -352t-79.5 -419q0 -234 91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5q218 0 419 79.5t352 216t250.5 326t123.5 402.5h-1273zM1664 1913v-1017h1017q-22 198 -109 375.5t-221 311.5t-311.5 221t-375.5 109z" />
<glyph unicode="&#xe093;" d="M1190 1152l346 1065l346 -1065h1120l-906 -629l346 -1046l-906 663l-906 -658l346 1041l-906 629h1120zM1696 896l-160 509l-160 -509h-497l400 -265l-157 -473l415 300l413 -303l-157 473l399 268h-496z" />
<glyph unicode="&#xe094;" d="M1280 1792q53 0 90.5 -37.5t37.5 -90.5q0 -54 -38 -91l-677 -677h1995q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1995l677 -677q38 -37 38 -91q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -91 37l-896 896q-37 39 -37 91t37 91l896 896q38 37 91 37z" />
<glyph unicode="&#xe095;" d="M1792 1792q54 0 91 -37l896 -896q37 -37 37 -91t-37 -91l-896 -896q-37 -37 -91 -37q-55 0 -91.5 36.5t-36.5 91.5q0 54 37 91l678 677h-1995q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1995l-678 677q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5z" />
<glyph unicode="&#xe096;" d="M1536 2048q54 0 91 -37l896 -896q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-677 678v-1995q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v1995l-677 -678q-37 -37 -91 -37q-55 0 -91.5 36.5t-36.5 91.5q0 54 37 91l896 896q37 37 91 37z" />
<glyph unicode="&#xe097;" d="M1536 2048q53 0 90.5 -37.5t37.5 -90.5v-1995l677 678q37 37 91 37q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91l-896 -896q-37 -37 -91 -37t-91 37l-896 896q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5q54 0 91 -37l677 -678v1995q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe098;" d="M640 1280l640 640v-2304l-640 640h-256q-159 0 -271.5 112.5t-112.5 271.5v251q0 159 112.5 274t271.5 115h256zM1024 234v1073l-278 -283h-362q-52 0 -90 -39.5t-38 -93.5v-251q0 -53 37.5 -90.5t90.5 -37.5h362zM1860 1195q37 0 69.5 -21t48.5 -57q70 -169 70 -349 q0 -183 -70 -347q-15 -36 -47.5 -57.5t-70.5 -21.5q-47 0 -87.5 35.5t-40.5 92.5q0 23 10 50q50 118 50 248q0 129 -50 249q-10 23 -10 50q0 57 38.5 92.5t89.5 35.5zM2251 1552q72 0 110 -63q99 -165 147 -341q52 -188 52 -380q0 -191 -52 -381q-49 -178 -147 -341 q-37 -62 -110 -62q-50 0 -89 36t-39 92q0 35 19 66q78 130 119 278q43 150 43 312q0 161 -43 311q-41 148 -119 279q-19 29 -19 65q0 54 39.5 91.5t88.5 37.5zM2634 1903q69 0 106 -56q163 -239 247.5 -514t84.5 -565t-84.5 -565t-247.5 -514q-36 -56 -106 -56 q-52 0 -89.5 36t-37.5 92q0 40 22 72q287 421 287 935q0 252 -73 490t-214 445q-22 32 -22 72q0 56 37.5 92t89.5 36z" />
<glyph unicode="&#xe099;" d="M768 1280l640 640v-2304l-640 640h-256q-159 0 -271.5 112.5t-112.5 271.5v251q0 159 112.5 274t271.5 115h256zM1152 234v1073l-278 -283h-362q-52 0 -90 -39.5t-38 -93.5v-251q0 -53 37.5 -90.5t90.5 -37.5h362zM2688 1280q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91 l-294 -293l294 -293q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-293 294l-293 -294q-37 -37 -91 -37q-55 0 -91.5 36.5t-36.5 91.5q0 54 37 91l294 293l-294 293q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5q54 0 91 -37l293 -294l293 294q37 37 91 37z" />
<glyph unicode="&#xe100;" d="M2048 2176h512q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM512 640h512q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512 q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM1024 384h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM512 2176h512q159 0 271.5 -112.5t112.5 -271.5 v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM1024 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5z M2560 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe101;" d="M512 2176h512q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM1024 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h512 q53 0 90.5 37.5t37.5 90.5v2048q0 53 -37.5 90.5t-90.5 37.5zM2048 640h512q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM2560 384h-512q-53 0 -90.5 -37.5 t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM2048 2176h512q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5 t271.5 112.5zM2560 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe102;" d="M2048 2176h512q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM512 640h512q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512 q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM1024 384h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM512 2176h512q159 0 271.5 -112.5t112.5 -271.5 v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM1024 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5z M2048 640h512q159 0 271.5 -112.5t112.5 -271.5v-512q0 -159 -112.5 -271.5t-271.5 -112.5h-512q-159 0 -271.5 112.5t-112.5 271.5v512q0 159 112.5 271.5t271.5 112.5zM2560 384h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5 t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5zM2560 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h512q53 0 90.5 37.5t37.5 90.5v512q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe103;" d="M512 2176h2048q159 0 271.5 -112.5t112.5 -271.5v-2048q0 -159 -112.5 -271.5t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM1408 -384v1024h-1024v-896q0 -53 37.5 -90.5t90.5 -37.5h896zM1408 896v1024h-896 q-53 0 -90.5 -37.5t-37.5 -90.5v-896h1024zM2688 -256v896h-1024v-1024h896q53 0 90.5 37.5t37.5 90.5zM2560 1920h-896v-1024h1024v896q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe104;" d="M384 1920h2304q159 0 271.5 -112.5t112.5 -271.5v-1536q0 -159 -112.5 -271.5t-271.5 -112.5h-2304q-159 0 -271.5 112.5t-112.5 271.5v1536q0 159 112.5 271.5t271.5 112.5zM896 -128v1792h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-1536q0 -53 37.5 -90.5t90.5 -37.5h512z M1920 -128v1792h-768v-1792h768zM2688 1664h-512v-1792h512q53 0 90.5 37.5t37.5 90.5v1536q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe105;" d="M2080 353q52 0 90 -38l362 -362q38 -38 38 -91q0 -52 -38 -90t-90 -38q-53 0 -91 38l-362 362q-37 37 -37 91q0 53 37.5 90.5t90.5 37.5zM993 353q53 0 90.5 -37.5t37.5 -90.5t-38 -91l-362 -362q-38 -38 -90 -38q-53 0 -90.5 37.5t-37.5 90.5q0 54 37 91l362 362 q38 38 91 38zM256 896h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM1536 128q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5t90.5 37.5z M631 1802q52 0 90 -38l362 -362q38 -38 38 -90q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -91 37l-362 362q-37 37 -37 91q0 53 37.5 90.5t90.5 37.5zM2304 896h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-512q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z M1536 2176q53 0 90.5 -37.5t37.5 -90.5v-512q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v512q0 53 37.5 90.5t90.5 37.5zM2442 1802q52 0 90 -38t38 -90q0 -53 -38 -91l-362 -362q-37 -37 -90 -37q-55 0 -91.5 36.5t-36.5 91.5q0 53 37 90l362 362q38 38 91 38z " />
<glyph unicode="&#xe106;" d="M1536 2304q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5v-128h512v-1920q0 -159 -112.5 -271.5t-271.5 -112.5h-1536q-159 0 -271.5 112.5t-112.5 271.5v1920h512v128q0 130 51 248.5t136.5 204t204 136.5t248.5 51zM2432 -384v1664h-1792v-1664q0 -53 37.5 -90.5 t90.5 -37.5h1536q53 0 90.5 37.5t37.5 90.5zM1536 2048q-159 0 -271.5 -112.5t-112.5 -271.5v-128h768v128q0 159 -112.5 271.5t-271.5 112.5z" />
<glyph unicode="&#xe107;" d="M1536 2176q287 0 547.5 -111.5t449 -300t300 -449t111.5 -547.5t-111.5 -547.5t-300 -449t-449 -300t-547.5 -111.5t-547.5 111.5t-449 300t-300 449t-111.5 547.5t111.5 547.5t300 449t449 300t547.5 111.5zM2255 -132l-1619 1619q-120 -151 -186 -335t-66 -384 q0 -234 91.5 -447.5t245.5 -367.5t367.5 -245.5t447.5 -91.5q201 0 385 65.5t334 186.5zM1536 1920q-201 0 -385 -65.5t-334 -186.5l1619 -1619q121 150 186.5 334t65.5 385q0 234 -91.5 447.5t-245.5 367.5t-367.5 245.5t-447.5 91.5z" />
<glyph unicode="&#xe108;" d="M896 2176q106 0 228 -26.5t235 -64l226 -75t235 -64t228 -26.5q108 0 213 13t179 32t132.5 38t87.5 32l28 13v-1792q-10 -5 -30 -13.5t-84.5 -31t-134.5 -39t-176.5 -30.5t-214.5 -14q-106 0 -228 26.5t-235 64l-226 75t-235 64t-228 26.5q-191 0 -384 -43v-853 q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v2560q10 5 30 13.5t84.5 31t134.5 39t176.5 30.5t214.5 14zM896 1920q-196 0 -384 -51v-1267q192 38 384 38q142 0 284 -32.5t323 -92.5q23 -8 86.5 -29.5t93 -31t86.5 -26t95.5 -24t88.5 -14t95 -6.5q196 0 384 51 v1267q-192 -38 -384 -38q-142 0 -284 32.5t-323 92.5q-23 8 -86.5 29.5t-93 31t-86.5 26t-95.5 24t-88.5 14t-95 6.5z" />
<glyph unicode="&#xe109;" d="M1280 2176h512q159 0 271.5 -112.5t112.5 -271.5v-128h512q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-128v-1536q0 -159 -112.5 -271.5t-271.5 -112.5h-1280q-159 0 -271.5 112.5t-112.5 271.5v1536h-128q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5 h512v128q0 159 112.5 271.5t271.5 112.5zM2304 -128v1536h-1536v-1536q0 -53 37.5 -90.5t90.5 -37.5h1280q53 0 90.5 37.5t37.5 90.5zM1792 1920h-512q-53 0 -90.5 -37.5t-37.5 -90.5v-128h768v128q0 53 -37.5 90.5t-90.5 37.5z" />
<glyph unicode="&#xe110;" d="M2176 2176h384q159 0 271.5 -112.5t112.5 -271.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384q0 53 -37.5 90.5t-90.5 37.5h-384q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM256 256q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 37.5 -90.5 t90.5 -37.5h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-384q-159 0 -271.5 112.5t-112.5 271.5v384q0 53 37.5 90.5t90.5 37.5zM512 2176h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-384q-53 0 -90.5 -37.5t-37.5 -90.5v-384 q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384q0 159 112.5 271.5t271.5 112.5zM2816 256q53 0 90.5 -37.5t37.5 -90.5v-384q0 -159 -112.5 -271.5t-271.5 -112.5h-384q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h384q53 0 90.5 37.5t37.5 90.5v384 q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe111;" d="M2176 2176q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 37.5 -90.5t90.5 -37.5h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-384q-159 0 -271.5 112.5t-112.5 271.5v384q0 53 37.5 90.5t90.5 37.5zM256 256h384q159 0 271.5 -112.5t112.5 -271.5v-384 q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384q0 53 -37.5 90.5t-90.5 37.5h-384q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM896 2176q53 0 90.5 -37.5t37.5 -90.5v-384q0 -159 -112.5 -271.5t-271.5 -112.5h-384q-53 0 -90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5h384q53 0 90.5 37.5t37.5 90.5v384q0 53 37.5 90.5t90.5 37.5zM2432 256h384q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-384q-53 0 -90.5 -37.5t-37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v384 q0 159 112.5 271.5t271.5 112.5z" />
<glyph unicode="&#xe112;" d="M1792 641q53 0 91 -38l805 -805v587q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-896q0 -53 -38 -91t-91 -38h-896q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h587l-805 805q-37 39 -37 91q0 53 37.5 91t90.5 38zM256 2176h896q53 0 90.5 -37.5t37.5 -90.5 t-37.5 -90.5t-90.5 -37.5h-587l805 -804q38 -38 38 -91t-38 -90.5t-91 -37.5q-51 0 -91 37l-804 805v-587q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe113;" d="M256 2176q54 0 91 -37l805 -805v587q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-896q0 -53 -38 -91t-91 -38h-896q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h587l-805 805q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5zM1793 640h896q53 0 90.5 -37.5 t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-587l804 -805q38 -38 38 -91t-37.5 -90.5t-90.5 -37.5q-54 0 -91 37l-805 805v-587q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v896q0 53 38 91t91 38z" />
<glyph unicode="&#xe114;" d="M1536 2048q53 0 90.5 -37.5t37.5 -90.5v-1024h1024q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-1024v-1024q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v1024h-1024q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1024v1024q0 53 37.5 90.5 t90.5 37.5z" />
<glyph unicode="&#xe115;" d="M384 896h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe116;" d="M2688 1664q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91l-1536 -1536q-37 -37 -91 -37t-91 37l-768 768q-37 37 -37 91q0 55 36.5 91.5t91.5 36.5q54 0 91 -37l677 -678l1445 1446q37 37 91 37z" />
<glyph unicode="&#xe117;" d="M2432 1792q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91l-806 -805l806 -805q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-805 806l-805 -806q-37 -37 -91 -37q-55 0 -91.5 36.5t-36.5 91.5q0 54 37 91l806 805l-806 805q-37 37 -37 91q0 55 36.5 91.5 t91.5 36.5q54 0 91 -37l805 -806l805 806q37 37 91 37z" />
<glyph unicode="&#xe118;" d="M1536 2304q54 0 91 -37l452 -453q38 -38 38 -91t-37.5 -90.5t-90.5 -37.5t-91 38l-234 234v-971h971l-234 234q-38 38 -38 91t37.5 90.5t90.5 37.5t91 -38l453 -452q37 -37 37 -91t-37 -90l-453 -453q-38 -38 -91 -38t-90.5 37.5t-37.5 90.5t38 91l234 234h-971v-971 l234 234q38 38 91 38t90.5 -37.5t37.5 -90.5t-38 -91l-452 -453q-37 -37 -91 -37q-53 0 -90 37l-453 453q-38 38 -38 91t37.5 90.5t90.5 37.5t91 -38l234 -234v971h-971l234 -234q38 -38 38 -91t-37.5 -90.5t-90.5 -37.5t-91 38l-453 452q-37 37 -37 91t37 91l453 452 q38 38 91 38t90.5 -37.5t37.5 -90.5t-38 -91l-234 -234h971v971l-234 -234q-38 -38 -91 -38t-90.5 37.5t-37.5 90.5t38 91l452 453q37 37 91 37z" />
<glyph unicode="&#xe119;" d="M1024 1920h1664q159 0 271.5 -112.5t112.5 -271.5v-1536q0 -159 -112.5 -271.5t-271.5 -112.5h-1664l-1024 1152zM2688 1664h-1549l-796 -896l796 -896h1549q53 0 90.5 37.5t37.5 90.5v1536q0 53 -37.5 90.5t-90.5 37.5zM2432 1152q0 -54 -37 -91l-294 -293l294 -293 q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-293 294l-293 -294q-37 -37 -91 -37q-53 0 -90.5 37.5t-37.5 90.5q0 52 37 91l294 293l-294 293q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5q54 0 91 -37l293 -294l293 294q37 37 91 37q55 0 91.5 -36.5 t36.5 -91.5z" />
<glyph unicode="&#xe120;" d="M384 1664h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 128h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5zM384 896 h2304q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-2304q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe121;" d="M768 1920h1536l768 -768v-1152q0 -159 -112.5 -271.5t-271.5 -112.5h-2304q-159 0 -271.5 112.5t-112.5 271.5v1152zM2816 0v896h-562q-85 -222 -283.5 -367t-434.5 -145q-157 0 -305 67t-258 183.5t-165 261.5h-552v-896q0 -52 37 -90t91 -38h2304q53 0 90.5 37.5 t37.5 90.5zM2710 1152l-507 512h-1329l-512 -512h662q0 -127 68 -245t187.5 -192.5t256.5 -74.5t256.5 74.5t187.5 192.5t68 245h662z" />
<glyph unicode="&#xe122;" d="M1536 2176q53 0 90.5 -37.5t37.5 -90.5v-1483l421 422q37 37 91 37q55 0 91.5 -36.5t36.5 -91.5q0 -54 -37 -91l-640 -640q-37 -37 -91 -37t-91 37l-640 640q-37 39 -37 91q0 53 37.5 90.5t90.5 37.5q54 0 91 -37l421 -422v1483q0 53 37.5 90.5t90.5 37.5zM2816 384 q53 0 90.5 -37.5t37.5 -90.5v-512q0 -160 -111 -271q-113 -113 -270 -113h-2051q-157 0 -272 112q-112 115 -112 272v512q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h2051q52 0 88.5 37.5t36.5 90.5v512q0 53 37.5 90.5t90.5 37.5z " />
<glyph unicode="&#xe123;" d="M1536 2170q54 0 91 -37l640 -640q37 -37 37 -91q0 -55 -36.5 -91.5t-91.5 -36.5q-54 0 -91 37l-421 422v-1483q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v1483l-421 -422q-39 -37 -91 -37q-53 0 -90.5 37.5t-37.5 90.5q0 52 37 91l640 640q37 37 91 37z M2816 378q53 0 90.5 -37.5t37.5 -90.5v-512q0 -160 -111 -271q-113 -113 -270 -113h-2051q-157 0 -272 112q-112 115 -112 272v512q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-512q0 -53 37.5 -90.5t90.5 -37.5h2051q52 0 88.5 37.5t36.5 90.5v512q0 53 37.5 90.5 t90.5 37.5z" />
<glyph unicode="&#xe124;" d="M640 2304h1280l896 -896v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-1792q-159 0 -271.5 112.5t-112.5 271.5v2304q0 159 112.5 271.5t271.5 112.5zM1664 1152v896h-1024q-54 0 -91 -37t-37 -91v-2304q0 -54 37 -91t91 -37h1792q54 0 91 37t37 91v1536h-896zM2454 1408 l-534 534v-534h534z" />
<glyph unicode="&#xe125;" d="M640 2304h1280l896 -896v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-1792q-159 0 -271.5 112.5t-112.5 271.5v2304q0 159 112.5 271.5t271.5 112.5zM1536 896q53 0 90.5 -37.5t37.5 -90.5v-256h256q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-256v-256 q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v256h-256q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h256v256q0 53 37.5 90.5t90.5 37.5zM1664 1152v896h-1024q-54 0 -91 -37t-37 -91v-2304q0 -54 37 -91t91 -37h1792q54 0 91 37t37 91v1536h-896zM2454 1408 l-534 534v-534h534z" />
<glyph unicode="&#xe126;" d="M640 2304h1280l896 -896v-1792q0 -159 -112.5 -271.5t-271.5 -112.5h-1792q-159 0 -271.5 112.5t-112.5 271.5v2304q0 159 112.5 271.5t271.5 112.5zM1152 512h768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-768q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5 t90.5 37.5zM1664 1152v896h-1024q-54 0 -91 -37t-37 -91v-2304q0 -54 37 -91t91 -37h1792q54 0 91 37t37 91v1536h-896zM2454 1408l-534 534v-534h534z" />
<glyph unicode="&#xe127;" d="M1536 2176q276 0 535 -105t461 -307t307 -461t105 -535t-105 -535t-307 -461t-461 -307t-535 -105t-535 105t-461 307t-307 461t-105 535t105 535t307 461t461 307t535 105zM1002 1121l-366 366q-124 -155 -188 -340t-64 -379t64 -379t188 -340l366 366 q-106 160 -106 353t106 353zM2255 -132l-366 366q-160 -106 -353 -106t-353 106l-366 -366q155 -124 340 -188t379 -64t379 64t340 188zM1536 1152q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5z M1536 1920q-194 0 -379 -64t-340 -188l366 -366q160 106 353 106t353 -106l366 366q-155 124 -340 188t-379 64zM2436 1487l-366 -366q106 -160 106 -353t-106 -353l366 -366q124 155 188 340t64 379t-64 379t-188 340z" />
<glyph unicode="&#xe128;" d="M512 2176h896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-896q-53 0 -90.5 -37.5t-37.5 -90.5v-2048q0 -53 37.5 -90.5t90.5 -37.5h2048q53 0 90.5 37.5t37.5 90.5v896q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-896q0 -159 -112.5 -271.5 t-271.5 -112.5h-2048q-159 0 -271.5 112.5t-112.5 271.5v2048q0 159 112.5 271.5t271.5 112.5zM2048 2176h768q53 0 90.5 -37.5t37.5 -90.5v-768q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v459l-1062 -1062q-37 -37 -90 -37q-55 0 -91.5 36.5t-36.5 91.5 q0 53 37 90l1062 1062h-459q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5z" />
<glyph unicode="&#xe129;" d="M2560 1152q159 0 271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5zM512 1152q159 0 271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5zM512 896 q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5zM1536 1152q159 0 271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5zM1536 896q-53 0 -90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5zM2560 896q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 75 KiB

File diff suppressed because it is too large Load diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 434 KiB

@@ -0,0 +1,34 @@
// Animated Icons
// --------------------------
.@{fa-css-prefix}-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.@{fa-css-prefix}-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@@ -0,0 +1,25 @@
// Bordered & Pulled
// -------------------------
.@{fa-css-prefix}-border {
padding: .2em .25em .15em;
border: solid .08em @fa-border-color;
border-radius: .1em;
}
.@{fa-css-prefix}-pull-left { float: left; }
.@{fa-css-prefix}-pull-right { float: right; }
.@{fa-css-prefix} {
&.@{fa-css-prefix}-pull-left { margin-right: .3em; }
&.@{fa-css-prefix}-pull-right { margin-left: .3em; }
}
/* Deprecated as of 4.4.0 */
.pull-right { float: right; }
.pull-left { float: left; }
.@{fa-css-prefix} {
&.pull-left { margin-right: .3em; }
&.pull-right { margin-left: .3em; }
}
@@ -0,0 +1,12 @@
// Base Class Definition
// -------------------------
.@{fa-css-prefix} {
display: inline-block;
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
font-size: inherit; // can't have font-size inherit on line above, so need to override
text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -0,0 +1,6 @@
// Fixed Width Icons
// -------------------------
.@{fa-css-prefix}-fw {
width: (18em / 14);
text-align: center;
}
@@ -0,0 +1,18 @@
/*!
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
@import "variables.less";
@import "mixins.less";
@import "path.less";
@import "core.less";
@import "larger.less";
@import "fixed-width.less";
@import "list.less";
@import "bordered-pulled.less";
@import "animated.less";
@import "rotated-flipped.less";
@import "stacked.less";
@import "icons.less";
@import "screen-reader.less";
@@ -0,0 +1,789 @@
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
.@{fa-css-prefix}-music:before { content: @fa-var-music; }
.@{fa-css-prefix}-search:before { content: @fa-var-search; }
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
.@{fa-css-prefix}-star:before { content: @fa-var-star; }
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
.@{fa-css-prefix}-user:before { content: @fa-var-user; }
.@{fa-css-prefix}-film:before { content: @fa-var-film; }
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
.@{fa-css-prefix}-th:before { content: @fa-var-th; }
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
.@{fa-css-prefix}-check:before { content: @fa-var-check; }
.@{fa-css-prefix}-remove:before,
.@{fa-css-prefix}-close:before,
.@{fa-css-prefix}-times:before { content: @fa-var-times; }
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
.@{fa-css-prefix}-gear:before,
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
.@{fa-css-prefix}-home:before { content: @fa-var-home; }
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
.@{fa-css-prefix}-road:before { content: @fa-var-road; }
.@{fa-css-prefix}-download:before { content: @fa-var-download; }
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
.@{fa-css-prefix}-rotate-right:before,
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
.@{fa-css-prefix}-book:before { content: @fa-var-book; }
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
.@{fa-css-prefix}-print:before { content: @fa-var-print; }
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
.@{fa-css-prefix}-font:before { content: @fa-var-font; }
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
.@{fa-css-prefix}-list:before { content: @fa-var-list; }
.@{fa-css-prefix}-dedent:before,
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
.@{fa-css-prefix}-photo:before,
.@{fa-css-prefix}-image:before,
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
.@{fa-css-prefix}-edit:before,
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
.@{fa-css-prefix}-play:before { content: @fa-var-play; }
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
.@{fa-css-prefix}-mail-forward:before,
.@{fa-css-prefix}-share:before { content: @fa-var-share; }
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
.@{fa-css-prefix}-warning:before,
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
.@{fa-css-prefix}-random:before { content: @fa-var-random; }
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
.@{fa-css-prefix}-bar-chart-o:before,
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
.@{fa-css-prefix}-key:before { content: @fa-var-key; }
.@{fa-css-prefix}-gears:before,
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
.@{fa-css-prefix}-facebook-f:before,
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
.@{fa-css-prefix}-github:before { content: @fa-var-github; }
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
.@{fa-css-prefix}-feed:before,
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
.@{fa-css-prefix}-group:before,
.@{fa-css-prefix}-users:before { content: @fa-var-users; }
.@{fa-css-prefix}-chain:before,
.@{fa-css-prefix}-link:before { content: @fa-var-link; }
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
.@{fa-css-prefix}-cut:before,
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
.@{fa-css-prefix}-copy:before,
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
.@{fa-css-prefix}-save:before,
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
.@{fa-css-prefix}-square:before { content: @fa-var-square; }
.@{fa-css-prefix}-navicon:before,
.@{fa-css-prefix}-reorder:before,
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
.@{fa-css-prefix}-table:before { content: @fa-var-table; }
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
.@{fa-css-prefix}-money:before { content: @fa-var-money; }
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
.@{fa-css-prefix}-unsorted:before,
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
.@{fa-css-prefix}-sort-down:before,
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
.@{fa-css-prefix}-sort-up:before,
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
.@{fa-css-prefix}-rotate-left:before,
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
.@{fa-css-prefix}-legal:before,
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
.@{fa-css-prefix}-dashboard:before,
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
.@{fa-css-prefix}-flash:before,
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
.@{fa-css-prefix}-paste:before,
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
.@{fa-css-prefix}-mobile-phone:before,
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
.@{fa-css-prefix}-mail-reply:before,
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
.@{fa-css-prefix}-code:before { content: @fa-var-code; }
.@{fa-css-prefix}-mail-reply-all:before,
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
.@{fa-css-prefix}-star-half-empty:before,
.@{fa-css-prefix}-star-half-full:before,
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
.@{fa-css-prefix}-unlink:before,
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
.@{fa-css-prefix}-question:before { content: @fa-var-question; }
.@{fa-css-prefix}-info:before { content: @fa-var-info; }
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
.@{fa-css-prefix}-toggle-down:before,
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
.@{fa-css-prefix}-toggle-up:before,
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
.@{fa-css-prefix}-toggle-right:before,
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
.@{fa-css-prefix}-euro:before,
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
.@{fa-css-prefix}-dollar:before,
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
.@{fa-css-prefix}-rupee:before,
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
.@{fa-css-prefix}-cny:before,
.@{fa-css-prefix}-rmb:before,
.@{fa-css-prefix}-yen:before,
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
.@{fa-css-prefix}-ruble:before,
.@{fa-css-prefix}-rouble:before,
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
.@{fa-css-prefix}-won:before,
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
.@{fa-css-prefix}-bitcoin:before,
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
.@{fa-css-prefix}-file:before { content: @fa-var-file; }
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
.@{fa-css-prefix}-android:before { content: @fa-var-android; }
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
.@{fa-css-prefix}-female:before { content: @fa-var-female; }
.@{fa-css-prefix}-male:before { content: @fa-var-male; }
.@{fa-css-prefix}-gittip:before,
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
.@{fa-css-prefix}-toggle-left:before,
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
.@{fa-css-prefix}-turkish-lira:before,
.@{fa-css-prefix}-try:before { content: @fa-var-try; }
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
.@{fa-css-prefix}-institution:before,
.@{fa-css-prefix}-bank:before,
.@{fa-css-prefix}-university:before { content: @fa-var-university; }
.@{fa-css-prefix}-mortar-board:before,
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
.@{fa-css-prefix}-google:before { content: @fa-var-google; }
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
.@{fa-css-prefix}-language:before { content: @fa-var-language; }
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
.@{fa-css-prefix}-building:before { content: @fa-var-building; }
.@{fa-css-prefix}-child:before { content: @fa-var-child; }
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
.@{fa-css-prefix}-automobile:before,
.@{fa-css-prefix}-car:before { content: @fa-var-car; }
.@{fa-css-prefix}-cab:before,
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
.@{fa-css-prefix}-database:before { content: @fa-var-database; }
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
.@{fa-css-prefix}-file-photo-o:before,
.@{fa-css-prefix}-file-picture-o:before,
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
.@{fa-css-prefix}-file-zip-o:before,
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
.@{fa-css-prefix}-file-sound-o:before,
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
.@{fa-css-prefix}-file-movie-o:before,
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
.@{fa-css-prefix}-life-bouy:before,
.@{fa-css-prefix}-life-buoy:before,
.@{fa-css-prefix}-life-saver:before,
.@{fa-css-prefix}-support:before,
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
.@{fa-css-prefix}-ra:before,
.@{fa-css-prefix}-resistance:before,
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
.@{fa-css-prefix}-ge:before,
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
.@{fa-css-prefix}-git:before { content: @fa-var-git; }
.@{fa-css-prefix}-y-combinator-square:before,
.@{fa-css-prefix}-yc-square:before,
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
.@{fa-css-prefix}-wechat:before,
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
.@{fa-css-prefix}-send:before,
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
.@{fa-css-prefix}-send-o:before,
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
.@{fa-css-prefix}-history:before { content: @fa-var-history; }
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
.@{fa-css-prefix}-header:before { content: @fa-var-header; }
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
.@{fa-css-prefix}-soccer-ball-o:before,
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
.@{fa-css-prefix}-at:before { content: @fa-var-at; }
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
.@{fa-css-prefix}-shekel:before,
.@{fa-css-prefix}-sheqel:before,
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
.@{fa-css-prefix}-intersex:before,
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
.@{fa-css-prefix}-server:before { content: @fa-var-server; }
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
.@{fa-css-prefix}-hotel:before,
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
.@{fa-css-prefix}-train:before { content: @fa-var-train; }
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
.@{fa-css-prefix}-yc:before,
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
.@{fa-css-prefix}-battery-4:before,
.@{fa-css-prefix}-battery:before,
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
.@{fa-css-prefix}-battery-3:before,
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
.@{fa-css-prefix}-battery-2:before,
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }
.@{fa-css-prefix}-battery-1:before,
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }
.@{fa-css-prefix}-battery-0:before,
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }
.@{fa-css-prefix}-hourglass-1:before,
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }
.@{fa-css-prefix}-hourglass-2:before,
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }
.@{fa-css-prefix}-hourglass-3:before,
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }
.@{fa-css-prefix}-hand-grab-o:before,
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }
.@{fa-css-prefix}-hand-stop-o:before,
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }
.@{fa-css-prefix}-tv:before,
.@{fa-css-prefix}-television:before { content: @fa-var-television; }
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }
.@{fa-css-prefix}-map:before { content: @fa-var-map; }
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }
.@{fa-css-prefix}-asl-interpreting:before,
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }
.@{fa-css-prefix}-deafness:before,
.@{fa-css-prefix}-hard-of-hearing:before,
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
.@{fa-css-prefix}-signing:before,
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }
.@{fa-css-prefix}-google-plus-circle:before,
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
.@{fa-css-prefix}-fa:before,
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }
.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }
.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }
.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }
.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }
.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }
.@{fa-css-prefix}-vcard:before,
.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }
.@{fa-css-prefix}-vcard-o:before,
.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }
.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }
.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }
.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }
.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }
.@{fa-css-prefix}-drivers-license:before,
.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }
.@{fa-css-prefix}-drivers-license-o:before,
.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }
.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }
.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }
.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }
.@{fa-css-prefix}-thermometer-4:before,
.@{fa-css-prefix}-thermometer:before,
.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }
.@{fa-css-prefix}-thermometer-3:before,
.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }
.@{fa-css-prefix}-thermometer-2:before,
.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }
.@{fa-css-prefix}-thermometer-1:before,
.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }
.@{fa-css-prefix}-thermometer-0:before,
.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }
.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }
.@{fa-css-prefix}-bathtub:before,
.@{fa-css-prefix}-s15:before,
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
.@{fa-css-prefix}-times-rectangle:before,
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
.@{fa-css-prefix}-times-rectangle-o:before,
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }
.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }
.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }
.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }
.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }
.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }
.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }
.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }
.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }
.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }
.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }
@@ -0,0 +1,13 @@
// Icon Sizes
// -------------------------
/* makes the font 33% larger relative to the icon container */
.@{fa-css-prefix}-lg {
font-size: (4em / 3);
line-height: (3em / 4);
vertical-align: -15%;
}
.@{fa-css-prefix}-2x { font-size: 2em; }
.@{fa-css-prefix}-3x { font-size: 3em; }
.@{fa-css-prefix}-4x { font-size: 4em; }
.@{fa-css-prefix}-5x { font-size: 5em; }
@@ -0,0 +1,19 @@
// List Icons
// -------------------------
.@{fa-css-prefix}-ul {
padding-left: 0;
margin-left: @fa-li-width;
list-style-type: none;
> li { position: relative; }
}
.@{fa-css-prefix}-li {
position: absolute;
left: -@fa-li-width;
width: @fa-li-width;
top: (2em / 14);
text-align: center;
&.@{fa-css-prefix}-lg {
left: (-@fa-li-width + (4em / 14));
}
}
@@ -0,0 +1,60 @@
// Mixins
// --------------------------
.fa-icon() {
display: inline-block;
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
font-size: inherit; // can't have font-size inherit on line above, so need to override
text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fa-icon-rotate(@degrees, @rotation) {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
-webkit-transform: rotate(@degrees);
-ms-transform: rotate(@degrees);
transform: rotate(@degrees);
}
.fa-icon-flip(@horiz, @vert, @rotation) {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
-webkit-transform: scale(@horiz, @vert);
-ms-transform: scale(@horiz, @vert);
transform: scale(@horiz, @vert);
}
// Only display content to screen readers. A la Bootstrap 4.
//
// See: http://a11yproject.com/posts/how-to-hide-content/
.sr-only() {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
// Use in conjunction with .sr-only to only display content when it's focused.
//
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
//
// Credit: HTML5 Boilerplate
.sr-only-focusable() {
&:active,
&:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
}
@@ -0,0 +1,15 @@
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
font-weight: normal;
font-style: normal;
}
@@ -0,0 +1,20 @@
// Rotated & Flipped Icons
// -------------------------
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
// Hook for IE8-9
// -------------------------
:root .@{fa-css-prefix}-rotate-90,
:root .@{fa-css-prefix}-rotate-180,
:root .@{fa-css-prefix}-rotate-270,
:root .@{fa-css-prefix}-flip-horizontal,
:root .@{fa-css-prefix}-flip-vertical {
filter: none;
}
@@ -0,0 +1,5 @@
// Screen Readers
// -------------------------
.sr-only { .sr-only(); }
.sr-only-focusable { .sr-only-focusable(); }
@@ -0,0 +1,20 @@
// Stacked Icons
// -------------------------
.@{fa-css-prefix}-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.@{fa-css-prefix}-stack-1x { line-height: inherit; }
.@{fa-css-prefix}-stack-2x { font-size: 2em; }
.@{fa-css-prefix}-inverse { color: @fa-inverse; }
@@ -0,0 +1,800 @@
// Variables
// --------------------------
@fa-font-path: "../fonts";
@fa-font-size-base: 14px;
@fa-line-height-base: 1;
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly
@fa-css-prefix: fa;
@fa-version: "4.7.0";
@fa-border-color: #eee;
@fa-inverse: #fff;
@fa-li-width: (30em / 14);
@fa-var-500px: "\f26e";
@fa-var-address-book: "\f2b9";
@fa-var-address-book-o: "\f2ba";
@fa-var-address-card: "\f2bb";
@fa-var-address-card-o: "\f2bc";
@fa-var-adjust: "\f042";
@fa-var-adn: "\f170";
@fa-var-align-center: "\f037";
@fa-var-align-justify: "\f039";
@fa-var-align-left: "\f036";
@fa-var-align-right: "\f038";
@fa-var-amazon: "\f270";
@fa-var-ambulance: "\f0f9";
@fa-var-american-sign-language-interpreting: "\f2a3";
@fa-var-anchor: "\f13d";
@fa-var-android: "\f17b";
@fa-var-angellist: "\f209";
@fa-var-angle-double-down: "\f103";
@fa-var-angle-double-left: "\f100";
@fa-var-angle-double-right: "\f101";
@fa-var-angle-double-up: "\f102";
@fa-var-angle-down: "\f107";
@fa-var-angle-left: "\f104";
@fa-var-angle-right: "\f105";
@fa-var-angle-up: "\f106";
@fa-var-apple: "\f179";
@fa-var-archive: "\f187";
@fa-var-area-chart: "\f1fe";
@fa-var-arrow-circle-down: "\f0ab";
@fa-var-arrow-circle-left: "\f0a8";
@fa-var-arrow-circle-o-down: "\f01a";
@fa-var-arrow-circle-o-left: "\f190";
@fa-var-arrow-circle-o-right: "\f18e";
@fa-var-arrow-circle-o-up: "\f01b";
@fa-var-arrow-circle-right: "\f0a9";
@fa-var-arrow-circle-up: "\f0aa";
@fa-var-arrow-down: "\f063";
@fa-var-arrow-left: "\f060";
@fa-var-arrow-right: "\f061";
@fa-var-arrow-up: "\f062";
@fa-var-arrows: "\f047";
@fa-var-arrows-alt: "\f0b2";
@fa-var-arrows-h: "\f07e";
@fa-var-arrows-v: "\f07d";
@fa-var-asl-interpreting: "\f2a3";
@fa-var-assistive-listening-systems: "\f2a2";
@fa-var-asterisk: "\f069";
@fa-var-at: "\f1fa";
@fa-var-audio-description: "\f29e";
@fa-var-automobile: "\f1b9";
@fa-var-backward: "\f04a";
@fa-var-balance-scale: "\f24e";
@fa-var-ban: "\f05e";
@fa-var-bandcamp: "\f2d5";
@fa-var-bank: "\f19c";
@fa-var-bar-chart: "\f080";
@fa-var-bar-chart-o: "\f080";
@fa-var-barcode: "\f02a";
@fa-var-bars: "\f0c9";
@fa-var-bath: "\f2cd";
@fa-var-bathtub: "\f2cd";
@fa-var-battery: "\f240";
@fa-var-battery-0: "\f244";
@fa-var-battery-1: "\f243";
@fa-var-battery-2: "\f242";
@fa-var-battery-3: "\f241";
@fa-var-battery-4: "\f240";
@fa-var-battery-empty: "\f244";
@fa-var-battery-full: "\f240";
@fa-var-battery-half: "\f242";
@fa-var-battery-quarter: "\f243";
@fa-var-battery-three-quarters: "\f241";
@fa-var-bed: "\f236";
@fa-var-beer: "\f0fc";
@fa-var-behance: "\f1b4";
@fa-var-behance-square: "\f1b5";
@fa-var-bell: "\f0f3";
@fa-var-bell-o: "\f0a2";
@fa-var-bell-slash: "\f1f6";
@fa-var-bell-slash-o: "\f1f7";
@fa-var-bicycle: "\f206";
@fa-var-binoculars: "\f1e5";
@fa-var-birthday-cake: "\f1fd";
@fa-var-bitbucket: "\f171";
@fa-var-bitbucket-square: "\f172";
@fa-var-bitcoin: "\f15a";
@fa-var-black-tie: "\f27e";
@fa-var-blind: "\f29d";
@fa-var-bluetooth: "\f293";
@fa-var-bluetooth-b: "\f294";
@fa-var-bold: "\f032";
@fa-var-bolt: "\f0e7";
@fa-var-bomb: "\f1e2";
@fa-var-book: "\f02d";
@fa-var-bookmark: "\f02e";
@fa-var-bookmark-o: "\f097";
@fa-var-braille: "\f2a1";
@fa-var-briefcase: "\f0b1";
@fa-var-btc: "\f15a";
@fa-var-bug: "\f188";
@fa-var-building: "\f1ad";
@fa-var-building-o: "\f0f7";
@fa-var-bullhorn: "\f0a1";
@fa-var-bullseye: "\f140";
@fa-var-bus: "\f207";
@fa-var-buysellads: "\f20d";
@fa-var-cab: "\f1ba";
@fa-var-calculator: "\f1ec";
@fa-var-calendar: "\f073";
@fa-var-calendar-check-o: "\f274";
@fa-var-calendar-minus-o: "\f272";
@fa-var-calendar-o: "\f133";
@fa-var-calendar-plus-o: "\f271";
@fa-var-calendar-times-o: "\f273";
@fa-var-camera: "\f030";
@fa-var-camera-retro: "\f083";
@fa-var-car: "\f1b9";
@fa-var-caret-down: "\f0d7";
@fa-var-caret-left: "\f0d9";
@fa-var-caret-right: "\f0da";
@fa-var-caret-square-o-down: "\f150";
@fa-var-caret-square-o-left: "\f191";
@fa-var-caret-square-o-right: "\f152";
@fa-var-caret-square-o-up: "\f151";
@fa-var-caret-up: "\f0d8";
@fa-var-cart-arrow-down: "\f218";
@fa-var-cart-plus: "\f217";
@fa-var-cc: "\f20a";
@fa-var-cc-amex: "\f1f3";
@fa-var-cc-diners-club: "\f24c";
@fa-var-cc-discover: "\f1f2";
@fa-var-cc-jcb: "\f24b";
@fa-var-cc-mastercard: "\f1f1";
@fa-var-cc-paypal: "\f1f4";
@fa-var-cc-stripe: "\f1f5";
@fa-var-cc-visa: "\f1f0";
@fa-var-certificate: "\f0a3";
@fa-var-chain: "\f0c1";
@fa-var-chain-broken: "\f127";
@fa-var-check: "\f00c";
@fa-var-check-circle: "\f058";
@fa-var-check-circle-o: "\f05d";
@fa-var-check-square: "\f14a";
@fa-var-check-square-o: "\f046";
@fa-var-chevron-circle-down: "\f13a";
@fa-var-chevron-circle-left: "\f137";
@fa-var-chevron-circle-right: "\f138";
@fa-var-chevron-circle-up: "\f139";
@fa-var-chevron-down: "\f078";
@fa-var-chevron-left: "\f053";
@fa-var-chevron-right: "\f054";
@fa-var-chevron-up: "\f077";
@fa-var-child: "\f1ae";
@fa-var-chrome: "\f268";
@fa-var-circle: "\f111";
@fa-var-circle-o: "\f10c";
@fa-var-circle-o-notch: "\f1ce";
@fa-var-circle-thin: "\f1db";
@fa-var-clipboard: "\f0ea";
@fa-var-clock-o: "\f017";
@fa-var-clone: "\f24d";
@fa-var-close: "\f00d";
@fa-var-cloud: "\f0c2";
@fa-var-cloud-download: "\f0ed";
@fa-var-cloud-upload: "\f0ee";
@fa-var-cny: "\f157";
@fa-var-code: "\f121";
@fa-var-code-fork: "\f126";
@fa-var-codepen: "\f1cb";
@fa-var-codiepie: "\f284";
@fa-var-coffee: "\f0f4";
@fa-var-cog: "\f013";
@fa-var-cogs: "\f085";
@fa-var-columns: "\f0db";
@fa-var-comment: "\f075";
@fa-var-comment-o: "\f0e5";
@fa-var-commenting: "\f27a";
@fa-var-commenting-o: "\f27b";
@fa-var-comments: "\f086";
@fa-var-comments-o: "\f0e6";
@fa-var-compass: "\f14e";
@fa-var-compress: "\f066";
@fa-var-connectdevelop: "\f20e";
@fa-var-contao: "\f26d";
@fa-var-copy: "\f0c5";
@fa-var-copyright: "\f1f9";
@fa-var-creative-commons: "\f25e";
@fa-var-credit-card: "\f09d";
@fa-var-credit-card-alt: "\f283";
@fa-var-crop: "\f125";
@fa-var-crosshairs: "\f05b";
@fa-var-css3: "\f13c";
@fa-var-cube: "\f1b2";
@fa-var-cubes: "\f1b3";
@fa-var-cut: "\f0c4";
@fa-var-cutlery: "\f0f5";
@fa-var-dashboard: "\f0e4";
@fa-var-dashcube: "\f210";
@fa-var-database: "\f1c0";
@fa-var-deaf: "\f2a4";
@fa-var-deafness: "\f2a4";
@fa-var-dedent: "\f03b";
@fa-var-delicious: "\f1a5";
@fa-var-desktop: "\f108";
@fa-var-deviantart: "\f1bd";
@fa-var-diamond: "\f219";
@fa-var-digg: "\f1a6";
@fa-var-dollar: "\f155";
@fa-var-dot-circle-o: "\f192";
@fa-var-download: "\f019";
@fa-var-dribbble: "\f17d";
@fa-var-drivers-license: "\f2c2";
@fa-var-drivers-license-o: "\f2c3";
@fa-var-dropbox: "\f16b";
@fa-var-drupal: "\f1a9";
@fa-var-edge: "\f282";
@fa-var-edit: "\f044";
@fa-var-eercast: "\f2da";
@fa-var-eject: "\f052";
@fa-var-ellipsis-h: "\f141";
@fa-var-ellipsis-v: "\f142";
@fa-var-empire: "\f1d1";
@fa-var-envelope: "\f0e0";
@fa-var-envelope-o: "\f003";
@fa-var-envelope-open: "\f2b6";
@fa-var-envelope-open-o: "\f2b7";
@fa-var-envelope-square: "\f199";
@fa-var-envira: "\f299";
@fa-var-eraser: "\f12d";
@fa-var-etsy: "\f2d7";
@fa-var-eur: "\f153";
@fa-var-euro: "\f153";
@fa-var-exchange: "\f0ec";
@fa-var-exclamation: "\f12a";
@fa-var-exclamation-circle: "\f06a";
@fa-var-exclamation-triangle: "\f071";
@fa-var-expand: "\f065";
@fa-var-expeditedssl: "\f23e";
@fa-var-external-link: "\f08e";
@fa-var-external-link-square: "\f14c";
@fa-var-eye: "\f06e";
@fa-var-eye-slash: "\f070";
@fa-var-eyedropper: "\f1fb";
@fa-var-fa: "\f2b4";
@fa-var-facebook: "\f09a";
@fa-var-facebook-f: "\f09a";
@fa-var-facebook-official: "\f230";
@fa-var-facebook-square: "\f082";
@fa-var-fast-backward: "\f049";
@fa-var-fast-forward: "\f050";
@fa-var-fax: "\f1ac";
@fa-var-feed: "\f09e";
@fa-var-female: "\f182";
@fa-var-fighter-jet: "\f0fb";
@fa-var-file: "\f15b";
@fa-var-file-archive-o: "\f1c6";
@fa-var-file-audio-o: "\f1c7";
@fa-var-file-code-o: "\f1c9";
@fa-var-file-excel-o: "\f1c3";
@fa-var-file-image-o: "\f1c5";
@fa-var-file-movie-o: "\f1c8";
@fa-var-file-o: "\f016";
@fa-var-file-pdf-o: "\f1c1";
@fa-var-file-photo-o: "\f1c5";
@fa-var-file-picture-o: "\f1c5";
@fa-var-file-powerpoint-o: "\f1c4";
@fa-var-file-sound-o: "\f1c7";
@fa-var-file-text: "\f15c";
@fa-var-file-text-o: "\f0f6";
@fa-var-file-video-o: "\f1c8";
@fa-var-file-word-o: "\f1c2";
@fa-var-file-zip-o: "\f1c6";
@fa-var-files-o: "\f0c5";
@fa-var-film: "\f008";
@fa-var-filter: "\f0b0";
@fa-var-fire: "\f06d";
@fa-var-fire-extinguisher: "\f134";
@fa-var-firefox: "\f269";
@fa-var-first-order: "\f2b0";
@fa-var-flag: "\f024";
@fa-var-flag-checkered: "\f11e";
@fa-var-flag-o: "\f11d";
@fa-var-flash: "\f0e7";
@fa-var-flask: "\f0c3";
@fa-var-flickr: "\f16e";
@fa-var-floppy-o: "\f0c7";
@fa-var-folder: "\f07b";
@fa-var-folder-o: "\f114";
@fa-var-folder-open: "\f07c";
@fa-var-folder-open-o: "\f115";
@fa-var-font: "\f031";
@fa-var-font-awesome: "\f2b4";
@fa-var-fonticons: "\f280";
@fa-var-fort-awesome: "\f286";
@fa-var-forumbee: "\f211";
@fa-var-forward: "\f04e";
@fa-var-foursquare: "\f180";
@fa-var-free-code-camp: "\f2c5";
@fa-var-frown-o: "\f119";
@fa-var-futbol-o: "\f1e3";
@fa-var-gamepad: "\f11b";
@fa-var-gavel: "\f0e3";
@fa-var-gbp: "\f154";
@fa-var-ge: "\f1d1";
@fa-var-gear: "\f013";
@fa-var-gears: "\f085";
@fa-var-genderless: "\f22d";
@fa-var-get-pocket: "\f265";
@fa-var-gg: "\f260";
@fa-var-gg-circle: "\f261";
@fa-var-gift: "\f06b";
@fa-var-git: "\f1d3";
@fa-var-git-square: "\f1d2";
@fa-var-github: "\f09b";
@fa-var-github-alt: "\f113";
@fa-var-github-square: "\f092";
@fa-var-gitlab: "\f296";
@fa-var-gittip: "\f184";
@fa-var-glass: "\f000";
@fa-var-glide: "\f2a5";
@fa-var-glide-g: "\f2a6";
@fa-var-globe: "\f0ac";
@fa-var-google: "\f1a0";
@fa-var-google-plus: "\f0d5";
@fa-var-google-plus-circle: "\f2b3";
@fa-var-google-plus-official: "\f2b3";
@fa-var-google-plus-square: "\f0d4";
@fa-var-google-wallet: "\f1ee";
@fa-var-graduation-cap: "\f19d";
@fa-var-gratipay: "\f184";
@fa-var-grav: "\f2d6";
@fa-var-group: "\f0c0";
@fa-var-h-square: "\f0fd";
@fa-var-hacker-news: "\f1d4";
@fa-var-hand-grab-o: "\f255";
@fa-var-hand-lizard-o: "\f258";
@fa-var-hand-o-down: "\f0a7";
@fa-var-hand-o-left: "\f0a5";
@fa-var-hand-o-right: "\f0a4";
@fa-var-hand-o-up: "\f0a6";
@fa-var-hand-paper-o: "\f256";
@fa-var-hand-peace-o: "\f25b";
@fa-var-hand-pointer-o: "\f25a";
@fa-var-hand-rock-o: "\f255";
@fa-var-hand-scissors-o: "\f257";
@fa-var-hand-spock-o: "\f259";
@fa-var-hand-stop-o: "\f256";
@fa-var-handshake-o: "\f2b5";
@fa-var-hard-of-hearing: "\f2a4";
@fa-var-hashtag: "\f292";
@fa-var-hdd-o: "\f0a0";
@fa-var-header: "\f1dc";
@fa-var-headphones: "\f025";
@fa-var-heart: "\f004";
@fa-var-heart-o: "\f08a";
@fa-var-heartbeat: "\f21e";
@fa-var-history: "\f1da";
@fa-var-home: "\f015";
@fa-var-hospital-o: "\f0f8";
@fa-var-hotel: "\f236";
@fa-var-hourglass: "\f254";
@fa-var-hourglass-1: "\f251";
@fa-var-hourglass-2: "\f252";
@fa-var-hourglass-3: "\f253";
@fa-var-hourglass-end: "\f253";
@fa-var-hourglass-half: "\f252";
@fa-var-hourglass-o: "\f250";
@fa-var-hourglass-start: "\f251";
@fa-var-houzz: "\f27c";
@fa-var-html5: "\f13b";
@fa-var-i-cursor: "\f246";
@fa-var-id-badge: "\f2c1";
@fa-var-id-card: "\f2c2";
@fa-var-id-card-o: "\f2c3";
@fa-var-ils: "\f20b";
@fa-var-image: "\f03e";
@fa-var-imdb: "\f2d8";
@fa-var-inbox: "\f01c";
@fa-var-indent: "\f03c";
@fa-var-industry: "\f275";
@fa-var-info: "\f129";
@fa-var-info-circle: "\f05a";
@fa-var-inr: "\f156";
@fa-var-instagram: "\f16d";
@fa-var-institution: "\f19c";
@fa-var-internet-explorer: "\f26b";
@fa-var-intersex: "\f224";
@fa-var-ioxhost: "\f208";
@fa-var-italic: "\f033";
@fa-var-joomla: "\f1aa";
@fa-var-jpy: "\f157";
@fa-var-jsfiddle: "\f1cc";
@fa-var-key: "\f084";
@fa-var-keyboard-o: "\f11c";
@fa-var-krw: "\f159";
@fa-var-language: "\f1ab";
@fa-var-laptop: "\f109";
@fa-var-lastfm: "\f202";
@fa-var-lastfm-square: "\f203";
@fa-var-leaf: "\f06c";
@fa-var-leanpub: "\f212";
@fa-var-legal: "\f0e3";
@fa-var-lemon-o: "\f094";
@fa-var-level-down: "\f149";
@fa-var-level-up: "\f148";
@fa-var-life-bouy: "\f1cd";
@fa-var-life-buoy: "\f1cd";
@fa-var-life-ring: "\f1cd";
@fa-var-life-saver: "\f1cd";
@fa-var-lightbulb-o: "\f0eb";
@fa-var-line-chart: "\f201";
@fa-var-link: "\f0c1";
@fa-var-linkedin: "\f0e1";
@fa-var-linkedin-square: "\f08c";
@fa-var-linode: "\f2b8";
@fa-var-linux: "\f17c";
@fa-var-list: "\f03a";
@fa-var-list-alt: "\f022";
@fa-var-list-ol: "\f0cb";
@fa-var-list-ul: "\f0ca";
@fa-var-location-arrow: "\f124";
@fa-var-lock: "\f023";
@fa-var-long-arrow-down: "\f175";
@fa-var-long-arrow-left: "\f177";
@fa-var-long-arrow-right: "\f178";
@fa-var-long-arrow-up: "\f176";
@fa-var-low-vision: "\f2a8";
@fa-var-magic: "\f0d0";
@fa-var-magnet: "\f076";
@fa-var-mail-forward: "\f064";
@fa-var-mail-reply: "\f112";
@fa-var-mail-reply-all: "\f122";
@fa-var-male: "\f183";
@fa-var-map: "\f279";
@fa-var-map-marker: "\f041";
@fa-var-map-o: "\f278";
@fa-var-map-pin: "\f276";
@fa-var-map-signs: "\f277";
@fa-var-mars: "\f222";
@fa-var-mars-double: "\f227";
@fa-var-mars-stroke: "\f229";
@fa-var-mars-stroke-h: "\f22b";
@fa-var-mars-stroke-v: "\f22a";
@fa-var-maxcdn: "\f136";
@fa-var-meanpath: "\f20c";
@fa-var-medium: "\f23a";
@fa-var-medkit: "\f0fa";
@fa-var-meetup: "\f2e0";
@fa-var-meh-o: "\f11a";
@fa-var-mercury: "\f223";
@fa-var-microchip: "\f2db";
@fa-var-microphone: "\f130";
@fa-var-microphone-slash: "\f131";
@fa-var-minus: "\f068";
@fa-var-minus-circle: "\f056";
@fa-var-minus-square: "\f146";
@fa-var-minus-square-o: "\f147";
@fa-var-mixcloud: "\f289";
@fa-var-mobile: "\f10b";
@fa-var-mobile-phone: "\f10b";
@fa-var-modx: "\f285";
@fa-var-money: "\f0d6";
@fa-var-moon-o: "\f186";
@fa-var-mortar-board: "\f19d";
@fa-var-motorcycle: "\f21c";
@fa-var-mouse-pointer: "\f245";
@fa-var-music: "\f001";
@fa-var-navicon: "\f0c9";
@fa-var-neuter: "\f22c";
@fa-var-newspaper-o: "\f1ea";
@fa-var-object-group: "\f247";
@fa-var-object-ungroup: "\f248";
@fa-var-odnoklassniki: "\f263";
@fa-var-odnoklassniki-square: "\f264";
@fa-var-opencart: "\f23d";
@fa-var-openid: "\f19b";
@fa-var-opera: "\f26a";
@fa-var-optin-monster: "\f23c";
@fa-var-outdent: "\f03b";
@fa-var-pagelines: "\f18c";
@fa-var-paint-brush: "\f1fc";
@fa-var-paper-plane: "\f1d8";
@fa-var-paper-plane-o: "\f1d9";
@fa-var-paperclip: "\f0c6";
@fa-var-paragraph: "\f1dd";
@fa-var-paste: "\f0ea";
@fa-var-pause: "\f04c";
@fa-var-pause-circle: "\f28b";
@fa-var-pause-circle-o: "\f28c";
@fa-var-paw: "\f1b0";
@fa-var-paypal: "\f1ed";
@fa-var-pencil: "\f040";
@fa-var-pencil-square: "\f14b";
@fa-var-pencil-square-o: "\f044";
@fa-var-percent: "\f295";
@fa-var-phone: "\f095";
@fa-var-phone-square: "\f098";
@fa-var-photo: "\f03e";
@fa-var-picture-o: "\f03e";
@fa-var-pie-chart: "\f200";
@fa-var-pied-piper: "\f2ae";
@fa-var-pied-piper-alt: "\f1a8";
@fa-var-pied-piper-pp: "\f1a7";
@fa-var-pinterest: "\f0d2";
@fa-var-pinterest-p: "\f231";
@fa-var-pinterest-square: "\f0d3";
@fa-var-plane: "\f072";
@fa-var-play: "\f04b";
@fa-var-play-circle: "\f144";
@fa-var-play-circle-o: "\f01d";
@fa-var-plug: "\f1e6";
@fa-var-plus: "\f067";
@fa-var-plus-circle: "\f055";
@fa-var-plus-square: "\f0fe";
@fa-var-plus-square-o: "\f196";
@fa-var-podcast: "\f2ce";
@fa-var-power-off: "\f011";
@fa-var-print: "\f02f";
@fa-var-product-hunt: "\f288";
@fa-var-puzzle-piece: "\f12e";
@fa-var-qq: "\f1d6";
@fa-var-qrcode: "\f029";
@fa-var-question: "\f128";
@fa-var-question-circle: "\f059";
@fa-var-question-circle-o: "\f29c";
@fa-var-quora: "\f2c4";
@fa-var-quote-left: "\f10d";
@fa-var-quote-right: "\f10e";
@fa-var-ra: "\f1d0";
@fa-var-random: "\f074";
@fa-var-ravelry: "\f2d9";
@fa-var-rebel: "\f1d0";
@fa-var-recycle: "\f1b8";
@fa-var-reddit: "\f1a1";
@fa-var-reddit-alien: "\f281";
@fa-var-reddit-square: "\f1a2";
@fa-var-refresh: "\f021";
@fa-var-registered: "\f25d";
@fa-var-remove: "\f00d";
@fa-var-renren: "\f18b";
@fa-var-reorder: "\f0c9";
@fa-var-repeat: "\f01e";
@fa-var-reply: "\f112";
@fa-var-reply-all: "\f122";
@fa-var-resistance: "\f1d0";
@fa-var-retweet: "\f079";
@fa-var-rmb: "\f157";
@fa-var-road: "\f018";
@fa-var-rocket: "\f135";
@fa-var-rotate-left: "\f0e2";
@fa-var-rotate-right: "\f01e";
@fa-var-rouble: "\f158";
@fa-var-rss: "\f09e";
@fa-var-rss-square: "\f143";
@fa-var-rub: "\f158";
@fa-var-ruble: "\f158";
@fa-var-rupee: "\f156";
@fa-var-s15: "\f2cd";
@fa-var-safari: "\f267";
@fa-var-save: "\f0c7";
@fa-var-scissors: "\f0c4";
@fa-var-scribd: "\f28a";
@fa-var-search: "\f002";
@fa-var-search-minus: "\f010";
@fa-var-search-plus: "\f00e";
@fa-var-sellsy: "\f213";
@fa-var-send: "\f1d8";
@fa-var-send-o: "\f1d9";
@fa-var-server: "\f233";
@fa-var-share: "\f064";
@fa-var-share-alt: "\f1e0";
@fa-var-share-alt-square: "\f1e1";
@fa-var-share-square: "\f14d";
@fa-var-share-square-o: "\f045";
@fa-var-shekel: "\f20b";
@fa-var-sheqel: "\f20b";
@fa-var-shield: "\f132";
@fa-var-ship: "\f21a";
@fa-var-shirtsinbulk: "\f214";
@fa-var-shopping-bag: "\f290";
@fa-var-shopping-basket: "\f291";
@fa-var-shopping-cart: "\f07a";
@fa-var-shower: "\f2cc";
@fa-var-sign-in: "\f090";
@fa-var-sign-language: "\f2a7";
@fa-var-sign-out: "\f08b";
@fa-var-signal: "\f012";
@fa-var-signing: "\f2a7";
@fa-var-simplybuilt: "\f215";
@fa-var-sitemap: "\f0e8";
@fa-var-skyatlas: "\f216";
@fa-var-skype: "\f17e";
@fa-var-slack: "\f198";
@fa-var-sliders: "\f1de";
@fa-var-slideshare: "\f1e7";
@fa-var-smile-o: "\f118";
@fa-var-snapchat: "\f2ab";
@fa-var-snapchat-ghost: "\f2ac";
@fa-var-snapchat-square: "\f2ad";
@fa-var-snowflake-o: "\f2dc";
@fa-var-soccer-ball-o: "\f1e3";
@fa-var-sort: "\f0dc";
@fa-var-sort-alpha-asc: "\f15d";
@fa-var-sort-alpha-desc: "\f15e";
@fa-var-sort-amount-asc: "\f160";
@fa-var-sort-amount-desc: "\f161";
@fa-var-sort-asc: "\f0de";
@fa-var-sort-desc: "\f0dd";
@fa-var-sort-down: "\f0dd";
@fa-var-sort-numeric-asc: "\f162";
@fa-var-sort-numeric-desc: "\f163";
@fa-var-sort-up: "\f0de";
@fa-var-soundcloud: "\f1be";
@fa-var-space-shuttle: "\f197";
@fa-var-spinner: "\f110";
@fa-var-spoon: "\f1b1";
@fa-var-spotify: "\f1bc";
@fa-var-square: "\f0c8";
@fa-var-square-o: "\f096";
@fa-var-stack-exchange: "\f18d";
@fa-var-stack-overflow: "\f16c";
@fa-var-star: "\f005";
@fa-var-star-half: "\f089";
@fa-var-star-half-empty: "\f123";
@fa-var-star-half-full: "\f123";
@fa-var-star-half-o: "\f123";
@fa-var-star-o: "\f006";
@fa-var-steam: "\f1b6";
@fa-var-steam-square: "\f1b7";
@fa-var-step-backward: "\f048";
@fa-var-step-forward: "\f051";
@fa-var-stethoscope: "\f0f1";
@fa-var-sticky-note: "\f249";
@fa-var-sticky-note-o: "\f24a";
@fa-var-stop: "\f04d";
@fa-var-stop-circle: "\f28d";
@fa-var-stop-circle-o: "\f28e";
@fa-var-street-view: "\f21d";
@fa-var-strikethrough: "\f0cc";
@fa-var-stumbleupon: "\f1a4";
@fa-var-stumbleupon-circle: "\f1a3";
@fa-var-subscript: "\f12c";
@fa-var-subway: "\f239";
@fa-var-suitcase: "\f0f2";
@fa-var-sun-o: "\f185";
@fa-var-superpowers: "\f2dd";
@fa-var-superscript: "\f12b";
@fa-var-support: "\f1cd";
@fa-var-table: "\f0ce";
@fa-var-tablet: "\f10a";
@fa-var-tachometer: "\f0e4";
@fa-var-tag: "\f02b";
@fa-var-tags: "\f02c";
@fa-var-tasks: "\f0ae";
@fa-var-taxi: "\f1ba";
@fa-var-telegram: "\f2c6";
@fa-var-television: "\f26c";
@fa-var-tencent-weibo: "\f1d5";
@fa-var-terminal: "\f120";
@fa-var-text-height: "\f034";
@fa-var-text-width: "\f035";
@fa-var-th: "\f00a";
@fa-var-th-large: "\f009";
@fa-var-th-list: "\f00b";
@fa-var-themeisle: "\f2b2";
@fa-var-thermometer: "\f2c7";
@fa-var-thermometer-0: "\f2cb";
@fa-var-thermometer-1: "\f2ca";
@fa-var-thermometer-2: "\f2c9";
@fa-var-thermometer-3: "\f2c8";
@fa-var-thermometer-4: "\f2c7";
@fa-var-thermometer-empty: "\f2cb";
@fa-var-thermometer-full: "\f2c7";
@fa-var-thermometer-half: "\f2c9";
@fa-var-thermometer-quarter: "\f2ca";
@fa-var-thermometer-three-quarters: "\f2c8";
@fa-var-thumb-tack: "\f08d";
@fa-var-thumbs-down: "\f165";
@fa-var-thumbs-o-down: "\f088";
@fa-var-thumbs-o-up: "\f087";
@fa-var-thumbs-up: "\f164";
@fa-var-ticket: "\f145";
@fa-var-times: "\f00d";
@fa-var-times-circle: "\f057";
@fa-var-times-circle-o: "\f05c";
@fa-var-times-rectangle: "\f2d3";
@fa-var-times-rectangle-o: "\f2d4";
@fa-var-tint: "\f043";
@fa-var-toggle-down: "\f150";
@fa-var-toggle-left: "\f191";
@fa-var-toggle-off: "\f204";
@fa-var-toggle-on: "\f205";
@fa-var-toggle-right: "\f152";
@fa-var-toggle-up: "\f151";
@fa-var-trademark: "\f25c";
@fa-var-train: "\f238";
@fa-var-transgender: "\f224";
@fa-var-transgender-alt: "\f225";
@fa-var-trash: "\f1f8";
@fa-var-trash-o: "\f014";
@fa-var-tree: "\f1bb";
@fa-var-trello: "\f181";
@fa-var-tripadvisor: "\f262";
@fa-var-trophy: "\f091";
@fa-var-truck: "\f0d1";
@fa-var-try: "\f195";
@fa-var-tty: "\f1e4";
@fa-var-tumblr: "\f173";
@fa-var-tumblr-square: "\f174";
@fa-var-turkish-lira: "\f195";
@fa-var-tv: "\f26c";
@fa-var-twitch: "\f1e8";
@fa-var-twitter: "\f099";
@fa-var-twitter-square: "\f081";
@fa-var-umbrella: "\f0e9";
@fa-var-underline: "\f0cd";
@fa-var-undo: "\f0e2";
@fa-var-universal-access: "\f29a";
@fa-var-university: "\f19c";
@fa-var-unlink: "\f127";
@fa-var-unlock: "\f09c";
@fa-var-unlock-alt: "\f13e";
@fa-var-unsorted: "\f0dc";
@fa-var-upload: "\f093";
@fa-var-usb: "\f287";
@fa-var-usd: "\f155";
@fa-var-user: "\f007";
@fa-var-user-circle: "\f2bd";
@fa-var-user-circle-o: "\f2be";
@fa-var-user-md: "\f0f0";
@fa-var-user-o: "\f2c0";
@fa-var-user-plus: "\f234";
@fa-var-user-secret: "\f21b";
@fa-var-user-times: "\f235";
@fa-var-users: "\f0c0";
@fa-var-vcard: "\f2bb";
@fa-var-vcard-o: "\f2bc";
@fa-var-venus: "\f221";
@fa-var-venus-double: "\f226";
@fa-var-venus-mars: "\f228";
@fa-var-viacoin: "\f237";
@fa-var-viadeo: "\f2a9";
@fa-var-viadeo-square: "\f2aa";
@fa-var-video-camera: "\f03d";
@fa-var-vimeo: "\f27d";
@fa-var-vimeo-square: "\f194";
@fa-var-vine: "\f1ca";
@fa-var-vk: "\f189";
@fa-var-volume-control-phone: "\f2a0";
@fa-var-volume-down: "\f027";
@fa-var-volume-off: "\f026";
@fa-var-volume-up: "\f028";
@fa-var-warning: "\f071";
@fa-var-wechat: "\f1d7";
@fa-var-weibo: "\f18a";
@fa-var-weixin: "\f1d7";
@fa-var-whatsapp: "\f232";
@fa-var-wheelchair: "\f193";
@fa-var-wheelchair-alt: "\f29b";
@fa-var-wifi: "\f1eb";
@fa-var-wikipedia-w: "\f266";
@fa-var-window-close: "\f2d3";
@fa-var-window-close-o: "\f2d4";
@fa-var-window-maximize: "\f2d0";
@fa-var-window-minimize: "\f2d1";
@fa-var-window-restore: "\f2d2";
@fa-var-windows: "\f17a";
@fa-var-won: "\f159";
@fa-var-wordpress: "\f19a";
@fa-var-wpbeginner: "\f297";
@fa-var-wpexplorer: "\f2de";
@fa-var-wpforms: "\f298";
@fa-var-wrench: "\f0ad";
@fa-var-xing: "\f168";
@fa-var-xing-square: "\f169";
@fa-var-y-combinator: "\f23b";
@fa-var-y-combinator-square: "\f1d4";
@fa-var-yahoo: "\f19e";
@fa-var-yc: "\f23b";
@fa-var-yc-square: "\f1d4";
@fa-var-yelp: "\f1e9";
@fa-var-yen: "\f157";
@fa-var-yoast: "\f2b1";
@fa-var-youtube: "\f167";
@fa-var-youtube-play: "\f16a";
@fa-var-youtube-square: "\f166";
@@ -0,0 +1,34 @@
// Spinning Icons
// --------------------------
.#{$fa-css-prefix}-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.#{$fa-css-prefix}-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@@ -0,0 +1,25 @@
// Bordered & Pulled
// -------------------------
.#{$fa-css-prefix}-border {
padding: .2em .25em .15em;
border: solid .08em $fa-border-color;
border-radius: .1em;
}
.#{$fa-css-prefix}-pull-left { float: left; }
.#{$fa-css-prefix}-pull-right { float: right; }
.#{$fa-css-prefix} {
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
}
/* Deprecated as of 4.4.0 */
.pull-right { float: right; }
.pull-left { float: left; }
.#{$fa-css-prefix} {
&.pull-left { margin-right: .3em; }
&.pull-right { margin-left: .3em; }
}
@@ -0,0 +1,12 @@
// Base Class Definition
// -------------------------
.#{$fa-css-prefix} {
display: inline-block;
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
font-size: inherit; // can't have font-size inherit on line above, so need to override
text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -0,0 +1,6 @@
// Fixed Width Icons
// -------------------------
.#{$fa-css-prefix}-fw {
width: (18em / 14);
text-align: center;
}
Loaded 100 of 1851 files, more files were not shown because too many files have changed in this diff. Show more