first commit
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"attention_seekers": [
|
||||
"bounce",
|
||||
"flash",
|
||||
"pulse",
|
||||
"rubberBand",
|
||||
"shake",
|
||||
"headShake",
|
||||
"swing",
|
||||
"tada",
|
||||
"wobble",
|
||||
"jello"
|
||||
],
|
||||
|
||||
"bouncing_entrances": [
|
||||
"bounceIn",
|
||||
"bounceInDown",
|
||||
"bounceInLeft",
|
||||
"bounceInRight",
|
||||
"bounceInUp"
|
||||
],
|
||||
|
||||
"fading_entrances": [
|
||||
"fadeIn",
|
||||
"fadeInDown",
|
||||
"fadeInLeft",
|
||||
"fadeInRight",
|
||||
"fadeInUp"
|
||||
],
|
||||
|
||||
"lightspeed": [
|
||||
"lightSpeedIn"
|
||||
],
|
||||
|
||||
"rotating_entrances": [
|
||||
"rotateIn",
|
||||
"rotateInDownLeft",
|
||||
"rotateInDownRight",
|
||||
"rotateInUpLeft",
|
||||
"rotateInUpRight"
|
||||
],
|
||||
|
||||
"specials": [
|
||||
"rollIn"
|
||||
],
|
||||
|
||||
"zooming_entrances": [
|
||||
"zoomIn",
|
||||
"zoomInDown",
|
||||
"zoomInLeft",
|
||||
"zoomInRight",
|
||||
"zoomInUp"
|
||||
],
|
||||
|
||||
"sliding_entrances": [
|
||||
"slideInDown",
|
||||
"slideInLeft",
|
||||
"slideInRight",
|
||||
"slideInUp"
|
||||
]
|
||||
}
|
||||
797
wp-content/plugins/elementor/assets/lib/animate.css/animate.css
vendored
Normal file
797
wp-content/plugins/elementor/assets/lib/animate.css/animate.css
vendored
Normal file
@@ -0,0 +1,797 @@
|
||||
/* Custom style for animate.css. Lines 1-17 moved to frontend/_animate.scss */
|
||||
|
||||
@keyframes bounce {
|
||||
from, 20%, 53%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
transform: translate3d(0,0,0);
|
||||
}
|
||||
|
||||
40%, 43% {
|
||||
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
||||
transform: translate3d(0, -30px, 0);
|
||||
}
|
||||
|
||||
70% {
|
||||
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
||||
transform: translate3d(0, -15px, 0);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate3d(0,-4px,0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounce {
|
||||
animation-name: bounce;
|
||||
transform-origin: center bottom;
|
||||
}
|
||||
|
||||
@keyframes flash {
|
||||
from, 50%, to {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
25%, 75% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flash {
|
||||
animation-name: flash;
|
||||
}
|
||||
|
||||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes pulse {
|
||||
from {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scale3d(1.05, 1.05, 1.05);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.pulse {
|
||||
animation-name: pulse;
|
||||
}
|
||||
|
||||
@keyframes rubberBand {
|
||||
from {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
|
||||
30% {
|
||||
transform: scale3d(1.25, 0.75, 1);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: scale3d(0.75, 1.25, 1);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scale3d(1.15, 0.85, 1);
|
||||
}
|
||||
|
||||
65% {
|
||||
transform: scale3d(.95, 1.05, 1);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: scale3d(1.05, .95, 1);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.rubberBand {
|
||||
animation-name: rubberBand;
|
||||
}
|
||||
|
||||
@keyframes shake {
|
||||
from, to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
10%, 30%, 50%, 70%, 90% {
|
||||
transform: translate3d(-10px, 0, 0);
|
||||
}
|
||||
|
||||
20%, 40%, 60%, 80% {
|
||||
transform: translate3d(10px, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.shake {
|
||||
animation-name: shake;
|
||||
}
|
||||
|
||||
@keyframes headShake {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
6.5% {
|
||||
transform: translateX(-6px) rotateY(-9deg);
|
||||
}
|
||||
|
||||
18.5% {
|
||||
transform: translateX(5px) rotateY(7deg);
|
||||
}
|
||||
|
||||
31.5% {
|
||||
transform: translateX(-3px) rotateY(-5deg);
|
||||
}
|
||||
|
||||
43.5% {
|
||||
transform: translateX(2px) rotateY(3deg);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.headShake {
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-name: headShake;
|
||||
}
|
||||
|
||||
@keyframes swing {
|
||||
20% {
|
||||
transform: rotate3d(0, 0, 1, 15deg);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: rotate3d(0, 0, 1, -10deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: rotate3d(0, 0, 1, 5deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: rotate3d(0, 0, 1, -5deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate3d(0, 0, 1, 0deg);
|
||||
}
|
||||
}
|
||||
|
||||
.swing {
|
||||
transform-origin: top center;
|
||||
animation-name: swing;
|
||||
}
|
||||
|
||||
@keyframes tada {
|
||||
from {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
|
||||
10%, 20% {
|
||||
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
|
||||
}
|
||||
|
||||
30%, 50%, 70%, 90% {
|
||||
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
||||
}
|
||||
|
||||
40%, 60%, 80% {
|
||||
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.tada {
|
||||
animation-name: tada;
|
||||
}
|
||||
|
||||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes wobble {
|
||||
from {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
15% {
|
||||
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
|
||||
}
|
||||
|
||||
30% {
|
||||
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
|
||||
}
|
||||
|
||||
45% {
|
||||
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.wobble {
|
||||
animation-name: wobble;
|
||||
}
|
||||
|
||||
@keyframes jello {
|
||||
from, 11.1%, to {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
22.2% {
|
||||
transform: skewX(-12.5deg) skewY(-12.5deg);
|
||||
}
|
||||
|
||||
33.3% {
|
||||
transform: skewX(6.25deg) skewY(6.25deg);
|
||||
}
|
||||
|
||||
44.4% {
|
||||
transform: skewX(-3.125deg) skewY(-3.125deg);
|
||||
}
|
||||
|
||||
55.5% {
|
||||
transform: skewX(1.5625deg) skewY(1.5625deg);
|
||||
}
|
||||
|
||||
66.6% {
|
||||
transform: skewX(-0.78125deg) skewY(-0.78125deg);
|
||||
}
|
||||
|
||||
77.7% {
|
||||
transform: skewX(0.390625deg) skewY(0.390625deg);
|
||||
}
|
||||
|
||||
88.8% {
|
||||
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
|
||||
}
|
||||
}
|
||||
|
||||
.jello {
|
||||
animation-name: jello;
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
@keyframes bounceIn {
|
||||
from, 20%, 40%, 60%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale3d(.3, .3, .3);
|
||||
}
|
||||
|
||||
20% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: scale3d(.9, .9, .9);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1.03, 1.03, 1.03);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: scale3d(.97, .97, .97);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceIn {
|
||||
animation-name: bounceIn;
|
||||
}
|
||||
|
||||
@keyframes bounceInDown {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -3000px, 0);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 25px, 0);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: translate3d(0, -10px, 0);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate3d(0, 5px, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInDown {
|
||||
animation-name: bounceInDown;
|
||||
}
|
||||
|
||||
@keyframes bounceInLeft {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(-3000px, 0, 0);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(25px, 0, 0);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: translate3d(-10px, 0, 0);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate3d(5px, 0, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInLeft {
|
||||
animation-name: bounceInLeft;
|
||||
}
|
||||
|
||||
@keyframes bounceInRight {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(3000px, 0, 0);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(-25px, 0, 0);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: translate3d(10px, 0, 0);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate3d(-5px, 0, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInRight {
|
||||
animation-name: bounceInRight;
|
||||
}
|
||||
|
||||
@keyframes bounceInUp {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 3000px, 0);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, -20px, 0);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: translate3d(0, 10px, 0);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate3d(0, -5px, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInUp {
|
||||
animation-name: bounceInUp;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeIn {
|
||||
animation-name: fadeIn;
|
||||
}
|
||||
|
||||
@keyframes fadeInDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -100%, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInDown {
|
||||
animation-name: fadeInDown;
|
||||
}
|
||||
|
||||
@keyframes fadeInLeft {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(-100%, 0, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeft {
|
||||
animation-name: fadeInLeft;
|
||||
}
|
||||
|
||||
@keyframes fadeInRight {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(100%, 0, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRight {
|
||||
animation-name: fadeInRight;
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 100%, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInUp {
|
||||
animation-name: fadeInUp;
|
||||
}
|
||||
|
||||
@keyframes lightSpeedIn {
|
||||
from {
|
||||
transform: translate3d(100%, 0, 0) skewX(-30deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: skewX(20deg);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: skewX(-5deg);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.lightSpeedIn {
|
||||
animation-name: lightSpeedIn;
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
|
||||
@keyframes rotateIn {
|
||||
from {
|
||||
transform-origin: center;
|
||||
transform: rotate3d(0, 0, 1, -200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: center;
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateIn {
|
||||
animation-name: rotateIn;
|
||||
}
|
||||
|
||||
@keyframes rotateInDownLeft {
|
||||
from {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate3d(0, 0, 1, -45deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: left bottom;
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInDownLeft {
|
||||
animation-name: rotateInDownLeft;
|
||||
}
|
||||
|
||||
@keyframes rotateInDownRight {
|
||||
from {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate3d(0, 0, 1, 45deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: right bottom;
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInDownRight {
|
||||
animation-name: rotateInDownRight;
|
||||
}
|
||||
|
||||
@keyframes rotateInUpLeft {
|
||||
from {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate3d(0, 0, 1, 45deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: left bottom;
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInUpLeft {
|
||||
animation-name: rotateInUpLeft;
|
||||
}
|
||||
|
||||
@keyframes rotateInUpRight {
|
||||
from {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate3d(0, 0, 1, -90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: right bottom;
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInUpRight {
|
||||
animation-name: rotateInUpRight;
|
||||
}
|
||||
|
||||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes rollIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.rollIn {
|
||||
animation-name: rollIn;
|
||||
}
|
||||
|
||||
@keyframes zoomIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(.3, .3, .3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.zoomIn {
|
||||
animation-name: zoomIn;
|
||||
}
|
||||
|
||||
@keyframes zoomInDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
|
||||
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
|
||||
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.zoomInDown {
|
||||
animation-name: zoomInDown;
|
||||
}
|
||||
|
||||
@keyframes zoomInLeft {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
|
||||
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
|
||||
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.zoomInLeft {
|
||||
animation-name: zoomInLeft;
|
||||
}
|
||||
|
||||
@keyframes zoomInRight {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
|
||||
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
|
||||
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.zoomInRight {
|
||||
animation-name: zoomInRight;
|
||||
}
|
||||
|
||||
@keyframes zoomInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
|
||||
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
|
||||
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.zoomInUp {
|
||||
animation-name: zoomInUp;
|
||||
}
|
||||
|
||||
@keyframes slideInDown {
|
||||
from {
|
||||
transform: translate3d(0, -100%, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.slideInDown {
|
||||
animation-name: slideInDown;
|
||||
}
|
||||
|
||||
@keyframes slideInLeft {
|
||||
from {
|
||||
transform: translate3d(-100%, 0, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.slideInLeft {
|
||||
animation-name: slideInLeft;
|
||||
}
|
||||
|
||||
@keyframes slideInRight {
|
||||
from {
|
||||
transform: translate3d(100%, 0, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.slideInRight {
|
||||
animation-name: slideInRight;
|
||||
}
|
||||
|
||||
@keyframes slideInUp {
|
||||
from {
|
||||
transform: translate3d(0, 100%, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.slideInUp {
|
||||
animation-name: slideInUp;
|
||||
}
|
||||
1
wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2
wp-content/plugins/elementor/assets/lib/animations/animations.min.css
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/animations/animations.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
25
wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js
vendored
Normal file
25
wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,350 @@
|
||||
/*! elementor - v0.7.1 - 18-08-2016 */
|
||||
// Backbone.Radio v1.0.4
|
||||
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('underscore'), require('backbone')) :
|
||||
typeof define === 'function' && define.amd ? define(['underscore', 'backbone'], factory) :
|
||||
(global.Backbone = global.Backbone || {}, global.Backbone.Radio = factory(global._,global.Backbone));
|
||||
}(this, function (_,Backbone) { 'use strict';
|
||||
|
||||
_ = 'default' in _ ? _['default'] : _;
|
||||
Backbone = 'default' in Backbone ? Backbone['default'] : Backbone;
|
||||
|
||||
var babelHelpers = {};
|
||||
babelHelpers.typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
|
||||
return typeof obj;
|
||||
} : function (obj) {
|
||||
return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
||||
};
|
||||
babelHelpers;
|
||||
|
||||
var previousRadio = Backbone.Radio;
|
||||
|
||||
var Radio = Backbone.Radio = {};
|
||||
|
||||
Radio.VERSION = '1.0.4';
|
||||
|
||||
// This allows you to run multiple instances of Radio on the same
|
||||
// webapp. After loading the new version, call `noConflict()` to
|
||||
// get a reference to it. At the same time the old version will be
|
||||
// returned to Backbone.Radio.
|
||||
Radio.noConflict = function () {
|
||||
Backbone.Radio = previousRadio;
|
||||
return this;
|
||||
};
|
||||
|
||||
// Whether or not we're in DEBUG mode or not. DEBUG mode helps you
|
||||
// get around the issues of lack of warnings when events are mis-typed.
|
||||
Radio.DEBUG = false;
|
||||
|
||||
// Format debug text.
|
||||
Radio._debugText = function (warning, eventName, channelName) {
|
||||
return warning + (channelName ? ' on the ' + channelName + ' channel' : '') + ': "' + eventName + '"';
|
||||
};
|
||||
|
||||
// This is the method that's called when an unregistered event was called.
|
||||
// By default, it logs warning to the console. By overriding this you could
|
||||
// make it throw an Error, for instance. This would make firing a nonexistent event
|
||||
// have the same consequence as firing a nonexistent method on an Object.
|
||||
Radio.debugLog = function (warning, eventName, channelName) {
|
||||
if (Radio.DEBUG && console && console.warn) {
|
||||
console.warn(Radio._debugText(warning, eventName, channelName));
|
||||
}
|
||||
};
|
||||
|
||||
var eventSplitter = /\s+/;
|
||||
|
||||
// An internal method used to handle Radio's method overloading for Requests.
|
||||
// It's borrowed from Backbone.Events. It differs from Backbone's overload
|
||||
// API (which is used in Backbone.Events) in that it doesn't support space-separated
|
||||
// event names.
|
||||
Radio._eventsApi = function (obj, action, name, rest) {
|
||||
if (!name) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var results = {};
|
||||
|
||||
// Handle event maps.
|
||||
if ((typeof name === 'undefined' ? 'undefined' : babelHelpers.typeof(name)) === 'object') {
|
||||
for (var key in name) {
|
||||
var result = obj[action].apply(obj, [key, name[key]].concat(rest));
|
||||
eventSplitter.test(key) ? _.extend(results, result) : results[key] = result;
|
||||
}
|
||||
return results;
|
||||
}
|
||||
|
||||
// Handle space separated event names.
|
||||
if (eventSplitter.test(name)) {
|
||||
var names = name.split(eventSplitter);
|
||||
for (var i = 0, l = names.length; i < l; i++) {
|
||||
results[names[i]] = obj[action].apply(obj, [names[i]].concat(rest));
|
||||
}
|
||||
return results;
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
// An optimized way to execute callbacks.
|
||||
Radio._callHandler = function (callback, context, args) {
|
||||
var a1 = args[0],
|
||||
a2 = args[1],
|
||||
a3 = args[2];
|
||||
switch (args.length) {
|
||||
case 0:
|
||||
return callback.call(context);
|
||||
case 1:
|
||||
return callback.call(context, a1);
|
||||
case 2:
|
||||
return callback.call(context, a1, a2);
|
||||
case 3:
|
||||
return callback.call(context, a1, a2, a3);
|
||||
default:
|
||||
return callback.apply(context, args);
|
||||
}
|
||||
};
|
||||
|
||||
// A helper used by `off` methods to the handler from the store
|
||||
function removeHandler(store, name, callback, context) {
|
||||
var event = store[name];
|
||||
if ((!callback || callback === event.callback || callback === event.callback._callback) && (!context || context === event.context)) {
|
||||
delete store[name];
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
function removeHandlers(store, name, callback, context) {
|
||||
store || (store = {});
|
||||
var names = name ? [name] : _.keys(store);
|
||||
var matched = false;
|
||||
|
||||
for (var i = 0, length = names.length; i < length; i++) {
|
||||
name = names[i];
|
||||
|
||||
// If there's no event by this name, log it and continue
|
||||
// with the loop
|
||||
if (!store[name]) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (removeHandler(store, name, callback, context)) {
|
||||
matched = true;
|
||||
}
|
||||
}
|
||||
|
||||
return matched;
|
||||
}
|
||||
|
||||
/*
|
||||
* tune-in
|
||||
* -------
|
||||
* Get console logs of a channel's activity
|
||||
*
|
||||
*/
|
||||
|
||||
var _logs = {};
|
||||
|
||||
// This is to produce an identical function in both tuneIn and tuneOut,
|
||||
// so that Backbone.Events unregisters it.
|
||||
function _partial(channelName) {
|
||||
return _logs[channelName] || (_logs[channelName] = _.partial(Radio.log, channelName));
|
||||
}
|
||||
|
||||
_.extend(Radio, {
|
||||
|
||||
// Log information about the channel and event
|
||||
log: function log(channelName, eventName) {
|
||||
if (typeof console === 'undefined') {
|
||||
return;
|
||||
}
|
||||
var args = _.drop(arguments, 2);
|
||||
console.log('[' + channelName + '] "' + eventName + '"', args);
|
||||
},
|
||||
|
||||
// Logs all events on this channel to the console. It sets an
|
||||
// internal value on the channel telling it we're listening,
|
||||
// then sets a listener on the Backbone.Events
|
||||
tuneIn: function tuneIn(channelName) {
|
||||
var channel = Radio.channel(channelName);
|
||||
channel._tunedIn = true;
|
||||
channel.on('all', _partial(channelName));
|
||||
return this;
|
||||
},
|
||||
|
||||
// Stop logging all of the activities on this channel to the console
|
||||
tuneOut: function tuneOut(channelName) {
|
||||
var channel = Radio.channel(channelName);
|
||||
channel._tunedIn = false;
|
||||
channel.off('all', _partial(channelName));
|
||||
delete _logs[channelName];
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
||||
/*
|
||||
* Backbone.Radio.Requests
|
||||
* -----------------------
|
||||
* A messaging system for requesting data.
|
||||
*
|
||||
*/
|
||||
|
||||
function makeCallback(callback) {
|
||||
return _.isFunction(callback) ? callback : function () {
|
||||
return callback;
|
||||
};
|
||||
}
|
||||
|
||||
Radio.Requests = {
|
||||
|
||||
// Make a request
|
||||
request: function request(name) {
|
||||
var args = _.rest(arguments);
|
||||
var results = Radio._eventsApi(this, 'request', name, args);
|
||||
if (results) {
|
||||
return results;
|
||||
}
|
||||
var channelName = this.channelName;
|
||||
var requests = this._requests;
|
||||
|
||||
// Check if we should log the request, and if so, do it
|
||||
if (channelName && this._tunedIn) {
|
||||
Radio.log.apply(this, [channelName, name].concat(args));
|
||||
}
|
||||
|
||||
// If the request isn't handled, log it in DEBUG mode and exit
|
||||
if (requests && (requests[name] || requests['default'])) {
|
||||
var handler = requests[name] || requests['default'];
|
||||
args = requests[name] ? args : arguments;
|
||||
return Radio._callHandler(handler.callback, handler.context, args);
|
||||
} else {
|
||||
Radio.debugLog('An unhandled request was fired', name, channelName);
|
||||
}
|
||||
},
|
||||
|
||||
// Set up a handler for a request
|
||||
reply: function reply(name, callback, context) {
|
||||
if (Radio._eventsApi(this, 'reply', name, [callback, context])) {
|
||||
return this;
|
||||
}
|
||||
|
||||
this._requests || (this._requests = {});
|
||||
|
||||
if (this._requests[name]) {
|
||||
Radio.debugLog('A request was overwritten', name, this.channelName);
|
||||
}
|
||||
|
||||
this._requests[name] = {
|
||||
callback: makeCallback(callback),
|
||||
context: context || this
|
||||
};
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
// Set up a handler that can only be requested once
|
||||
replyOnce: function replyOnce(name, callback, context) {
|
||||
if (Radio._eventsApi(this, 'replyOnce', name, [callback, context])) {
|
||||
return this;
|
||||
}
|
||||
|
||||
var self = this;
|
||||
|
||||
var once = _.once(function () {
|
||||
self.stopReplying(name);
|
||||
return makeCallback(callback).apply(this, arguments);
|
||||
});
|
||||
|
||||
return this.reply(name, once, context);
|
||||
},
|
||||
|
||||
// Remove handler(s)
|
||||
stopReplying: function stopReplying(name, callback, context) {
|
||||
if (Radio._eventsApi(this, 'stopReplying', name)) {
|
||||
return this;
|
||||
}
|
||||
|
||||
// Remove everything if there are no arguments passed
|
||||
if (!name && !callback && !context) {
|
||||
delete this._requests;
|
||||
} else if (!removeHandlers(this._requests, name, callback, context)) {
|
||||
Radio.debugLog('Attempted to remove the unregistered request', name, this.channelName);
|
||||
}
|
||||
|
||||
return this;
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
* Backbone.Radio.channel
|
||||
* ----------------------
|
||||
* Get a reference to a channel by name.
|
||||
*
|
||||
*/
|
||||
|
||||
Radio._channels = {};
|
||||
|
||||
Radio.channel = function (channelName) {
|
||||
if (!channelName) {
|
||||
throw new Error('You must provide a name for the channel.');
|
||||
}
|
||||
|
||||
if (Radio._channels[channelName]) {
|
||||
return Radio._channels[channelName];
|
||||
} else {
|
||||
return Radio._channels[channelName] = new Radio.Channel(channelName);
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
* Backbone.Radio.Channel
|
||||
* ----------------------
|
||||
* A Channel is an object that extends from Backbone.Events,
|
||||
* and Radio.Requests.
|
||||
*
|
||||
*/
|
||||
|
||||
Radio.Channel = function (channelName) {
|
||||
this.channelName = channelName;
|
||||
};
|
||||
|
||||
_.extend(Radio.Channel.prototype, Backbone.Events, Radio.Requests, {
|
||||
|
||||
// Remove all handlers from the messaging systems of this channel
|
||||
reset: function reset() {
|
||||
this.off();
|
||||
this.stopListening();
|
||||
this.stopReplying();
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
||||
/*
|
||||
* Top-level API
|
||||
* -------------
|
||||
* Supplies the 'top-level API' for working with Channels directly
|
||||
* from Backbone.Radio.
|
||||
*
|
||||
*/
|
||||
|
||||
var channel;
|
||||
var args;
|
||||
var systems = [Backbone.Events, Radio.Requests];
|
||||
_.each(systems, function (system) {
|
||||
_.each(system, function (method, methodName) {
|
||||
Radio[methodName] = function (channelName) {
|
||||
args = _.rest(arguments);
|
||||
channel = this.channel(channelName);
|
||||
return channel[methodName].apply(channel, args);
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
Radio.reset = function (channelName) {
|
||||
var channels = !channelName ? this._channels : [this._channels[channelName]];
|
||||
_.invoke(channels, 'reset');
|
||||
};
|
||||
|
||||
return Radio;
|
||||
|
||||
}));
|
||||
3
wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js
vendored
Normal file
3
wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! elementor - v0.7.1 - 18-08-2016 */
|
||||
// Backbone.Radio v1.0.4
|
||||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n(require("underscore"),require("backbone")):"function"==typeof define&&define.amd?define(["underscore","backbone"],n):(e.Backbone=e.Backbone||{},e.Backbone.Radio=n(e._,e.Backbone))}(this,function(e,n){"use strict";function t(e,n,t,r){var o=e[n];return t&&t!==o.callback&&t!==o.callback._callback||r&&r!==o.context?void 0:(delete e[n],!0)}function r(n,r,o,i){n||(n={});for(var s=r?[r]:e.keys(n),u=!1,a=0,c=s.length;c>a;a++)r=s[a],n[r]&&t(n,r,o,i)&&(u=!0);return u}function o(n){return l[n]||(l[n]=e.partial(a.log,n))}function i(n){return e.isFunction(n)?n:function(){return n}}e="default"in e?e["default"]:e,n="default"in n?n["default"]:n;var s={};s["typeof"]="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol?"symbol":typeof e};var u=n.Radio,a=n.Radio={};a.VERSION="1.0.4",a.noConflict=function(){return n.Radio=u,this},a.DEBUG=!1,a._debugText=function(e,n,t){return e+(t?" on the "+t+" channel":"")+': "'+n+'"'},a.debugLog=function(e,n,t){a.DEBUG&&console&&console.warn&&console.warn(a._debugText(e,n,t))};var c=/\s+/;a._eventsApi=function(n,t,r,o){if(!r)return!1;var i={};if("object"===("undefined"==typeof r?"undefined":s["typeof"](r))){for(var u in r){var a=n[t].apply(n,[u,r[u]].concat(o));c.test(u)?e.extend(i,a):i[u]=a}return i}if(c.test(r)){for(var l=r.split(c),f=0,h=l.length;h>f;f++)i[l[f]]=n[t].apply(n,[l[f]].concat(o));return i}return!1},a._callHandler=function(e,n,t){var r=t[0],o=t[1],i=t[2];switch(t.length){case 0:return e.call(n);case 1:return e.call(n,r);case 2:return e.call(n,r,o);case 3:return e.call(n,r,o,i);default:return e.apply(n,t)}};var l={};e.extend(a,{log:function(n,t){if("undefined"!=typeof console){var r=e.drop(arguments,2);console.log("["+n+'] "'+t+'"',r)}},tuneIn:function(e){var n=a.channel(e);return n._tunedIn=!0,n.on("all",o(e)),this},tuneOut:function(e){var n=a.channel(e);return n._tunedIn=!1,n.off("all",o(e)),delete l[e],this}}),a.Requests={request:function(n){var t=e.rest(arguments),r=a._eventsApi(this,"request",n,t);if(r)return r;var o=this.channelName,i=this._requests;if(o&&this._tunedIn&&a.log.apply(this,[o,n].concat(t)),i&&(i[n]||i["default"])){var s=i[n]||i["default"];return t=i[n]?t:arguments,a._callHandler(s.callback,s.context,t)}a.debugLog("An unhandled request was fired",n,o)},reply:function(e,n,t){return a._eventsApi(this,"reply",e,[n,t])?this:(this._requests||(this._requests={}),this._requests[e]&&a.debugLog("A request was overwritten",e,this.channelName),this._requests[e]={callback:i(n),context:t||this},this)},replyOnce:function(n,t,r){if(a._eventsApi(this,"replyOnce",n,[t,r]))return this;var o=this,s=e.once(function(){return o.stopReplying(n),i(t).apply(this,arguments)});return this.reply(n,s,r)},stopReplying:function(e,n,t){return a._eventsApi(this,"stopReplying",e)?this:(e||n||t?r(this._requests,e,n,t)||a.debugLog("Attempted to remove the unregistered request",e,this.channelName):delete this._requests,this)}},a._channels={},a.channel=function(e){if(!e)throw new Error("You must provide a name for the channel.");return a._channels[e]?a._channels[e]:a._channels[e]=new a.Channel(e)},a.Channel=function(e){this.channelName=e},e.extend(a.Channel.prototype,n.Events,a.Requests,{reset:function(){return this.off(),this.stopListening(),this.stopReplying(),this}});var f,h,d=[n.Events,a.Requests];return e.each(d,function(n){e.each(n,function(n,t){a[t]=function(n){return h=e.rest(arguments),f=this.channel(n),f[t].apply(f,h)}})}),a.reset=function(n){var t=n?[this._channels[n]]:this._channels;e.invoke(t,"reset")},a});
|
||||
2
wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1017
wp-content/plugins/elementor/assets/lib/dialog/dialog.js
Normal file
1017
wp-content/plugins/elementor/assets/lib/dialog/dialog.js
Normal file
File diff suppressed because it is too large
Load Diff
3
wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js
vendored
Normal file
3
wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,105 @@
|
||||
/*! E-Gallery v1.2.0 by Elementor */
|
||||
.e-gallery-container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-wrap: wrap; }
|
||||
.e-gallery-container:not(.e-gallery-grid) {
|
||||
transition: padding-bottom var(--animation-duration); }
|
||||
|
||||
.e-gallery-item {
|
||||
position: relative;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
transition-property: all;
|
||||
transition-duration: var(--animation-duration); }
|
||||
.e-gallery-item:not(:hover) .e-gallery-overlay {
|
||||
display: none; }
|
||||
.e-gallery-item.e-gallery-item--hidden {
|
||||
transform: scale3d(0, 0, 0);
|
||||
opacity: 0; }
|
||||
|
||||
.e-gallery-image {
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
width: 100%;
|
||||
transform-origin: center top;
|
||||
transition: var(--animation-duration); }
|
||||
|
||||
.e-gallery-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: column;
|
||||
color: #fff;
|
||||
background-color: rgba(0, 0, 0, 0.5); }
|
||||
.e-gallery-overlay__title {
|
||||
font-size: 24px; }
|
||||
|
||||
.e-gallery-grid:not(.e-gallery--animated) {
|
||||
display: grid;
|
||||
grid-gap: var(--vgap) var(--hgap);
|
||||
grid-template-columns: repeat(var(--columns), 1fr); }
|
||||
.e-gallery-grid:not(.e-gallery--animated) .e-gallery-item--hidden {
|
||||
position: absolute; }
|
||||
|
||||
.e-gallery-grid.e-gallery--animated {
|
||||
padding-bottom: var(--container-aspect-ratio); }
|
||||
.e-gallery-grid.e-gallery--animated .e-gallery-item {
|
||||
--item-width: calc((100% - ((var(--columns) - 1) * var(--hgap))) / var(--columns));
|
||||
position: absolute;
|
||||
top: calc(((100% / var(--rows)) + (var(--vgap) / var(--rows))) * var(--row));
|
||||
width: var(--item-width); }
|
||||
|
||||
.e-gallery-grid .e-gallery-image {
|
||||
padding-bottom: var(--aspect-ratio); }
|
||||
|
||||
.e-gallery-justified {
|
||||
padding-bottom: calc(var(--container-aspect-ratio) * 100%); }
|
||||
.e-gallery-justified .e-gallery-item {
|
||||
position: absolute;
|
||||
width: calc(var(--item-width) * (100% - var(--hgap) * var(--gap-count)));
|
||||
height: var(--item-height);
|
||||
top: calc(var(--item-top) + (var(--row) * var(--vgap))); }
|
||||
.e-gallery-justified .e-gallery-image {
|
||||
height: 100%; }
|
||||
|
||||
.e-gallery-masonry {
|
||||
height: 0;
|
||||
margin-bottom: calc(var(--highest-column-gap-count) * var(--vgap)); }
|
||||
.e-gallery-masonry .e-gallery-item {
|
||||
position: absolute;
|
||||
width: calc(100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns)));
|
||||
top: calc(var(--percent-height) + (var(--items-in-column) * var(--vgap))); }
|
||||
.e-gallery-masonry .e-gallery-image {
|
||||
padding-bottom: var(--item-height); }
|
||||
|
||||
.e-gallery--ltr.e-gallery-grid.e-gallery--animated .e-gallery-item {
|
||||
left: calc(var(--item-width) * var(--column) + (var(--hgap) * var(--column))); }
|
||||
|
||||
.e-gallery--ltr.e-gallery-justified .e-gallery-item {
|
||||
left: calc(var(--item-start) * (100% - var(--hgap) * var(--gap-count)) + var(--hgap) * var(--item-row-index)); }
|
||||
|
||||
.e-gallery--ltr.e-gallery-masonry .e-gallery-item {
|
||||
left: calc((100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns))) * var(--column) + (var(--hgap) * var(--column))); }
|
||||
|
||||
.e-gallery--rtl.e-gallery-grid.e-gallery--animated .e-gallery-item {
|
||||
right: calc(var(--item-width) * var(--column) + (var(--hgap) * var(--column))); }
|
||||
|
||||
.e-gallery--rtl.e-gallery-justified .e-gallery-item {
|
||||
right: calc(var(--item-start) * (100% - var(--hgap) * var(--gap-count)) + var(--hgap) * var(--item-row-index)); }
|
||||
|
||||
.e-gallery--rtl.e-gallery-masonry .e-gallery-item {
|
||||
right: calc((100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns))) * var(--column) + (var(--hgap) * var(--column))); }
|
||||
|
||||
.e-gallery--lazyload .e-gallery-image:not(.e-gallery-image-loaded) {
|
||||
filter: opacity(0);
|
||||
transform: scale(0.5); }
|
||||
|
||||
|
||||
/*# sourceMappingURL=e-gallery.css.map*/
|
||||
3
wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css
vendored
Normal file
3
wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! E-Gallery v1.2.0 by Elementor */
|
||||
.e-gallery-container{position:relative;display:flex;flex-wrap:wrap}.e-gallery-container:not(.e-gallery-grid){transition:padding-bottom var(--animation-duration)}.e-gallery-item{position:relative;flex-grow:0;flex-shrink:0;transition-property:all;transition-duration:var(--animation-duration)}.e-gallery-item:not(:hover) .e-gallery-overlay{display:none}.e-gallery-item.e-gallery-item--hidden{transform:scale3d(0, 0, 0);opacity:0}.e-gallery-image{background-position:center center;background-size:cover;width:100%;transform-origin:center top;transition:var(--animation-duration)}.e-gallery-overlay{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;align-items:center;justify-content:space-evenly;flex-wrap:wrap;flex-direction:column;color:#fff;background-color:rgba(0,0,0,0.5)}.e-gallery-overlay__title{font-size:24px}.e-gallery-grid:not(.e-gallery--animated){display:grid;grid-gap:var(--vgap) var(--hgap);grid-template-columns:repeat(var(--columns), 1fr)}.e-gallery-grid:not(.e-gallery--animated) .e-gallery-item--hidden{position:absolute}.e-gallery-grid.e-gallery--animated{padding-bottom:var(--container-aspect-ratio)}.e-gallery-grid.e-gallery--animated .e-gallery-item{--item-width: calc((100% - ((var(--columns) - 1) * var(--hgap))) / var(--columns));position:absolute;top:calc(((100% / var(--rows)) + (var(--vgap) / var(--rows))) * var(--row));width:var(--item-width)}.e-gallery-grid .e-gallery-image{padding-bottom:var(--aspect-ratio)}.e-gallery-justified{padding-bottom:calc(var(--container-aspect-ratio) * 100%)}.e-gallery-justified .e-gallery-item{position:absolute;width:calc(var(--item-width) * (100% - var(--hgap) * var(--gap-count)));height:var(--item-height);top:calc(var(--item-top) + (var(--row) * var(--vgap)))}.e-gallery-justified .e-gallery-image{height:100%}.e-gallery-masonry{height:0;margin-bottom:calc(var(--highest-column-gap-count) * var(--vgap))}.e-gallery-masonry .e-gallery-item{position:absolute;width:calc(100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns)));top:calc(var(--percent-height) + (var(--items-in-column) * var(--vgap)))}.e-gallery-masonry .e-gallery-image{padding-bottom:var(--item-height)}.e-gallery--ltr.e-gallery-grid.e-gallery--animated .e-gallery-item{left:calc(var(--item-width) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--ltr.e-gallery-justified .e-gallery-item{left:calc(var(--item-start) * (100% - var(--hgap) * var(--gap-count)) + var(--hgap) * var(--item-row-index))}.e-gallery--ltr.e-gallery-masonry .e-gallery-item{left:calc((100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns))) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--rtl.e-gallery-grid.e-gallery--animated .e-gallery-item{right:calc(var(--item-width) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--rtl.e-gallery-justified .e-gallery-item{right:calc(var(--item-start) * (100% - var(--hgap) * var(--gap-count)) + var(--hgap) * var(--item-row-index))}.e-gallery--rtl.e-gallery-masonry .e-gallery-item{right:calc((100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns))) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--lazyload .e-gallery-image:not(.e-gallery-image-loaded){filter:opacity(0);transform:scale(0.5)}
|
||||
|
||||
1301
wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js
Normal file
1301
wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js
Normal file
File diff suppressed because it is too large
Load Diff
2
wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,482 @@
|
||||
.select2-container {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle; }
|
||||
.select2-container .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 28px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||
display: block;
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-selection--single .select2-selection__clear {
|
||||
position: relative; }
|
||||
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
||||
padding-right: 8px;
|
||||
padding-left: 20px; }
|
||||
.select2-container .select2-selection--multiple {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 32px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding-left: 8px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-search--inline {
|
||||
float: left; }
|
||||
.select2-container .select2-search--inline .select2-search__field {
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
margin-top: 5px;
|
||||
padding: 0; }
|
||||
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
.select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
width: 100%;
|
||||
z-index: 1051; }
|
||||
|
||||
.select2-results {
|
||||
display: block; }
|
||||
|
||||
.select2-results__options {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
.select2-results__option {
|
||||
padding: 6px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-results__option[aria-selected] {
|
||||
cursor: pointer; }
|
||||
|
||||
.select2-container--open .select2-dropdown {
|
||||
left: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--below {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-search--dropdown {
|
||||
display: block;
|
||||
padding: 4px; }
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
.select2-search--dropdown.select2-search--hide {
|
||||
display: none; }
|
||||
|
||||
.select2-close-mask {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100%;
|
||||
min-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
opacity: 0;
|
||||
z-index: 99;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=0); }
|
||||
|
||||
.select2-hidden-accessible {
|
||||
border: 0 !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
height: 1px !important;
|
||||
margin: -1px !important;
|
||||
overflow: hidden !important;
|
||||
padding: 0 !important;
|
||||
position: absolute !important;
|
||||
width: 1px !important; }
|
||||
|
||||
.select2-container--default .select2-selection--single {
|
||||
background-color: #fff;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--default .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
cursor: text; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
||||
box-sizing: border-box;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
||||
list-style: none; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
||||
color: #999;
|
||||
margin-top: 5px;
|
||||
float: left; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #333; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
||||
float: right; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
||||
border: solid black 1px;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa; }
|
||||
|
||||
.select2-container--default .select2-search--inline .select2-search__field {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: textfield; }
|
||||
|
||||
.select2-container--default .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--default .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-disabled=true] {
|
||||
color: #999; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-selected=true] {
|
||||
background-color: #ddd; }
|
||||
|
||||
.select2-container--default .select2-results__option .select2-results__option {
|
||||
padding-left: 1em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
||||
padding-left: 0; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -1em;
|
||||
padding-left: 2em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -2em;
|
||||
padding-left: 3em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -3em;
|
||||
padding-left: 4em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -4em;
|
||||
padding-left: 5em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -5em;
|
||||
padding-left: 6em; }
|
||||
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: #5897fb;
|
||||
color: white; }
|
||||
|
||||
.select2-container--default .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic .select2-selection--single {
|
||||
background-color: #f7f7f7;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
outline: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-right: 10px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
||||
background-color: #ddd;
|
||||
border: none;
|
||||
border-left: 1px solid #aaa;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
border: none;
|
||||
border-right: 1px solid #aaa;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
||||
background: transparent;
|
||||
border: none; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
||||
|
||||
.select2-container--classic .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
cursor: text;
|
||||
outline: 0; }
|
||||
.select2-container--classic .select2-selection--multiple:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
||||
display: none; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #555; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
float: right; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
||||
border: 1px solid #5897fb; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
||||
outline: 0;
|
||||
box-shadow: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid transparent; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--above {
|
||||
border-bottom: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--below {
|
||||
border-top: none; }
|
||||
|
||||
.select2-container--classic .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--classic .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
||||
color: grey; }
|
||||
|
||||
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: #3875d7;
|
||||
color: white; }
|
||||
|
||||
.select2-container--classic .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
||||
border-color: #5897fb; }
|
||||
1
wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
1
wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
2
wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
BIN
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot
Normal file
BIN
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot
Normal file
Binary file not shown.
922
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg
Normal file
922
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg
Normal file
@@ -0,0 +1,922 @@
|
||||
<?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>Copyright (C) 2024 by original authors @ fontello.com</metadata>
|
||||
<defs>
|
||||
<font id="eicons" horiz-adv-x="1000" >
|
||||
<font-face font-family="eicons" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
||||
<missing-glyph horiz-adv-x="1000" />
|
||||
<glyph glyph-name="editor-link" unicode="" d="M691 233c0 8-3 15-8 20l-64 64c-6 6-13 9-21 9-9 0-16-3-22-10 0-1 2-3 6-6 3-3 5-5 6-7 2-1 3-3 5-5 2-3 3-6 4-8s1-6 1-9c0-8-3-15-8-21-6-5-13-8-21-8-3 0-6 0-9 1s-5 2-7 4c-3 2-5 3-6 5-2 1-4 3-7 6-3 4-5 5-6 6-6-6-10-14-10-22 0-9 3-15 9-21l63-63c5-6 12-9 21-9 8 0 15 3 21 8l45 45c5 6 8 13 8 21z m-215 215c0 9-3 15-9 21l-63 64c-6 5-12 8-21 8-8 0-15-3-20-8l-45-45c-6-5-9-12-9-20 0-8 3-15 9-21l63-64c6-5 13-8 21-8 9 0 16 3 22 10 0 0-2 2-6 5-3 4-5 6-6 7-2 1-3 3-5 6-2 2-3 5-4 8-1 2-1 5-1 8 0 9 3 15 8 21s13 9 21 9c3 0 6-1 9-1 2-1 5-3 8-5 2-2 4-3 5-4 2-1 4-4 7-7 3-3 5-5 6-6 7 7 10 14 10 22z m274-215c0-25-9-46-26-63l-45-44c-17-17-37-26-62-26-24 0-45 9-62 26l-63 64c-17 17-26 37-26 62 0 25 9 46 27 64l-27 27c-17-18-38-27-63-27-25 0-46 9-63 26l-64 63c-17 18-26 38-26 63 0 25 9 45 26 62l45 45c17 17 38 25 62 25 25 0 46-9 63-26l63-63c17-17 25-38 25-62 0-25-9-47-27-64l27-27c18 17 39 27 64 27 25 0 45-9 62-26l64-64c17-17 26-38 26-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-unlink" unicode="" d="M383 222l-78-78c-2-1-4-3-7-3-3 0-5 1-7 3-2 2-3 4-3 7s1 5 3 7l77 78c2 2 5 3 7 3s5-1 8-3c1-2 2-4 2-7s0-5-2-7z m51-12v-97c0-3-1-5-3-8-2-1-4-2-7-2s-5 0-7 2-3 5-3 8v96c0 3 1 5 3 7 1 2 4 3 7 3s5-1 7-3c2-1 3-4 3-6z m-68 67c0-3-1-5-3-7-1-2-4-3-7-3h-96c-3 0-5 1-7 3-2 2-3 4-3 7s0 5 3 7c1 2 4 3 7 3h96c3 0 5-1 7-3 2-2 3-4 3-7z m382-39c0-24-8-44-25-61l-45-44c-17-17-37-25-61-25-25 0-45 9-62 26l-101 101c-4 4-8 10-12 17l72 5 82-83c6-5 13-8 21-8 8 0 15 2 20 8l45 44c6 6 8 12 8 20 0 8-3 15-8 21l-83 83 5 72c7-4 13-9 17-13l102-101c17-17 25-38 25-62z m-186 219l-72-5-83 83c-6 5-12 8-20 8-8 0-15-3-21-8l-45-44c-6-6-8-13-8-21 0-7 3-15 8-20l83-83-5-72c-7 4-13 8-17 12l-102 102c-17 17-25 38-25 61 0 25 8 45 25 62l45 44c17 17 37 25 61 25 25 0 45-9 62-26l101-101c4-4 9-10 13-17z m191-25c0-3-1-5-3-7-2-2-4-3-7-3h-97c-3 0-5 1-7 3-1 1-3 4-3 7 0 3 1 5 3 7 2 1 4 3 7 3h97c3 0 5-1 7-3 2-2 3-4 3-7z m-165 164v-96c0-3 0-5-3-7-1-2-4-3-7-3-3 0-5 0-7 3-1 1-3 4-3 7v96c0 3 1 5 3 7 2 2 4 3 7 3 3 0 5-1 7-3 3-2 3-4 3-7z m124-45l-78-78c-2-1-4-3-7-3-2 0-4 1-7 3-2 2-3 5-3 7s1 5 3 8l78 77c2 2 4 3 7 3s5-1 7-3c1-2 3-4 3-7s-2-5-3-7z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-external-link" unicode="" d="M742 481l61-61c3-3 8-5 13-5 5 0 10 2 13 5 4 4 6 9 6 14v189c0 5-2 10-6 13-4 4-8 6-13 6h-189c-5 0-10-2-13-6s-6-8-6-13 2-10 6-13l65-65-225-225c-17-18-17-46 0-63s46-18 63 0l225 224z m8-189v-123c0-30-11-56-32-78-22-22-48-33-79-33h-320c-30 0-56 11-78 33-22 22-33 48-33 78v320c0 31 11 57 33 79s48 32 78 32h226c4 0 7-1 9-3 2-3 3-6 3-9v-25c0-3-1-6-3-8-3-3-6-4-9-4h-226c-17 0-31-6-43-18s-18-26-18-43v-320c0-17 6-31 18-43s27-18 43-18h320c17 0 31 6 44 18s17 26 17 43v123c0 4 2 7 4 9 2 2 5 3 9 3h24c4 0 7-1 9-3 3-3 4-6 4-10z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-close" unicode="" d="M580 329l158 158c16 16 16 43 0 59-17 16-43 16-59 0l-158-158-158 158c-16 17-43 17-59 0-8-8-12-18-12-29s4-22 12-30l158-158-158-158c-16-16-16-42 0-58 9-9 19-13 30-13s21 5 29 13l158 157 158-157c9-9 19-13 30-13s21 5 29 13c9 8 12 18 12 29s-4 21-12 30l-158 157z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-list-ol" unicode="" d="M182 576l26-3v-15h-83v15l27 3v84h-27v15l57 8v-107z m7-249h-31l0 1 22 23c9 10 15 19 19 25 4 6 6 13 6 21 0 11-3 20-10 26s-17 10-30 10c-12 0-22-4-29-12-8-7-11-17-11-28l0 0h24c0 6 1 11 4 15 3 4 7 6 12 6 5 0 9-2 12-5 3-4 4-8 4-13 0-4-1-8-3-13-3-4-6-10-12-16l-39-43v-16h81v31h-18l-1-12z m-1-225c6 4 10 8 14 15s5 13 5 20c0 15-4 26-12 34-7 8-17 12-30 12-11 0-20-4-28-12s-11-19-11-31l0-1h24c0 6 2 10 5 14 3 4 7 5 11 5 5 0 9-2 12-5s4-10 4-16c0-7-1-13-4-17-3-4-7-6-13-6h-14v-24h14c6 0 11-2 14-6 4-4 5-11 5-19 0-7-2-13-5-17-4-4-8-6-14-6-5 0-9 2-12 6-3 4-5 9-5 15h-23l0 0c0-15 4-26 12-34 8-8 17-12 28-12 13 0 23 4 31 13s12 20 12 35c0 8-1 16-5 23-3 6-8 11-15 14z m620 290h-475c-23 0-41-19-41-42 0-23 18-42 41-42h475c23 0 42 19 42 42 0 23-19 42-42 42z m0-250h-475c-23 0-41-19-41-42s18-42 41-42h475c23 0 42 19 42 42s-19 42-42 42z m-475 416h475c23 0 42 19 42 42s-19 42-42 42h-475c-23 0-41-19-41-42s18-42 41-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-list-ul" unicode="" d="M892 350c0-23-19-42-42-42h-475c-23 0-42 19-42 42 0 23 19 42 42 42h475c23 0 42-19 42-42z m-42-208h-475c-23 0-42-19-42-42s19-42 42-42h475c23 0 42 19 42 42s-19 42-42 42z m-475 416h475c23 0 42 19 42 42s-19 42-42 42h-475c-23 0-42-19-42-42s19-42 42-42z m-187 105c-35 0-63-28-63-63 0-35 28-62 63-62 34 0 62 27 62 62 0 35-28 63-62 63z m0-500c-35 0-63-28-63-63 0-35 28-62 63-62 34 0 62 27 62 62 0 35-28 63-62 63z m0 252c-35 0-63-28-63-62 0-35 28-63 63-63 34 0 62 28 62 63 0 34-28 62-62 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-bold" unicode="" d="M469 140c16-7 31-11 45-11 81 0 121 39 121 117 0 27-5 48-13 63-6 11-13 19-20 26s-15 13-22 16c-7 4-16 7-26 9-10 2-19 3-27 4-8 0-18 1-30 1-16 0-27-2-33-4 0-12 0-31 0-55 0-25 0-43 0-56 0-1 0-9 0-23s-1-25 0-34c0-9 0-18 1-29s2-19 4-24z m-2 256c10-1 23-2 40-2 20 0 37 1 52 4 15 3 29 8 41 15 12 6 20 16 27 28 6 13 9 28 9 46 0 15-3 28-11 39-7 11-16 20-28 26-12 6-26 11-40 14s-29 4-45 4c-12 0-28-1-48-4 0-11 1-26 2-48 1-22 2-38 2-49 0-6 0-14 0-25 0-11 0-20 0-26-2-9-2-17-1-22z m-175-296l1 30c3 1 12 3 27 5s27 6 35 9c1 3 3 6 4 9s2 7 3 11 1 7 1 10 1 7 1 12 0 9 0 12v21c0 213-2 324-7 334-1 1-3 3-7 4s-9 3-15 4-11 2-16 2-10 1-16 2-8 0-10 0l-1 28c21 0 58 1 111 3s93 4 122 4c5 0 12 0 22 0s17 0 22 0c15 0 30-1 45-4s28-8 41-14c14-6 25-14 35-23s18-20 25-34 9-28 9-45c0-11-2-21-6-31s-8-17-12-23-12-13-21-19-17-11-24-14-16-8-27-13c33-8 61-22 83-44 22-22 33-48 33-81 0-22-3-41-11-58s-18-32-30-43-28-20-45-28-35-13-54-16-37-4-57-4c-10 0-24 0-43 1s-33 1-43 1c-23 0-56-2-100-4s-69-4-75-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-italic" unicode="" d="M333 101l6 27c1 1 10 3 26 7s29 9 37 13c6 7 10 18 13 32 0 2 7 33 20 95s25 120 37 177 17 88 17 96v9c-5 3-11 5-18 6s-14 2-22 2-15 1-19 2l6 33c7 0 20-1 39-2s35-2 49-2c14-1 27-1 39-1 11 0 22 0 32 1s25 1 40 2 26 2 32 2c-1-8-3-18-6-29-7-2-18-6-33-9s-27-8-35-11c-2-4-4-9-5-14s-2-9-3-13-2-8-2-15-2-11-3-14c-5-32-15-77-28-136s-22-98-25-116c-1-2-2-8-4-19s-5-20-7-29-4-18-5-27-2-15-2-19l0-6c4 0 24-4 61-10-1-9-3-20-5-32-3 0-6 0-11 0s-8-1-10-1c-6 0-16 2-29 4s-22 3-27 3c-30 1-53 1-68 1-11 0-26-1-46-3s-34-4-41-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-underline" unicode="" d="M266 570c-8 0-13 0-15 1l-1 28c3 1 7 1 13 1 13 0 25-1 37-2 28-1 46-2 54-2 19 0 37 1 54 1 25 1 41 1 48 2 12 0 22 0 28 1l-1-5 1-20v-3c-13-2-26-3-40-3-13 0-22-3-26-8-3-3-4-17-4-43 0-3 0-6 0-10 0-4 0-7 0-8l0-74 5-90c1-27 6-48 16-65 8-13 18-23 32-30 19-10 38-15 57-15 23 0 44 3 62 9 12 4 23 10 32 17 11 8 18 14 22 20 8 12 13 24 17 37 4 16 6 40 6 74 0 17 0 30-1 41s-2 24-4 39c-1 16-3 33-4 52l-1 19c-2 14-4 24-8 28-8 8-16 11-25 11l-33-1-4 1 0 27h28l67-3c16-1 37 1 63 3l6 0c1-9 2-14 2-17 0-1 0-5-1-10-10-2-19-4-28-4-15-2-24-4-25-5-4-4-5-8-5-14 0-1 0-4 0-8 0-4 0-8 0-10 2-4 5-47 8-128 1-41-1-74-5-98-4-16-8-29-14-39-8-14-20-27-36-39-17-13-36-22-60-29-23-7-51-11-83-11-36 0-67 5-92 15-26 10-45 24-58 40-14 16-22 37-27 62-4 18-5 43-5 77v106c0 41-2 64-6 69-4 8-20 12-46 13z m484-462c0-3-1-4-3-6s-4-2-7-2h-480c-2 0-5 1-7 2s-3 3-3 6v14c0 2 1 4 3 6s5 2 7 2h480c3 0 5-1 7-2s3-4 3-6v-14z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-paragraph" unicode="" d="M437 328c-92 0-165 53-165 145s73 147 165 147h250l0 0c23 0 41-19 41-42l0 0 0 0c0-23-18-41-41-41h-42v-415l0 0c0-23-19-42-42-42l0 0 0 0c-23 0-41 19-41 42v415h-42v-415l0 0c0-23-19-42-42-42l0 0 0 0c-23 0-41 19-41 42v206z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h1" unicode="" d="M673 142c-10 0-24 0-44 1s-34 1-43 1c-10 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 1 12 5 15s8 5 13 6 10 1 16 2 12 3 15 5c7 4 11 19 11 45l-1 127c0 5 0 8 0 10-3 1-8 2-16 2h-219c-9 0-14-1-17-2-1-2-1-5-1-10l0-120c0-31 4-49 12-54 3-2 9-4 16-4s13-1 19-1 10-2 14-5 7-8 7-15c0-6-1-11-4-16s-7-6-12-6c-10 0-26 0-46 1s-35 1-45 1c-9 0-23 0-41-1s-32-1-42-1c-5 0-8 2-11 6s-4 10-4 15c0 7 1 11 5 15s7 5 11 5 10 2 16 3 10 3 13 5c7 5 11 20 11 47l0 18v264c0 1 0 4 0 9s0 9 0 12-1 7-1 12 0 10-1 14-1 8-2 12-2 8-4 11-3 4-5 5c-3 3-8 4-14 4s-12 1-17 1-10 2-14 5-6 8-6 14c0 6 2 11 4 16s7 7 12 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s32 1 41 1c6 0 10-3 12-7s5-10 5-16c0-7-2-11-6-14s-8-5-12-5-10-1-17-1-10-2-14-4c-7-5-11-22-11-52l0-105c0-4 0-8 1-10 3-1 7-1 12-1h228c5 0 9 1 12 1 1 2 1 6 1 10l0 105c0 30-4 47-11 52-4 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s33-1 43-1c9 0 23 0 42 1s32 1 42 1c5 0 10-2 12-7s4-10 4-16c0-6-2-11-6-14s-8-5-12-5-11 0-17 0-11-2-14-5c-8-5-12-22-12-52l1-307c0-26 4-41 11-46 3-2 8-3 15-4s13-1 18-2 9-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m40 244l-18 30 114 84h31v-276c0-5 0-9 0-14s0-8-1-12 0-8 0-11-1-6-1-8l37 2v-39h-143v33c5 0 10 1 15 2 4 1 8 2 11 5s5 7 7 13 3 14 3 24v200l-55-33z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h2" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m152 322c-9 0-17-2-24-6s-13-9-16-15c3-3 6-8 7-13s2-9 2-12c0-3 0-7-2-11s-3-7-5-10c-3-4-7-6-11-8s-9-4-16-4c-5 0-9 2-13 4s-7 4-10 8c-3 3-5 7-7 11s-2 10-2 14c0 5 2 11 4 16s5 12 9 18 9 11 16 17c6 5 13 10 21 14s17 7 27 10 21 3 32 3c14 0 27-1 40-5s26-8 37-16 19-17 26-29 10-27 10-44c0-8-2-17-5-26s-9-20-17-31-19-24-33-38-33-30-56-48c-9-8-17-15-24-22s-12-13-16-20-8-11-11-16-4-9-4-12l98-3h3c5 0 10 1 14 2s8 2 11 5 5 6 7 10 2 9 2 16h32l-4-81h-219c0 17 2 32 7 46s10 26 17 37 16 21 25 31 19 18 29 27c12 12 22 22 31 32s15 20 20 30c6 9 10 18 12 27s4 18 4 27c0 8-1 16-2 24s-4 15-8 21-8 11-14 15c-7 3-14 5-24 5z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h3" unicode="" d="M631 142c-10 0-24 0-43 1-20 1-34 1-44 1-9 0-24 0-43-1-19-1-33-1-43-1-5 0-9 2-12 6-3 5-4 10-4 15 0 7 2 12 6 15 3 4 7 5 12 6 5 0 10 1 17 2 6 1 11 3 14 5 7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4 7-1 14-1 19-1 5 0 10-2 15-5 4-4 6-8 6-15 0-6-1-11-4-16-3-5-7-7-12-7-10 0-25 0-45 1-20 1-35 1-45 1-10 0-24 0-42-1-18-1-32-1-41-1-5 0-9 2-12 7-3 4-4 9-4 14 0 7 2 11 5 15 3 3 7 5 12 6 4 0 9 1 15 2 6 1 10 3 14 5 7 5 11 20 11 47l-1 18v265c0 1 0 4 0 9 0 5 0 9 0 12 0 3 0 7 0 12-1 6-1 10-2 14 0 4-1 8-2 12 0 4-2 8-3 11-2 2-4 4-5 5-4 3-9 4-15 4-7 1-12 1-17 1-5 0-10 2-13 5-4 3-6 8-6 14 0 6 1 11 4 16 2 5 6 7 11 7 10 0 25 0 45-1 20-1 35-1 45-1 9 0 23 0 41 1 19 1 33 1 42 1 5 0 9-2 12-7 3-5 4-10 4-16 0-6-2-11-5-14-4-3-8-5-13-5-5 0-10 0-16-1-6-1-11-2-14-4-8-5-12-22-12-52l1-104c0-5 0-8 0-11 3 0 7 0 13 0h227c6 0 10 0 13 0 0 3 0 6 0 11l1 104c0 30-4 47-12 52-3 3-10 4-19 4s-16 2-22 4c-5 3-8 8-8 17 0 5 1 10 4 15 3 5 7 8 12 8 10 0 24-1 43-2 19-1 34-1 43-1 9 0 24 0 42 1 19 1 33 2 42 2 6 0 10-3 12-8 3-4 5-10 5-15 0-7-2-12-6-15-4-2-9-4-13-4-5 0-11-1-17-1-6 0-11-2-14-4-7-5-11-23-11-53l0-307c0-26 4-41 11-45 4-2 9-4 15-5 7-1 13-1 18-1 5-1 10-2 13-5 4-4 6-8 6-15 0-6-1-11-4-16-3-5-7-7-12-7z m53 61c0 5 1 10 3 15 1 5 4 9 7 12 3 3 6 6 11 8 4 2 9 3 14 3 6 0 11-1 15-3 4-2 7-5 9-8s5-7 6-10c1-4 1-8 1-11 0-3 0-7-1-11-1-5-4-9-6-12 2-3 4-6 7-8 3-3 7-5 11-7 4-1 8-3 13-3 4-1 9-2 14-2 10 0 20 2 27 5 8 4 15 8 20 14 5 6 9 13 12 21s4 17 4 26c0 9-1 18-3 26-2 9-6 17-12 24-6 7-13 12-23 16-10 5-21 7-36 7-1 0-3 0-5 0-2 0-4 0-7 0-3 0-5-1-8-1-2 0-4 0-6 0v36c2-1 4-1 5-1 1 0 2 0 4 0 24 0 43 5 56 16 13 12 20 28 20 49 0 9-1 16-3 23-1 7-4 13-8 18-4 5-9 8-15 11s-12 4-21 4c-4 0-9 0-13-1s-8-3-11-5-6-4-9-6c-3-3-5-5-6-8 3-4 5-8 6-13 1-4 2-9 2-12 0-3-1-7-2-10s-3-7-6-10c-2-4-6-6-10-9-5-2-10-3-16-3-6 0-10 1-14 3s-7 5-10 8c-2 4-5 7-6 12-1 4-2 9-2 14 0 7 2 15 6 24 5 9 11 17 20 25 9 8 20 14 33 19 13 5 28 8 46 8 15 0 30-1 43-4 14-3 26-9 36-16s18-16 24-27c5-11 8-25 8-41 0-7-1-14-4-22-2-8-7-16-13-23-6-8-13-14-23-20s-21-11-35-14v-1c16-3 30-7 42-13 11-6 21-13 29-21 7-9 13-18 17-27 4-10 5-20 5-31 0-17-3-32-10-46s-16-24-28-33c-12-9-25-16-42-20s-34-7-54-7c-19 0-35 2-49 6s-25 10-33 17-16 15-20 24c-4 9-6 18-6 26z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h4" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m244 90v-8c0-5 0-9 0-14s0-8-1-12 0-8 0-11-1-6-1-8l37 2v-39h-142v33c5 0 10 1 15 2s8 2 11 5 5 7 7 13 2 14 2 24v14h-130v46l172 221h30v-222h49v-46h-49z m-156 47h84v110l-84-110z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h5" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m118 46c1-3 4-6 6-8s7-4 10-6 8-3 12-4 8-1 11-1c10 0 19 2 26 6s12 10 17 17 7 14 9 22 3 17 3 26c0 5 0 11 0 17s-1 12-3 18c-1 7-3 13-5 19s-7 12-11 16-10 9-16 12-15 5-25 5c-7 0-16-2-26-4s-22-8-34-15l-21 17-2 167h130c6 0 11 0 15 1s9 2 13 5 5 5 7 10 3 10 3 16h31l-4-81-157-3v-89c4 2 8 4 13 5s10 3 16 4 11 2 16 2 11 1 16 1c21 0 39-3 54-9s27-14 37-25 18-22 23-36 7-28 7-42c0-19-3-36-10-51s-17-27-30-37-25-17-41-22-31-7-47-7c-17 0-32 2-44 6s-24 10-33 16-15 14-20 22-7 16-7 24c0 5 1 10 3 15s4 8 7 12 7 6 11 9 9 3 14 3c6 0 11-1 15-3s7-5 10-8 4-7 5-11 2-7 2-11c0-3 0-6-1-10s-3-7-5-10z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-h6" unicode="" d="M631 142c-10 0-24 0-43 1s-34 1-44 1c-9 0-24 0-43-1s-33-1-43-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 12 6 15s7 5 12 6 10 1 17 2 11 3 14 5c7 4 11 19 11 45l0 127c0 5 0 8-1 10-3 1-8 2-16 2h-219c-8 0-14-1-17-2 0-2 0-5 0-10l-1-120c0-31 5-49 12-54 4-2 9-4 16-4s14-1 19-1 10-2 15-5 6-8 6-15c0-6-1-11-4-16s-7-6-12-6c-10 0-25 0-45 1s-35 1-45 1c-10 0-24 0-42-1s-32-1-41-1c-5 0-9 2-12 6s-4 10-4 15c0 7 2 11 5 15s7 5 12 5 9 2 15 3 10 3 14 5c7 5 11 20 11 47l-1 18v264c0 1 0 4 0 9s0 9 0 12 0 7 0 12-1 10-2 14-1 8-2 12-2 8-3 11-4 4-5 5c-4 3-9 4-15 4s-12 1-17 1-10 2-13 5-6 8-6 14c0 6 1 11 4 16s6 7 11 7c10 0 25 0 45-1s35-1 45-1c9 0 23 0 41 1s33 1 42 1c5 0 9-3 12-7s4-10 4-16c0-7-2-11-5-14s-8-5-13-5-10-1-16-1-11-2-14-4c-8-5-12-22-12-52l1-105c0-4 0-8 0-10 3-1 7-1 13-1h227c6 0 10 1 13 1 0 2 0 6 0 10l1 105c0 30-4 47-12 52-3 2-10 3-19 4s-16 1-22 4-8 8-8 16c0 6 1 11 4 16s7 7 12 7c10 0 24 0 43-1s34-1 43-1c9 0 24 0 42 1s33 1 42 1c6 0 10-2 12-7s5-10 5-16c0-6-2-11-6-14s-9-5-13-5-11 0-17 0-11-2-14-5c-7-5-11-22-11-52l0-307c0-26 4-41 11-46 4-2 9-3 15-4s13-1 18-2 10-2 13-5 6-8 6-14c0-6-1-11-4-16s-7-7-12-7z m164 183c-5 0-10-1-15-3-5-2-10-4-14-7-5-3-8-7-12-10-3-5-6-9-8-13 0-8 0-17 1-26s1-18 3-27 4-18 6-26 6-16 10-23c4-7 8-12 13-16 5-4 11-6 18-6 8 0 16 2 21 6 6 4 11 9 14 16 3 6 6 13 7 21s2 17 2 25c0 5 0 11 0 17s-1 13-2 20-3 12-5 19c-2 6-4 11-8 16s-7 9-12 12c-6 3-11 5-19 5z m106 108c0-5-1-9-2-13s-3-9-6-12c-3-3-6-6-10-8-4-2-8-3-14-3-6 0-11 1-16 3-4 2-7 5-10 8-3 3-5 7-5 10s-2 7-2 11c0 3 0 6 2 10s2 8 5 11c-3 4-7 8-12 10-5 3-12 5-19 5-9 0-16-2-23-6-6-4-12-9-17-15-5-6-9-14-12-23-4-8-7-17-9-27s-3-19-4-29-2-20-2-29c3 4 7 7 11 10 5 4 11 7 17 9 6 3 13 5 20 7 6 2 13 3 20 3 17 0 32-3 45-9s24-14 32-24c8-10 15-22 19-37 4-14 6-29 6-46 0-16-3-31-10-44-6-15-14-27-25-37s-24-19-39-25-31-9-49-9c-22 0-41 4-56 11s-28 20-37 34-16 33-21 54c-4 20-6 44-6 70 0 9 1 21 3 34s4 28 8 42c3 15 9 29 15 44 7 14 15 27 25 38s23 21 37 28 30 11 49 11c16 0 30-2 41-7s21-9 28-15c8-7 13-14 17-22 5-8 6-16 6-23z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-quote" unicode="" d="M482 584v-213c0-21-4-41-12-60-8-19-19-36-33-50-14-13-30-25-49-33-20-8-40-12-60-12h-20c-5 0-9 2-13 6s-6 8-6 14v39c0 5 2 9 6 13 3 4 8 6 13 6h20c21 0 39 8 54 23 15 15 23 33 23 54v10c0 8-3 15-9 20-6 6-12 9-20 9h-68c-16 0-30 5-41 17-12 11-17 25-17 41v116c0 16 5 30 17 41 11 11 25 17 41 17h116c16 0 30-6 41-17 12-12 17-25 17-41z m271 0v-213c0-21-4-41-12-60-8-19-19-36-33-50-14-13-30-25-50-33-19-8-39-12-60-12h-19c-5 0-9 2-14 6s-5 8-5 14v39c0 5 2 9 5 13 4 4 9 6 14 6h19c22 0 40 8 55 23 15 15 22 33 22 54v10c0 8-2 15-8 20s-12 9-20 9h-68c-16 0-30 5-41 17-11 11-17 25-17 41v116c0 16 6 30 17 41s25 17 41 17h116c17 0 30-6 42-17 11-12 16-25 16-41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="editor-code" unicode="" d="M770 139c-8 0-17 3-24 9-13 13-14 35-1 49l141 149-139 137c-13 14-14 35 0 49 13 13 35 14 48 1l163-162c14-13 14-35 1-48l-164-173c-7-8-16-11-25-11z m-356-126l274 615c8 17 0 37-18 45-17 8-37 0-45-18l-274-614c-8-18 0-38 18-46 4-2 9-3 14-3 13 0 25 8 31 21z m-143 135c14 13 14 35 2 49l-142 148 139 138c14 14 14 35 1 49-13 13-35 14-49 1l-163-162c-13-13-14-35-1-48l165-173c7-7 16-11 25-11 8 0 17 3 23 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="elementor" unicode="" d="M0 850h200v-1000h-200v1000z m400-800h600v-200h-600v200z m0 400h600v-200h-600v200z m0 400h600v-200h-600v200z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="elementor-circle" unicode="" d="M500 850c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m-125-708h-83v416h83z m333 0h-250v83h250z m0 166h-250v84h250z m0 167h-250v83h250z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pojome" unicode="" d="M500-150a474 474 0 0 0-188 37l-12 6v272l32-22a407 407 0 0 1 80-44 292 292 0 0 1 191 6 286 286 0 0 1 87 59 299 299 0 0 1 58 83 292 292 0 0 1 19 105 284 284 0 0 1-19 103 298 298 0 0 1-58 83 229 229 0 0 1-87 58h0a210 210 0 0 1-103 21 214 214 0 0 1-103-20 231 231 0 0 1-87-58 256 256 0 0 1-54-83 251 251 0 0 1-22-103v-429l-34 26a559 559 0 0 0-53 46 484 484 0 0 0-147 354 487 487 0 0 0 147 356 489 489 0 0 0 353 144 488 488 0 0 0 353-144 487 487 0 0 0 147-356 484 484 0 0 0-147-353 484 484 0 0 0-353-147z m-159 71a435 435 0 0 1 159-29 443 443 0 0 1 324 134 444 444 0 0 1 134 324 447 447 0 0 1-134 327 448 448 0 0 1-324 130 448 448 0 0 1-324-130 447 447 0 0 1-134-327 444 444 0 0 1 135-324l15-15v342a292 292 0 0 0 25 119 295 295 0 0 0 66 95 268 268 0 0 0 100 68 252 252 0 0 0 117 23 251 251 0 0 0 118-22 270 270 0 0 0 99-69 340 340 0 0 0 67-95 325 325 0 0 0 23-119 333 333 0 0 0-23-122 341 341 0 0 0-67-98 328 328 0 0 0-99-68 330 330 0 0 0-221-7 462 462 0 0 0-56 31v-167z m159 232a222 222 0 0 0-76 13 214 214 0 0 0-64 43 287 287 0 0 0-44 62 194 194 0 0 0-17 82 187 187 0 0 0 17 77 210 210 0 0 0 106 106 223 223 0 0 0 154 0 215 215 0 0 0 64-43 159 159 0 0 0 44-65 184 184 0 0 0 16-76 194 194 0 0 0-17-80 190 190 0 0 0-44-63 212 212 0 0 0-63-44 222 222 0 0 0-76-12z m0 356a180 180 0 0 1-62-11 168 168 0 0 1-84-87 145 145 0 0 1-13-60 152 152 0 0 1 13-63 243 243 0 0 1 36-52 171 171 0 0 1 50-34 188 188 0 0 1 122 0 170 170 0 0 1 49 34 151 151 0 0 1 35 50 154 154 0 0 1 13 64 145 145 0 0 1-13 60 119 119 0 0 1-34 50 174 174 0 0 1-52 36 180 180 0 0 1-60 13z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus" unicode="" d="M454 704c-12-12-16-25-16-41v-246h-250c-42 0-63-21-63-63s21-62 63-62h250v-246c0-17 4-33 16-46 13-13 29-17 46-17 17 0 33 4 42 17 12 13 21 25 21 46v246h245c42 0 63 21 63 62s-21 63-63 63h-245v246c0 16-5 29-21 41-13 13-25 17-42 17-17 0-33-4-46-17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="menu-bar" unicode="" d="M104 517h792c33 0 62 29 62 62s-29 63-62 63h-792c-33 0-62-29-62-63s29-62 62-62z m0-250h792c33 0 62 29 62 62s-29 63-62 63h-792c-33 0-62-29-62-63s29-62 62-62z m0-250h792c33 0 62 29 62 62s-29 63-62 63h-792c-33 0-62-29-62-63s29-62 62-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="apps" unicode="" d="M167 517h166v166h-166v-166z m250-500h166v166h-166v-166z m-250 0h166v166h-166v-166z m0 250h166v166h-166v-166z m250 0h166v166h-166v-166z m250 416v-166h166v166h-166z m-250-166h166v166h-166v-166z m250-250h166v166h-166v-166z m0-250h166v166h-166v-166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="accordion" unicode="" d="M938 600h-875c-35 0-63-28-63-62v-375c0-35 28-63 63-63h875c34 0 62 28 62 63v375c0 34-28 62-62 62z m20-437c0-12-9-21-20-21h-875c-12 0-21 9-21 21v375c0 11 9 20 21 20h875c11 0 20-9 20-20v-375z m-854 520h792c11 0 21 10 21 21s-10 21-21 21h-792c-11 0-21-9-21-21s10-21 21-21z m0 125h792c11 0 21 10 21 21s-10 21-21 21h-792c-11 0-21-9-21-21s10-21 21-21z m792-916h-792c-11 0-21-10-21-21s10-21 21-21h792c11 0 21 9 21 21s-10 21-21 21z m0 125h-792c-11 0-21-10-21-21s10-21 21-21h792c11 0 21 9 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="alert" unicode="" d="M500 829c-264 0-479-215-479-479s215-479 479-479 479 215 479 479-215 479-479 479z m0-917c-241 0-437 197-437 438s196 438 437 438 438-197 438-438-197-438-438-438z m0 542c-34 0-62-28-62-62v-250c0-35 28-63 62-63s63 28 63 63v250c0 34-28 62-63 62z m21-312c0-12-9-21-21-21s-21 9-21 21v250c0 11 10 21 21 21s21-10 21-21v-250z m-21 479c-34 0-62-28-62-63s28-62 62-62 63 28 63 62-28 63-63 63z m0-83c-11 0-21 9-21 20s10 21 21 21 21-9 21-21-9-20-21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="animation-text" unicode="" d="M165 545c-6 16-33 16-39 0l-125-333c-4-11 2-23 13-27 10-4 22 1 26 12l42 112c1 0 1-1 1-1h125c1 0 1 1 1 1l42-112c4-8 11-14 20-14 2 0 5 1 7 2 11 4 16 16 12 27l-125 333z m-67-195l48 128 48-128h-96z m590 83c34 0 62-28 62-62 0-12 9-21 21-21s21 9 21 21c0 57-47 104-104 104s-105-47-105-104v-83c0-58 47-105 105-105s104 47 104 105c0 11-10 20-21 20s-21-9-21-20c0-35-28-63-62-63s-63 28-63 63v83c0 34 28 62 63 62z m-250 42c-24 0-45-8-63-21v84c0 11-9 20-21 20s-21-9-21-20v-167-21-42-20-84c0-11 10-21 21-21s21 10 21 21v1c18-13 39-22 63-22 57 0 104 47 104 105v83c0 57-47 104-104 104z m62-187c0-35-28-63-62-63s-63 28-63 63v20 42 21c0 34 28 62 63 62s62-28 62-62v-83z m497-239c-1 2-27 41-80 49v210h21c11 0 20 10 20 21s-9 21-20 21h-21v252c53 9 79 48 80 49 6 10 3 23-7 29-9 6-22 3-28-6-1-2-22-32-66-32s-65 30-66 32c-6 9-19 12-28 6-10-6-13-19-7-28 1-2 26-41 80-50v-252h-21c-11 0-21-9-21-21s10-21 21-21h21v-210c-54-8-79-48-80-49-6-10-3-23 6-29 10-6 23-3 29 6 1 2 22 32 66 32s65-30 66-31c4-7 10-10 17-10 4 0 8 1 11 3 10 6 13 19 7 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="animation" unicode="" d="M973 365l-208 208c-2 2-4 4-7 5-1 0-2 0-3 0-2 1-3 1-5 1-1 0-2 0-3 0-2-1-3-1-5-1-2-1-5-3-7-5l0 0-208-208c-8-8-8-22 0-30l208-208c1-1 2-1 3-2 1-1 2-2 4-2 3-2 5-2 8-2s5 0 8 2c2 0 4 2 6 4 0 0 1 0 1 0l208 208c8 8 8 22 0 30z m-339-77l95 95v-66l-62-62-33 33z m95-30v-66l-33 33 33 33z m0 250v-66l-125-125-33 33 158 158z m42-316v316l158-158-158-158z m-423 298c-8 8-21 8-29 0l-125-125c-8-8-8-22 0-30l125-125c4-4 9-6 14-6 6 0 11 2 15 6 8 8 8 22 0 30l-110 110 110 110c8 8 8 22 0 30z m57-140l151 152c9 8 9 21 0 29s-21 9-29 0l-167-166c-8-8-8-22 0-30l167-166c4-4 9-6 15-6s10 2 14 6c9 8 9 21 0 29l-151 152z m-265 98c-8 8-22 8-30 0l-83-83c-8-8-8-22 0-30l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 69c8 8 8 21 0 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="banner" unicode="" d="M999 378c-2 6-7 11-13 13l-113 37 22 105c2 6 1 11-3 16-3 5-7 8-13 9-9 2-220 42-379 42s-370-40-379-42c-5-1-10-4-13-9s-4-10-3-16l22-105-113-37c-6-2-10-7-13-13-2-6-1-12 2-18l59-98-20-138c-1-7 2-15 7-19 4-3 9-5 14-5 2 0 4 0 7 1 1 1 169 62 243 62 6 0 12 3 16 8 4 5 5 11 4 18l-16 62c54 8 118 16 183 16 65 0 129-8 183-16l-16-63c-1-6 0-12 4-17s10-8 17-8c73 0 241-61 242-62 3-1 5-1 8-1 4 0 9 2 13 5 5 4 8 12 7 19l-20 138 59 98c3 6 4 12 2 18z m-713-175c-62-7-151-35-198-51l16 112c1 5 0 9-3 14l-49 81 84 28 31-145c1-6 5-11 10-14 3-2 7-3 11-3 1 0 3 0 5 1 1 0 33 9 83 18l10-41z m214 105c-125 0-248-25-297-37l-53 250c58 10 223 37 350 37 127 0 292-27 350-37l-53-250c-49 12-172 37-297 37z m399-31c-3-4-4-8-3-13l16-112c-47 16-136 44-198 51l10 41c50-9 82-18 83-18 6-2 12-1 16 2 5 3 9 8 10 14l31 145 84-28-49-82z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="blockquote" unicode="" d="M396 683h-292c-34 0-62-28-62-62v-292c0-34 28-62 62-62h104v-69c0-40-22-75-57-93l-98-49c-8-4-13-14-11-23 2-10 11-16 21-16h141c99 0 186 63 217 156 25 74 37 150 37 228v220c0 34-28 62-62 62z m21-282c0-73-12-145-35-214-26-77-97-129-178-129h-53l18 10c50 25 81 75 81 130v90c0 11-9 20-21 20h-125c-11 0-21 10-21 21v292c0 11 10 21 21 21h292c11 0 21-10 21-21 0 0 0-220 0-220z m479 282h-292c-34 0-62-28-62-62v-292c0-34 28-62 62-62h104v-69c0-40-22-75-57-93l-98-49c-8-4-13-14-11-23 2-10 11-16 21-16h141c99 0 186 63 217 156 25 74 37 150 37 228v220c0 34-28 62-62 62z m21-282c0-73-12-145-35-214-26-77-97-129-178-129h-53l18 10c50 25 81 75 81 130v90c0 11-9 20-21 20h-125c-11 0-21 10-21 21v292c0 11 10 21 21 21h292c11 0 21-10 21-21v-220z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="button" unicode="" d="M451 470c-6 5-15 7-22 3-8-3-12-11-12-19v-375c0-8 5-16 13-19 7-3 16-1 22 4l63 63 71-141c2-5 7-9 12-10 2-1 4-1 6-1 4 0 8 1 11 3l93 54c5 3 8 8 10 13 1 6 0 11-3 16l-74 122h88c9 0 17 6 20 14 3 8 0 17-6 23l-292 250z m153-245c-7 0-14-4-18-11-4-6-4-14 0-21l83-135-56-33-73 147c-3 6-9 10-16 11-1 0-2 0-3 0-6 0-11-2-15-6l-48-47v279l215-184c0 0-69 0-69 0z m292 500h-792c-57 0-104-47-104-104v-250c0-58 47-104 104-104h250c12 0 21 9 21 21s-9 20-21 20h-250c-34 0-62 28-62 63v250c0 34 28 62 62 62h792c34 0 62-28 62-62v-250c0-35-28-63-62-63h-146c-11 0-21-9-21-20s10-21 21-21h146c57 0 104 46 104 104v250c0 57-47 104-104 104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="call-to-action" unicode="" d="M938 621h-875c-35 0-63-28-63-63v-416c0-35 28-63 63-63h875c34 0 62 28 62 63v416c0 35-28 63-62 63z m20-479c0-12-9-21-20-21h-875c-12 0-21 9-21 21v416c0 12 9 21 21 21h875c11 0 20-9 20-21v-416z m-229 354c-80 0-146-66-146-146s66-146 146-146 146 66 146 146-65 146-146 146z m0-250c-57 0-104 47-104 104s47 104 104 104 104-47 104-104-46-104-104-104z m-250 0h-333c-12 0-21-9-21-21s9-21 21-21h333c12 0 21 10 21 21s-9 21-21 21z m0 125h-333c-12 0-21-9-21-21s9-21 21-21h333c12 0 21 10 21 21s-9 21-21 21z m0 125h-333c-12 0-21-9-21-21s9-21 21-21h333c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="captcha" unicode="" d="M104 246c-11 0-21-9-21-21s-9-21-20-21-21 10-21 21v83c0 12 9 21 21 21s20-9 20-21 10-20 21-20 21 9 21 20c0 35-28 63-62 63s-63-28-63-63v-83c0-34 28-62 63-62s62 28 62 62c0 12-9 21-21 21z m417 104c11 0 21-9 21-21s9-21 21-21 20 10 20 21c0 35-28 63-62 63s-63-28-63-63v-83c0-35 28-63 63-63s62 28 62 63c0 11-9 21-20 21s-21-10-21-21-10-21-21-21-21 9-21 21v83c0 12 9 21 21 21z m478-159l-63 166c-6 17-33 17-39 0l-62-166c-4-11 1-23 12-27 11-4 23 1 27 12l10 28h65l11-28c3-8 11-13 19-13 3 0 5 0 8 1 10 4 16 16 12 27z m-99 55l17 45 17-45h-34z m-672 28c-6 16-33 16-39 0l-63-167c-4-10 2-22 13-26 10-4 22 1 26 12l11 28h65l10-28c4-9 11-14 20-14 2 0 5 1 7 2 11 4 16 16 12 26l-62 167z m-36-111l16 44 17-44h-33z m162 291h-41c-12 0-21-9-21-21v-166c0-12 9-21 21-21s20 9 20 21v62h21c35 0 63 28 63 63s-28 62-63 62z m0-83h-21v42h21c12 0 21-10 21-21s-9-21-21-21z m417-83c-12 0-21-10-21-21v-63h-83v63c0 11-10 21-21 21s-21-10-21-21v-167c0-11 9-21 21-21s21 10 21 21v63h83v-63c0-11 9-21 21-21s21 10 21 21v167c0 11-10 21-21 21z m-313 145c0-11 10-20 21-20s21 9 21 20v146h42c11 0 21 10 21 21s-10 21-21 21h-125c-12 0-21-9-21-21s9-21 21-21h41v-146z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="carousel" unicode="" d="M98 406c-8 9-21 9-29 0l-42-41c-8-8-8-22 0-30l42-41c4-4 9-6 14-6s11 2 15 6c8 8 8 21 0 29l-27 27 27 27c8 8 8 21 0 29z m875-41l-42 41c-8 9-21 9-29 0s-8-21 0-29l27-27-27-27c-8-8-8-21 0-29 4-4 9-6 15-6s10 2 14 6l42 41c8 8 8 22 0 30z m-640 68h-166c-12 0-21-9-21-20v-125c0-12 9-21 21-21h166c12 0 21 9 21 21v125c0 11-9 20-21 20z m-20-125h-125v84h125v-84z m270 125h-166c-12 0-21-9-21-20v-125c0-12 9-21 21-21h166c12 0 21 9 21 21v125c0 11-9 20-21 20z m-20-125h-125v84h125v-84z m270 125h-166c-12 0-21-9-21-20v-125c0-12 9-21 21-21h166c12 0 21 9 21 21v125c0 11-9 20-21 20z m-20-125h-125v84h125v-84z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="checkbox" unicode="" d="M229 142h-166c-35 0-63-28-63-63v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 35-28 63-63 63z m21-230c0-11-9-20-21-20h-166c-12 0-21 9-21 20v167c0 12 9 21 21 21h166c12 0 21-9 21-21v-167z m146 730h583c12 0 21 9 21 21s-9 20-21 20h-583c-12 0-21-9-21-20s9-21 21-21z m583-292h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m0-333h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-684 824l-30-44c-10 7-23 11-36 11h-166c-35 0-63-28-63-62v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 5-1 10-2 14l40 57c6 10 4 23-6 29-9 7-22 5-29-5z m-45-262c0-11-9-21-21-21h-166c-12 0-21 10-21 21v167c0 11 9 21 21 21h166c5 0 8-2 12-4l-77-110-45 45c-8 8-21 8-30 0s-8-21 0-29l63-63c4-4 9-6 15-6 0 0 1 0 2 0 6 1 11 4 15 9l66 95v-125z m45-71l-30-44c-10 7-23 11-36 11h-166c-35 0-63-28-63-62v-167c0-35 28-63 63-63h166c35 0 63 28 63 63v167c0 5-1 9-2 14l40 57c6 9 4 22-6 29-9 7-22 4-29-5z m-45-262c0-12-9-21-21-21h-166c-12 0-21 9-21 21v167c0 11 9 20 21 20h166c5 0 8-1 12-3l-77-110-45 45c-8 8-21 8-30 0s-8-22 0-30l63-62c4-4 9-6 15-6 0 0 1 0 2 0 6 0 11 4 15 9l66 94v-124z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="columns" unicode="" d="M438 683h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m0-125h-417c-12 0-21-9-21-20s9-21 21-21h417c11 0 20 9 20 21s-9 20-20 20z m-125-125h-292c-12 0-21-9-21-20s9-21 21-21h292c11 0 20 9 20 21s-9 20-20 20z m250 584h416c12 0 21 9 21 21s-9 20-21 20h-416c-12 0-21-9-21-20s9-21 21-21z m416-84h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0-125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0-125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0-125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m-125-125h-291c-12 0-21-9-21-20s9-21 21-21h291c12 0 21 9 21 21s-9 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="countdown" unicode="" d="M779 624l50 68c7 9 5 22-4 29-9 7-22 5-29-4l-50-68c-54 37-116 61-183 71v88h20c12 0 21 10 21 21s-9 21-21 21h-41-84-41c-12 0-21-9-21-21s9-21 21-21h21v-88c-67-10-130-34-183-70l-51 67c-7 9-20 11-29 4s-11-20-4-29l50-68c-97-80-158-201-158-336 0-242 196-438 437-438s438 196 438 438c0 135-62 256-159 336z m-300 184h42v-84c-7 0-14 1-21 1s-14-1-21-1v84z m21-916c-218 0-396 177-396 396s178 395 396 395 396-177 396-395-178-396-396-396z m0 750c-11 0-21-10-21-21v-333c0-12 10-21 21-21h333c12 0 21 9 21 21 0 195-159 354-354 354z m21-334v291c156-10 281-135 291-291h-291z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="counter" unicode="" d="M994 584l-125 125 0 0c-2 1-4 3-7 4-1 1-3 1-4 1-2 0-3 1-4 1-1 0-3-1-4-1-1-1-3-1-4-1-2-1-5-3-7-5l-124-124c-9-9-9-22 0-30s21-8 29 0l89 89v-637c0-11 10-21 21-21s21 10 21 21v637l89-89c5-4 10-6 15-6s11 2 15 6c8 8 8 21 0 30z m-884-79c-8 3-18 0-23-8l-83-125c-7-10-4-22 5-29 10-6 23-4 29 6l45 68v-265c0-11 10-21 21-21s21 10 21 21v333c0 10-6 18-15 20z m203 1c-58 0-105-46-105-104 0-11 10-21 21-21s21 10 21 21c0 35 28 63 63 63s62-28 62-63v-12c0-14-5-28-14-39l-148-186c-5-6-6-15-3-22 4-7 11-12 19-12h167c11 0 21 10 21 21s-10 21-21 21h-123l121 152c15 18 23 41 23 65v12c0 58-47 104-104 104z m395-104c0 58-46 104-104 104s-104-46-104-104c0-11 9-21 21-21s21 10 21 21c0 35 28 63 62 63s63-28 63-63-28-62-63-62c-11 0-21-10-21-21s10-21 21-21c35 0 63-28 63-63s-28-62-63-62-62 28-62 62c0 12-10 21-21 21s-21-9-21-21c0-57 47-104 104-104s104 47 104 104c0 35-16 65-41 84 25 19 41 49 41 83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="date" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-555 436c-11 4-23-1-27-12l-125-333c-4-11 2-23 13-27 2-1 4-1 7-1 8 0 16 5 19 13l125 333c4 11-1 23-12 27z m334 0c-11 4-23-1-27-12l-125-333c-4-11 1-23 12-27 2-1 5-1 7-1 9 0 17 5 20 13l125 333c4 11-2 23-12 27z m-549-332h-84c-11 0-21-9-21-21 0-11 10-20 21-20h84c11 0 20 9 20 20s-9 21-20 21z m333 0h-167c-11 0-21-9-21-21 0-11 10-20 21-20h167c11 0 21 9 21 20s-10 21-21 21z m375 0h-208c-12 0-21-9-21-21 0-11 9-20 21-20h208c11 0 21 9 21 20s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="divider-shape" unicode="" d="M991 409c-9 6-22 4-29-5-15-21-62-75-103-75-40 0-88 54-103 75-8 11-26 11-34 0-15-21-62-75-103-75s-87 54-102 75c-4 5-11 9-17 9-7 0-13-4-17-9-15-21-63-75-103-75-40 0-88 54-103 75-4 5-10 9-17 9-6 0-13-4-17-9-15-21-62-75-102-75-41 0-88 54-103 75-7 9-20 11-29 5-10-7-12-20-5-29 7-10 68-92 137-92 49 0 95 43 119 70 24-27 70-70 120-70 50 0 96 43 120 71 24-28 70-71 119-71 50 0 96 43 120 71 24-28 70-71 120-71 69 0 130 82 137 92 7 9 5 22-5 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="divider" unicode="" d="M42 454h916c12 0 21 10 21 21s-9 21-21 21h-916c-12 0-21-9-21-21s9-21 21-21z m333 167h250c8 0 15 5 19 12s2 15-2 21l-125 167c-8 11-26 11-34 0l-125-167c-4-6-5-14-2-21 4-7 11-12 19-12z m125 153l83-111h-166l83 111z m125-695h-250c-8 0-15-4-19-11-3-7-2-16 2-22l125-167c4-5 11-8 17-8s13 3 17 8l125 167c4 6 5 15 2 22-4 7-11 11-19 11z m-125-152l-83 111h166l-83-111z m458 319h-916c-12 0-21-9-21-21s9-21 21-21h916c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-button" unicode="" d="M875 704h-750c-57 0-104-47-104-104v-250c0-57 47-104 104-104h292c11 0 21 9 21 21s-10 21-21 21h-292c-34 0-62 28-62 62v250c0 35 28 63 62 63h750c35 0 63-28 63-63v-250c0-34-28-62-63-62h-292c-11 0-20-10-20-21s9-21 20-21h292c57 0 104 47 104 104v250c0 57-47 104-104 104z m-265-548l-89-89v366c0 12-9 21-21 21s-21-9-21-21v-366l-89 89c-8 9-22 9-30 0s-8-21 0-29l125-125c4-4 10-6 15-6s11 2 15 6l125 125c8 8 8 21 0 29-8 9-22 9-30 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dual-button" unicode="" d="M326 470c-6 5-15 7-22 3-8-3-12-11-12-19v-375c0-8 5-16 13-19 7-3 16-1 22 4l63 63 71-141c2-5 7-9 12-10 2-1 4-1 6-1 4 0 8 1 11 3l93 54c5 3 9 8 10 13 1 6 0 11-3 16l-74 122h88c9 0 17 6 20 14 3 8 0 17-6 23l-292 250z m153-245c-7 0-14-4-18-11-4-6-4-14 0-21l83-135-56-33-73 147c-3 6-9 10-16 11-1 0-2 0-3 0-6 0-11-2-15-6l-48-47v279l215-184c0 0-69 0-69 0z m417 500h-792c-57 0-104-47-104-104v-250c0-58 47-104 104-104h125c12 0 21 9 21 21s-9 20-21 20h-125c-34 0-62 28-62 63v250c0 34 28 62 62 62h396v-104c0 0 0 0 0 0v-125c0 0 0 0 0 0v-62c0-12 9-21 21-21s21 9 21 21v54l238 237h66l-298-297c-8-9-8-22 0-30 4-4 9-6 15-6s10 2 14 6l327 327c17-3 32-12 42-25-1-1-2-1-2-2l-334-333c-7-7-7-17-3-25-1-3-3-7-3-10 0-12 10-21 21-21h271c57 0 104 47 104 104v250c0 57-47 104-104 104z m-300-42l-54-53v53h54z m-54-178v66l113 112h66l-179-178z m304-197h-66l178 179v-66l-112-113z m112 304v-66l-237-238h-66l303 304z m-53-303l52 52c-4-26-25-47-52-52z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="email-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-645 479c-127 0-230-103-230-229s103-229 230-229c59 0 116 23 159 64 8 8 8 22 0 30s-21 8-29 0c-35-34-81-52-130-52-104 0-188 84-188 187s84 188 188 188c102 0 185-83 187-185 0-1-1-2-1-3 0-23-19-42-42-42-21 0-39 17-41 39 0 1 1 2 1 3 0 57-47 104-104 104s-105-47-105-104 47-104 105-104c35 0 67 18 85 45 16-15 36-24 59-24 43 0 79 33 83 75 1 2 2 5 2 8 0 126-103 229-229 229z m0-291c-35 0-63 28-63 62s28 63 63 63c33 0 60-27 62-60 0-1-1-2-1-3 0-2 0-3 1-5-3-32-30-57-62-57z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="facebook-comments" unicode="" d="M896 725h-792c-57 0-104-47-104-104v-417c0-57 47-104 104-104h262l119-119c4-4 10-6 15-6s11 2 15 6l119 119h262c57 0 104 47 104 104v417c0 57-47 104-104 104z m62-521c0-34-28-62-62-62h-271c-5 0-11-2-15-6l-110-111-110 111c-4 4-9 6-15 6h-271c-34 0-62 28-62 62v417c0 34 28 62 62 62h792c34 0 62-28 62-62v-417z m-645 396h-42c-58 0-104-47-104-104v-21h-21c-12 0-21-9-21-21s9-21 21-21h21v-187c0-12 9-21 21-21s20 9 20 21v187h63c11 0 21 10 21 21s-10 21-21 21h-63v21c0 34 28 62 63 62h42c11 0 20 10 20 21s-9 21-20 21z m416-292h-291c-12 0-21-9-21-20s9-21 21-21h291c12 0 21 9 21 21s-9 20-21 20z m125 125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z m0 125h-416c-12 0-21-9-21-20s9-21 21-21h416c12 0 21 9 21 21s-9 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="facebook-like-box" unicode="" d="M896 850h-792c-57 0-104-47-104-104v-792c0-57 47-104 104-104h792c57 0 104 47 104 104v792c0 57-47 104-104 104z m62-896c0-34-28-62-62-62h-792c-34 0-62 28-62 62v792c0 34 28 62 62 62h792c34 0 62-28 62-62v-792z m-197 479h-156l1 20c13 27 19 56 19 85 0 30-7 61-21 88l-11 23c-11 21-32 34-56 34h-16c-34 0-63-28-63-62v-75c0-3 0-6-1-8l-75-188h-7v21c0 11-9 21-21 21h-208c-12 0-21-10-21-21v-375c0-12 9-21 21-21h208c12 0 21 9 21 21v50l53-27c3-2 6-2 10-2h300c53 0 98 40 104 92l23 209c3 29-6 59-26 81-20 22-48 34-78 34z m-428-416h-166v333h166v-333z m490 305l-23-208c-3-32-30-56-62-56h-296l-67 34v216h21c8 0 16 6 19 14l81 200c3 8 4 16 4 24v75c0 11 9 21 21 21h16c8 0 15-5 18-12l12-23c11-21 16-45 16-69s-5-48-16-70c-1-3-2-5-2-8l-2-46c-1-6 1-12 5-16s10-6 15-6h178c18 0 35-8 47-21 12-13 17-31 15-49z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="form-horizontal" unicode="" d="M21 808h958c12 0 21 10 21 21s-9 21-21 21h-958c-12 0-21-9-21-21s9-21 21-21z m958-83h-958c-12 0-21-9-21-21s9-21 21-21h958c12 0 21 10 21 21s-9 21-21 21z m0-125h-958c-12 0-21-9-21-21v-500c0-11 9-21 21-21h958c12 0 21 10 21 21v500c0 12-9 21-21 21z m-937-42h916v-345l-112-113h-804v458z m863-458l53 54v-54h-53z m-613-83h-209c-46 0-83-38-83-84s37-83 83-83h209c46 0 83 37 83 83s-37 84-83 84z m0-125h-209c-23 0-41 18-41 41s18 42 41 42h209c23 0 41-19 41-42s-18-41-41-41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="form-vertical" unicode="" d="M271 433h-250c-12 0-21-9-21-20v-125c0-12 9-21 21-21h250c11 0 21 9 21 21v125c0 11-10 20-21 20z m-21-125h-208v84h208v-84z m354 125h-250c-11 0-21-9-21-20v-125c0-12 10-21 21-21h250c12 0 21 9 21 21v125c0 11-9 20-21 20z m-21-125h-208v84h208v-84z m334 125h-167c-46 0-83-37-83-83s37-83 83-83h167c46 0 83 37 83 83s-37 83-83 83z m0-125h-167c-23 0-42 19-42 42s19 42 42 42h167c23 0 41-19 41-42s-18-42-41-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-grid" unicode="" d="M292 663h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m354 250h-250c-11 0-21-10-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-21-250h-208v208h208v-208z m354 250h-250c-11 0-20-10-20-21v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-20-250h-209v208h209v-208z m-646-84h-250c-12 0-21-9-21-21v-250c0-11 9-20 21-20h250c11 0 21 9 21 20v250c0 12-10 21-21 21z m-21-250h-208v209h208v-209z m354 250h-250c-11 0-21-9-21-21v-250c0-11 10-20 21-20h250c12 0 21 9 21 20v250c0 12-9 21-21 21z m-21-250h-208v209h208v-209z m354 250h-250c-11 0-20-9-20-21v-250c0-11 9-20 20-20h250c12 0 21 9 21 20v250c0 12-9 21-21 21z m-20-250h-209v209h209v-209z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-group" unicode="" d="M979 621h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m21-84h-208c-12 0-21-9-21-21v-208c0-11 9-21 21-21h208c12 0 21 10 21 21v208c0 12-9 21-21 21z m-21-208h-166v167h166v-167z m-270 500h-667c-12 0-21-9-21-21v-500c0-11 9-21 21-21h667c11 0 20 10 20 21v500c0 12-9 21-20 21z m-21-500h-625v458h625v-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-justified" unicode="" d="M21 517h208c12 0 21 9 21 21v208c0 11-9 21-21 21h-208c-12 0-21-10-21-21v-208c0-12 9-21 21-21z m21 208h166v-167h-166v167z m271-208h375c11 0 20 9 20 21v208c0 11-9 21-20 21h-375c-12 0-21-10-21-21v-208c0-12 9-21 21-21z m20 208h334v-167h-334v167z m646 42h-208c-12 0-21-10-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 11-9 21-21 21z m-21-209h-166v167h166v-167z m-270-83h-209c-11 0-21-9-21-21v-208c0-12 10-21 21-21h209c11 0 20 9 20 21v208c0 12-9 21-20 21z m-21-208h-167v166h167v-166z m-646-42h375c11 0 21 9 21 21v208c0 12-10 21-21 21h-375c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m21 208h333v-166h-333v166z m937 42h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m-770-84h-167c-12 0-21-9-21-20v-209c0-11 9-21 21-21h167c11 0 20 10 20 21v209c0 11-9 20-20 20z m-21-208h-125v167h125v-167z m437 208h-333c-12 0-21-9-21-20v-209c0-11 9-21 21-21h333c12 0 21 10 21 21v209c0 11-9 20-21 20z m-21-208h-291v167h291v-167z m396 208h-291c-12 0-21-9-21-20v-209c0-11 9-21 21-21h291c12 0 21 10 21 21v209c0 11-9 20-21 20z m-21-208h-250v167h250v-167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="gallery-masonry" unicode="" d="M292 746h-250c-12 0-21-9-21-21v-250c0-11 9-21 21-21h250c11 0 21 10 21 21v250c0 12-10 21-21 21z m-21-250h-208v208h208v-208z m354 250h-250c-11 0-21-9-21-21v-417c0-11 10-20 21-20h250c12 0 21 9 21 20v417c0 12-9 21-21 21z m-21-417h-208v375h208v-375z m354 417h-250c-11 0-20-9-20-21v-333c0-12 9-21 20-21h250c12 0 21 9 21 21v333c0 12-9 21-21 21z m-20-333h-209v291h209v-291z m-646 0h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m354 83h-250c-11 0-21-9-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 12-9 21-21 21z m-21-250h-208v208h208v-208z m354 333h-250c-11 0-20-9-20-21v-250c0-11 9-20 20-20h250c12 0 21 9 21 20v250c0 12-9 21-21 21z m-20-250h-209v209h209v-209z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="icon-box" unicode="" d="M854-108c13 0 21-9 21-21 0-9-8-17-17-21l-4 0h-708c-13 0-21 8-21 21 0 8 8 16 17 21l4 0h708z m0 104c13 0 21-9 21-21s-8-21-21-21h-708c-13 0-21 8-21 21s8 21 21 21h708z m-166 146c12 0 20-9 20-21s-8-21-20-21h-375c-13 0-21 8-21 21s8 21 21 21h375z m-188 708c171 0 313-142 313-312 0-171-142-313-313-313-171 0-312 142-312 313 0 170 141 312 312 312z m0-42c-150 0-271-120-271-270 0-150 121-271 271-271 150 0 271 121 271 271 0 150-121 270-271 270z m0-83c8 0 17-4 17-12l46-88 100-12c8 0 12-9 16-13 4-8 0-17-4-21l-71-71 17-100c0-8 0-16-8-20-9-5-17-5-21 0l-92 41-87-46c-9-4-17-4-21 0-9 5-9 13-9 21l17 100-75 71c-4 4-4 13-4 21 4 8 8 12 17 12l100 13 45 87c0 13 9 17 17 17z m0-67l-29-62c-4-4-8-8-17-13l-66-8 50-46c4-4 8-12 4-16l-13-67 63 33c4 4 12 4 21 0l62-33-12 67c0 8 0 12 4 16l50 46-67 8c-8 0-12 5-17 13l-33 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-before-after" unicode="" d="M229 392c58 0 104 46 104 104s-46 104-104 104-104-47-104-104 47-104 104-104z m0 166c35 0 63-28 63-62s-28-63-63-63-62 28-62 63 28 62 62 62z m750 167h-479v83h21c11 0 21 10 21 21s-10 21-21 21h-83c-12 0-21-9-21-21s9-21 21-21h20v-83h-437c-12 0-21-9-21-21v-708c0-12 9-21 21-21h437v-83h-20c-12 0-21-10-21-21s9-21 21-21h83c11 0 21 9 21 21s-10 21-21 21h-21v83h479c12 0 21 9 21 21v708c0 12-9 21-21 21z m-521-42v-285l-127-201-128 146c-4 5-11 7-18 7-6-1-12-5-16-10l-127-224v567h416z m-416-666v15l149 262 127-145c4-5 11-8 17-7 7 0 12 4 16 9l107 169v-303h-416z m916 0h-458v666h458v-666z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-box" unicode="" d="M875 829c0 12-9 21-21 21h-708c-12 0-21-9-21-21v-458c0-3 1-5 2-8 0-1 0-1 0-1 1-2 2-4 4-6 4-4 10-6 15-6l0 0h708c5 0 9 2 12 4 0 0 1 0 1 1 0 0 1 0 1 0 1 1 2 3 3 4 1 1 1 2 2 3 0 1 1 2 1 4 0 1 1 2 1 4 0 0 0 0 0 1v458z m-42-21v-377l-192 244c-3 5-9 8-15 8-7 1-12-2-16-7l-155-172-110 70c-9 5-19 4-26-3l-152-150v387h666z m-22-416h-614l139 138 111-71c9-5 20-4 27 4l150 167 187-238z m-40-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m0-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m0-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m0-125h-542c-11 0-21-10-21-21s10-21 21-21h542c11 0 21 9 21 21s-10 21-21 21z m-438 708c46 0 84 37 84 83s-38 84-84 84-83-38-83-84 37-83 83-83z m0 125c23 0 42-19 42-42s-19-41-42-41-41 18-41 41 18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-hotspot" unicode="" d="M229 308c58 0 104 47 104 105s-46 104-104 104-104-47-104-104 47-105 104-105z m0 167c35 0 63-28 63-62s-28-63-63-63-62 28-62 63 28 62 62 62z m750 167h-147c1 7 1 14 1 21 0 80-65 145-145 145s-146-65-146-145c0-7 0-14 1-21h-522c-12 0-21-10-21-21v-709c0-11 9-20 21-20h958c12 0 21 9 21 20v709c0 11-9 21-21 21z m-291 125c57 0 104-47 104-104 0-75-71-199-104-253-34 54-105 178-105 253 0 57 47 104 105 104z m-136-167c29-106 114-234 118-241 4-5 11-9 18-9s13 4 17 9c4 7 89 135 118 241h135v-547l-171 206c-8 10-24 10-32 0l-85-102-131 224c-4 7-10 11-18 11-6-1-14-4-18-10l-172-268-128 146c-4 5-11 7-18 7-6-1-12-5-16-11l-127-223v567h510z m-510-667v16l149 261 127-145c4-4 10-7 17-7 6 1 12 4 16 10l169 263 129-221c3-6 9-9 16-10 7 0 13 2 18 8l88 105 187-225v-55h-916z m708 730c0 34-28 62-62 62s-63-28-63-62 28-63 63-63 62 28 62 63z m-83 0c0 11 9 20 21 20s20-9 20-20-9-21-20-21-21 9-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-rollover" unicode="" d="M125 621c0-58 47-104 104-104s104 46 104 104-46 104-104 104-104-47-104-104z m167 0c0-35-28-63-63-63s-62 28-62 63 28 62 62 62 63-28 63-62z m687 229h-958c-12 0-21-9-21-21v-708c0-12 9-21 21-21h458c12 0 21 9 21 21s-9 21-21 21h-437v15l149 262 127-145c4-5 11-8 17-7 7 0 13 4 16 10l104 166c6 10 3 23-6 29-10 6-23 3-29-7l-89-143-128 146c-4 5-11 8-18 7-6-1-12-5-16-10l-127-224v567h916v-562c0-12 10-21 21-21s21 9 21 21v583c0 12-9 21-21 21z m-402-298c-6 6-15 8-22 5-8-3-13-11-13-19v-578c0-7 4-15 11-18 8-4 16-3 22 2l106 83 92-166c4-7 11-11 19-11 3 0 6 1 9 2l125 63c5 2 9 7 11 12 1 6 1 11-2 16l-87 157h131c9 0 16 5 19 13 4 8 2 17-4 23l-417 416z m236-410c-8 0-15-4-18-11-4-6-4-14-1-20l94-169-88-44-94 170c-3 6-8 10-14 11-2 0-3 0-4 0-5 0-10-1-13-4l-92-72v484l346-345h-116z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info-box" unicode="" d="M854 850h-708c-12 0-21-9-21-21v-458c0 0 0 0 0 0v-500c0-12 9-21 21-21h708c12 0 21 9 21 21v958c0 12-9 21-21 21z m-21-42v-377l-192 244c-3 5-9 8-15 8-6 1-12-2-16-7l-155-172-110 70c-9 5-19 4-26-3l-152-150v387h666z m-22-416h-614l139 138 111-71c9-5 20-4 27 4l150 167 187-238z m-644-500v458h666v-458h-666z m562 375h-458c-12 0-21-10-21-21s9-21 21-21h458c12 0 21 9 21 21s-9 21-21 21z m-83-167h-292c-11 0-21-9-21-21v-83c0-12 10-21 21-21h292c11 0 21 9 21 21v83c0 12-10 21-21 21z m-21-83h-250v41h250v-41z m-292 583c46 0 84 37 84 83s-38 84-84 84-83-38-83-84 37-83 83-83z m0 125c23 0 42-19 42-42s-19-41-42-41-41 18-41 41 18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="inner-section" unicode="" d="M979 850h-958c-12 0-21-9-21-21v-958c0-12 9-21 21-21h958c12 0 21 9 21 21v958c0 12-9 21-21 21z m-521-500h500v-208h-500v208z m500 42h-250v416h250v-416z m-291 416v-416h-625v416h625z m-625-458h375v-458h-375v458z m416-458v208h500v-208h-500z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="mailchimp" unicode="" d="M917 175v21c8 10 21 28 21 50 0 31-63 96-105 118v90c0 35-18 80-42 115 22 19 84 80 84 135 0 87-64 104-167 104-25 0-57-7-94-20-16 20-54 62-93 62-46 0-198-44-307-152-105-105-172-239-172-285 0-35 35-70 56-89-9-17-15-36-15-57 0-71 60-129 131-125 57-175 200-292 359-292 96 0 188 44 258 118 1 2 3 3 4 5 25 27 47 59 66 94 21 7 57 23 57 54 0 26-25 45-41 54z m-21 71c0-9-7-18-12-23-24-8-135-40-196-40-12 0-23 1-33 1-46 1-80 1-99-18-10-9-14-21-14-39-1-15-1-38 19-58 22-23 63-33 128-33 69 0 120 7 154 14-12-17-25-33-38-48-16-7-74-27-159-27-92 0-167 91-167 167 0 64 81 101 90 105 28 2 66 18 109 38 46 20 97 43 132 44 27-10 82-68 86-83z m-104 208v-86c-8-1-15-2-22-4 0 2 1 5 1 7v21c0 11-9 21-21 21s-21-10-21-21v-21c0-7 4-13 9-16-25-9-51-21-77-32-9-4-18-9-27-12 7 3 12 10 12 18v21c0 12-9 21-21 21s-21-9-21-21v-21c0-11 10-21 21-21 3 0 5 1 7 2-27-12-51-21-67-22-17 7-86 36-86 83 0 31 8 83 63 83 23 0 46-5 68-11 19-5 38-10 57-10 27 0 52 18 69 31 6 5 14 10 14 11l6 0c9 0 25 1 31-5 3-3 5-8 5-16z m41 250c0-31-40-77-69-103-9 8-18 15-27 18-43 19-270 94-484-236-10 4-21 6-32 8 119 230 382 376 487 376 125 0 125-31 125-63z m-750-291c0 27 57 151 161 256 97 96 239 139 277 139 14 0 36-18 52-36-137-62-313-197-401-386-19-6-35-15-49-28-19 17-40 41-40 55z m172-262c5 2 11 5 16 8 10 6 13 19 8 28-6 10-19 14-29 8-13-8-27-12-42-12-46 0-83 38-83 84s37 83 83 83c15 0 29-4 42-12 10-5 22-2 28 7 200 320 404 253 443 236 16-7 37-34 52-65-7 1-13 1-18 1l-5 0c-13 0-24-9-39-19-13-10-30-23-44-23-14 0-30 4-47 9-23 5-49 12-78 12-51 0-104-33-104-125 0-52 44-87 78-106-34-22-78-63-78-123 0-97 91-209 208-209 33 0 61 3 86 7-49-31-103-48-159-48-140 0-266 103-318 259z m626-46c0 0-1-1-1-1-1 0-1 0-2 0-1-1-62-27-189-27-65 0-89 12-99 21-6 7-7 15-7 28 0 0 0 4 0 4 0 3 1 5 2 6 7 7 40 7 69 6 11 0 22 0 34 0 55 0 143 22 187 34v-13c0-9 5-16 13-20 15-6 28-18 29-20-3-5-20-14-36-18z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="menu-card" unicode="" d="M750 725h-62v104c0 7-4 13-9 17-5 4-12 5-18 3l-417-125c0 0-1 0-1 0-1-1-3-2-4-2-1-1-2-2-3-2-1-1-2-3-2-4-1-1-2-2-3-3 0-1 0-2-1-4 0-1 0-2-1-4 0 0 0 0 0-1v-833c0-12 10-21 21-21h500c12 0 21 9 21 21v833c0 12-9 21-21 21z m-104 0h-254l254 76v-76z m83-833h-458v791h458v-791z m-229 416c-11 0-21-9-21-20v-42c0-36-10-51-21-57v99c0 11-9 20-20 20s-21-9-21-20v-99c-11 6-21 21-21 57v42c0 11-9 20-21 20s-21-9-21-20v-42c0-56 23-92 63-102v-148c0-12 9-21 21-21s20 9 20 21v148c40 10 63 46 63 102v42c0 11-9 20-21 20z m125 0c-26 0-50-23-69-70-13-32-22-72-22-98 0-37 22-40 29-40h41v-104c0-12 10-21 21-21s21 9 21 21v292c0 11-9 20-21 20z m-21-166h-28c0 21 11 68 28 100v-100z m21 333h-250c-11 0-21-9-21-21s10-21 21-21h250c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="navigation-horizontal" unicode="" d="M125 454c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m375 166c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m375 166c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nav-menu" unicode="" d="M958 683h-291-334-291c-12 0-21-9-21-20v-125c0-12 9-21 21-21h271v-479c0-12 9-21 20-21h417c12 0 21 9 21 21v479h187c12 0 21 9 21 21v125c0 11-9 20-21 20z m-312-125h-292v84h292v-84z m-583 84h250v-84h-250v84z m666-584h-375v459h313 62v-459z m209 500h-188-62v84h250v-84z m-521-125c-12 0-21-9-21-20s9-21 21-21h250c11 0 21 9 21 21s-10 20-21 20h-250z m250-125h-250c-12 0-21-9-21-20s9-21 21-21h250c11 0 21 9 21 21s-10 20-21 20z m0-125h-250c-12 0-21-9-21-20s9-21 21-21h250c11 0 21 9 21 21s-10 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="navigation-vertical" unicode="" d="M500 621c58 0 104 47 104 104s-46 104-104 104-104-47-104-104 47-104 104-104z m0 167c35 0 63-28 63-63s-28-62-63-62-62 28-62 62 28 63 62 63z m0-334c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-166c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m0-209c-57 0-104-47-104-104s47-104 104-104 104 47 104 104-46 104-104 104z m0-167c-34 0-62 28-62 63s28 63 62 63 63-28 63-63-28-63-63-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="number-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-723 437c-8 2-18-1-23-9l-83-125c-7-9-4-22 5-29 10-6 23-3 29 6l45 68v-265c0-11 10-20 21-20s21 9 21 20v334c0 9-6 17-15 20z m203 1c-58 0-105-47-105-105 0-11 10-20 21-20s21 9 21 20c0 35 28 63 63 63s62-28 62-63v-12c0-14-5-28-14-39l-148-186c-5-6-6-14-3-22 4-7 11-11 19-11h167c11 0 21 9 21 20s-10 21-21 21h-123l121 152c15 18 23 41 23 65v12c0 58-47 105-104 105z m395-105c0 58-46 105-104 105s-104-47-104-105c0-11 9-20 21-20s21 9 21 20c0 35 28 63 62 63s63-28 63-63-28-62-63-62c-11 0-21-9-21-21s10-21 21-21c35 0 63-28 63-62s-28-63-63-63-62 28-62 63c0 11-10 21-21 21s-21-10-21-21c0-58 47-104 104-104s104 46 104 104c0 34-16 64-41 83 25 19 41 49 41 83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="parallax" unicode="" d="M1000 350c0 7-4 14-10 18l-120 68 119 62c7 4 11 11 11 19s-4 15-11 18l-479 250c-6 3-13 3-20 0l-479-250c-7-3-11-10-11-18 0-8 4-15 11-19l119-62-119-68c-7-4-11-11-11-18 0-8 5-15 11-18l119-62-119-68c-7-4-11-11-11-19 0-8 5-15 11-18l479-250c3-2 7-3 10-3s7 1 10 3l479 250c7 3 11 10 11 18s-4 15-10 18l-120 69 119 62c7 3 11 10 11 18z m-500 393l434-226-434-227-434 227 434 226z m436-559l-436-227-436 227 110 63 316-165c3-2 7-3 10-3s7 1 10 3l316 165 110-63z m-436-60l-436 227 110 62 316-165c3-1 7-2 10-2s7 1 10 2l316 165 110-62-436-227z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="php7" unicode="" d="M170 454h-87c-9 0-18-6-20-16l-41-166c0 0-1 0-1-1l-20-83c-3-11 4-22 15-25 2 0 3 0 5 0 9 0 18 6 20 15l17 68h85c48 0 90 32 101 79l7 26c6 25 1 51-15 71-16 21-40 32-66 32z m40-93l-6-26c-7-28-32-47-61-47h-75l32 125h70c13 0 25-6 33-16 8-11 11-24 7-36z m460 93h-87c-9 0-18-6-20-16l-41-166c0 0-1 0-1-1l-20-83c-3-11 4-22 15-25 2 0 3 0 5 0 9 0 18 6 20 15l17 68h85c48 0 90 32 101 79l7 26c6 25 1 51-15 71-16 21-40 32-66 32z m40-93l-6-26c-7-28-32-47-61-47h-75l32 125h70c13 0 25-6 33-16 8-11 11-24 7-36z m-224 61c-16 21-40 32-66 32h-60l14 58c3 11-4 22-15 25-11 3-22-4-25-15l-62-250c-3-11 3-23 15-25 1-1 3-1 5-1 9 0 18 6 20 16l38 151h70c13 0 25-6 33-16 8-11 11-24 7-36l-22-89c-3-11 4-23 15-25 2-1 4-1 5-1 10 0 18 6 21 16l22 89c6 25 1 51-15 71z m512 105c-4 6-11 11-19 11h-166c-12 0-21-10-21-21s9-21 21-21h127l-145-218c-6-9-4-22 6-29 4-2 8-3 12-3 6 0 13 3 17 9l167 250c4 7 4 15 1 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-list" unicode="" d="M271 829h-250c-12 0-21-9-21-21v-250c0-11 9-20 21-20h250c11 0 21 9 21 20v250c0 12-10 21-21 21z m-21-250h-208v209h208v-209z m146 84h583c12 0 21 9 21 20s-9 21-21 21h-583c-12 0-21-9-21-21s9-20 21-20z m0 83h250c11 0 21 9 21 21s-10 21-21 21h-250c-12 0-21-10-21-21s9-21 21-21z m583-125h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m-708-125h-250c-12 0-21-9-21-21v-250c0-11 9-21 21-21h250c11 0 21 10 21 21v250c0 12-10 21-21 21z m-21-250h-208v208h208v-208z m729 125h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m-583 42h250c11 0 21 9 21 20s-10 21-21 21h-250c-12 0-21-9-21-21s9-20 21-20z m583-125h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-708-125h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-251h-208v209h208v-209z m729 126h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-583 41h250c11 0 21 10 21 21s-10 21-21 21h-250c-12 0-21-9-21-21s9-21 21-21z m583-125h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-slider" unicode="" d="M813 621h-625c-12 0-21-9-21-21v-500c0-11 9-21 21-21h625c11 0 20 10 20 21v500c0 12-9 21-20 21z m-21-500h-584v458h584v-458z m-521 42h167c11 0 20 9 20 20s-9 21-20 21h-167c-12 0-21-9-21-21 0-11 9-20 21-20z m0 83h458c12 0 21 9 21 21s-9 21-21 21h-458c-12 0-21-10-21-21s9-21 21-21z m0 83h458c12 0 21 10 21 21s-9 21-21 21h-458c-12 0-21-9-21-21s9-21 21-21z m-152 119c-8 8-21 8-29 0l-84-83c-8-8-8-22 0-30l84-83c4-4 9-6 14-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 69c8 8 8 21 0 29z m875-83l-83 83c-8 8-22 8-30 0s-8-21 0-29l69-69-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 22 0 30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post" unicode="" d="M998 467c1 3 2 5 2 8 0 76-43 156-131 244s-168 131-244 131c-3 0-5-1-8-2-2 0-4-2-6-3 0-1 0-1-1-1l0 0c0 0 0 0 0 0-53-53-83-130-66-212l-150-150c-57 34-185 44-263-34-69-69 30-202 131-306l-256-257c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l256 256c80-78 177-154 249-154 22 0 41 7 57 23 78 78 68 205 34 263l150 150c15-3 31-5 46-5 64 0 123 28 166 71 1 1 2 3 2 4 1 1 2 2 2 3z m-42 32c-50 12-131 56-191 116-60 60-104 141-116 191 58-9 121-47 191-117 69-69 108-132 116-190z m-387-488c-36-36-137 20-263 145-125 126-181 227-145 263 65 65 168 51 208 29-10-32 5-85 75-154 57-57 102-78 135-78 7 0 13 1 19 3 22-40 36-143-29-208z m21 250c0 0 0 0-1 0 0 0 0 0 0 0-8-9-49-5-116 62-67 67-71 108-62 116l147 148c15-35 38-71 73-106 35-35 71-58 106-73l-147-147z m71 250c-102 101-93 202-48 270 18-61 66-139 122-196 57-56 135-104 197-122-69-45-170-54-271 48z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-carousel" unicode="" d="M119 427c-8 8-21 8-29 0l-84-83c-8-8-8-21 0-30l84-83c4-4 9-6 14-6s11 2 15 6c8 8 8 22 0 30l-69 68 69 69c8 8 8 21 0 29z m875-83l-83 83c-8 8-22 8-30 0s-8-21 0-29l69-69-69-68c-8-9-8-22 0-30 4-4 10-6 15-6s11 2 15 6l83 83c8 9 8 22 0 30z m-681 173h-125c-12 0-21-10-21-21v-125c0-12 9-21 21-21h125c11 0 20 9 20 21v125c0 11-9 21-20 21z m-21-125h-84v83h84v-83z m271 125h-125c-12 0-21-10-21-21v-125c0-12 9-21 21-21h125c11 0 20 9 20 21v125c0 11-9 21-20 21z m-21-125h-84v83h84v-83z m271 125h-125c-12 0-21-10-21-21v-125c0-12 9-21 21-21h125c11 0 20 9 20 21v125c0 11-9 21-20 21z m-21-125h-84v83h84v-83z m-479-84h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20z m250 0h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20z m250 0h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20z m-542-83h-83c-12 0-21-9-21-21s9-21 21-21h83c11 0 21 10 21 21s-10 21-21 21z m250 0h-83c-12 0-21-9-21-21s9-21 21-21h83c11 0 21 10 21 21s-10 21-21 21z m250 0h-83c-12 0-21-9-21-21s9-21 21-21h83c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-grid" unicode="" d="M292 767h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m-21-125c12 0 21 9 21 21s-9 20-21 20h-167c-11 0-20-9-20-20s9-21 20-21h167z m375 375h-250c-11 0-21-10-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-21-250h-208v208h208v-208z m-21-125c12 0 21 9 21 21s-9 20-21 20h-166c-12 0-21-9-21-20s9-21 21-21h166z m375 375h-250c-11 0-20-10-20-21v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-20-250h-209v208h209v-208z m-21-125c11 0 21 9 21 21s-10 20-21 20h-167c-11 0-21-9-21-20s10-21 21-21h167z m-625-84h-250c-12 0-21-9-21-20v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 20-21 20z m-21-250h-208v209h208v-209z m-21-83h-167c-11 0-20-9-20-21s9-21 20-21h167c12 0 21 10 21 21s-9 21-21 21z m375 333h-250c-11 0-21-9-21-20v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-21-250h-208v209h208v-209z m-21-83h-166c-12 0-21-9-21-21s9-21 21-21h166c12 0 21 10 21 21s-9 21-21 21z m375 333h-250c-11 0-20-9-20-20v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-20-250h-209v209h209v-209z m-21-83h-167c-11 0-21-9-21-21s10-21 21-21h167c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-group" unicode="" d="M979 767h-250c-11 0-21-10-21-21v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 21-21 21z m-21-250h-208v208h208v-208z m-20-125c11 0 20 9 20 21s-9 20-20 20h-167c-12 0-21-9-21-20s9-21 21-21h167z m41-84h-250c-11 0-21-9-21-20v-250c0-12 10-21 21-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-21-250h-208v209h208v-209z m-20-83h-167c-12 0-21-9-21-21s9-21 21-21h167c11 0 20 10 20 21s-9 21-20 21z m-292 792h-625c-12 0-21-10-21-21v-792c0-11 9-21 21-21h625c11 0 21 10 21 21v792c0 11-10 21-21 21z m-21-792h-583v750h583v-750z m-479 83h250c11 0 21 10 21 21s-10 21-21 21h-250c-12 0-21-9-21-21s9-21 21-21z m0 125h375c11 0 21 10 21 21s-10 21-21 21h-375c-12 0-21-9-21-21s9-21 21-21z m0 125h375c11 0 21 10 21 21s-10 21-21 21h-375c-12 0-21-9-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-justified" unicode="" d="M21 600h208c12 0 21 9 21 21v208c0 12-9 21-21 21h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m21 208h166v-166h-166v166z m271-208h375c11 0 20 9 20 21v208c0 12-9 21-20 21h-375c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m20 208h334v-166h-334v166z m646 42h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m-895-84c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21s-9 20-20 20h-125z m520-20c0 11-9 20-20 20h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 20 9 20 21z m355-21c11 0 20 9 20 21s-9 20-20 20h-125c-12 0-21-9-21-20s9-21 21-21h125z m-459-292h209c11 0 20 9 20 21v208c0 12-9 21-20 21h-209c-11 0-21-9-21-21v-208c0-12 10-21 21-21z m21 208h167v-166h-167v166z m-479-208h375c11 0 21 9 21 21v208c0 12-10 21-21 21h-375c-12 0-21-9-21-21v-208c0-12 9-21 21-21z m21 208h333v-166h-333v166z m937 42h-208c-12 0-21-9-21-21v-208c0-12 9-21 21-21h208c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-166v166h166v-166z m-312-84h-125c-12 0-21-9-21-20s9-21 21-21h125c11 0 21 9 21 21s-10 20-21 20z m-500 0c-12 0-21-9-21-20s9-21 21-21h125c11 0 21 9 21 21s-10 20-21 20h-125z m792-41c11 0 20 9 20 21s-9 20-20 20h-125c-12 0-21-9-21-20s9-21 21-21h125z m-750-42h-167c-12 0-21-9-21-21v-208c0-12 9-21 21-21h167c11 0 20 9 20 21v208c0 12-9 21-20 21z m-21-208h-125v166h125v-166z m437 208h-333c-12 0-21-9-21-21v-208c0-12 9-21 21-21h333c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-291v166h291v-166z m396 208h-291c-12 0-21-9-21-21v-208c0-12 9-21 21-21h291c12 0 21 9 21 21v208c0 12-9 21-21 21z m-21-208h-250v166h250v-166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-masonry" unicode="" d="M292 850h-250c-12 0-21-9-21-21v-250c0-11 9-21 21-21h250c11 0 21 10 21 21v250c0 12-10 21-21 21z m-21-250h-208v208h208v-208z m-21-125c12 0 21 9 21 21s-9 21-21 21h-167c-11 0-20-10-20-21s9-21 20-21h167z m375 375h-250c-11 0-21-9-21-21v-416c0-12 10-21 21-21h250c12 0 21 9 21 21v416c0 12-9 21-21 21z m-21-417h-208v375h208v-375z m-21-125c12 0 21 10 21 21s-9 21-21 21h-166c-12 0-21-9-21-21s9-21 21-21h166z m375 542h-250c-11 0-20-9-20-21v-333c0-12 9-21 20-21h250c12 0 21 9 21 21v333c0 12-9 21-21 21z m-20-333h-209v291h209v-291z m-21-125c11 0 21 9 21 21s-10 20-21 20h-167c-11 0-21-9-21-20s10-21 21-21h167z m-625 0h-250c-12 0-21-10-21-21v-250c0-12 9-21 21-21h250c11 0 21 9 21 21v250c0 11-10 21-21 21z m-21-250h-208v208h208v-208z m-21-84h-167c-11 0-20-9-20-20s9-21 20-21h167c12 0 21 9 21 21s-9 20-21 20z m375 167h-250c-11 0-21-9-21-21v-250c0-11 10-21 21-21h250c12 0 21 10 21 21v250c0 12-9 21-21 21z m-21-250h-208v208h208v-208z m-21-83h-166c-12 0-21-10-21-21s9-21 21-21h166c12 0 21 9 21 21s-9 21-21 21z m375 416h-250c-11 0-20-9-20-20v-250c0-12 9-21 20-21h250c12 0 21 9 21 21v250c0 11-9 20-21 20z m-20-250h-209v209h209v-209z m-21-83h-167c-11 0-21-9-21-21s10-21 21-21h167c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="posts-ticker" unicode="" d="M471 788c-41 0-75-18-97-51-2-3-4-7-6-10-1-1-2-2-2-3l-5-9c0-1 0-2-1-3l-126-264-171-109c-40-25-63-68-63-114v-7c0-42 19-80 51-106 24-20 54-29 84-29 21 0 41 5 60 14l83-15 40-81c14-28 39-48 69-57l107-31c2 0 4-1 6-1 4 0 8 1 11 3 5 4 8 8 9 14l4 20c11 55-19 108-71 126l-46 125 266-36c1 0 1 0 2 0l10-1c1 0 3 0 4 0 2 0 4 0 6 0 42 0 75 17 98 50 41 59 39 160-3 270-65 171-205 305-319 305z m-394-643c-22 17-35 44-35 73v7c0 32 16 61 43 79l145 92c5-67 25-136 98-174l-146-85c-33-19-75-16-105 8z m356-107c35-9 57-43 51-78l-86 24c-19 5-34 18-43 36l-45 89c-3 6-8 10-14 12l-44 8 112 66 54-144c2-6 8-11 15-13z m-53 207c-94 28-109 104-109 184l75 157c4-37 14-77 30-118 39-102 105-190 175-245l-171 22z m379-8c-15-22-36-33-64-33-5 0-10 1-16 2l-3 0c-91 15-207 136-261 277-32 83-38 161-17 211l0 1c3 7 6 13 10 19 15 21 36 32 63 32 94 0 222-128 280-278 37-96 40-184 8-231z m-187 338c-32 9-66 4-95-14-9-6-13-18-7-28 6-10 19-13 29-7 19 11 41 14 63 9 22-5 40-19 51-38 12-19 15-41 10-63-6-22-19-40-38-51-10-6-13-19-8-29 4-6 11-10 18-10 4 0 8 1 11 3 29 17 49 44 57 77 8 32 3 66-14 94-17 29-45 49-77 57z m221-3c3-8 11-14 20-14 2 0 4 1 7 2l167 62c10 4 16 16 12 27-4 11-16 16-27 12l-167-62c-11-4-16-16-12-27z m-22 91c5 0 11 2 15 6l83 83c8 8 8 21 0 29s-21 9-30 0l-83-83c-8-8-8-21 0-29 4-4 10-6 15-6z m208-167h-125c-11 0-21-9-21-21s10-21 21-21h125c12 0 21 10 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="price-list" unicode="" d="M646-25h-521v583h229c12 0 21 10 21 21v229h417v-562c0-12 9-21 21-21s20 9 20 21v583c0 12-9 21-20 21h-459c-3 0-5-1-8-2-1 0-1-1-2-1-2-1-3-2-5-3l-250-250c0-1-1-2-2-3-1-2-1-2-2-4-1-2-2-5-2-8v-625c0-11 10-21 21-21h542c11 0 21 10 21 21s-10 21-21 21z m-491 625l178 179v-179h-178z m762-635c0 47-51 63-84 69v64c24-5 41-17 42-28 1-11 12-19 23-19 11 2 20 12 19 23-4 34-38 60-84 66v23c0 11-9 20-20 20s-21-9-21-20v-23c-48-6-84-35-84-71 0-48 51-63 84-70v-63c-24 4-41 16-42 27-1 12-12 20-23 19-11-1-20-11-18-23 3-33 37-60 83-66v-22c0-12 9-21 21-21s20 9 20 21v22c49 7 84 36 84 72z m-167 104c0 11 17 24 42 29v-56c-34 8-42 19-42 27z m83-134v57c34-8 42-19 42-27 0-12-17-25-42-30z m-562 540c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z m0-83c-12 0-21 9-21 21s9 20 21 20 21-9 21-20-10-21-21-21z m0-84c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z m0-83c-12 0-21 9-21 21s9 21 21 21 21-10 21-21-10-21-21-21z m0-83c-35 0-63-28-63-63s28-62 63-62 62 28 62 62-28 63-62 63z m0-84c-12 0-21 10-21 21s9 21 21 21 21-9 21-21-10-21-21-21z m167 375c-12 0-21-9-21-20s9-21 21-21h250c11 0 20 9 20 21s-9 20-20 20h-250z m250-166h-250c-12 0-21-10-21-21s9-21 21-21h250c11 0 20 9 20 21s-9 21-20 21z m-42-167h-208c-12 0-21-9-21-21s9-21 21-21h208c11 0 21 10 21 21s-10 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="price-table" unicode="" d="M958 663h-187v62c0 12-9 21-21 21h-500c-11 0-21-9-21-21v-62h-187c-12 0-21-10-21-21v-584c0-11 9-20 21-20h187v-63c0-12 10-21 21-21h500c12 0 21 9 21 21v63h187c12 0 21 9 21 20v584c0 11-9 21-21 21z m-20-42v-83h-167v83h167z m-667 83h458v-125h-458v125z m-42-83v-83h-166v83h166z m-166-542v417h166v-417h-166z m666-83h-458v542h458v-542z m42 83v417h167v-417h-167z m-250 204v85c23-5 40-20 42-37 1-11 11-19 22-19 12 1 20 12 19 23-3 39-38 69-83 76v22c0 12-9 21-21 21s-21-9-21-21v-22c-47-8-83-42-83-82 0-39 27-65 83-79v-85c-23 6-40 20-42 37 0 11-12 20-22 19-11-1-20-11-19-23 3-38 38-68 83-75v-23c0-11 10-21 21-21s21 10 21 21v23c47 7 83 41 83 81 0 39-27 66-83 79z m-83 46c0 18 17 33 41 39v-75c-28 8-41 20-41 36z m83-164v75c28-8 42-19 42-36 0-17-18-33-42-39z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="radio" unicode="" d="M146 829c-81 0-146-65-146-146s65-145 146-145 146 65 146 145-66 146-146 146z m0-250c-58 0-104 47-104 104s46 105 104 105 104-47 104-105-47-104-104-104z m0-83c-81 0-146-66-146-146s65-146 146-146 146 66 146 146-66 146-146 146z m0-250c-58 0-104 47-104 104s46 104 104 104 104-47 104-104-47-104-104-104z m0-83c-81 0-146-66-146-146s65-146 146-146 146 65 146 146-66 146-146 146z m0-251c-58 0-104 47-104 105s46 104 104 104 104-47 104-104-47-105-104-105z m250 751h583c12 0 21 9 21 20s-9 21-21 21h-583c-12 0-21-9-21-21s9-20 21-20z m583-292h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m0-333h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z m-833 375c-35 0-63-28-63-63s28-62 63-62 62 28 62 62-28 63-62 63z m0-84c-12 0-21 10-21 21s9 21 21 21 21-9 21-21-10-21-21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="rtl" unicode="" d="M229 308c12 0 21 10 21 21v104h93l77-115c4-6 11-10 18-10 4 0 8 2 11 4 10 6 12 19 6 29l-66 99c40 14 69 52 69 98v41c0 58-46 104-104 104h-125c-11 0-21-9-21-20v-334c0-11 10-21 21-21z m21 334h104c35 0 63-28 63-63v-41c0-35-28-63-63-63h-104v167z m229 0h104v-313c0-11 10-21 21-21s21 10 21 21v313h104c12 0 21 9 21 21s-9 20-21 20h-250c-11 0-21-9-21-20s10-21 21-21z m334-334h166c12 0 21 10 21 21s-9 21-21 21h-146v313c0 11-9 20-20 20s-21-9-21-20v-334c0-11 9-21 21-21z m166-125h-908l90 90c8 8 8 21 0 29s-22 8-30 0l-125-125c0 0 0 0 0 0-2-2-3-4-4-6-3-6-3-11 0-16 0-2 1-3 2-4 1-1 1-2 2-3l125-125c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-90 90h908c12 0 21 9 21 21s-9 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="scroll" unicode="" d="M583 850h-166c-150 0-271-121-271-271v-375c0-195 159-354 354-354s354 159 354 354v375c0 150-121 271-271 271z m-83-167c12 0 21-9 21-20v-125c0-12-9-21-21-21s-21 9-21 21v125c0 11 10 20 21 20z m313-479c0-172-141-312-313-312s-312 140-312 312v375c0 127 102 229 229 229h62v-87c-24-8-41-31-41-58v-125c0-35 28-63 62-63s63 28 63 63v125c0 27-18 50-42 58v87h62c127 0 230-102 230-229v-375z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="search" unicode="" d="M994-115l-304 305c63 70 102 163 102 264 0 218-178 396-396 396s-396-178-396-396 178-396 396-396c102 0 194 39 264 102l304-304c5-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29z m-952 569c0 196 159 354 354 354s354-158 354-354-159-354-354-354-354 159-354 354z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="select" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-119 306l-151-151-152 151c-9 9-22 9-30 0s-8-21 0-29l167-167c4-4 9-6 15-6s10 2 14 6l167 167c8 8 8 21 0 29-8 9-21 9-30 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="share" unicode="" d="M833 183c-57 0-108-29-138-74l-372 186c6 17 10 36 10 55s-4 38-10 55l372 186c30-45 81-74 138-74 92 0 167 74 167 166s-75 167-167 167-166-75-166-167c0-19 4-37 10-55l-372-185c-30 44-81 74-138 74-92 0-167-75-167-167s75-167 167-167c57 0 108 30 138 75l372-186c-6-18-10-36-10-55 0-92 74-167 166-167s167 75 167 167-75 166-167 166z m0 625c69 0 125-56 125-125s-56-125-125-125c-48 0-90 29-111 69 0 1 0 1 0 1 0 0 0 0 0 0-8 17-14 35-14 55 0 69 56 125 125 125z m-666-583c-69 0-125 56-125 125s56 125 125 125c48 0 90-28 111-69 0 0 0 0 0 0 0 0 0 0 0 0 9-17 14-36 14-56 0-20-5-38-14-55 0 0 0 0 0-1 0 0 0 0 0 0-21-41-63-69-111-69z m666-333c-69 0-125 56-125 125 0 20 6 38 14 55 0 0 0 0 0 0 0 0 0 0 0 1 21 40 63 69 111 69 69 0 125-56 125-125s-56-125-125-125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sidebar" unicode="" d="M979 850h-958c-12 0-21-9-21-21v-958c0-12 9-21 21-21h958c12 0 21 9 21 21v958c0 12-9 21-21 21z m-21-42v-166h-916v166h916z m-916-208h541v-708h-541v708z m583-708v708h333v-708h-333z m229 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z m0 125h-125c-11 0-21-10-21-21s10-21 21-21h125c12 0 21 9 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="skill-bar" unicode="" d="M938 829h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h749c0 0 0 0 1 0s0 0 0 0h125c34 0 62 28 62 62v84c0 34-28 62-62 62z m-146-166h-96l96 95v-95z m-155 0h-66l125 125h66l-125-125z m-191 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-8 125h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-20-20-20h-105v125h105c11 0 20-10 20-21v-84z m-20-104h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h499c0 0 0 0 1 0s0 0 0 0h375c34 0 62 28 62 62v84c0 34-28 62-62 62z m-396-166h-96l96 95v-95z m-155 0h-66l125 125h66l-125-125z m-191 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-8 125h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-20-20-20h-355v125h355c11 0 20-10 20-21v-84z m-20-354h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h249c0 0 0 0 1 0s0 0 0 0h625c34 0 62 28 62 62v84c0 34-28 62-62 62z m-646-167h-96l96 96v-96z m-155 0h-66l125 126h66l-125-126z m-74 126h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-21-20-21h-605v126h605c11 0 20-10 20-21v-84z m-20 396h-875c-35 0-63-28-63-62v-84c0-34 28-62 63-62h624c0 0 0 0 1 0s0 0 0 0h250c34 0 62 28 62 62v84c0 34-28 62-62 62z m-271-166h-96l96 95v-95z m-155 0h-66l125 125h66l-125-125z m-191 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-125 0l125 125h66l-125-125h-66z m-8 125h74l-95-96v75c0 11 9 21 21 21z m895-105c0-11-9-20-20-20h-230v125h230c11 0 20-10 20-21v-84z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-3d" unicode="" d="M792 621h-584c-11 0-20-9-20-21v-417c0-11 9-20 20-20h584c11 0 21 9 21 20v417c0 12-10 21-21 21z m-21-417h-542v375h542v-375z m-655 373l-84-42c-10-5-14-17-9-28 5-10 18-14 28-9l53 27v-266l-53 26c-10 5-23 1-28-9-5-10-1-23 9-28l84-42c3-1 6-2 9-2 4 0 8 1 11 3 6 4 10 11 10 18v333c0 8-4 14-10 18-6 4-14 4-20 1z m833-292l-53-26v266l53-27c10-5 23-1 28 9 5 11 1 23-9 28l-84 42c-6 3-14 3-20-1-6-4-10-10-10-18v-333c0-7 4-14 10-18 3-2 7-3 11-3 3 0 6 1 9 2l84 42c10 5 14 18 9 28-5 10-18 14-28 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-album" unicode="" d="M971 533c-5 4-11 5-18 4l-140-35v56c0 12-10 21-21 21h-584c-11 0-20-9-20-21v-56l-141 35c-6 1-13 0-18-4s-8-10-8-16v-334c0-6 3-12 8-16 4-3 8-4 13-4 1 0 3 0 5 0l141 35v-56c0-12 9-21 20-21h584c11 0 21 9 21 21v56l140-35c2 0 4 0 5 0 5 0 10 1 13 4 5 4 8 10 8 16v334c0 6-3 12-8 16z m-908-323v280l125-31v-218l-125-31z m708-47h-542v375h542v-375z m167 47l-125 31v218l125 31v-280z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-device" unicode="" d="M125 288c5 0 11 2 15 6 8 8 8 21 0 29l-69 69 69 68c8 8 8 22 0 30s-22 8-30 0l-83-84c-8-8-8-21 0-29l83-83c4-4 10-6 15-6z m848 118l-83 84c-8 8-22 8-30 0-8-8-8-22 0-30l69-68-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 21 0 29z m-98-160h-62v354c0 35-28 63-63 63h-500c-34 0-62-28-62-63v-354h-63c-11 0-21-9-21-21v-42c0-34 28-62 63-62h666c35 0 63 28 63 62v42c0 12-9 21-21 21z m-646 354c0 12 10 21 21 21h500c12 0 21-9 21-21v-354h-542v354z m625-417c0-11-9-20-21-20h-666c-12 0-21 9-21 20v21h62 584 62v-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-full-screen" unicode="" d="M958 704h-916c-12 0-21-9-21-21v-666c0-12 9-21 21-21h916c12 0 21 9 21 21v666c0 12-9 21-21 21z m-20-666h-875v625h875v-625z m-744 214c4-4 9-6 14-6s11 2 15 6c8 8 8 21 0 29l-68 69 68 69c8 8 8 21 0 29s-21 8-29 0l-84-83c-8-8-8-22 0-30l84-83z m583 0c4-4 9-6 15-6s10 2 14 6l84 83c8 8 8 22 0 30l-84 83c-8 8-21 8-29 0s-8-21 0-29l69-69-69-69c-8-8-8-21 0-29z m-460-80c0-1 1-2 2-3 0-1 1-1 2-2 1-1 3-2 4-3 3-1 6-1 8-1h84c11 0 21 9 21 20s-10 21-21 21h-33l68 69c8 8 8 21 0 29s-21 8-29 0l-69-68v33c0 11-9 21-21 21s-20-10-20-21v-84c0-2 0-5 1-8 1-1 2-2 3-3z m-4 345v-84c0-11 9-20 20-20s21 9 21 20v33l69-68c4-4 9-6 15-6s10 2 14 6c8 8 8 21 0 29l-68 69h33c11 0 21 9 21 21s-10 21-21 21h-84c-1 0-2-1-3-1-2 0-3 0-5-1-2-1-4-3-6-5l0 0c-1 0-1 0-1 0-1-2-3-4-4-6-1-3-1-6-1-8z m250-125c5 0 10 2 14 6l69 68v-33c0-11 9-20 21-20 11 0 21 9 21 20v84c0 1-1 3-1 4-1 1-1 3-1 4-2 5-6 9-11 11-2 0-3 0-4 1-1 0-3 1-4 1h-84c-11 0-20-10-20-21s9-21 20-21h33l-68-69c-8-8-8-21 0-29 4-4 9-6 15-6z m53-188h-33c-11 0-20-9-20-21 0-11 9-20 20-20h84c2 0 5 0 8 1 2 1 4 3 6 4 0 0 0 0 0 1l0 0c2 2 4 4 5 6 1 2 1 3 1 5 0 1 1 2 1 3v84c0 11-10 21-21 21s-21-10-21-21v-33l-69 68c-8 8-21 8-29 0s-8-21 0-29l68-69z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-push" unicode="" d="M792 621h-584c-11 0-20-9-20-21v-417c0-11 9-20 20-20h584c11 0 21 9 21 20v417c0 12-10 21-21 21z m-21-417h-542v375h542v-375z m-646 417h-83c-12 0-21-9-21-21s9-21 21-21h62v-375h-62c-12 0-21-9-21-21 0-11 9-20 21-20h83c12 0 21 9 21 20v417c0 12-9 21-21 21z m833-417h-62v375h62c12 0 21 10 21 21s-9 21-21 21h-83c-11 0-21-9-21-21v-417c0-11 10-20 21-20h83c12 0 21 9 21 20s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-vertical" unicode="" d="M958 663h-916c-12 0-21-10-21-21v-584c0-11 9-20 21-20h916c12 0 21 9 21 20v584c0 11-9 21-21 21z m-20-584h-875v542h875v-542z m-369-89l-69-69-69 69c-8 8-21 8-29 0s-8-22 0-30l83-83c4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 22 0 30-8 8-21 8-29 0z m-138 720l69 69 69-69c4-4 9-6 14-6s11 2 15 6c8 8 8 22 0 30l-83 83c-8 8-22 8-30 0l-83-83c-8-8-8-22 0-30s21-8 29 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slider-video" unicode="" d="M792 579h-584c-11 0-20-9-20-21v-416c0-12 9-21 20-21h584c11 0 21 9 21 21v416c0 12-10 21-21 21z m-21-416h-542v375h542v-375z m-631 285c-8 8-22 8-30 0l-83-83c-8-8-8-22 0-30l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 69c8 8 8 21 0 29z m833-83l-83 83c-8 8-22 8-30 0s-8-21 0-29l69-69-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 22 0 30z m-524-117c3-1 6-2 9-2 4 0 8 1 12 3l125 84c6 4 9 10 9 17s-3 14-9 17l-125 84c-7 4-15 4-21 1-7-4-11-11-11-19v-166c0-8 4-15 11-19z m30 146l67-44-67-44v88z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slides" unicode="" d="M792 621h-584c-11 0-20-9-20-21v-417c0-11 9-20 20-20h584c11 0 21 9 21 20v417c0 12-10 21-21 21z m-21-417h-542v375h542v-375z m-631 286c-8 8-22 8-30 0l-83-84c-8-8-8-21 0-29l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 68c8 8 8 22 0 30z m833-84l-83 84c-8 8-22 8-30 0s-8-22 0-30l69-68-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 21 0 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="social-icons" unicode="" d="M926 796l-105 9c-47 4-95 4-142 0l-105-9c-42-4-74-38-74-80v-190c0-42 32-77 74-80l105-10c24-2 47-3 71-3s47 1 71 3l105 10c42 3 74 38 74 80v190c0 42-32 76-74 80z m32-270c0-20-15-37-35-39l-106-9c-44-4-90-4-134 0l-106 9c-20 2-35 19-35 39v190c0 20 15 37 35 39l106 9c22 2 45 3 67 3s45-1 67-3l106-9c20-2 35-19 35-39v-190z m-259 196c-6 4-15 4-21 1-7-4-11-11-11-19v-166c0-8 4-15 11-19 3-1 6-2 10-2 4 0 8 1 11 3l125 84c6 3 9 10 9 17s-3 13-9 17l-125 84z m9-146v89l67-44-67-45z m-264-308c1 2 2 5 2 8 3 8-1 17-8 22-7 5-16 5-23 1-5-3-23-11-37-15-38 30-83 32-128 7-34-20-45-55-46-83-69 10-112 47-137 78-5 5-11 8-18 7-7 0-13-4-16-10-15-24-19-51-12-78 1-5 2-9 4-13 0-1-1-1-1-1-7-4-12-11-12-19 0-32 14-57 32-74 0 0-1-1-1-1-5-6-7-15-3-23 11-24 29-42 52-54-22-7-46-10-69-7-10 1-19-5-22-15-3-9 1-20 10-24 48-27 98-41 146-40 50 0 98 14 141 43 75 50 122 138 118 218 12 9 28 24 39 41 5 8 4 19-2 26-3 3-6 5-9 6z m-169-257c-32-21-92-48-170-30 21 7 40 18 56 31 6 6 8 15 5 23s-10 13-19 14c-17 0-32 5-44 13 6 2 11 5 16 9 7 5 9 14 7 22s-10 14-18 15c-7 0-30 10-44 31 5 0 11 0 16 1 8 2 15 8 16 17 2 9-2 17-10 21-7 5-20 18-25 37-1 6-2 12-2 18 36-33 89-65 166-69 6-1 13 3 17 8 4 5 6 12 4 18-3 11-2 49 25 64 33 19 61 16 87-8 3-3 7-4 11-5-1-3-1-6 0-9 1-6 5-11 9-14-3-4-5-10-4-15 8-69-33-147-99-192z m121 797h-333c-35 0-63-28-63-62v-333c0-35 28-63 63-63h333c34 0 62 28 62 63v333c0 34-28 62-62 62z m21-395c0-12-10-21-21-21h-146v166h42c11 0 21 10 21 21s-10 21-21 21h-42c0 23 19 42 42 42h21c11 0 20 9 20 21s-9 20-20 20h-21c-46 0-84-37-84-83h-20c-12 0-21-9-21-21s9-21 21-21h20v-166h-145c-12 0-21 9-21 21v333c0 11 9 21 21 21h333c11 0 21-10 21-21v-333z m437-21h-208c-81 0-146-66-146-146v-208c0-81 65-146 146-146h208c81 0 146 65 146 146v208c0 80-65 146-146 146z m104-354c0-58-46-105-104-105h-208c-58 0-104 47-104 105v208c0 57 46 104 104 104h208c58 0 104-47 104-104v-208z m-208 229c-69 0-125-56-125-125s56-125 125-125 125 56 125 125-56 125-125 125z m0-209c-46 0-83 38-83 84s37 83 83 83 83-37 83-83-37-84-83-84z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="spacer" unicode="" d="M42 663h916c12 0 21 9 21 20s-9 21-21 21h-916c-12 0-21-9-21-21s9-20 21-20z m583-250c8 0 15 4 19 11s2 16-2 22l-125 167c-8 10-26 10-34 0l-125-167c-4-6-5-15-2-22 4-7 11-11 19-11h104v-125h-104c-8 0-15-5-19-12-3-7-2-15 2-22l125-166c4-6 11-9 17-9s13 3 17 9l125 166c4 7 5 15 2 22-4 7-11 12-19 12h-104v125h104z m-125-278l-83 111h166l-83-111z m0 430l83-111h-166l83 111z m458-527h-916c-12 0-21-10-21-21s9-21 21-21h916c12 0 21 9 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="table" unicode="" d="M979 725h-958c-12 0-21-9-21-21v-708c0-12 9-21 21-21h958c12 0 21 9 21 21v708c0 12-9 21-21 21z m-602-542v125h248v-125h-248z m248-41v-125h-248v125h248z m0 333v-125h-248v125h248z m42 0h291v-125h-291v125z m-332-125h-293v125h293v-125z m-293-42h293v-125h-293v125z m625 0h291v-125h-291v125z m291 375v-166h-916v166h916z m-916-541h293v-125h-293v125z m625-125v125h291v-125h-291z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tabs" unicode="" d="M988 574l-42 111c-9 24-32 40-58 40h-191c-21 0-40-10-51-26-12 16-30 26-51 26h-190c-21 0-39-10-51-26-11 16-30 26-51 26h-191c-26 0-49-16-58-40l-45-120c-6-16-9-32-9-49v-478c0-35 28-63 63-63h875c34 0 62 28 62 63v500c0 13-5 26-12 36z m-291 109h191c9 0 16-5 20-13l26-70h-252l-14 42 9 27c3 9 11 14 20 14z m-292 0h190c9 0 17-5 20-14l23-69h-248l-14 42 9 27c3 9 11 14 20 14z m553-645c0-12-9-21-20-21h-875c-12 0-21 9-21 21v478c0 12 2 23 6 34l45 120c3 8 10 13 19 13h191c9 0 17-5 20-14l32-96c3-9 11-15 20-15h563c5 0 10-2 13-5l1-3c1-2 3-4 5-6 1-2 1-4 1-6v-500z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tel-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-460 190c-26 0-52 4-76 12-16 5-34 1-43-9l-45-34c-52 28-85 61-113 112l33 43c11 12 16 29 11 45-9 24-13 50-13 76 0 24-19 44-44 44h-81c-24 0-44-20-44-44 0-228 186-414 415-414 24 0 44 20 44 44v81c0 24-20 44-44 44z m0-127c-206 0-373 167-371 375l84-3c0-30 5-60 14-89l20 7-23-11-42-56c-5-7-5-15-2-22 36-70 78-112 148-148 7-4 16-3 22 2l56 42c1 0 4 2 5 2 28-9 58-14 91-16l-2-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-area" unicode="" d="M938 767h-875c-35 0-63-28-63-63v-708c0-35 28-63 63-63h875c34 0 62 28 62 63v708c0 35-28 63-62 63z m-896-771v708c0 12 9 21 21 21h875c11 0 20-9 20-21v-616l-112-113h-783c-12 0-21 9-21 21z m896-21h-33l53 54v-33c0-12-9-21-20-21z m-689 653c-6 16-33 16-39 0l-125-333c-4-11 1-23 12-27 11-4 23 1 27 12l42 112c0 0 0 0 1 0h125c0 0 0 0 1 0l42-112c3-8 11-13 19-13 3 0 5 0 8 1 10 4 16 16 12 27l-125 333z m-68-195l48 129 48-129h-96z m694-62c0 11-9 21-21 21s-21-10-21-21c0-35-28-63-62-63s-63 28-63 63v83c0 35 28 63 63 63s62-28 62-63c0-11 10-21 21-21s21 10 21 21c0 58-47 104-104 104s-104-46-104-104v-83c0-58 46-104 104-104s104 46 104 104z m-354 187c-24 0-45-8-63-21v84c0 11-9 21-20 21s-21-10-21-21v-167-21-41-21-83c0-12 9-21 21-21s20 9 20 21v0c18-13 39-21 63-21 57 0 104 46 104 104v83c0 58-47 104-104 104z m62-187c0-35-28-63-62-63s-63 28-63 63v21 41 21c0 35 28 63 63 63s62-28 62-63v-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-field" unicode="" d="M938 663h-875c-35 0-63-28-63-63v-500c0-34 28-62 63-62h875c34 0 62 28 62 62v500c0 35-28 63-62 63z m20-563c0-11-9-21-20-21h-875c-12 0-21 10-21 21v500c0 12 9 21 21 21h875c11 0 20-9 20-21v-500z m-729 438c12 0 21 9 21 20s-9 21-21 21h-83c-12 0-21-9-21-21s9-20 21-20h21v-375h-21c-12 0-21-10-21-21s9-21 21-21h83c12 0 21 9 21 21s-9 21-21 21h-21v375h21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="thumbnails-down" unicode="" d="M792 663h-584c-11 0-20-10-20-21v-417c0-11 9-21 20-21h584c11 0 21 10 21 21v417c0 11-10 21-21 21z m-21-417h-542v375h542v-375z m-631 244c-8 8-22 8-30 0l-83-84c-8-8-8-21 0-29l83-83c4-4 10-6 15-6s11 2 15 6c8 8 8 21 0 29l-69 69 69 68c8 8 8 22 0 30z m833-84l-83 84c-8 8-22 8-30 0s-8-22 0-30l69-68-69-69c-8-8-8-21 0-29 4-4 10-6 15-6s11 2 15 6l83 83c8 8 8 21 0 29z m-681-243h-84c-11 0-20-10-20-21v-84c0-11 9-20 20-20h84c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z m187 84h-83c-11 0-21-10-21-21v-84c0-11 10-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-20-84h-42v42h42v-42z m187 84h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m188 84h-84c-11 0-20-10-20-21v-84c0-11 9-20 20-20h84c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="thumbnails-half" unicode="" d="M479 663h-458c-12 0-21-10-21-21v-584c0-11 9-20 21-20h458c12 0 21 9 21 20v584c0 11-9 21-21 21z m-21-584h-416v542h416v-542z m521 584h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m21-83h-83c-12 0-21-9-21-21v-83c0-12 9-21 21-21h83c12 0 21 9 21 21v83c0 12-9 21-21 21z m-21-83h-41v41h41v-41z m21-84h-83c-12 0-21-9-21-21v-83c0-11 9-21 21-21h83c12 0 21 10 21 21v83c0 12-9 21-21 21z m-21-83h-41v42h41v-42z m21-83h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m-145 584h-84c-11 0-21-10-21-21v-84c0-11 10-20 21-20h84c11 0 20 9 20 20v84c0 11-9 21-20 21z m-21-84h-42v42h42v-42z m21-83h-84c-11 0-21-9-21-21v-83c0-12 10-21 21-21h84c11 0 20 9 20 21v83c0 12-9 21-20 21z m-21-83h-42v41h42v-41z m21-84h-84c-11 0-21-9-21-21v-83c0-11 10-21 21-21h84c11 0 20 10 20 21v83c0 12-9 21-20 21z m-21-83h-42v42h42v-42z m21-83h-84c-11 0-21-10-21-21v-84c0-11 10-20 21-20h84c11 0 20 9 20 20v84c0 11-9 21-20 21z m-21-84h-42v42h42v-42z m-146 584h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z m21-83h-83c-12 0-21-9-21-21v-83c0-12 9-21 21-21h83c11 0 21 9 21 21v83c0 12-10 21-21 21z m-21-83h-42v41h42v-41z m21-84h-83c-12 0-21-9-21-21v-83c0-11 9-21 21-21h83c11 0 21 10 21 21v83c0 12-10 21-21 21z m-21-83h-42v42h42v-42z m21-83h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c11 0 21 9 21 20v84c0 11-10 21-21 21z m-21-84h-42v42h42v-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="thumbnails-right" unicode="" d="M813 663h-792c-12 0-21-10-21-21v-584c0-11 9-20 21-20h792c11 0 20 9 20 20v584c0 11-9 21-20 21z m-21-584h-750v542h750v-542z m187 584h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z m21-83h-83c-12 0-21-9-21-21v-83c0-12 9-21 21-21h83c12 0 21 9 21 21v83c0 12-9 21-21 21z m-21-83h-41v41h41v-41z m21-84h-83c-12 0-21-9-21-21v-83c0-11 9-21 21-21h83c12 0 21 10 21 21v83c0 12-9 21-21 21z m-21-83h-41v42h41v-42z m21-83h-83c-12 0-21-10-21-21v-84c0-11 9-20 21-20h83c12 0 21 9 21 20v84c0 11-9 21-21 21z m-21-84h-41v42h41v-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="time-line" unicode="" d="M667 454h250c34 0 62 28 62 63v250c0 34-28 62-62 62h-250c-35 0-63-28-63-62v-33l-54-55c-8 10-18 17-29 21v108c0 12-9 21-21 21s-21-9-21-21v-108c-24-8-41-31-41-58s17-50 41-59v-174c-11-4-21-12-29-21l-54 54v33c0 34-28 63-63 63h-250c-34 0-62-29-62-63v-250c0-34 28-62 62-62h250c35 0 63 28 63 62v33l54 55c8-10 18-18 29-22v-174c-24-9-41-32-41-59s17-50 41-58v-108c0-12 10-21 21-21s21 9 21 21v108c11 4 21 11 29 21l54-55v-33c0-34 28-62 63-62h250c34 0 62 28 62 62v250c0 35-28 63-62 63h-250c-35 0-63-28-63-63v-33l-54-54c-8 10-18 17-29 21v174c24 9 42 32 42 59s-18 50-42 59v174c11 4 21 12 29 21l54-54v-33c0-35 28-63 63-63z m-167 209c12 0 21-10 21-21v0c0-12-9-21-21-21s-21 9-21 21 10 21 21 21z m-140-382c-4-3-6-9-6-14v-42c0-11-9-21-21-21h-250c-11 0-20 10-20 21v250c0 12 9 21 20 21h250c12 0 21-9 21-21v-42c0-5 2-10 6-14l69-69-69-69z m140-202c12 0 21-9 21-21v0c0-11-9-20-21-20s-21 9-21 20 10 21 21 21z m140 48c4 4 6 9 6 15v41c0 12 9 21 21 21h250c11 0 21-9 21-21v-250c0-11-10-21-21-21h-250c-12 0-21 10-21 21v42c0 5-2 11-6 15l-69 68 69 69z m-140 202c-11 0-21 10-21 21v0c0 12 10 21 21 21s21-9 21-21-9-21-21-21z m71 313l69 68c4 4 6 9 6 15v42c0 11 9 21 21 21h250c11 0 21-10 21-21v-250c0-12-10-21-21-21h-250c-12 0-21 9-21 21v41c0 6-2 11-6 15l-69 69z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="toggle" unicode="" d="M229 829h-166c-35 0-63-28-63-62v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 34-28 62-63 62z m21-229c0-11-9-21-21-21h-166c-12 0-21 10-21 21v167c0 11 9 21 21 21h166c12 0 21-10 21-21v-167z m-62 104h-21v21c0 12-10 21-21 21s-21-9-21-21v-21h-21c-11 0-21-9-21-21s10-20 21-20h21v-21c0-12 9-21 21-21s21 9 21 21v21h21c11 0 20 9 20 20s-9 21-20 21z m41-208h-166c-35 0-63-28-63-63v-166c0-35 28-63 63-63h166c35 0 63 28 63 63v166c0 35-28 63-63 63z m21-229c0-12-9-21-21-21h-166c-12 0-21 9-21 21v166c0 12 9 21 21 21h166c12 0 21-9 21-21v-166z m-62 104h-21v21c0 11-10 21-21 21s-21-10-21-21v-21h-21c-11 0-21-9-21-21s10-21 21-21h21v-21c0-11 9-20 21-20s21 9 21 20v21h21c11 0 20 10 20 21s-9 21-20 21z m41-208h-166c-35 0-63-28-63-63v-167c0-34 28-62 63-62h166c35 0 63 28 63 62v167c0 35-28 63-63 63z m21-230c0-11-9-21-21-21h-166c-12 0-21 10-21 21v167c0 12 9 21 21 21h166c12 0 21-9 21-21v-167z m-62 105h-21v20c0 12-10 21-21 21s-21-9-21-21v-20h-21c-11 0-21-10-21-21s10-21 21-21h21v-21c0-12 9-21 21-21s21 9 21 21v21h21c11 0 20 9 20 21s-9 21-20 21z m208 625h583c12 0 21 9 21 20s-9 21-21 21h-583c-12 0-21-9-21-21s9-20 21-20z m583-292h-583c-12 0-21-9-21-21s9-21 21-21h583c12 0 21 10 21 21s-9 21-21 21z m0-333h-583c-12 0-21-10-21-21s9-21 21-21h583c12 0 21 9 21 21s-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="url" unicode="" d="M938 621h-875c-35 0-63-28-63-63v-416c0-35 28-63 63-63h875c34 0 62 28 62 63v416c0 35-28 63-62 63z m20-479c0-12-9-21-20-21h-875c-12 0-21 9-21 21v416c0 12 9 21 21 21h875c11 0 20-9 20-21v-416z m-640 312c-12 2-23-4-26-16l-26-106-38 89c-7 15-32 15-39 0l-38-89-27 106c-2 12-14 18-25 16-11-3-18-15-15-26l42-166c2-9 9-15 18-16 10-1 18 4 21 13l43 101 44-101c3-8 11-13 19-13 0 0 1 0 2 0 8 1 16 7 18 16l42 166c3 11-4 23-15 26z m291 0c-11 2-22-4-25-16l-27-106-38 89c-6 15-32 15-38 0l-38-89-27 106c-3 12-14 18-25 16-11-3-18-15-15-26l41-166c3-9 10-15 19-16 9-1 17 4 21 13l43 101 43-101c4-8 11-13 20-13 0 0 1 0 1 0 9 1 17 7 19 16l41 166c3 11-4 23-15 26z m292 0c-11 2-23-4-25-16l-27-106-38 89c-7 15-32 15-38 0l-39-89-26 106c-3 12-14 18-25 16-12-3-18-15-16-26l42-166c2-9 10-15 19-16 9-1 17 4 20 13l44 101 43-101c3-8 11-13 19-13 1 0 1 0 2 0 9 1 16 7 18 16l42 166c3 11-4 23-15 26z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="t-letter" unicode="" d="M647-108c0 0-1 0-1 0h-292c-11 0-21 9-21 20s10 21 21 21c35 0 63 28 63 63v646h-271c-35 0-63-28-63-63 0-11-9-21-20-21s-21 10-21 21v209c0 11 9 20 21 20h875c11 0 20-9 20-20v-209c0-11-9-21-20-21s-21 10-21 21c0 35-28 63-63 63h-271v-646c0-35 28-63 63-63 0 0 0 0 0 0h1c11 0 21-9 21-21s-10-20-21-20z m-209 41h125c-13 18-21 39-21 63v667c0 11 9 20 21 20h291c24 0 45-7 63-20v104h-834v-104c18 13 39 20 63 20h292c11 0 20-9 20-20v-667c0-24-7-45-20-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wordpress" unicode="" d="M108 346c0 54 13 108 34 158l187-512c-66 29-121 79-162 141-42 63-59 134-59 213z m659 17c0-9 0-13 0-21s-4-17-4-25c-5-9-5-17-5-21s-8-13-12-29c-4-17-8-25-8-29l-38-130-146 421c17 0 29 4 46 4 8 0 13 5 13 9 4 4 0 12 0 16-5 5-9 9-13 9l-108-9c-25 0-59 0-104 5-5 0-9 0-13-5 0 0 0 0-4-4 0-4 0-4 0-8 0-4 0-4 4-8s4-5 8-5l42-4 63-166-88-259-142 425c17 0 30 4 46 4 9 0 13 5 13 9 4 4 0 12 0 16-4 5-9 9-17 5l-104-5c0 0-4 0-13 0s-8 0-12 0c37 55 83 96 142 130s120 45 187 45c50 0 100-8 142-29s87-41 121-75h-5c-20 0-33-8-45-21-13-12-21-29-21-50 0-4 0-8 0-12s0-8 0-13c0-4 0-8 4-12 0-4 4-8 4-13s4-8 4-12c4-4 4-8 9-13 0 0 4-4 8-12 4-4 4-8 8-13 25-20 38-58 38-95z m-259-55l121-329c0 0 0-4 4-4-41-17-87-21-129-21-37 0-75 4-112 17l116 337z m338 225c33-58 50-120 50-187 0-71-17-138-54-196s-84-108-142-142l121 346c21 59 29 104 29 142-4 12-4 25-4 37z m-525 234c58 25 117 37 179 37s121-12 179-37 104-59 146-96c42-42 75-92 96-146 25-58 37-117 37-179s-12-121-37-179c-25-59-58-104-96-146-42-42-92-75-146-96s-116-38-179-38-121 13-179 38-104 58-146 96c-42 42-75 92-96 146-25 54-37 116-37 179s12 121 37 179 59 104 96 146 92 71 146 96z m8-825c54-25 113-34 171-34s117 13 171 34c54 25 100 54 142 91 37 38 70 88 91 142 25 54 34 113 34 171s-13 117-34 171c-25 54-54 100-91 141-38 38-88 71-142 92-54 25-113 33-171 33s-117-12-171-37-100-54-137-92-71-87-96-141-33-113-33-171 12-117 33-171 54-100 92-142c41-33 87-62 141-87z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text" unicode="" d="M979 642h-958c-12 0-21 9-21 21s9 20 21 20h958c12 0 21-9 21-20s-9-21-21-21z m-291-125h-667c-12 0-21 9-21 21s9 20 21 20h667c11 0 20-9 20-20s-9-21-20-21z m291-125h-958c-12 0-21 9-21 21s9 20 21 20h958c12 0 21-9 21-20s-9-21-21-21z m-291-125h-667c-12 0-21 9-21 21s9 20 21 20h667c11 0 20-9 20-20s-9-21-20-21z m291-125h-958c-12 0-21 9-21 21s9 20 21 20h958c12 0 21-9 21-20s-9-21-21-21z m-291-125h-667c-12 0-21 9-21 21s9 20 21 20h667c11 0 20-9 20-20s-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="anchor" unicode="" d="M500-154c-10 0-19 8-20 17-8 7-38 16-61 24-79 24-196 61-245 167h-28c-3 0-6 1-9 2-10 5-95 50-95 269 0 9 5 16 13 20 7 3 16 1 22-5 102-101 204-163 205-164 9-5 12-17 8-27l-14-28c65-62 108-67 120-67 16 0 21 24 21 25l0 392h-63c-20-26-51-42-83-42-58 0-104 47-104 105s46 104 104 104c32 0 63-16 83-42h63v32c-27 24-42 57-42 93 0 69 56 125 125 125s125-56 125-125c0-36-15-69-42-93v-32h63c20 26 51 42 83 42 58 0 104-47 104-104s-46-105-104-105c-32 0-63 16-83 42h-63v-396c0 0 0 0 0 0 1 0 6-21 21-21 12 0 55 5 121 67l-14 28c-5 10-2 22 7 27 2 1 104 63 205 164 6 6 15 8 23 5 7-4 12-11 12-20 0-219-85-264-95-269-3-1-6-2-9-2h-28c-49-106-166-143-244-167-24-8-54-17-61-24-2-9-11-17-21-17z m-348 250h36c8 0 16-5 19-13 38-98 150-133 224-157 29-9 53-16 69-26 16 10 40 17 69 26 74 24 186 59 224 157 3 8 11 13 20 13h35c12 9 57 50 67 179-68-62-130-105-159-124l13-25c4-8 2-17-4-24-58-57-115-89-161-89-41 0-59 38-62 59l0 420c0 11 9 21 21 21h94c8 0 15-4 18-11 12-19 32-31 54-31 35 0 63 28 63 63s-28 62-63 62c-22 0-42-12-54-31-3-7-10-11-18-11h-94c-12 0-21 10-21 21v63c0 7 3 13 8 17 21 16 33 40 33 66 0 46-37 83-83 83s-83-37-83-83c0-26 12-50 33-66 5-4 8-10 8-17v-63c0-11-9-21-20-21h-95c-8 0-15 4-18 11-12 19-32 31-54 31-35 0-63-28-63-62s28-63 63-63c22 0 42 12 54 31 3 7 10 11 18 11h95c11 0 20-10 20-21v-417c-3-24-21-62-62-62-46 0-103 32-161 89-6 7-8 16-4 24l13 25c-29 19-91 62-159 124 10-129 54-170 67-179z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bullet-list" unicode="" d="M979 663h-708c-12 0-21 9-21 20s9 21 21 21h708c12 0 21-9 21-21s-9-20-21-20z m0-334h-708c-12 0-21 10-21 21s9 21 21 21h708c12 0 21-9 21-21s-9-21-21-21z m0-333h-708c-12 0-21 9-21 21s9 21 21 21h708c12 0 21-10 21-21s-9-21-21-21z m-875 250c-57 0-104 47-104 104s47 104 104 104 104-47 104-104-46-104-104-104z m0 167c-34 0-62-28-62-63s28-62 62-62 63 28 63 62-28 63-63 63z m0-501c-57 0-104 47-104 105s47 104 104 104 104-47 104-104-46-105-104-105z m0 167c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m0 500c-57 0-104 47-104 104s47 105 104 105 104-47 104-105-46-104-104-104z m0 167c-34 0-62-28-62-63s28-62 62-62 63 28 63 62-28 63-63 63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="code" unicode="" d="M313-129c-3 0-6 0-8 1-11 5-16 17-12 27l375 917c5 11 17 16 27 12 11-5 16-17 12-28l-375-916c-3-8-11-13-19-13z m416 167c-5 0-9 1-13 5-9 7-10 20-3 29l239 278-239 278c-7 9-6 22 3 30 8 7 22 6 29-3l250-291c7-8 7-20 0-27l-250-292c-4-5-10-7-16-7z m-458 0c-6 0-12 2-16 7l-250 292c-7 7-7 19 0 27l250 291c8 9 21 10 29 3 9-8 10-21 3-30l-239-278 239-278c7-9 6-22-3-29-3-4-8-5-13-5z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="favorite" unicode="" d="M500-150c-276 0-500 224-500 500s224 500 500 500 500-224 500-500-224-500-500-500z m0 958c-253 0-458-205-458-458s205-458 458-458 458 205 458 458-205 458-458 458z m188-750c-4 0-8 2-12 4l-176 117-176-117c-7-5-17-5-24 0-7 5-10 14-8 23l59 215-176 138c-7 5-10 15-7 23 3 8 11 14 20 14h215l78 195c6 16 32 16 38 0l78-195h216c8 0 16-6 19-14 3-8 0-18-7-23l-176-138 59-215c2-9-1-18-8-23-4-2-8-4-12-4z m-188 167c4 0 8-1 12-3l141-95-48 176c-2 8 1 17 7 22l140 108h-169c-8 0-16 6-19 13l-64 160-64-159c-3-8-11-14-19-14h-169l140-108c6-5 9-14 7-22l-48-176 141 95c4 2 8 3 12 3z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="google-maps" unicode="" d="M750 100c-10 0-18 7-20 17-33 162-91 252-137 324-12 18-23 35-33 52-18 26-30 57-35 90-3 14-4 26-4 38 0 126 103 229 229 229s229-103 229-229c0-12-1-24-4-38-5-33-17-64-36-91-8-16-20-33-31-51-47-72-105-162-138-324-1-10-10-17-20-17z m0 708c-103 0-187-84-187-187 0-9 1-19 3-30 4-29 14-54 29-76 10-17 21-34 33-52 39-61 87-136 122-255 35 119 83 193 123 255 11 18 22 35 31 51 16 23 26 48 30 76 3 12 4 22 4 31 0 103-85 187-188 187z m0-291c-57 0-104 46-104 104s47 104 104 104 104-47 104-104-47-104-104-104z m0 166c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m83-833h-708c-57 0-104 47-104 104v667c0 57 47 104 104 104h417c11 0 21-9 21-21s-10-21-21-21h-417c-34 0-62-28-62-62v-667c0-34 28-62 62-62h708c35 0 63 28 63 62v521c0 12 9 21 21 21s21-9 21-21v-521c0-57-47-104-105-104z m-750 42c-5 0-10 2-14 6-8 8-8 21 0 29l520 521c9 8 22 8 30 0s8-21 0-29l-521-521c-4-4-9-6-15-6z m792 0c-5 0-11 2-15 6l-396 396c-8 8-8 21 0 29s22 8 30 0l396-396c8-8 8-21 0-29-4-4-10-6-15-6z m-667 583c-46 0-83 37-83 83s37 84 83 84 84-38 84-84-38-83-84-83z m0 125c-23 0-41-19-41-42s18-41 41-41 42 18 42 41-19 42-42 42z m84 0h-84c-11 0-20 9-20 21s9 21 20 21h84c11 0 21-10 21-21s-10-21-21-21z m-84-292c-71 0-104 49-104 84 0 39 37 65 110 78-3 8-6 16-6 26 0 11 10 21 21 21s21-10 21-21c0-10 9-19 23-32 18-17 40-39 40-72 0-74-51-84-105-84z m37 125c-73-10-99-28-99-41 0-9 11-42 62-42 60 0 63 14 63 42 0 14-10 25-26 41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image" unicode="" d="M42 83l212 300c9 9 21 13 34 5l137-96 192 233c8 13 29 13 37 0l304-454v608h-916v-596z m896-66l-309 458-183-225c-8-8-21-12-29-4l-134 96-229-325h884z m-917-46c-13 0-25 8-25 21v708c0 17 12 25 25 25h958c13 0 21-8 21-21v-708c0-13-8-21-21-21h-958z m246 571c0 25-21 50-46 50s-50-21-50-50 21-50 46-50 50 25 50 50z m46 0c0-50-42-96-92-96s-96 46-96 96 42 96 92 96 96-42 96-96z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="photo-library" unicode="" d="M729 142h-708c-12 0-21 9-21 21v625c0 11 9 20 21 20h708c12 0 21-9 21-20v-625c0-12-9-21-21-21z m-687 41h666v584h-666v-584z m687-41c-7 0-15 4-18 11l-212 424-148-258c-3-6-8-10-15-10-6-1-13 1-17 5l-107 107-174-270c-6-9-19-12-28-6-10 6-13 19-7 29l188 291c3 6 9 9 15 10 6 1 13-2 17-6l106-106 153 268c4 7 11 11 19 11 7 0 14-5 18-12l229-458c5-10 1-23-9-28-3-2-7-2-10-2z m-500 375c-57 0-104 46-104 104s47 104 104 104 104-47 104-104-46-104-104-104z m0 166c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m584-625h-709c-11 0-21 10-21 21v84c0 11 10 20 21 20s21-9 21-20v-63h667v583h-42c-11 0-21 10-21 21s10 21 21 21h63c11 0 20-9 20-21v-625c0-11-9-21-20-21z m83-83h-708c-12 0-21 9-21 21v83c0 12 9 21 21 21s20-9 20-21v-62h667v583h-62c-12 0-21 9-21 21s9 21 21 21h83c11 0 21-10 21-21v-625c0-12-10-21-21-21z m83-83h-708c-12 0-21 9-21 20v84c0 11 9 21 21 21s21-10 21-21v-63h666v542h-62c-12 0-21 9-21 21s9 21 21 21h83c12 0 21-10 21-21v-584c0-11-9-20-21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woocommerce" unicode="" d="M896 642h-792c-57 0-104-47-104-104v-292c0-58 47-104 104-104h403l128-80c3-3 7-4 11-4 5 0 11 3 15 7 7 7 8 18 2 26l-34 51h267c57 0 104 46 104 104v292c0 57-47 104-104 104z m62-396c0-35-28-63-62-63h-306c-7 0-14-4-18-11s-3-15 1-21l2-3-51 32c-4 2-8 3-11 3h-409c-34 0-62 28-62 63v292c0 34 28 62 62 62h792c34 0 62-28 62-62v-292z m-537 325c-47-60-61-198-65-273-23 43-41 115-51 156-11 49-15 63-34 63-17 0-19 0-85-144-10-21-22-47-32-68-6 41-12 99-18 142-4 36-8 69-11 93-2 12-12 20-24 18-11-1-19-12-17-23 3-24 7-57 11-93 26-217 27-217 51-217 17 0 18 0 78 131 13 28 29 62 41 88 23-96 50-192 101-217 3-1 6-2 9-2 4 0 8 1 11 3 6 4 10 11 10 18 0 87 16 245 58 300 7 9 5 22-4 29-9 7-22 5-29-4z m166-54c-54 0-109-63-125-142-9-50-1-96 22-123 14-18 33-27 54-27 55 0 109 62 125 142 9 49 1 95-22 123-14 17-33 27-54 27z m35-142c-13-64-54-108-84-108-9 0-16 3-22 11-15 18-20 52-13 89 13 64 54 108 84 108 9 0 16-4 22-11 15-18 20-52 13-89z m215 142c-54 0-109-63-125-142-9-50-1-96 22-123 14-18 33-27 54-27 55 0 109 62 125 142 9 49 1 95-22 123-14 17-33 27-54 27z m35-142c-13-64-54-108-84-108-9 0-16 3-22 11-15 18-20 52-13 89 13 64 54 108 84 108 9 0 16-4 22-11 15-18 20-52 13-89z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="youtube" unicode="" d="M500-19c-49 0-98 2-146 6l-221 20c-76 6-133 69-133 145v396c0 76 57 139 133 145l221 19c97 9 195 9 292 0l221-19c76-6 133-69 133-145v-396c0-76-57-139-133-145l-221-20c-48-4-97-6-146-6z m0 696c-48 0-95-2-143-6l-220-19c-54-5-95-50-95-104v-396c0-54 41-99 95-104l220-19c95-8 191-8 286 0l220 19 0 0c54 5 95 50 95 104v396c0 54-41 99-95 104l-220 19c-48 4-95 6-143 6z m-104-535c-4 0-7 0-10 2-7 4-11 11-11 18v375c0 8 4 15 11 19 7 3 15 3 21-1l292-188c6-3 9-10 9-17s-3-14-9-18l-292-187c-3-2-7-3-11-3z m21 357v-298l232 149-232 149z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flip-box" unicode="" d="M813 788h-625c-12 0-21-10-21-21v-834c0-11 9-21 21-21h625c11 0 20 10 20 21v834c0 11-9 21-20 21z m-21-834h-584v792h584v-792z m207 264c-4 11-15 17-26 13l-35-11c42 86 44 194-32 271-8 8-22 8-30 0-8-8-8-21 0-29 64-65 60-159 21-232l-16 47c-4 11-15 17-26 13-11-4-17-15-13-26l29-89c0 0 1-1 1-1 1-2 1-3 2-4 1-1 2-2 3-3 0-1 1-1 1-2 0 0 1 0 1 0 1-1 2-1 3-2 2-1 6-2 9-2 2 0 4 0 6 1l89 30c11 3 17 15 13 26z m-870 265c0 1-1 1-1 2 0 1-1 2-2 4-1 1-2 1-2 2-1 1-1 2-2 2-1 1-1 1-2 1-1 0-1 1-1 1-1 0-2 0-2 1-2 0-3 1-5 1-1 0-2 0-3 0-2 0-3 0-4 0-1-1-2-1-2-1l-89-29c-11-4-17-16-13-27 4-10 16-16 27-13l34 12c-42-86-44-195 33-272 4-4 9-6 14-6 6 0 11 2 15 6 8 8 8 21 0 30-64 64-59 158-21 231l16-46c3-9 11-15 20-15 2 0 4 1 6 1 11 4 17 16 14 27l-30 88z m184 13h375c11 0 20 9 20 21s-9 21-20 21h-375c-12 0-21-10-21-21s9-21 21-21z m0-125h375c11 0 20 9 20 21s-9 21-20 21h-375c-12 0-21-10-21-21s9-21 21-21z m0-125h375c11 0 20 9 20 21s-9 21-20 21h-375c-12 0-21-10-21-21s9-21 21-21z m0-125h166c12 0 21 9 21 21s-9 21-21 21h-166c-12 0-21-10-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="settings" unicode="" d="M662-117c-14 0-27 3-40 10-21 12-36 33-40 57-4 21-23 35-45 33-24-3-50-3-74 0-22 2-41-12-45-33-4-24-19-45-40-57-22-12-48-13-72-3-38 16-75 37-108 62-20 15-32 38-32 64-1 24 10 48 29 64 16 13 18 36 6 54-15 20-27 42-38 65-8 20-30 29-50 22-23-9-49-6-70 6-21 13-36 35-39 60-3 21-4 42-4 63s1 42 4 63c3 25 18 47 39 60 21 12 47 15 70 6 20-7 42 3 50 22 11 23 23 45 38 65 13 18 10 41-6 55-19 15-30 39-29 63 0 26 12 49 32 64 33 25 70 46 108 62 23 10 50 9 72-3 21-12 36-33 40-57 4-21 23-35 45-33 24 3 50 3 74 0 22-2 41 12 45 33 4 24 19 45 40 57 22 12 49 13 72 3 38-16 75-37 108-62 20-15 32-38 33-64 0-24-11-48-30-63-16-14-18-37-5-55 14-20 27-42 37-65 9-19 31-29 50-22 23 9 49 6 70-6 22-13 36-35 39-60 3-21 4-42 4-63s-1-42-4-63c-3-25-17-47-39-60-21-12-47-15-70-6l0 0c-19 7-42-2-50-22-11-23-23-45-38-65-12-18-10-41 6-54 19-16 30-40 29-64 0-26-12-49-32-64-33-25-70-46-108-62-10-5-21-7-32-7z m-120 142c40 0 74-28 81-68 2-12 9-22 19-27 11-6 24-7 36-2 35 15 68 34 99 57 10 8 16 19 16 31 0 12-5 24-14 31-34 28-39 75-13 111 13 18 24 38 33 58 17 39 62 59 102 44l0 0c12-4 24-3 35 3 10 7 17 17 19 30 2 19 3 38 3 57s-1 38-3 57c-2 13-9 24-19 30-11 6-23 7-34 3-40-15-86 5-103 44-9 20-20 40-33 58-26 36-21 83 13 111 9 7 14 19 14 31 0 12-6 23-16 31-31 23-64 42-99 57-12 5-25 4-36-2-10-5-17-16-19-27-7-43-46-72-90-67-22 2-44 2-66 0-44-5-83 24-90 67-2 11-9 22-19 27-11 6-24 7-36 2-35-15-68-34-99-57-10-8-15-19-16-31 0-12 5-24 14-31 34-28 39-75 13-111-12-18-24-38-33-58-17-39-62-59-102-44-12 4-24 3-34-3-11-6-18-17-20-30-2-19-3-38-3-57s1-38 3-57c2-13 9-23 20-30 10-6 22-7 33-3 41 15 86-4 103-44 9-20 21-40 33-57 26-36 21-84-13-112-9-7-14-18-14-30 1-13 6-24 16-32 31-23 64-42 99-57 12-5 25-4 36 2 10 6 17 16 19 27 7 43 46 72 90 67 22-2 44-2 66 0 3 0 6 1 9 1z m-42 117c-115 0-208 93-208 208s93 208 208 208 208-93 208-208-93-208-208-208z m0 375c-92 0-167-75-167-167s75-167 167-167 167 75 167 167-75 167-167 167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="headphones" unicode="" d="M1036 189v143c0 275-232 518-500 518s-500-243-500-518v-143a175 175 0 0 1-36-107 247 247 0 0 1 232-232 55 55 0 0 1 54 54v321a55 55 0 0 1-54 54 256 256 0 0 1-161-54v107a503 503 0 0 0 179 375v-89a20 20 0 0 1 11-18 16 16 0 0 1 18 4 334 334 0 0 0 253 100 329 329 0 0 0 254-100 19 19 0 0 1 14-8h7a20 20 0 0 1 11 18v93a491 491 0 0 0 178-375v-107a256 256 0 0 1-160 54 55 55 0 0 1-54-54v-321a55 55 0 0 1 54-54 247 247 0 0 1 232 232 154 154 0 0 1-32 107z m-786-285a18 18 0 0 0-36 0v321a18 18 0 0 0 36 0v-321z m-71 335v-343a210 210 0 0 0-143 186c0 86 68 139 143 157z m607 486v-68a390 390 0 0 1-250 82 390 390 0 0 1-250-82v75a454 454 0 0 0 250 82 445 445 0 0 0 250-82v-7z m35-500a18 18 0 0 0 36 0v-321a18 18 0 0 0-36 0v321z m72-329v343c78-18 143-68 143-157a214 214 0 0 0-143-186z" horiz-adv-x="1069" />
|
||||
|
||||
<glyph glyph-name="testimonial" unicode="" d="M155-150a13 13 0 0 0-10 3 17 17 0 0 0-7 21l93 252h-83a149 149 0 0 0-148 148v428a149 149 0 0 0 148 148h707a149 149 0 0 0 148-148v-431a149 149 0 0 0-148-149h-348l-341-272h-11z m-7 966a115 115 0 0 1-113-114v-431a115 115 0 0 1 113-114h111a18 18 0 0 0 13-7 26 26 0 0 0 4-17l-83-218 297 238a13 13 0 0 0 10 4h355a115 115 0 0 1 114 114v434a115 115 0 0 1-114 114l-707-3h0z" horiz-adv-x="1003" />
|
||||
|
||||
<glyph glyph-name="counter-circle" unicode="" d="M321 488c-8 0-13 0-17-5l-62-91c-4-9-4-17 4-21 8-4 17-4 21 4l33 50v-196c0-8 8-16 17-16 8 0 16 8 16 16v242c0 8-4 12-12 17z m150 0c-42 0-75-34-75-75 0-9 8-17 17-17s16 8 16 17c0 25 21 45 46 45s46-20 46-45v-9c0-8-4-21-8-29l-109-137c-4-5-4-13 0-17 4-4 9-8 13-8h121c8 0 16 8 16 16s-8 17-16 17h-92l87 112c13 13 17 30 17 46v9c-4 41-37 75-79 75z m287-75c0 41-33 75-75 75s-75-34-75-75c0-9 9-17 17-17s17 8 17 17c0 25 21 45 46 45 25 0 45-20 45-45s-20-46-45-46c-9 0-17-9-17-17s8-17 17-17c25 0 45-20 45-45s-20-46-45-46c-25 0-46 21-46 46 0 8-9 16-17 16s-17-8-17-16c0-42 34-75 75-75s75 33 75 75c0 25-12 45-29 62 17 13 29 38 29 63z m-258 416c263 0 479-216 479-479s-216-479-479-479-479 217-479 479c0 92 25 183 79 263 8 8 21 12 29 4 9-4 13-17 4-29-45-71-70-150-70-238 0-242 195-438 437-438s438 196 438 438-196 438-438 438c-12 0-21 8-21 20s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="person" unicode="" d="M500 142c-103 0-194 83-232 208-34 2-60 46-60 104 0 17 3 33 7 47-5 21-7 40-7 57 0 161 131 292 292 292s292-131 292-292c0-17-2-36-7-57 5-14 7-30 7-47 0-58-26-102-60-104-38-125-129-208-232-208z m-217 253c3 0 5 0 7-1 7-3 12-7 13-14 30-118 109-197 197-197s168 79 197 197c1 7 6 12 12 14 6 3 13 2 19-1 7-2 22 21 22 61 0 14-2 28-6 40-1 3-1 7 0 11 4 20 6 37 6 53 0 138-112 250-250 250s-250-112-250-250c0-16 2-33 7-53 0-4 0-8-1-11-4-12-6-26-6-40 0-40 16-62 21-62 3 2 8 3 12 3z m425 80c-8 0-15 5-19 12 0 2-16 37-21 72-87 6-178 48-222 93-4-7-9-13-14-18-34-34-87-34-114-34-6-14-9-59-5-103 0-6-2-12-7-16-5-5-11-7-17-6-1 0-29 5-53 5-11 0-21 9-21 20s10 21 21 21c12 0 24-1 34-1-2 37 0 91 19 111 8 8 18 11 29 11 25 0 64 1 84 21 10 10 15 23 15 41 0 12 9 21 21 21s20-9 20-21c3-21 107-104 230-104 11 0 20-9 20-21 0-20 8-46 14-61l40 3c12 1 22-7 23-19 1-11-8-21-19-22l-56-5c0 0-1 0-2 0z m-270-42h-42c-12 0-21 10-21 21s9 21 21 21h42c11 0 20-9 20-21s-9-21-20-21z m166 0h-41c-12 0-21 10-21 21s9 21 21 21h41c12 0 21-9 21-21s-9-21-21-21z m375-583h-958c-7 0-13 3-17 8-4 5-5 12-3 18l32 129c7 30 27 55 55 68l215 108c5 3 11 3 17 1 5-2 9-6 12-11l107-251 16 32c-14 19-38 56-38 86 0 38 32 62 83 62s83-24 83-62c0-30-24-67-38-86l16-32 107 251c3 5 7 9 12 11 6 2 12 2 17-1l216-108c27-13 47-38 54-68l32-129c2-6 1-13-3-18-4-5-10-8-17-8z m-385 42h359l-26 103c-5 18-17 33-33 41l-196 98-104-242z m-123 0h58l-27 53c-3 7-2 16 3 22 15 19 37 54 37 71 0 18-29 20-42 20s-42-2-42-20c0-17 23-52 38-71 5-6 6-15 2-22l-27-53z m-423 0h358l-104 242-196-98c-16-8-28-23-32-41l-26-103z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-right" unicode="" d="M696 317c12 12 17 29 17 46 0 16-5 33-17 41l-296 300c-12 13-25 21-46 21-16 0-29-4-41-17-13-12-21-29-21-45 0-17 4-34 16-46l255-259-259-279c-12-12-16-29-16-46 0-16 8-33 20-46 13-8 30-12 46-12 17 0 34 8 46 21l296 321z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-left" unicode="" d="M646 725c-17 0-33-8-42-17l-296-300c-12-12-16-29-16-45 0-17 4-34 16-46l296-321c13-13 25-21 42-21 17 0 33 4 46 17 12 12 21 29 21 46 0 16-5 33-21 45l-254 280 254 262c8 8 16 21 16 38 0 16-4 33-16 45-17 13-29 17-46 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="close" unicode="" d="M742 683l-242-241-242 241c-12 13-25 17-41 17-21 0-38-8-50-17-13-12-17-29-17-45 0-17 4-30 21-42l237-246-241-242c-29-29-29-58 0-87 29-29 58-29 87 0l242 242 242-242c12-13 29-17 45-17 17 0 34 4 46 17 13 12 17 25 17 46 0 16-4 33-17 46l-241 237 245 242c30 29 30 58 0 87-29 34-58 34-91 4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="file-download" unicode="" d="M792 475h-167v250h-250v-250h-167l292-292 292 292z m-584-375v-83h584v83h-584z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="save" unicode="" d="M772 850a247 247 0 0 0 156-98 315 315 0 0 0 60-108 217 217 0 0 0 12-67v-636a93 93 0 0 0-94-91h-813a93 93 0 0 0-93 91v815a93 93 0 0 0 93 94h679z m-15-59h-516a52 52 0 0 1-52-52v-281a52 52 0 0 1 52-53h517a52 52 0 0 1 53 53v281a52 52 0 0 1-53 52z m-60 0h-143v-231h0a22 22 0 0 1 23-22h99a22 22 0 0 1 23 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="zoom-in" unicode="" d="M646 267h-33l-13 12c42 46 67 109 67 175 0 150-121 271-271 271s-271-121-271-271c0-150 121-271 271-271 67 0 129 25 175 67l12-12v-34l209-208 62 62-208 209z m-250 0c-104 0-188 83-188 187s84 188 188 188 187-84 187-188-83-187-187-187z m21 208h83v-42h-83v-83h-42v83h-83v42h83v83h42v-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="shortcode" unicode="" d="M917 646v-583c0-13-9-21-21-21h-83c-13 0-21 8-21 21 0 12 8 20 21 20h62v542h-62c-13 0-21 8-21 21 0 12 8 21 21 21h83c12 0 21-9 21-21z m-729-21c12 0 20 4 20 21 0 12-8 21-20 21h-84c-12 0-21-9-21-21v-583c0-13 9-21 21-21h84c12 0 20 8 20 21 0 12-8 20-20 20h-63v542h63z m125-383c-25 0-42-17-42-42s17-42 42-42 41 17 41 42-16 42-41 42z m187 0c-25 0-42-17-42-42s17-42 42-42c25 0 42 17 42 42s-17 42-42 42z m188 0c-25 0-42-17-42-42s17-42 42-42 41 17 41 42-16 42-41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nerd" unicode="" d="M958 350c0 253-205 458-458 458s-458-205-458-458 205-458 458-458 458 205 458 458z m42 0c0-276-224-500-500-500s-500 224-500 500 224 500 500 500 500-224 500-500z m-768-135c53-93 146-136 268-136s215 43 268 136c6 10 2 23-8 28-10 6-22 2-28-8-45-78-123-114-232-114s-187 36-232 114c-6 10-18 14-28 8-10-5-14-18-8-28z m466 447c-95 0-172-74-176-168-6 1-14 2-22 2-8 0-16-1-22-2-4 94-81 168-176 168-97 0-176-79-176-177s79-176 176-176c71 0 133 43 161 104 9 2 16 10 16 20 0 21 1 21 21 21 20 0 21 0 21-21 0-10 7-18 17-20 27-61 89-104 160-104 97 0 176 79 176 176s-79 177-176 177z m-396-313c-75 0-136 61-136 136 0 76 61 137 136 137 76 0 136-62 136-137 0-75-60-136-136-136z m396 0c-75 0-136 61-136 136 0 76 61 137 136 137 75 0 136-62 136-137 0-75-61-136-136-136z m23 134c0 12-9 21-21 21s-21-9-21-21 9-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62-35 0-62 28-62 62s27 63 62 63c35 0 63-28 63-63z m-438 0c0 12-9 21-21 21s-21-9-21-21 10-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62s-62 28-62 62 28 63 62 63 63-28 63-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-desktop" unicode="" d="M558 21c26 0 46-21 46-46v-24c0-7-6-14-14-14h-180c-8 0-14 7-14 14v24c0 25 20 46 46 46h116z m306 741c52 0 94-43 94-95v-509c0-53-42-95-94-95h-728c-52 0-94 42-94 95v509c0 52 42 95 94 95h728z m0-84h-728c-5 0-10-3-11-8l0-3v-425h750v425c0 6-4 10-9 11l-2 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-tablet" unicode="" d="M788 808c48 0 87-39 87-87v-742c0-48-39-87-87-87h-575c-49 0-88 39-88 87v742c0 48 39 87 88 87h575z m0-83h-575c-3 0-4-2-5-4l0 0v-742c0-2 2-4 4-4l1 0h575c2 0 3 2 4 4l0 0v742c0 2-2 4-4 4l0 0z m-205-646c23 0 42-19 42-41v-8c0-7-6-13-14-13h-222c-8 0-14 6-14 13v8c0 22 19 41 42 41h166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-mobile" unicode="" d="M700 808c48 0 88-39 88-87v-742c0-48-40-87-88-87h-400c-48 0-87 39-87 87v742c0 48 39 87 87 87h400z m0-83h-400c-2 0-4-2-4-4l0 0v-742c0-2 2-4 4-4l0 0h400c2 0 4 2 4 4l0 0v742c0 2-1 4-4 4l0 0z m-164-646c23 0 42-19 42-41v-8c0-7-6-13-14-13h-118c-8 0-14 6-14 13v8c0 22 19 41 42 41h62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="document-file" unicode="" d="M379 842c4 4 13 8 17 8h417c33 0 62-29 62-62v-876c0-33-29-62-62-62h-625c-34 0-63 29-63 62v667c0 4 4 13 8 17l246 246z m-4-63l-179-179h158c13 0 21 8 21 21v158z m438 29h-396v-187c0-33-29-63-63-63h-187v-646c0-12 8-20 21-20h625c12 0 20 8 20 20v876c0 12-8 20-20 20z m-542-729c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z m0-125c-13 0-21 8-21 21s8 21 21 21h458c13 0 21-9 21-21s-8-21-21-21h-458z m0 375c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z m0-125c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z m242 375c-13 0-21 9-21 21s8 21 21 21h216c13 0 21-8 21-21s-8-21-21-21h-216z m-242-125c-13 0-21 9-21 21s8 21 21 21h458c13 0 21-8 21-21s-8-21-21-21h-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="folder-o" unicode="" d="M896-46h-792c-57 0-104 47-104 104v500c0 58 47 105 104 105h149c44 0 84-29 98-72l4-11c9-25 32-42 59-42h482c57 0 104-47 104-105v-375c0-57-47-104-104-104z m-792 667c-34 0-62-28-62-63v-500c0-34 28-62 62-62h792c34 0 62 28 62 62v375c0 35-28 63-62 63h-482c-45 0-84 29-99 71l-3 11c-9 26-33 43-59 43h-149z m834-125c-12 0-21 9-21 21v125c0 34-28 62-63 62h-708c-35 0-63-28-63-62 0-12-9-21-20-21s-21 9-21 21c0 57 46 104 104 104h708c58 0 104-47 104-104v-125c0-12-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="hypster" unicode="" d="M750 267c-129 0-177 68-194 109-19 48-17 105 3 151-46-12-71-12-118 0 21-46 23-103 3-151-17-41-65-109-194-109-164 0-208 91-208 146 0 7 0 15 1 25 2 23 4 59-7 72-3 3-7 6-16 7-10 0-18 8-20 17-1 10 4 19 13 23 5 2 113 43 237 43 78 0 142-17 188-29 25-7 48-13 62-13s37 6 62 13c47 12 110 29 188 29 124 0 232-41 237-43 9-4 14-13 13-23-2-9-10-17-20-17-9-1-13-4-15-7-12-13-10-49-8-72 1-10 1-18 1-25 0-55-43-146-208-146z m-133 275c-28-30-45-95-22-150 16-38 55-84 155-84 162 0 167 94 167 105 0 6-1 13-1 22-3 31-6 70 13 97-42 12-108 26-179 26-51 0-95-7-133-16z m-545-10c18-27 15-66 13-97-1-9-2-16-2-22 0-11 5-105 167-105 100 0 139 46 155 84 23 55 6 120-22 150-38 9-82 16-133 16-71 0-137-14-178-26z m491-119c-12 0-21 9-21 20 0 11-13 21-42 21s-42-10-42-21c0-11-9-20-20-20s-21 9-21 20c0 32 26 63 83 63s83-31 83-63c0-11-9-20-20-20z m-63-563c-276 0-500 224-500 500s224 500 500 500 500-224 500-500-224-500-500-500z m0 958c-253 0-458-205-458-458s205-458 458-458 458 205 458 458-205 458-458 458z m-229-416c-35 0-63 28-63 62s28 63 63 63 62-28 62-63-28-62-62-62z m0 83c-12 0-21-9-21-21s9-21 21-21 21 10 21 21-10 21-21 21z m458-83c-34 0-62 28-62 62s28 63 62 63 63-28 63-63-28-62-63-62z m0 83c-11 0-21-9-21-21s10-21 21-21 21 10 21 21-9 21-21 21z m-87-417c-40 0-163 0-163 84s62 83 92 83c14 0 31-5 54-12 49-15 122-37 228-30 10 1 18-5 21-14s0-18-8-24c-40-27-153-87-224-87z m-71 125c-38 0-50-3-50-41 0-35 66-42 121-42 34 0 86 19 133 42-72 4-126 20-162 31-18 6-34 10-42 10z m-213-125c-71 0-184 60-224 87-8 6-11 15-8 24s12 15 21 14c106-7 179 15 228 30 23 7 40 12 54 12 30 0 92 0 92-83s-122-84-163-84z m-133 84c47-23 99-42 133-42 56 0 121 7 121 42 0 38-12 41-50 41-8 0-24-4-42-10-36-11-90-27-162-31z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-left" unicode="" d="M83 821c30 0 55-24 55-54v-834c0-30-25-54-55-54s-54 24-54 54v834c0 30 24 54 54 54z m264-333c17 17 46 5 46-20l0-85 503 0 6 0c31-3 56-26 56-54l0-5c-3-28-30-49-62-49l-503 0 0-85c0-24-29-37-46-19l-137 139c-11 10-11 28 0 39l137 139z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-right" unicode="" d="M917 821c30 0 54-24 54-54v-834c0-30-24-54-54-54s-54 24-54 54v834c0 30 24 54 54 54z m-264-333l137-139c11-11 11-29 0-39l-137-139c-17-18-46-5-46 19l0 85-503 0c-32 0-59 22-62 49l0 5c0 29 24 51 56 54l6 0 503 0 0 85c0 25 29 37 46 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-center" unicode="" d="M500 821c30 0 54-24 54-54v-834c0-30-24-54-54-54s-54 24-54 54v834c0 30 24 54 54 54z m310-332l0-85 86 0c32 0 59-21 62-49l0-5c0-28-24-51-56-54l-6 0-86 0 0-85c0-24-30-37-47-19l-137 138c-11 11-11 29 0 40l137 138c17 18 47 5 47-19z m-575 22l3-3 137-138c10-10 11-25 3-36l-3-4-137-138c-16-17-43-7-47 15l0 4 0 85-86 0-6 0c-29 3-53 23-56 49l0 5 0 6c3 26 27 46 56 49l6 0 86 0 0 85c0 22 27 35 44 21l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="h-align-stretch" unicode="" d="M500 821c30 0 54-24 54-54v-834c0-30-24-54-54-54s-54 24-54 54v834c0 30 24 54 54 54z m310-310l3-3 137-138c10-10 11-25 3-36l-3-4-137-138c-16-17-43-7-47 15l0 4 0 85-86 0-6 0c-29 3-53 23-56 49l0 5 0 6c3 26 27 46 56 49l6 0 86 0 0 85c0 22 27 35 44 21z m-575-22l0-85 86 0c32 0 59-21 62-49l0-5c0-28-24-51-56-54l-6 0-86 0 0-85c0-24-30-37-47-19l-137 138c-11 11-11 29 0 40l137 138c17 18 47 5 47-19z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-top" unicode="" d="M480 641c11 11 29 11 40 0l138-138c18-17 5-46-19-46l-85 0 0-503 0-6c-3-31-26-56-54-56l-5 0c-28 3-49 30-49 62l0 503-85 0c-24 0-37 29-19 46l138 138z m437 180c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-bottom" unicode="" d="M917-13c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z m-422 821l5 0c28 0 51-24 54-56l0-6 0-503 85 0c24 0 37-29 19-46l-138-137c-11-11-29-11-40 0l-138 137c-18 17-5 46 19 46l85 0 0 503c0 32 22 59 49 62l5 0-5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-middle" unicode="" d="M516 228l4-3 138-137c17-16 7-43-15-46l-4-1-85 0 0-86 0-5c-3-30-23-54-49-57l-5 0-6 0c-26 3-46 27-49 57l0 5 0 86-85 0c-23 0-35 27-22 44l3 3 139 137c10 10 25 11 36 3l0 0z m401 176c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z m-417 404c28 0 51-24 54-56l0-6 0-86 85 0c24 0 37-30 19-47l-138-137c-11-11-29-11-40 0l-138 137c-18 17-5 47 19 47l85 0 0 86c0 30 19 56 44 61l5 1 5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="v-align-stretch" unicode="" d="M500 233c28 0 51-24 54-56l0-6 0-86 85 0c24 0 37-30 19-47l-138-137c-11-11-29-11-40 0l-138 137c-18 17-5 47 19 47l85 0 0 86c0 30 19 56 44 61l5 1 5 0z m417 171c30 0 54-24 54-54s-24-54-54-54h-834c-30 0-54 24-54 54s24 54 54 54h834z m-401 399l4-3 138-137c17-16 7-43-15-47l-4 0-85 0 0-86 0-6c-3-29-23-53-49-56l-5 0-6 0c-26 3-46 27-49 56l0 6 0 86-85 0c-23 0-35 26-22 44l3 3 139 137c10 10 25 11 36 3l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pro-icon" unicode="" d="M0 710c0 77 63 140 140 140l1434 0c78 0 140-63 140-140l0-720c0-77-63-140-140-140l-1434 0c-77 0-140 63-140 140l0 720z m262-576l65 0 0 170 117 0c88 0 138 62 138 135 0 74-49 136-138 136l-182 0 0-441z m254 305c0-46-34-77-80-77l-109 0 0 155 109 0c46 0 80-31 80-78z m381-305l75 0-110 177c55 7 107 49 107 128 0 82-56 136-138 136l-182 0 0-441 65 0 0 170 80 0 103-170z m6 305c0-46-34-77-81-77l-108 0 0 155 108 0c47 0 81-31 81-78z m128-85c0-131 88-228 217-228 129 0 218 97 218 228 0 131-89 228-218 228-129 0-217-97-217-228z m368 0c0-96-60-169-151-169-92 0-151 73-151 169 0 97 59 169 151 169 91 0 151-72 151-169z" horiz-adv-x="1714" />
|
||||
|
||||
<glyph glyph-name="mail" unicode="" d="M896 17h-792c-57 0-104 46-104 104v458c0 58 47 104 104 104h792c57 0 104-46 104-104v-458c0-58-47-104-104-104z m-792 625c-34 0-62-28-62-63v-458c0-35 28-63 62-63h792c34 0 62 28 62 63v458c0 35-28 63-62 63h-792z m396-334c-23 0-46 7-66 20l-342 234c-9 7-11 19-5 29s19 12 29 5l342-233c25-18 59-18 84 0l342 233c10 7 23 4 29-5 7-10 4-22-5-29l-342-234c-20-13-43-20-66-20z m-396-208c-6 0-12 3-16 8-7 8-6 22 3 29l250 208c9 8 22 6 29-2 8-9 6-22-2-30l-250-208c-4-3-9-5-14-5z m792 0c-5 0-10 2-13 5l-250 208c-9 8-10 21-3 30 7 8 20 10 29 2l250-208c9-7 10-21 3-29-4-5-10-8-16-8z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lock-user" unicode="" d="M459 767c4 0 8 1 12 4 46 33 96 37 139 37 58 0 100-18 123-53 27-42 15-64 2-78l-20-21c-4-3-6-8-7-13l-5-105c0-5 2-11 6-15s9-6 15-6c6 0 11-3 15-8 4-4 6-10 5-16l-10-83c-1-10-10-18-23-18-10 0-19-8-20-18-4-23-21-54-22-55-5-10-2-22 8-28 10-6 23-2 29 8 0 1 14 27 22 53 25 6 44 27 47 53l11 83c2 18-4 35-15 49-7 8-16 14-25 17l4 79 15 15c24 25 43 68 2 130-31 48-84 72-157 72-29 0-96 0-158-42-178-3-202-86-202-166 0-19 5-61 8-87-11-3-21-9-28-18-12-13-18-31-16-49l11-83c3-27 24-49 50-54 9-57 36-113 77-155l-15-58-160-40c-104-26-177-120-177-227 0-6 2-11 6-15 4-4 9-6 15-6l542 1c11 0 20 9 20 21 0 11-9 20-20 20 0 0 0 0 0 0l-520 0c8 79 66 146 145 166l171 43c8 1 14 7 15 15l21 81c2 8-1 16-6 21-42 39-70 97-75 154 0 11-10 20-20 20h-7c-11 0-20 7-21 18l-10 83c-1 6 1 12 5 17 4 4 9 7 15 7h5c6 0 11 2 15 7 4 4 6 10 5 16-2 21-9 81-9 102 0 65 13 123 167 125z m520-624h-21v20c0 81-65 146-145 146s-146-65-146-146v-20h-21c-12 0-21-10-21-21v-250c0-12 9-21 21-21h333c12 0 21 9 21 21v250c0 11-9 21-21 21z m-271 20c0 58 47 105 105 105s104-47 104-105v-20h-209v20z m250-271h-291v209h291v-209z m-166 90v-27c0-12 9-21 21-21s20 9 20 21v27c13 7 21 20 21 36 0 23-18 41-41 41s-42-18-42-41c0-16 8-29 21-36z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="testimonial-carousel" unicode="" d="M25 450c-8-12-8-21 0-33l83-84c13-8 21-8 34 0 8 9 8 21 0 34l-71 66 71 67c8 8 8 21 0 33-9 9-21 9-34 0l-83-83m950-33c8 8 8 21 0 33l-83 83c-9 9-21 9-34 0-8-12-8-20 0-33l67-67-67-66c-8-13-8-21 0-34 13-8 21-8 34 0l83 84m-229 179c-17 17-38 25-63 25h-366c-25 0-46-8-63-25-16-21-25-42-25-63v-225c0-25 9-45 29-66 17-17 38-25 63-25h33l-54-104c-4-9-4-17 4-25 9-9 17-9 25 0l175 129h175c25 0 46 8 63 25 16 16 25 41 25 66v225c4 21-4 42-21 63m-29-29c8-9 12-21 12-34v-225c0-12-4-25-12-33-9-8-21-17-34-17h-183l-12-4-109-83 25 54c4 8 4 13 0 21s-8 8-16 8h-71c-13 0-25 4-34 17-8 8-16 21-16 33v229c0 13 4 25 16 34 9 8 21 12 34 12h366c13 0 21-4 34-12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="media-carousel" unicode="" d="M500 121c-12 0-21-8-21-21 0-12 9-21 21-21 13 0 21 9 21 21 0 13-8 21-21 21m83 0c-12 0-20-8-20-21 0-12 8-21 20-21 13 0 21 9 21 21 0 13-8 21-21 21m-187-21c0-12 8-21 21-21 12 0 21 9 21 21 0 13-9 21-21 21-13 0-21-8-21-21m-279 475l-84-42c-12-4-16-16-8-25 4-12 17-16 25-8l54 25v-262l-54 25c-12 8-21 4-25-9-8-12-4-21 8-25l84-41 8-9 8 4c9 5 13 9 9 17v333c0 9-4 13-9 17-4 4-12 4-16 0m696 25c0 13-9 21-21 21h-584c-12 0-20-8-20-21v-417c0-12 8-20 20-20h584c12 0 21 8 21 20v417m-42-396h-542v375h542v-375m-308 279l-5 0c-8 0-12-4-12-8v-171l0-4c4-4 12-8 17-4l133 83 4 4c4 5 0 13-4 17l-133 83m433 38l50-25c12-8 21-4 25 8 8 13 4 21-8 25l-84 42c-8 4-12 4-21 0-4-4-8-8-8-17v-333c0-8 4-17 8-17l13-4 8 4 84 42c12 4 16 12 8 25-4 12-17 17-25 8l-50-25v267z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="section" unicode="" d="M58 783c-16-16-20-37-20-62v-742c0-25 8-46 25-62s37-25 62-25h750c25 0 46 8 63 25 16 16 25 37 25 62v742c0 25-9 46-25 62-21 17-42 25-63 25h-750c-29 5-50-8-67-25m67-154h733v-275h-733v275m738-366v-276h-738v276h738z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="column" unicode="" d="M958 721c0 25-8 46-25 62-16 17-37 25-62 25h-746c-21 0-42-8-58-25-17-16-25-37-25-62v-746c0-25 8-42 25-58 16-17 37-25 58-25h746c25 0 46 8 62 25 17 16 25 37 25 58v746m-825-96h321v-642h-321v642m413-642v642h317v-642h-317z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="edit" unicode="" d="M725 526l-196 197 67 67c55 53 109 83 155 38l79-80c53-52 15-101-38-155z m-256 137l196-196-459-459h-193l0 196z m-434-813a35 35 0 0 0 0 70h792a35 35 0 0 0 0-70z" horiz-adv-x="862" />
|
||||
|
||||
<glyph glyph-name="clone" unicode="" d="M288 563c-17-13-25-30-25-55v-558c0-21 8-38 20-54 13-17 34-25 55-25h558c21 0 37 8 54 25s21 33 21 54v558c0 21-8 42-21 55-17 16-33 25-54 25h-554c-25 0-42-9-54-25m-163 145c0 13 4 17 17 17h504c17 0 21-4 21-17v-37c0-13 4-25 16-33 9-9 21-13 34-13s25 4 33 13c8 8 17 20 17 33v37c0 34-13 59-34 84-25 21-50 33-83 33h-508c-34 0-59-12-84-33-20-25-33-54-33-84v-504c0-33 13-58 33-83 25-21 50-33 84-33h37c13 0 25 4 34 16 8 9 16 21 16 34 0 12-4 25-16 33-9 8-21 12-34 12h-37c-13 0-17 5-17 21v504z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="trash" unicode="" d="M212 782h-191a21 21 0 0 1-21-21h0v-52a21 21 0 0 1 21-20h763a21 21 0 0 1 21 21v51a21 21 0 0 1-21 21h-191l-13 52a21 21 0 0 1-21 16h-314a21 21 0 0 1-21-16z m-148-178h678a21 21 0 0 0 21-21v-606h0a127 127 0 0 0-127-127h-466a127 127 0 0 0-128 127v607a21 21 0 0 0 22 20z" horiz-adv-x="805" />
|
||||
|
||||
<glyph glyph-name="play" unicode="" d="M838 688c-92 91-205 137-338 137-129 0-242-46-337-137-92-92-138-205-138-338 0-133 46-246 138-337 91-92 204-142 337-142 133 0 246 46 338 142 91 91 137 204 137 337 0 133-46 246-137 338m-30-30c84-87 125-187 125-308 0-121-41-225-125-308-83-84-187-130-308-130-121 0-221 42-304 130-83 83-129 187-129 308 0 121 41 221 129 308 83 84 187 130 304 130 121 0 221-46 308-130m-370-200v-250l204 125-204 125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="angle-right" unicode="" d="M417 600l-59-58 192-192-192-192 59-58 250 250-250 250z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="angle-left" unicode="" d="M642 541l-59 59-250-250 250-250 59 59-191 191z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="animated-headline" unicode="" d="M246 613c-8 16-38 16-42 0l-137-367c-4-13 0-25 12-29 13-4 25 0 29 12l46 121c0 0 0 0 0 0h138c0 0 0 0 0 0l46-121c4-8 12-16 20-16 5 0 5 0 9 0 12 4 16 16 12 29l-133 371z m-75-213l54 142 54-142h-108z m646 92c37 0 66-29 66-67 0-12 9-21 21-21 13 0 21 9 21 21 0 63-50 113-112 113-63 0-113-50-113-113v-92c0-62 50-112 113-112 62 0 112 50 112 112 0 13-8 21-21 21-12 0-21-8-21-21 0-37-29-66-66-66s-67 29-67 66v92c-4 33 29 67 67 67z m-275 46c-25 0-50-9-67-25v91c0 13-8 21-21 21-12 0-21-8-21-21v-183-21-46-21-91c0-13 9-21 21-21 13 0 21 8 21 21v0c21-13 42-25 67-25 62 0 112 50 112 112v92c4 67-50 117-112 117z m71-205c0-37-30-66-67-66s-67 29-67 66v21 46 21c0 37 29 67 67 67s67-30 67-67v-88z m-550-250c366 55 633 71 808 46 54-8 75-25 42-46" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="menu-toggle" unicode="" d="M250 475h500c13 0 21 8 21 21s-8 21-21 21h-500c-12 0-21-9-21-21s9-21 21-21z m0-167h500c13 0 21 9 21 21s-8 21-21 21h-500c-12 0-21-8-21-21s9-21 21-21z m0-166h500c13 0 21 8 21 21s-8 20-21 20h-500c-12 0-21-8-21-20s9-21 21-21z m667-142v700c0 38-25 67-54 67h-725c-30 0-55-29-55-67v-700c0-38 25-67 55-67h720c34 0 59 29 59 67z m41 0c0-58-41-108-95-108h-725c-55 0-96 50-96 108v700c0 58 41 108 96 108h720c59 0 100-50 100-108v-700z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="fb-embed" unicode="" d="M696 150c-8 8-21 8-29 0l-79-83c-9-9-9-21 0-29l79-84c4-4 8-4 12-4 4 0 9 0 13 4 8 8 8 21 0 29l-63 67 63 67c12 12 12 25 4 33z m192 0c8 8 20 8 29 0l79-83c8-9 8-21 0-29l-79-84c-4-4-9-4-13-4-4 0-8 0-12 4-9 8-9 21 0 29l62 67-62 67c-13 12-13 25-4 33z m-71 71l-67-275c-4-13 4-21 17-25 12-4 21 4 25 16l66 280c5 12-4 21-16 25s-25-9-25-21z m-338-234h-391c-25 0-50 26-50 59v633c0 34 20 59 50 59h654c25 0 50-25 50-59v-337c0-13 8-21 21-21s20 8 20 21v337c0 54-37 100-91 100h-654c-50 0-88-46-88-100v-633c0-54 38-100 92-100h387c13 0 21 8 21 21s-8 20-21 20z m42 584c-96 0-146-50-146-150v-246c0-12 8-21 21-21s21 9 21 21v246c0 75 33 108 104 108 12 0 21 9 21 21s-9 21-21 21z m-221-208h217c12 0 21 8 21 20s-9 21-21 21h-217c-12 0-21-8-21-21s9-20 21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="fb-feed" unicode="" d="M63 371c-13 0-21 8-21 21v416c0 13 8 21 21 21h875c12 0 20-8 20-21v-416c0-13-8-21-20-21h-875z m854 42v375h-834v-375h834z m-854-167h875c12 0 20 8 20 21s-8 21-20 21h-875c-13 0-21-9-21-21s8-21 21-21z m0-125h583c12 0 21 8 21 21s-9 21-21 21h-583c-13 0-21-9-21-21s8-21 21-21z m0-125h583c12 0 21 8 21 21s-9 21-21 21h-583c-13 0-21-9-21-21s8-21 21-21z m0-125h583c12 0 21 8 21 21s-9 20-21 20h-583c-13 0-21-8-21-20s8-21 21-21z m833 292c-67 0-104-38-104-105v-166c0-13 8-21 21-21s20 8 20 21v166c0 46 17 63 63 63 12 0 21 8 21 21s-9 21-21 21z m-146-167h146c12 0 21 8 21 21s-9 21-21 21h-146c-12 0-21-9-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="twitter-embed" unicode="" d="M696 150c-8 8-21 8-29 0l-79-83c-9-9-9-21 0-29l79-84c4-4 8-4 12-4 4 0 9 0 13 4 8 8 8 21 0 29l-63 67 63 67c12 12 12 25 4 33z m192 0c8 8 20 8 29 0l79-83c8-9 8-21 0-29l-79-84c-4-4-9-4-13-4-4 0-8 0-12 4-9 8-9 21 0 29l62 67-62 67c-13 12-13 25-4 33z m-71 71l-67-275c-4-13 4-21 17-25 12-4 21 4 25 16l66 280c5 12-4 21-16 25s-25-9-25-21z m-546 192c12-9 8-30-4-34-4 0-13 0-21 0 12-21 29-37 46-41 16 0 21-21 12-34-4-4-12-8-21-12 13-13 30-17 50-21 17 0 25-21 13-33-17-17-38-30-63-38 146-42 284 88 267 233 0 9 4 13 8 17-16 13-20 25-16 33-4 0-9 5-13 5-25 25-54 29-83 8-21-13-29-50-25-71 4-12-8-25-21-21-62 4-117 29-154 71-4-25 8-54 25-62z m-50 112c4 8 21 13 29 0 33-46 75-75 133-83 0 33 17 71 46 87 42 25 84 25 121-8 13 4 29 12 33 17 13 12 34-5 30-21 0-4-5-9-5-13 13 0 21-16 13-29-8-12-21-29-38-42 13-191-191-354-387-233-17 13-8 38 12 33 25-4 50 0 71 13-25 12-46 33-54 58-4 9 0 17 8 21-20 21-33 46-33 79 0 9 4 17 13 17-9 33-9 71 8 104z m258-538h-391c-25 0-50 26-50 59v633c0 34 20 59 50 59h654c25 0 50-25 50-59v-337c0-13 8-21 21-21s20 8 20 21v337c0 54-37 100-91 100h-654c-50 0-88-46-88-100v-633c0-54 38-100 92-100h387c13 0 21 8 21 21s-8 20-21 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="twitter-feed" unicode="" d="M63 371c-13 0-21 8-21 21v416c0 13 8 21 21 21h875c12 0 20-8 20-21v-416c0-13-8-21-20-21h-875z m854 42v375h-834v-375h834z m-854-167h875c12 0 20 8 20 21s-8 21-20 21h-875c-13 0-21-9-21-21s8-21 21-21z m0-125h458c12 0 21 8 21 21s-9 21-21 21h-458c-13 0-21-9-21-21s8-21 21-21z m0-125h458c12 0 21 8 21 21s-9 21-21 21h-458c-13 0-21-9-21-21s8-21 21-21z m0-125h458c12 0 21 8 21 21s-9 20-21 20h-458c-13 0-21-8-21-20s8-21 21-21z m583 279c25-33 71-67 133-71-4 17 0 54 25 71 29 17 59 17 88-8 12 0 37 12 41 16-4-12-16-33-29-37 9 0 29 4 38 8-9-16-25-29-34-33 13-117-120-275-287-175 37-4 75 8 96 29-29 0-54 17-67 46 13-4 29-4 38 4-13 0-55 25-55 71 9-8 21-13 34-8-17 8-42 45-21 87l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sync" unicode="" d="M500 141c49-1 94 15 136 49 59 48 82 126 61 229-4 23 13 44 36 47s40-14 47-36c33-110-8-237-92-305-57-46-120-68-188-67v-105c0-6-2-10-5-14-4-4-8-7-13-7s-9 3-13 7l-130 146c-4 4-5 9-5 14s1 11 5 15l130 146c4 4 8 6 13 6s9-2 13-6c3-5 5-10 5-15v-104z m0 417c-49 1-94-15-136-49-59-48-82-126-61-229 5-22-13-44-36-47s-40 14-47 36c-33 111 8 237 92 305 57 46 120 69 188 68v104c0 6 2 10 5 14s8 7 13 7 10-2 13-7l130-145c4-5 5-10 5-15s-1-10-5-15l-130-145c-3-5-8-7-13-7s-9 2-13 7-5 8-5 14v104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="import-export" unicode="" d="M417 600v-345c0-17-19-30-42-30s-42 13-42 30v345h-104c-6 0-10 2-14 5-5 4-7 8-7 13 0 5 2 10 7 13l145 130c5 4 10 5 15 5s10-1 15-5l145-130c5-3 7-8 7-13 0-5-2-9-7-13-4-3-9-5-14-5h-104z m208-500v345c0 17 19 30 42 30s41-13 41-30v-345h105c5 0 10-2 14-5s6-8 6-13-2-9-6-13l-146-130c-4-4-9-5-14-5s-11 1-15 5l-146 130c-4 4-6 8-6 13s2 9 6 13 9 5 15 5h104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="check-circle" unicode="" d="M496 804c-250 0-454-204-454-458s204-454 454-454 454 204 454 454-200 458-454 458m0-954c-271 0-496 225-496 496s225 500 496 500 496-225 496-496-221-500-496-500m-79 288l-217 216c-8 9-8 21 0 29 8 9 25 9 33 0l200-200 330 330c8 8 20 8 29 0 8-9 8-21 0-30l-346-345c-4-5-8-9-17-9s-8 4-12 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-save" unicode="" d="M331 267h338c21 0 39-18 39-40v-337c0-22-17-40-39-40h-338c-21 0-39 17-39 40v337c0 22 17 40 39 40z m2-42v-333h334v333h-334z m73-95c0 11 9 20 21 20s21-9 21-20v-143c0-12-9-21-21-21s-21 9-21 21v143z m91-21c-12 0-21 9-21 21 0 11 9 20 21 20h86c12 0 21-9 21-20 0-12-9-21-21-21h-86z m0-71c-12 0-21 9-21 20s9 21 21 21h86c12 0 21-9 21-21s-9-20-21-20h-86z m0-72c-12 0-21 9-21 21 0 12 9 21 21 21h86c12 0 21-9 21-21 0-12-9-21-21-21h-86z m-455 778c0 1 0 1 0 2 0 57 47 104 105 104h706c58 0 105-47 105-104v-129c26-20 42-52 42-87v-384c0-61-47-109-106-109h-120c-12 0-21 9-21 21s9 20 21 20h120c35 0 64 30 64 68v384c0 38-29 68-64 68h-501c-45 0-85 29-100 72l-3 3-2 6c-9 28-34 46-62 46h-120c-35 0-64-30-64-67v-512c0-38 29-68 64-68h120c12 0 21-9 21-20s-9-21-21-21h-120c-58 0-106 48-106 109v512c0 35 16 66 42 86z m44 21c7 1 14 2 20 2h120c44 0 84-29 100-72l2-3 4-7c8-27 33-46 61-46h501c8 0 16-1 23-2v109c0 34-29 62-64 62h-706c-29 0-53-18-61-43z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-download" unicode="" d="M479 25v138c0 11 9 20 21 20s21-9 21-20v-138l27 28c8 8 21 8 30 0s8-22 0-30l-63-63c-8-8-21-8-30 0l-62 63c-8 8-8 21 0 30 8 8 21 8 30 0l26-28z m-146 33c0-92 75-166 167-166s167 74 167 166-75 167-167 167-167-75-167-167z m-291 686c0 1 0 1 0 2 0 57 47 104 105 104h706c58 0 105-47 105-104v-129c26-20 42-52 42-87v-384c0-61-47-109-106-109h-120c-12 0-21 9-21 21s9 20 21 20h120c35 0 64 30 64 68v384c0 38-29 68-64 68h-501c-45 0-85 29-100 72l-3 3-2 6c-9 28-34 46-62 46h-120c-35 0-64-30-64-67v-512c0-38 29-68 64-68h120c12 0 21-9 21-20s-9-21-21-21h-120c-58 0-106 48-106 109v512c0 35 16 66 42 86z m44 21c7 1 14 2 20 2h120c44 0 84-29 100-72l2-3 4-7c8-27 33-46 61-46h501c8 0 16-1 23-2v109c0 34-29 62-64 62h-706c-29 0-53-18-61-43z m206-707c0 115 93 209 208 209s208-94 208-209-93-208-208-208-208 93-208 208z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="insert" unicode="" d="M375 433h-127c-11 0-20-3-28-10-8-8-12-16-12-26 0-10 4-19 12-26l273-259c8-8 17-11 28-11s19 4 27 11l274 259c8 7 11 16 11 26 0 10-3 18-11 26-8 7-17 10-28 10h-127v292c0 23-19 42-42 42h-208c-23 0-42-19-42-42l0 0v-292z m-122-500c-25 0-45 19-45 42s20 42 45 42h536c24 0 44-19 44-42s-20-42-44-42h-536z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="preview-medium" unicode="" d="M893 347c-52 81-117 141-195 181 21-36 31-74 31-115 0-63-22-118-67-163-45-44-99-67-162-67s-117 23-162 67c-45 45-67 100-67 163 0 41 10 79 31 115-78-40-143-100-195-181 46-70 102-125 171-167s142-62 222-62 153 21 222 62 126 97 171 167z m-368 196c0 7-3 13-7 18-5 4-11 7-18 7-42 0-79-15-110-46-30-30-45-67-45-109 0-7 2-13 7-18 4-5 10-7 17-7 7 0 13 2 18 7 4 5 7 10 7 18 0 29 10 54 31 75s46 31 75 31c7 0 13 2 18 7 4 5 7 11 7 17z m433-196c0-12-3-23-10-35-48-79-112-142-193-189-80-47-165-70-255-70s-175 23-255 71c-81 47-145 110-193 188-7 12-10 24-10 36s3 23 10 35c48 78 112 141 193 188s165 71 255 71 175-24 255-72 145-110 193-188c7-12 10-23 10-35z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sort-down" unicode="" d="M208 480c0-10 4-19 12-26l273-259c8-8 17-11 28-11s19 4 27 11l274 259c8 7 11 16 11 26 0 10-3 18-11 25-8 8-17 11-28 11h-546c-11 0-20-3-28-11-8-7-12-15-12-25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sort-up" unicode="" d="M208 220c0 10 4 19 12 26l273 259c8 8 17 11 28 11s19-3 27-11l274-259c8-7 11-16 11-26 0-10-3-18-11-25-8-8-17-11-28-11h-546c-11 0-20 4-28 11-8 7-12 15-12 25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="heading" unicode="" d="M606-67l0 0c0 0 0 0 0 0z m12 870c0 0 0 0 0 0 0 0-1 1-1 1 0 0 0 0 1-1 0 0 0 0 0 0z m-221-36c0 0 0 0 0 0l0 0z m-280 36c1 0 1 0 0 0 0 0 0 1-1 1 0 0 1 0 1-1 0 0 0 0 0 0z m-11-870c0 0 0 0 0 0l0 0z m644 0l60 1c-3 4-6 9-8 15-8 19-9 35-8 69 0 7 0 10 0 14v651c0 36 7 64 21 84l-63 0-65-1c14-20 21-48 21-84v-247c0-24-19-44-43-44h-327c-25 0-44 20-44 44v248c0 36 7 64 21 84l-63 0-65-1c14-20 21-48 21-84v-651c0-4 0-7 0-14 1-35 0-50-8-70-2-5-5-10-7-14l57 0 60 0c-3 5-6 10-8 15-8 20-9 35-8 70 0 7 0 10 0 14v232c0 24 20 44 44 44h327c24 0 43-20 43-44v-233c0-4 0-7 1-14 1-35 0-50-9-70-2-5-4-10-7-14l57 0z m-415 332v-233c0-42-9-90 49-96 6 0 12-1 18-3 9-3 15-11 15-20 0-12-9-21-21-21l-146 0-144 0c-12 0-21 9-21 20 0 10 6 18 15 20 6 2 11 3 17 3 58 6 49 54 49 96v651c0 94-56 77-71 86-1 1-2 1-3 2-9 7-12 20-5 29 4 6 10 9 17 9l147 0 146 0c6 0 13-3 17-8 6-10 4-23-5-30-18-11-74 7-74-87v-248c0-1 1-2 3-2h326c1 0 2 1 2 2v247c0 94-56 77-71 86 0 1-1 1-2 2-10 7-12 20-5 29 3 6 10 9 17 9l147 0 145 0c7 0 13-3 17-8 7-10 4-23-5-30-17-11-73 7-73-87v-651c0-42-9-90 49-96 6 0 12-1 17-3 9-3 16-11 16-20 0-12-10-21-21-21l-147 0-144 0c-11 0-21 9-21 20 0 10 7 18 16 20 5 2 11 3 17 3 57 6 48 54 48 96v234c0 1-1 2-2 2h-326c-2 0-3-1-3-2z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="logo" unicode="" d="M937 350c0 242-196 437-437 437s-437-195-437-437 195-437 437-437 437 195 437 437z m42 0c0-265-214-479-479-479s-479 214-479 479 214 479 479 479 479-214 479-479z m-773 75h9l0 0c7 0 12-5 12-11v-99l0 0c0-7 5-12 11-12h28l0 0c7 0 12-5 12-11v-10l0 0c0-7-5-12-12-12h-60l0 0c-6 0-11 5-11 12v132l0 0c0 6 5 11 11 11z m214-76c0 15-5 27-13 36-9 10-21 14-35 14s-27-4-35-14-14-21-14-36c0-16 5-28 14-37 9-9 21-14 35-14s26 5 35 14c8 9 13 21 13 37z m-106-57c-16 15-24 33-24 57 0 23 8 42 24 57 16 15 35 22 58 22 23 0 42-7 58-22 15-15 23-34 23-57 0-23-8-42-23-57-16-15-35-23-58-23s-42 8-58 23z m155 57c0 23 8 41 24 56 16 15 35 23 57 23 18 0 33-4 47-13 13-9 23-22 26-34 0-7-8-8-21-8-4 0-7 2-10 6-7 14-25 20-42 20-15 0-26-4-35-14s-13-21-13-36c0-16 4-28 13-37 9-9 20-14 33-14 13 0 23 4 31 10 8 6 11 11 13 19h-41l0 0c-6 0-11 5-11 11 0 0 0 0 0 0l0 8 0 0c0 7 5 11 11 11l64-1 0 0c6 0 11-5 11-11v-11c-3-16-9-32-24-44-14-13-32-20-54-20s-40 8-55 23c-16 14-24 33-24 56z m305 0c0 15-5 27-14 36s-20 14-35 14-26-4-35-14-13-21-13-36c0-16 5-28 13-37 10-9 21-14 35-14s27 5 35 14c10 9 14 21 14 37z m-106-57c-16 15-24 33-24 57 0 23 8 42 24 57 16 15 35 22 58 22s42-7 57-22c16-15 24-34 24-57 0-23-8-42-24-57-15-15-35-23-58-23-22 0-42 8-57 23z m-509 187c-9 0-17 8-17 17 0 9 8 17 17 17h674c10 0 17-8 17-17 0-9-7-17-17-17h-674z m0-291c-9 0-17 7-17 16s8 17 17 17h674c10 0 17-8 17-17s-7-16-17-16h-674z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="meta-data" unicode="" d="M422-68l-316 296c-13 12-14 33-2 47l446 479c6 7 15 11 25 11l293-2c17 0 32-14 33-31l23-293c1-9-3-18-9-25l-446-480c-12-13-34-14-47-2z m460 508l-22 281-282 2-438-471 305-283 437 471z m-504-286c-43 17-64 66-47 109 17 42 66 63 109 46 42-17 63-66 46-109-17-42-66-63-108-46z m30 36c23 0 42 18 42 41 0 23-19 42-42 42s-41-19-41-42c0-23 18-41 41-41z m109 119c-43 17-64 66-47 108 18 43 66 63 109 46 42-17 63-65 46-108s-65-63-108-46z m31 36c23 0 42 18 42 41 0 23-19 42-42 42-23 0-42-19-42-42 0-23 19-41 42-41z m108 119c-42 17-63 66-46 108 17 43 66 63 108 46s64-65 47-108c-17-43-66-63-109-46z m32 35c22 0 41 19 41 42 0 23-19 42-41 42s-42-19-42-42c0-23 18-42 42-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-content" unicode="" d="M435 267h-120l-25-70c-3-11-15-17-26-12-11 3-17 15-13 26l104 292c7 18 33 18 40 0l104-292c4-11-2-23-13-26s-23 1-26 12l-25 70z m-15 41l-45 126-45-126h90z m-40 535c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z m-250-333c-12 0-21 9-21 21s9 21 21 21h166c12 0 21-9 21-21s-9-21-21-21h-166z m0-125c-12 0-21 9-21 21s9 21 21 21h166c12 0 21-9 21-21s-9-21-21-21h-166z m0-125c-12 0-21 9-21 21s9 21 21 21h166c12 0 21-9 21-21s-9-21-21-21h-166z m-271-146c-12 0-21 9-21 21s9 21 21 21h458c12 0 21-9 21-21s-9-21-21-21h-458z m0-125c-12 0-21 9-21 21s9 21 21 21h458c12 0 21-9 21-21s-9-21-21-21h-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-excerpt" unicode="" d="M380 843c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z m-459-812c0-23-19-42-41-42s-42 19-42 42 19 42 42 42 41-19 41-42z m125 0c0-23-19-42-41-42s-42 19-42 42 19 42 42 42 41-19 41-42z m125 0c0-23-19-42-41-42s-42 19-42 42 19 42 42 42 41-19 41-42z m-312 250c-12 0-21 9-21 21s9 21 21 21h458c12 0 21-10 21-21s-9-21-21-21h-458z m0 125c-12 0-21 9-21 21s9 21 21 21h333c12 0 21-10 21-21s-9-21-21-21h-333z m0-250c-12 0-21 9-21 21s9 21 21 21h375c11 0 21-10 21-21s-10-21-21-21h-375z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-navigation" unicode="" d="M783 329h-158c-12 0-21 9-21 21s9 21 21 21h158l-29 25c-8 8-8 21 0 29 9 8 21 8 29 0l63-58c8-9 8-21 0-29l-63-67c-8-8-20-8-29 0-8 8-8 21 0 29l29 29z m-283 292h417c33 0 62-29 62-63v-416c0-34-29-63-62-63h-417-417c-33 0-62 29-62 63v416c0 34 29 63 62 63h417z m-283-250h158c13 0 21-8 21-21s-8-21-21-21h-158l25-29c8-8 8-21 0-29-9-8-21-8-29 0l-63 67c-8 8-8 20 0 29l63 58c8 8 20 8 29 0s8-21 0-29l-25-25z m262 208h-396c-12 0-20-8-20-21v-416c0-13 8-21 20-21h396v458z m21 42h21v-542h-21-21v542h21z m21-42v-458h396c12 0 21 8 21 21v416c0 13-9 21-21 21h-396z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="yoast" unicode="" d="M300 542c0 0 38-109 117-329 16-59 12-105-9-138-16-29-45-50-87-67 0 0 0-25 0-75 42 4 75 21 104 50 38 38 63 80 75 125l242 659c0 0-29 0-88 0 0 0-54-159-162-479-4-17-34-17-38 0l-79 250c0 0-25 4-75 4z m313 237c8 17 20 29 41 29h88c21 0 41-16 41-41 0-4 0-9-4-13l-237-658c-17-50-46-96-84-138-37-37-79-58-125-62-20-4-41 12-45 37 0 4 0 4 0 4v76c0 16 12 33 25 37 33 13 54 29 66 50 13 21 17 58 4 104l-120 321c-9 21 4 46 25 54 4 0 8 4 12 4h75c17 0 33-12 38-29l58-191 142 416z m262-762l0 587c0 42-33 79-58 79 0 0-17 0-17 21s17 21 17 21c58 0 100-54 100-121l0-625-367 0c-12 0-21 8-21 21s9 21 21 21l325-4z m-342 708c13-4 17-8 17-21s-4-16-17-21l-220 0c-105 0-188-62-188-166l0-334c0-79 25-166 104-166 17 0 21-9 21-25 0-9-8-17-21-17-104 0-146 104-146 208l0 334c0 125 105 208 230 208l220 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nerd-chuckle" unicode="" d="M958 350c0 253-205 458-458 458s-458-205-458-458 205-458 458-458 458 205 458 458z m42 0c0-276-224-500-500-500s-500 224-500 500 224 500 500 500 500-224 500-500z m-240-107c-10 6-22 2-28-8-45-78-123-114-232-114-109 0-187 36-232 114-6 10-18 14-28 8-10-6-14-18-8-28 30-52 71-88 123-110 0-1-1-3-1-5v-83c0-12 9-21 21-21h125c12 0 21 9 21 21v63c112 4 197 47 247 135 6 10 2 23-8 28z m-364-205v54c26-7 54-11 83-12v-42h-83z m302 624c-95 0-172-74-176-168-6 1-14 2-22 2-8 0-16-1-22-2-4 94-81 168-176 168-97 0-176-79-176-177s79-176 176-176c71 0 133 43 161 104 9 2 16 10 16 20 0 21 1 21 21 21 20 0 21 0 21-21 0-10 7-18 17-20 27-61 89-104 160-104 97 0 176 79 176 176s-79 177-176 177z m-396-313c-75 0-136 61-136 136 0 76 61 137 136 137 76 0 136-62 136-137 0-75-60-136-136-136z m396 0c-75 0-136 61-136 136 0 76 61 137 136 137 75 0 136-62 136-137 0-75-61-136-136-136z m23 134c0 12-9 21-21 21s-21-9-21-21 9-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62-35 0-62 28-62 62s27 63 62 63c35 0 63-28 63-63z m-438 0c0 12-9 21-21 21s-21-9-21-21 10-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62s-62 28-62 62 28 63 62 63 63-28 63-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nerd-wink" unicode="" d="M958 350c0 253-205 458-458 458s-458-205-458-458 205-458 458-458 458 205 458 458z m42 0c0-276-224-500-500-500s-500 224-500 500 224 500 500 500 500-224 500-500z m-768-135c53-93 146-136 268-136s215 43 268 136c6 10 2 23-8 28-10 6-22 2-28-8-45-78-123-114-232-114s-187 36-232 114c-6 10-18 14-28 8-10-5-14-18-8-28z m466 447c-95 0-172-74-176-168-6 1-14 2-22 2-8 0-16-1-22-2-4 94-81 168-176 168-97 0-176-79-176-177s79-176 176-176c71 0 133 43 161 104 9 2 16 10 16 20 0 21 1 21 21 21 20 0 21 0 21-21 0-10 7-18 17-20 27-61 89-104 160-104 97 0 176 79 176 176s-79 177-176 177z m-396-313c-75 0-136 61-136 136 0 76 61 137 136 137 76 0 136-62 136-137 0-75-60-136-136-136z m396 0c-75 0-136 61-136 136 0 76 61 137 136 137 75 0 136-62 136-137 0-75-61-136-136-136z m-373 134c0 12-9 21-21 21s-21-9-21-21 10-20 21-20 21 9 21 20z m42 0c0-34-28-62-63-62s-62 28-62 62 28 63 62 63 63-28 63-63z m279-8h125c12 0 21 9 21 21s-9 21-21 21h-125c-12 0-21-9-21-21s9-21 21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="comments" unicode="" d="M217 183c-3 0-7 1-9 3-6 4-9 11-7 18l28 113h-12c-65 0-117 52-117 116v234c0 64 52 116 117 116h400c64 0 116-52 116-116 0-9-7-17-16-17h-134c-46 0-83-37-83-83v-200c0-9 2-18 5-28 2-5 1-11-2-15-3-5-8-7-13-7h-101l-162-130c-3-2-7-4-10-4z m0 567c-46 0-84-37-84-83v-234c0-46 38-83 84-83h33c5 0 10-2 13-6s4-10 3-15l-21-85 128 102c3 3 7 4 10 4h85c-1 6-1 11-1 17v200c0 64 52 116 116 116h115c-7 38-41 67-81 67h-400z m766-633c-3 0-7 1-10 3l-162 130h-228c-64 0-116 52-116 117v200c0 64 52 116 116 116h400c65 0 117-52 117-116v-200c0-65-52-117-117-117h-12l29-113c1-7-2-14-8-18-2-1-5-2-9-2z m-400 533c-46 0-83-37-83-83v-200c0-46 37-84 83-84h234c3 0 7-1 10-3l128-103-21 86c-1 5 0 10 3 14s8 6 13 6h33c46 0 84 38 84 84v200c0 46-38 83-84 83h-400z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-circle-o" unicode="" d="M167 350c0-184 149-333 333-333s333 149 333 333-149 333-333 333-333-149-333-333z m-84 0c0 230 187 417 417 417s417-187 417-417-187-417-417-417-417 187-417 417z m375-83h-104c-6 0-10-2-14-6s-7-8-7-13 2-9 7-13l145-129c5-4 10-6 15-6s10 2 15 6l145 129c5 4 7 8 7 13s-2 10-7 13-9 6-14 6h-104v293c0 16-19 40-42 40s-42-23-42-40v-293z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-upload" unicode="" d="M479 113v-138c0-13 9-21 21-21s21 8 21 21v138l25-25c8-9 21-9 29 0 8 8 8 20 0 29l-62 62c-9 9-21 9-30 0l-62-62c-8-9-8-21 0-29 8-9 21-9 29 0l29 25z m-146-55c0-91 75-166 167-166s167 75 167 166-75 167-167 167-167-75-167-167z m-291 688c0 0 0 0 0 0 0 58 46 104 104 104h708c59 0 104-46 104-104v-129c25-21 42-50 42-88v-383c0-58-46-108-108-108h-121c-13 0-21 8-21 20s8 21 21 21h121c37 0 66 29 66 67v383c0 38-29 71-66 71h-500c-42 0-84 25-100 71l0 0-4 8c-9 29-34 46-63 46h-117c-37 0-66-29-66-67v-512c0-38 29-67 66-67h121c13 0 21-8 21-21s-8-20-21-20h-121c-58 0-108 50-108 108v512c0 34 17 67 42 88z m46 21c8 0 12 0 20 0h121c46 0 84-29 100-71l4-4 0-4c9-30 34-46 59-46h500c8 0 16 0 25-4v108c0 33-29 62-63 62h-708c-29 0-50-16-58-41z m204-709c0 117 91 209 208 209s208-92 208-209-91-208-208-208-208 92-208 208z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="save-o" unicode="" d="M683 725c-4 0-12 0-16 0h0-63-83-271-42c-45 0-83-37-83-83v-584c0-45 38-83 83-83h584c46 0 83 38 83 83v459c0 108-83 196-192 208z m-183-83v-146c0-13 8-21 21-21h83c13 0 21 8 21 21v146h42c0 0 0 0 0 0v-209h-334v209h167z m292-584h-584v584h42v-250c0-25 17-42 42-42h416c25 0 42 17 42 42v216c25-25 42-54 42-91v-459z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upload-circle-o" unicode="" d="M833 350c0 184-149 333-333 333s-333-149-333-333 149-333 333-333 333 149 333 333z m84 0c0-230-187-417-417-417s-417 187-417 417 187 417 417 417 417-187 417-417z m-375 83h104c6 0 10 2 14 6s7 8 7 13-2 9-7 13l-145 129c-5 4-10 6-15 6s-10-2-15-6l-145-129c-5-4-7-8-7-13s2-9 7-13 9-6 14-6h104v-293c0-16 19-40 42-40s42 23 42 40v293z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ellipsis-h" unicode="" d="M208 267c-45 0-83 37-83 83s38 83 83 83 84-37 84-83-38-83-84-83z m292 0c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m292 0c-46 0-84 37-84 83s38 83 84 83 83-37 83-83-37-83-83-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ellipsis-v" unicode="" d="M417 642c0 46 37 83 83 83s83-37 83-83-37-84-83-84-83 38-83 84z m0-292c0 46 37 83 83 83s83-37 83-83-37-83-83-83-83 37-83 83z m0-292c0 46 37 84 83 84s83-38 83-84-37-83-83-83-83 38-83 83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-left" unicode="" d="M263 304l158-162c25-25 25-63 0-88-25-25-63-25-88 0l-270 279c-25 25-25 63 0 88l266 262c25 30 63 25 88 0 25-25 25-62 0-87l-171-167 650 4c33 0 62-29 62-62 0-33-29-63-62-63l-633-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-right" unicode="" d="M738 304l-159-162c-25-25-25-63 0-88s63-25 88 0l271 279c25 25 25 63 0 88l-267 262c-25 25-63 25-88 0-25-25-25-62 0-87l171-167-650 4c-33 0-62-29-62-62 0-33 29-63 62-63l634-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-up" unicode="" d="M413 588l-163-159c-25-25-62-25-87 0s-21 67 4 92l279 271c25 25 62 25 87 0l263-267c25-25 25-62 0-87-25-25-63-25-88 0l-166 170 0-654c0-33-29-62-63-62-33 0-62 29-62 62l-4 634z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-down" unicode="" d="M413 113l-163 158c-25 25-62 25-87 0s-25-63 0-88l279-271c25-25 62-25 87 0l263 267c25 25 25 63 0 88-25 25-63 25-88 0l-166-171 4 650c0 33-29 62-63 62-33 0-62-29-62-62l-4-633z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="play-o" unicode="" d="M498-124c-264 0-477 213-477 477s213 476 477 476 476-213 476-476-213-477-476-477z m151 487l-238 141v-281l238 140z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="archive-posts" unicode="" d="M958 600h-916v-646c0-34 28-62 62-62h792c34 0 62 28 62 62v646z m0 42v62c0 35-28 63-62 63h-792c-34 0-62-28-62-63v-62h916z m42-688c0-57-47-104-104-104h-792c-57 0-104 47-104 104v750c0 58 47 104 104 104h792c57 0 104-46 104-104v-750z m-854 438c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m21 41h41v42h-41v-42z m-21-250c-12 0-21 10-21 21v84c0 11 9 20 21 20h83c12 0 21-9 21-20v-84c0-11-9-21-21-21h-83z m21 42h41v42h-41v-42z m-21-250c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m21 42h41v41h-41v-41z m146 458c-12 0-21 9-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-83c-12 0-21 9-21 21s9 20 21 20h125c11 0 20-9 20-20s-9-21-20-21h-125z m0-125c-12 0-21 9-21 21s9 20 21 20h125c11 0 20-9 20-20s-9-21-20-21h-125z m0-84c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-125c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-83c-12 0-21 9-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m250 417c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m20 41h42v42h-42v-42z m-20-250c-12 0-21 10-21 21v84c0 11 9 20 21 20h83c12 0 21-9 21-20v-84c0-11-9-21-21-21h-83z m20 42h42v42h-42v-42z m-20-250c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m20 42h42v41h-42v-41z m146 458c-11 0-21 9-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-83c-11 0-21 9-21 21s10 20 21 20h125c12 0 21-9 21-20s-9-21-21-21h-125z m0-125c-11 0-21 9-21 21s10 20 21 20h125c12 0 21-9 21-20s-9-21-21-21h-125z m0-84c-11 0-21 10-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-125c-11 0-21 10-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-83c-11 0-21 9-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m-604 729c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="archive-title" unicode="" d="M958 600h-916v-646c0-34 28-62 62-62h792c34 0 62 28 62 62v646z m0 42v62c0 35-28 63-62 63h-792c-34 0-62-28-62-63v-62h916z m42-688c0-57-47-104-104-104h-792c-57 0-104 47-104 104v750c0 58 47 104 104 104h792c57 0 104-46 104-104v-750z m-875 750c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21z m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21z m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21z m-146-729c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m21 42h41v41h-41v-41z m146 41c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m0-83c-12 0-21 9-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21h-125z m250 0c-12 0-21 9-21 21v83c0 12 9 21 21 21h83c12 0 21-9 21-21v-83c0-12-9-21-21-21h-83z m20 42h42v41h-42v-41z m146 41c-11 0-21 10-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m0-83c-11 0-21 9-21 21s10 21 21 21h125c12 0 21-9 21-21s-9-21-21-21h-125z m-250 292v208h-83v-22c0-12-9-21-21-21s-21 9-21 21v43c0 12 9 21 21 21h250c12 0 21-9 21-21v-43c0-12-9-21-21-21s-21 9-21 21v22h-83v-208h42c11 0 20-9 20-21s-9-21-20-21h-125c-12 0-21 9-21 21s9 21 21 21h41z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="featured-image" unicode="" d="M104 183c-11 0-21 10-21 21v542c0 12 10 21 21 21h792c12 0 21-9 21-21v-542c0-11-9-21-21-21h-792z m21 42h750v500h-750v-500z m-21-167c-11 0-21 10-21 21s10 21 21 21h334c11 0 20-9 20-21s-9-21-20-21h-334z m459 0c-12 0-21 10-21 21s9 21 21 21h333c12 0 21-9 21-21s-9-21-21-21h-333z m-459-125c-11 0-21 9-21 21s10 21 21 21h334c11 0 20-9 20-21s-9-21-20-21h-334z m459 0c-12 0-21 9-21 21s9 21 21 21h333c12 0 21-9 21-21s-9-21-21-21h-333z m-246 477l-197-220c-8-9-21-9-30-2-9 8-9 21-2 30l210 233c7 8 19 9 27 3l124-88 174 218c9 11 25 10 33-1l257-367c6-10 4-23-5-29-10-7-23-4-30 5l-240 343-168-211c-7-9-20-11-29-4l-124 90z m-11 186c0 25-19 46-43 46s-43-21-43-46 20-46 43-46 43 20 43 46z m42 0c0-48-38-88-85-88s-84 40-84 88 37 87 84 87 85-39 85-87z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-info" unicode="" d="M380 843c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z m-459-708c0 12-9 21-21 21s-20-9-20-21 9-21 20-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 28 63 62 63 63-28 63-63z m125 0c0 12-9 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 27 63 62 63 63-28 63-63z m125 0c0 12-10 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m41 0c0-35-28-62-62-62s-63 27-63 62 28 63 63 63 62-28 62-63z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="post-title" unicode="" d="M479 100c0 0 0 0 0 1v291h-125v-33c0-12-9-21-21-21s-20 9-20 21v54c0 11 9 20 20 20h334c11 0 21-9 21-20v-54c0-12-10-21-21-21s-21 9-21 21v33h-125v-291c0-1 0-1 0-1h42c11 0 20-9 20-21s-9-21-20-21h-125c-12 0-21 10-21 21s9 21 21 21h41z m-99 743c4 5 10 7 16 7h417c34 0 62-28 62-62v-876c0-34-28-62-62-62h-625c-35 0-63 28-63 62v667c0 6 3 12 7 16l248 248z m-5-64l-179-179h158c12 0 21 9 21 21v158z m438 29h-396v-187c0-35-28-63-63-63h-187v-646c0-11 9-20 21-20h625c11 0 20 9 20 20v876c0 11-9 20-20 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-logo" unicode="" d="M958 600h-916v-642c0-37 28-66 62-66h792c34 0 62 29 62 66v642z m0 42v58c0 37-28 67-62 67h-792c-34 0-62-30-62-67v-58h916z m42-684c0-59-46-108-104-108h-792c-58 0-104 49-104 108v742c0 60 46 108 104 108h792c58 0 104-48 104-108v-742z m-875 746c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21m-113-398h11c6 0 12-6 12-13v-103c0-7 6-12 13-12h30c7 0 13-6 13-13l0-10c0-7-5-12-13-12 0 0 0 0 0 0l-65 0c-7 0-13 5-13 12v138c0 7 5 13 12 13z m233-81c0 16-5 29-14 39-10 9-23 14-39 14s-28-5-38-14c-10-10-15-23-15-39 0-16 5-29 15-39 10-9 22-14 38-14s29 5 39 14c10 10 14 23 14 39z m-115-60c-17 16-26 36-26 60 0 24 9 44 26 60s38 23 63 23 46-8 63-23c17-16 25-36 25-60 0-24-8-44-25-60-17-15-38-23-63-23-25 0-46 8-63 23z m169 60c0 24 9 44 26 60 17 15 38 23 63 23 18 0 35-4 50-13 14-9 25-23 28-35 1-8-8-10-22-10-4 0-8 3-11 7-8 14-27 22-46 22-16 0-28-5-38-15-10-9-15-22-15-39 0-16 5-29 15-38 10-10 22-15 36-15s25 4 34 10c9 6 12 12 14 20h-45c-6 0-12 5-12 12 0 0 0 1 0 1l0 7c1 6 6 12 13 12l69-1c7 0 12-5 12-13v-10c-3-18-10-34-26-47-16-14-35-20-59-20s-44 7-61 23c-17 15-25 35-25 59z m332 0c0 16-5 29-15 39-10 9-23 14-38 14-16 0-29-5-39-14-10-10-14-23-14-39 0-16 5-29 14-39 10-9 23-14 39-14 15 0 28 5 38 14 10 10 15 23 15 39z m-116-60c-17 16-25 36-25 60 0 24 8 44 26 60s37 23 62 23c25 0 46-8 63-23 17-16 26-36 26-60 0-24-9-44-26-60-17-15-38-23-63-23-25 0-46 8-63 23z m172-107h-708c-12 0-21 10-21 21s9 21 21 21h708c12 0 21-9 21-21s-9-21-21-21z m0 292h-708c-12 0-21 9-21 21s9 21 21 21h708c12 0 21-9 21-21s-9-21-21-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-search" unicode="" d="M958 600h-916v-642c0-37 28-66 62-66h792c34 0 62 29 62 66v642z m0 42v58c0 37-28 67-62 67h-792c-34 0-62-30-62-67v-58h916z m42-684c0-59-46-108-104-108h-792c-58 0-104 49-104 108v742c0 60 46 108 104 108h792c58 0 104-48 104-108v-742z m-875 746c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21z m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21z m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21z m141-491c0-1-1-2-2-3l-146-145c-8-9-21-9-29 0s-8 21 0 29l146 146c1 1 1 1 2 2-19 24-29 55-29 88 0 80 65 145 145 145s146-65 146-145-65-146-146-146c-32-1-62 10-87 29z m192 116c0 58-47 104-104 104s-104-46-104-104 46-104 104-104 104 47 104 104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-title" unicode="" d="M958 600h-916v-642c0-37 28-66 62-66h792c34 0 62 29 62 66v642z m0 42v58c0 37-28 67-62 67h-792c-34 0-62-30-62-67v-58h916z m42-684c0-59-46-108-104-108h-792c-58 0-104 49-104 108v742c0 60 46 108 104 108h792c58 0 104-48 104-108v-742z m-875 746c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21m375-366c-12 0-21 9-21 21v33h-292v-33c0-12-9-21-21-21s-20 9-20 21v54c0 11 9 20 20 20h334c11 0 21-9 21-20v-54c0-11-10-21-21-21z m-167-258c-12 0-21 9-21 21v307c0 12 9 21 21 21 12 0 21-9 21-21v-307c0-12-9-21-21-21z m63-22h-125c-12 0-21 10-21 21s9 21 21 21h125c11 0 20-9 20-21s-9-21-20-21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-square" unicode="" d="M958 638v-575c0-46-16-88-50-121s-75-50-120-50h-575c-46 0-88 16-121 50s-50 75-50 121v575c0 45 16 87 50 120s75 50 121 50h575c45 0 87-16 120-50s50-75 50-120z m-508-242h-175c-25 0-46-21-46-46s21-46 46-46h175v-175c0-25 21-46 46-46 25 0 46 21 46 46v175h175c25 0 46 21 46 46s-21 46-46 46h-175v175c0 25-21 46-46 46-25 0-46-21-46-46v-175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-square" unicode="" d="M958 638v-575c0-46-16-88-50-121s-75-50-120-50h-575c-46 0-88 16-121 50s-50 75-50 121v575c0 45 16 87 50 120s75 50 121 50h575c45 0 87-16 120-50s50-75 50-120z m-679-334h446c25 0 46 21 46 46s-21 46-46 46h-446c-25 0-46-21-46-46s17-46 46-46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cloud-check" unicode="" d="M392 675c133 33 241-17 308-146 13-21 4-50-17-62-20-13-45-4-58 16-50 92-117 125-212 100-96-25-146-95-159-225l-4-33-29-8c-92-21-133-71-133-150-5-96 37-134 125-138l525 0c129-12 179 29 179 134 0 62-25 104-75 133-21 12-29 37-21 62 12 21 37 34 58 21 84-46 125-116 125-212 0-163-96-242-266-225l-521 0c-138 4-217 87-213 233 0 113 63 192 171 229 17 146 92 238 217 271z m496-54c12 12 29 12 41 0s13-33 0-46l-329-375c0 0 0 0 0 0-17-17-42-17-54 0l-158 175c-13 13-13 33 0 46 12 12 29 12 41 0l142-158 317 358z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="drag-n-drop" unicode="" d="M46 779c0-13-10-24-23-24s-23 11-23 24v48c0 13 10 23 23 23h49c13 0 23-10 23-23s-10-24-23-24h-25v-24z m122 25c-13 0-23 10-23 23s10 23 23 23h92c13 0 24-10 24-23s-11-24-24-24h-92z m185 0c-13 0-23 10-23 23s10 23 23 23h93c13 0 23-10 23-23s-10-24-23-24h-93z m186 0c-13 0-24 10-24 23s11 23 24 23h92c13 0 24-10 24-23s-11-23-24-23h-92z m209 0c-13 0-24 10-24 23s11 23 24 23h48c13 0 23-10 23-23v-48c0-13-10-24-23-24-13 0-23 11-23 24v25h-25z m25-122c0 13 10 23 23 23 13 0 23-10 23-23v-92c0-13-10-24-23-24-13 0-23 11-23 24v92z m0-193c0 13 10 23 23 23 13 0 23-10 23-23v-49c0-12-10-23-23-23-13 0-23 11-23 23v49z m-315-363c12 0 23-11 23-23 0-13-11-24-23-24h-93c-13 0-23 11-23 24 0 12 10 23 23 23h93z m-186 0c13 0 23-11 23-23 0-13-10-24-23-24h-92c-13 0-24 11-24 24 0 12 11 23 24 23h92z m-201 0c13 0 24-11 24-23 0-13-11-24-24-24h-48c-13 0-23 11-23 24v48c0 13 10 23 23 23s24-10 24-23v-25h24z m-25 122c0-13-10-24-23-24s-23 11-23 24v92c0 13 10 23 23 23s24-10 24-23v-92z m0 185c0-13-10-23-23-23s-23 10-23 23v92c0 13 10 24 23 24s24-11 24-24v-92z m0 185c0-13-10-23-23-23s-23 10-23 23v93c0 13 10 23 23 23s24-10 24-23v-93z m503-654c-29-22-70-2-70 34v621c0 39 48 58 75 30l434-448c27-28 7-74-31-74h-98l70-145c11-21 2-46-19-57l-134-69c-21-11-48-3-59 19l-77 159-91-70z m17 123l64 49c22 17 54 9 66-16l81-166 56 29-82 169c-14 28 7 62 39 62h65l-288 298v-425z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="welcome" unicode="" d="M180 511v-559h676v559l-335 216-341-216z m-75 63l390 248c16 10 37 10 53 0l383-247c14-9 22-23 22-39v-630c0-26-22-46-49-46h-772c-27 0-49 20-49 46v629c0 16 8 30 22 39z m421-201c38 52 82 71 134 54 77-24 67-121 38-163-28-39-85-95-172-169v0c-86 74-143 130-171 169-30 42-39 139 38 163 51 17 96-1 133-54l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="handle" unicode="" d="M167 138c-46 0-84 37-84 83s38 83 84 83 83-37 83-83-37-83-83-83z m329 0c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m333 0c-46 0-83 37-83 83s37 83 83 83c46 0 84-37 84-83s-38-83-84-83z m-662 254c-46 0-84 37-84 83s38 83 84 83 83-37 83-83-37-83-83-83z m329 0c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m333 0c-46 0-83 37-83 83s37 83 83 83c46 0 84-37 84-83s-38-83-84-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart" unicode="" d="M460 58c35 0 63-28 63-62s-28-63-63-63-64 28-64 63 29 62 64 62z m250 0c35 0 63-28 63-62s-28-63-63-63-64 28-64 63 29 62 64 62z m-476 541l139-450c2-5 7-9 12-9h380c6 0 11 4 13 9l138 433c0 1 0 2 0 3 0 8-6 13-13 13l-669 1 0 0z m-13 41h682c30 0 55-24 55-54 0-6-1-11-3-17l-138-433c-7-22-28-38-52-38h-380c-23 0-45 16-52 39l-147 476c-10 35-26 67-48 97-20 27-44 40-75 40-12 0-21 9-21 21s9 21 21 21c45 0 82-20 109-58 21-30 38-61 49-94z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-add-to-cart" unicode="" d="M741 192c-7-9-20-11-29-4-9 6-12 19-5 29 6 8 12 17 17 26 54 90 61 200 22 297-3 7-6 15-10 22-3 6-7 13-11 20-23 39-54 73-92 101-148 108-357 75-465-74s-75-358 74-466c66-48 146-69 226-62 5 1 9 1 13 2 5 0 11 1 16 2 12 2 24 5 36 8 10 4 22-3 25-14 4-11-3-22-14-26-13-3-26-7-40-9-6-1-12-2-18-3-4-1-9-1-14-2-90-8-180 16-255 70-167 122-204 356-83 524s356 205 524 83c42-31 77-69 103-113 4-8 8-15 12-23 4-8 8-16 11-25 45-108 36-232-24-334-6-10-12-19-19-29z m-324 241v125c0 12 9 21 21 21s20-9 20-21v-125h125c12 0 21-9 21-20s-9-21-21-21h-125v-125c0-12-9-21-20-21s-21 9-21 21v125h-125c-12 0-21 9-21 21s9 20 21 20h125z m237-458h126l45 147h-215l44-147z m183 188c18 0 33-15 33-33 0-3 0-7-1-10l-51-164c-4-14-17-23-32-23h-138c-15 0-28 9-33 24l-53 179c0 0 0 1-1 1-3 11-8 22-16 32-4 7-9 10-16 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 6-10 12-20 16-30h241z m-174-301c-16 0-29 13-29 30s13 29 29 29 30-13 30-29-14-30-30-30z m105 0c-17 0-30 13-30 30s13 29 30 29 29-13 29-29-14-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-breadcrumbs" unicode="" d="M490 100c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-580 738c-12 0-21 9-21 21s9 21 21 21h167c11 0 20-9 20-21s-9-21-20-21h-167z m500 0c-12 0-21 9-21 21s9 21 21 21h167c11 0 20-9 20-21s-9-21-20-21h-167z m-241 67c-9 6-11 20-5 29 7 9 20 11 30 4l82-60c11-8 11-25 1-33l-84-65c-9-7-22-5-29 4-7 9-5 22 4 29l61 48-60 44z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-categories" unicode="" d="M479 671c0 7 9 12 21 12s21-5 21-12v-100c0-7-9-13-21-13s-21 6-21 13v100z m-208-92c0-11-9-21-21-21s-21 10-21 21v42c0 34 28 62 63 62h416c35 0 63-28 63-62v-42c0-11-9-21-21-21s-21 10-21 21v42c0 12-9 21-21 21h-416c-12 0-21-9-21-21v-42z m-83-21v-41h125v41h-125z m-30 42h184c7 0 12-5 12-12v-100c0-8-5-13-12-13h-184c-7 0-12 5-12 13v100c0 7 5 12 12 12z m280-42v-41h125v41h-125z m-30 42h184c7 0 12-5 12-12v-100c0-8-5-13-12-13h-184c-7 0-12 5-12 13v100c0 7 5 12 12 12z m280-42v-41h125v41h-125z m-30 42h184c7 0 12-5 12-12v-100c0-8-5-13-12-13h-184c-7 0-12 5-12 13v100c0 7 5 12 12 12z m-168-500c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-description" unicode="" d="M188 642c-12 0-21 9-21 21s9 20 21 20h626c11 0 21-9 21-20s-10-21-21-21h-626z m0-167c-12 0-21 9-21 21s9 21 21 21h626c11 0 21-9 21-21s-10-21-21-21h-626z m0 83c-12 0-21 10-21 21 0 12 9 21 21 21h527c12 0 21-9 21-21 0-11-9-21-21-21h-527z m0-166c-12 0-21 9-21 21s9 20 21 20h405c12 0 21-9 21-20s-9-21-21-21h-405z m302-292c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-images" unicode="" d="M416 437h127l45 147h-216l44-147z m184 189c18 0 33-15 33-33 0-4 0-7-2-10l-51-164c-4-14-17-24-31-24h-139c-15 0-27 10-32 24l-54 179c0 1 0 1 0 1-4 11-9 22-16 33-5 6-10 9-17 9-11 0-21 9-21 21s10 21 21 21c21 0 39-10 51-28 7-9 12-19 16-30h242z m-174-301c-16 0-29 13-29 29 0 16 13 29 29 29s29-13 29-29c0-16-13-29-29-29z m104 0c-16 0-29 13-29 29 0 16 13 29 29 29 16 0 29-13 29-29 0-16-13-29-29-29z m-488 483v-625h875v625h-875z m-21 42h917c11 0 20-9 20-21v-666c0-12-9-21-20-21h-917c-12 0-21 9-21 21v666c0 12 9 21 21 21z m21-792v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z m271-42v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z m271-42v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z m271-42v-83h125v83h-125z m-21 42h167c11 0 20-9 20-21v-125c0-12-9-21-20-21h-167c-12 0-21 9-21 21v125c0 12 9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-info" unicode="" d="M490 100c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390v0z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241v0z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-188 552l-4-12c-11-3-21-6-28-8-7-1-16-3-25-3-14 0-25 3-33 8-8 5-12 12-12 20 0 3 0 6 1 9s1 7 3 11l15 39c1 4 2 7 3 10 1 4 1 7 1 10 0 5-1 8-4 10s-8 3-16 3c-4 0-8-1-11-1-5-1-8-2-11-3l4 12c10 3 19 6 28 8s17 3 25 3c14 0 26-3 33-8 8-5 12-12 12-19 0-2-1-5-1-9s-2-8-3-12l-15-38c-1-3-2-7-3-11-1-3-1-7-1-9 0-5 2-9 4-10 4-2 9-3 17-3 3 0 7 0 12 1 4 1 7 1 9 2z m4 162c0-7-4-13-11-17s-15-7-25-7c-9 0-18 2-25 7s-10 10-10 17 3 12 10 17 16 7 25 7 18-2 25-7c7-5 11-10 11-17z m-63-288c-115 0-208 93-208 208s93 208 208 208 209-93 209-208-94-208-209-208z m0 41c92 0 167 75 167 167s-75 167-167 167-166-75-166-167 74-167 166-167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-meta" unicode="" d="M229 350c0 12-9 21-21 21s-20-9-20-21 9-21 20-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 28 63 62 63 63-28 63-63z m125 0c0 12-9 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m42 0c0-35-28-62-63-62s-62 27-62 62 27 63 62 63 63-28 63-63z m125 0c0 12-10 21-21 21s-21-9-21-21 9-21 21-21 21 9 21 21z m41 0c0-35-28-62-62-62s-63 27-63 62 28 63 63 63 62-28 62-63z m-114-250c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-pages" unicode="" d="M270 37h-21c-12 0-21 9-21 21v45h-45c-12 0-21 9-21 20v429c0 6 2 11 6 15l198 198c4 3 9 6 14 6h264c11 0 21-9 21-21v-45h45c11 0 20-9 20-21v-21h48c12 0 21-9 21-20v-433c0-12-9-21-21-21-11 0-20 9-20 21v412h-28v-412c0-12-9-21-20-21-12 0-21 9-21 21v453h-24v-439c0-12-10-21-21-21-12 0-21 9-21 21v505h-234l-185-185v-399h350c11 0 21-10 21-21s-10-21-21-21h-284v-24h308c12 0 21-9 21-21 0-12-9-21-21-21h-267v-27h293c12 0 21-10 21-21 0-12-9-21-21-21h-314c-11 0-20 9-20 21v48z m425-62h127l45 147h-216l44-147z m184 188c18 0 33-15 33-33 0-3 0-7-2-10l-50-164c-5-14-17-23-32-23h-139c-14 0-27 9-32 24l-54 179c0 0 0 1 0 1-3 11-9 22-16 32-4 7-9 10-17 10-11 0-20 9-20 21s9 20 20 20c21 0 39-9 51-27 7-10 12-20 17-30h241z m-174-301c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-449 711v127l29 30h12v-177c0-12-9-21-21-21h-176v12l29 29h127z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-price" unicode="" d="M755 320c-57 0-102 34-106 78-1 12 8 22 19 22 12 1 22-7 23-19 2-21 31-39 64-39 35 0 64 19 64 41 0 21-20 34-64 42l-4 0c-69 13-102 40-102 83 0 46 48 84 106 84 57 0 103-34 106-78 1-11-7-21-19-22-11-2-22 7-23 19-1 22-30 39-64 39-34 0-63-19-63-41 0-21 20-34 63-41l5-1c68-13 101-40 101-83 0-46-47-84-106-84z m0-41c-12 0-21 9-21 21v333c0 12 9 21 21 21s21-9 21-21v-333c0-12-9-21-21-21z m-265-179c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-198 509c15 0 29 14 29 33v107c0 18-13 33-29 33s-28-15-28-33v-107c0-19 13-33 28-33z m0-42c-39 0-70 34-70 75v107c0 41 31 74 70 74s70-33 70-74v-107c0-41-30-75-70-75z m-182 107c-6 0-12-6-12-15v-36c0-8 6-15 12-15h33c6 0 12 7 12 15v36c0 9-6 15-12 15h-33z m-54-15v54c0 60 46 110 103 110 11 0 20-9 20-21 0-11-9-21-20-21-33 0-61-29-61-66 4 1 8 1 12 1h33c30 0 54-26 54-57v-36c0-30-24-56-54-56h-33c-30 0-54 26-54 56v36z m-101 59c15 0 28 15 28 33s-13 33-28 33c-16 0-28-9-28-15 0-12-10-21-21-21s-21 9-21 21c0 32 33 57 70 57 39 0 70-34 70-75 0-21-8-40-21-54 13-14 21-32 21-54 0-40-31-74-70-74-37 0-70 24-70 57 0 11 9 20 21 20s21-9 21-20c0-6 12-15 28-15 15 0 28 14 28 32 0 19-13 33-28 33h-16c-12 0-21 10-21 21s9 21 21 21h16z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-rating" unicode="" d="M490 100c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-258 709c-6-8-6-8-15-10h-17l12-11c5-7 5-7 5-15l-5-27 23 13c8 4 8 4 17 0l22-13-5 27c0 9 0 9 5 15l12 11h-16c-10 2-10 2-15 10l-12 29-11-29z m-4 77c8 10 8 10 21 9 6-4 6-4 9-9l23-55h46c12-3 12-3 16-16-1-7-1-7-5-12l-36-33 10-54c-1-13-1-13-13-19-5 0-5 0-11 2l-45 27-44-27c-13-3-13-3-22 6-3 5-3 5-3 11l10 54-35 33c-7 12-7 12-1 23 5 5 5 5 12 5h46l22 55z m254-77c-6-8-6-8-15-10h-17l12-11c5-7 5-7 5-15l-5-27 23 13c8 4 8 4 17 0l22-13-5 27c0 9 0 9 5 15l12 11h-16c-10 2-10 2-15 10l-12 29-11-29z m-4 77c8 10 8 10 21 9 6-4 6-4 9-9l23-55h46c12-3 12-3 16-16-1-7-1-7-5-12l-36-33 10-54c-1-13-1-13-13-19-5 0-5 0-11 2l-45 27-44-27c-13-3-13-3-22 6-3 5-3 5-3 11l10 54-35 33c-7 12-7 12-1 23 5 5 5 5 12 5h46l22 55z m-496-77c-6-8-6-8-15-10h-17l12-11c5-7 5-7 5-15l-5-27 23 13c8 4 8 4 17 0l22-13-5 27c0 9 0 9 5 15l12 11h-16c-10 2-10 2-15 10l-12 28-11-28z m-4 77c8 10 8 10 21 9 6-4 6-4 9-9l23-55h46c12-3 12-3 16-16-1-7-1-7-5-12l-36-33 10-54c-1-13-1-13-13-19-5 0-5 0-11 2l-45 27-44-27c-13-3-13-3-22 6-3 5-3 5-3 11l10 54-35 33c-7 12-7 12-1 23 5 5 5 5 12 5h46l22 55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-related" unicode="" d="M42 350h625v63c0 34-28 62-63 62h-500c-34 0-62-28-62-62v-63z m625-42h-625v-354c0-34 28-62 62-62h500c35 0 63 28 63 62v354z m41-354c0-57-46-104-104-104h-500c-57 0-104 47-104 104v459c0 57 47 104 104 104h500c58 0 104-47 104-104v-459z m-583 459c0-12-9-21-21-21s-21 9-21 21 10 20 21 20 21-9 21-20m83 0c0-12-9-21-20-21s-21 9-21 21 9 20 21 20 20-9 20-20m84 0c0-12-9-21-21-21-12 0-21 9-21 21s9 20 21 20c12 0 21-9 21-20m6 235c-4 4-6 9-6 15v83c0 57 46 104 104 104h500c57 0 104-47 104-104v-458c0-58-47-105-104-105h-83c-12 0-21 10-21 21s9 21 21 21h83c34 0 62 28 62 63v354h-645c-6 0-11 2-15 6z m660 35v63c0 34-28 62-62 62h-500c-35 0-63-28-63-62v-63h625z m-541 63c0-12-9-21-21-21s-21 9-21 21 9 21 21 21 21-9 21-21m83 0c0-12-9-21-21-21s-21 9-21 21 10 21 21 21 21-9 21-21m83 0c0-12-9-21-20-21s-21 9-21 21 9 21 21 21 20-9 20-21m-452-265c-3 4-6 9-6 15v83c0 58 47 104 104 104h500c58 0 104-46 104-104v-458c0-58-46-104-104-104h-41c-12 0-21 9-21 21s9 20 21 20h41c35 0 63 28 63 63v354h-646c-6 0-11 3-15 6z m661 36v62c0 35-28 63-63 63h-500c-34 0-62-28-62-63v-62h625z m-542 62c0-11-9-21-21-21s-21 10-21 21c0 12 10 21 21 21s21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21c0 12 9 21 21 21s20-9 20-21m84 0c0-11-9-21-21-21s-21 10-21 21c0 12 9 21 21 21s21-9 21-21m-105-538h126l46 147h-216l44-147z m183 189c19 0 34-15 34-33 0-4-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 23l-54 180c0 0 0 0 0 0-4 12-9 22-16 33-5 7-10 9-17 9-12 0-21 10-21 21s9 21 21 21c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 29s12 29 29 29 29-12 29-29-13-29-29-29z m104 0c-16 0-29 13-29 29s13 29 29 29 29-12 29-29-13-29-29-29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-stock" unicode="" d="M389 435l71 245c7 24 41 19 41-5v-672c0-13-12-23-25-20l-343 75c-9 2-16 10-16 20v335c0 12 9 21 21 21h251z m35-27c-2-9-11-15-20-15h-245v-298l301-65v499l-36-121z m28 243l-299-33-62-183h297l64 216z m-48-258h-342c-14 0-24 14-19 27l76 224c2 8 9 14 17 14l343 37c14 2 26-12 22-26l-76-261c-3-9-12-15-21-15z m429 42c12 0 21-10 21-21v-200c0-12-9-21-21-21s-21 9-21 21v179h-256c-9 0-17 6-20 15l-35 121v-499l130 28c11 2 22-5 24-16 3-11-4-22-15-24l-156-34c-13-3-25 7-25 20v671c0 24 34 29 41 5l71-245h262z m-277-42c-9 0-17 6-20 15l-76 261c-4 14 8 28 22 26l343-37c8 0 15-6 18-14l76-224c4-13-6-27-20-27h-343z m16 42h298l-63 183-298 33 63-216z m169-460h127l45 147h-216l44-147z m184 188c18 0 33-15 33-33 0-3 0-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-27 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-11 0-21 9-21 21s10 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h242z m-174-301c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-tabs" unicode="" d="M737-25h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-516 738h478c35 0 62-28 62-62v-328c0-11-9-20-20-20s-21 9-21 20v328c0 11-9 20-21 20h-486c-12 0-22 7-27 19l-37 93c-4 8-11 13-20 13h-140c-8 0-16-5-19-14l-40-109c-1-5-2-9-2-14v-468c0-11 9-20 21-20h555c12 0 21-10 21-21s-9-21-21-21h-555c-35 0-63 28-63 62v468c0 9 2 19 5 28l40 110c8 25 32 41 58 41h140c26 0 49-15 58-39l34-86z m219-3l-26 73c-3 8-11 13-20 13h-145c-9 0-18-6-20-15l-12-43c-3-11-14-17-26-14-11 3-17 14-14 26l12 42c7 27 32 46 60 46h145c26 0 49-16 58-41l31-84c5-15-2-32-18-37-5-2-10-3-15-2-11 2-19 13-17 25 1 4 3 8 7 11z m39 29c-3-11-15-18-26-15-11 3-17 15-14 26l11 43c8 27 32 45 60 45h145c26 0 50-16 59-42l44-126c4-11-2-23-13-27s-23 2-26 13l-45 127c-3 8-10 14-19 14h-144c-9 0-17-6-20-16l-12-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-title" unicode="" d="M458 308c0 1 0 1 0 1v291h-125v-33c0-12-9-21-20-21s-21 9-21 21v54c0 12 9 21 21 21h333c12 0 21-9 21-21v-54c0-12-9-21-21-21s-21 9-21 21v33h-125v-291c0 0 0 0 0-1h42c11 0 21-9 21-20s-10-21-21-21h-125c-12 0-21 9-21 21s9 20 21 20h41z m32-208c12 0 21-9 21-21s-9-21-21-21h-390c-54 0-100 37-100 86v579c0 48 46 85 100 85h758c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6-3 0-6-1-9-1-5-1-9-1-11-1-12 0-21 8-22 20 0 12 8 21 20 22 2 0 6 0 9 0 3 0 4 0 6 0 5 1 9 3 14 5 19 8 31 23 31 38v580c0 23-25 44-59 44h-758c-33 0-58-21-58-44v-580c0-23 25-43 58-43h390z m122-125h126l46 147h-216l44-147z m183 188c19 0 34-15 34-33 0-3-1-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-28 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-12 0-21 9-21 21s9 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h241z m-173-301c-17 0-29 13-29 30s12 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="product-upsell" unicode="" d="M741-25h127l45 147h-216l44-147z m184 188c18 0 33-15 33-33 0-3 0-7-2-10l-51-164c-4-14-17-23-31-23h-139c-15 0-27 9-32 24l-54 179c0 0 0 1 0 1-4 11-9 22-16 32-5 7-10 10-17 10-11 0-21 9-21 21s10 20 21 20c21 0 39-9 51-27 7-10 12-20 16-30h242z m-174-301c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m104 0c-16 0-29 13-29 30s13 29 29 29 29-13 29-29-13-30-29-30z m-378 418c-9-6-22-4-29 6-7 9-4 22 5 29 67 46 108 123 108 207 0 137-109 249-243 249-134 0-243-112-243-249 0-101 58-190 147-229 10-5 15-17 10-28-4-10-17-15-27-10-104 46-172 150-172 267 0 160 127 291 285 291 157 0 285-131 285-291 0-98-48-188-126-242z m238 172c8 8 22 8 30 0 8-8 8-21 0-29l-247-253c-8-9-22-9-30 0l-117 119-183-187c-8-8-21-8-29 0-9 8-9 21-1 29l198 203c9 8 22 8 30 0l117-120 232 238z m98 91c11 0 20-10 20-21v-169c0-19-22-28-35-15l-165 169c-13 13-4 36 15 36h165z m-116-42l95-97v97h-95z m-466-35c-1 12 8 22 19 23 12 1 22-8 23-19 1-15 20-29 45-29 26 0 45 15 45 30 0 10-7 17-21 23-5 2-10 3-16 5-3 1-13 2-12 2 1 0-9 2-14 3-7 1-15 4-22 6-28 12-47 32-47 62 0 41 40 72 87 72 45 0 83-28 87-67 0-12-8-22-20-22s-21 7-22 19c-1 14-20 28-45 28-26 0-45-14-45-30 0-10 7-17 21-23 5-2 10-3 16-5 3-1 13-2 12-2-1 0 9-2 13-3 8-1 15-4 23-6 28-12 47-32 47-62 0-41-40-71-87-71-45 0-84 28-87 66z m66 191c0 11 9 21 21 21 12 0 21-10 21-21v-270c0-12-9-21-21-21-12 0-21 9-21 21v270z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="products" unicode="" d="M542 808v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-416c0-12-9-21-20-21h-417c-12 0-21 9-21 21v416c0 12 9 21 21 21z m-479-42v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-416c0-12-9-21-20-21h-417c-12 0-21 9-21 21v416c0 12 9 21 21 21z m521-542v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-417c0-11-9-20-20-20h-417c-12 0-21 9-21 20v417c0 12 9 21 21 21z m-479-42v-375h375v375h-375z m-21 42h417c11 0 20-9 20-21v-417c0-11-9-20-20-20h-417c-12 0-21 9-21 20v417c0 12 9 21 21 21z m185 219h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19s8 19 19 19c17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-9-23-22-23z m78 0c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-10-23-22-23z m418 97h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19s8 19 19 19c17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-9-23-22-23z m78 0c-12 0-21 11-21 23s10 23 21 23 22-10 22-23-10-23-22-23z m-582-403h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19 0 11 8 19 19 19 17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-9-23-22-23z m78 0c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-10-23-22-23z m418 97h89l33 111h-154l32-111z m134 149c16 0 29-13 29-29 0-3-1-5-1-8l-38-128c-4-13-15-21-28-21h-102c-13 0-25 8-28 21l-41 140c0 1 0 1 0 1-3 9-6 17-12 25-3 5-6 6-9 6-11 0-19 9-19 19 0 11 8 19 19 19 17 0 31-8 40-23 5-7 9-15 12-22h178z m-130-246c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-9-23-22-23z m78 0c-12 0-21 10-21 23 0 13 10 23 21 23s22-10 22-23c0-13-10-23-22-23z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bag-light" unicode="" d="M333 558l0 84c6 108 64 165 168 165 104 0 161-57 166-166v-83h83c46 0 83-37 83-83v-500c0-46-37-83-83-83h-500c-46 0-83 37-83 83v500c0 46 37 83 83 83h83z m42 0h250l0 82c-3 85-43 125-124 125-81 0-121-40-126-124l0-83z m-42-41h-83c-23 0-42-19-42-42v-500c0-23 19-42 42-42h500c23 0 42 19 42 42v500c0 23-19 42-42 42h-83v-121c0-12-9-21-21-21s-21 9-21 21l0 121h-250l0-121c0-12-9-21-21-21-11 0-21 9-21 21l0 121z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bag-medium" unicode="" d="M323 558l0 85c6 112 68 174 178 174 109 0 172-62 176-176v-83h73c46 0 83-37 83-83v-500c0-46-37-83-83-83h-500c-46 0-83 37-83 83v500c0 46 37 83 83 83h73z m62 0h230l0 82c-4 80-38 115-114 115-76 0-111-35-116-114l0-83z m-62-62h-73c-12 0-21-9-21-21v-500c0-12 9-21 21-21h500c12 0 21 9 21 21v500c0 12-9 21-21 21h-73v-100c0-17-14-31-31-31s-31 14-31 31l0 100h-230l0-100c0-17-14-31-31-31-17 0-31 14-31 31l0 100z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="bag-solid" unicode="" d="M333 558l0 84c6 108 64 165 168 165 104 0 161-57 166-166v-83h83c46 0 83-37 83-83v-500c0-46-37-83-83-83h-500c-46 0-83 37-83 83v500c0 46 37 83 83 83h83z m42 0h250l0 82c-3 85-43 125-124 125-81 0-121-40-126-124l0-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="basket-light" unicode="" d="M125 475c0 0 0 0 0 0h131l68 203c8 27 34 47 63 47h268c30 0 56-20 63-48l68-202h130c1 0 1 0 1 0h62c12 0 21-9 21-21s-9-21-21-21h-44l-62-381c-13-46-53-77-100-77h-503c-47 0-88 31-101 79l-62 379h-44c-12 0-21 10-21 21s9 21 21 21h62z m25-42l60-370c7-27 32-46 60-46h503c28 0 52 18 60 43l60 373h-743z m592 42l-63 190c-3 11-13 18-24 18h-268c-11 0-20-7-23-17l-64-191h442z m-242-146c0 12 9 21 21 21s21-9 21-21v-208c0-12-9-21-21-21s-21 9-21 21v208z m187-211c-2-11-12-19-24-18-11 2-19 13-17 24l29 206c2 12 13 20 24 18 11-2 19-12 18-24l-30-206z m-292 6c2-11-6-22-17-24-11-2-22 6-24 18l-29 206c-2 11 6 22 18 24 11 2 22-6 23-18l29-206z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="basket-medium" unicode="" d="M104 485c0 0 1 0 1 0h103l71 197c9 31 41 53 76 53h291c35 0 67-22 77-55l70-195h103c0 0 1 0 1 0h61c17 0 32-14 32-31s-15-31-32-31h-35l-61-374c-14-50-59-84-110-84h-503c-51 0-97 34-111 87l-60 371h-36c-17 0-32 14-32 31s15 31 32 31h62z m37-62l58-358c6-22 26-38 50-38h503c23 0 44 16 49 35l59 361h-719z m585 62l-63 176c-3 7-9 12-18 12h-290c-9 0-15-5-17-10l-64-178h452z m-257-156c0 17 14 31 31 31s31-14 31-31v-208c0-17-14-31-31-31s-31 14-31 31v208z m208-213c-3-17-19-28-36-26-17 2-28 18-26 35l29 206c3 17 19 29 36 27s28-18 26-35l-29-207z m-292 9c3-17-10-32-27-35-17-2-33 10-35 27l-30 206c-2 17 10 33 27 35 17 3 33-9 35-26l30-207z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="basket-solid" unicode="" d="M128 433h-65c-12 0-21 10-21 21s9 21 21 21h193l68 203c8 27 34 47 63 47h268c30 0 56-20 63-48l68-202h193c12 0 21-9 21-21s-9-21-21-21h-66l-60-376c-10-36-43-61-81-61h-502c-37 0-70 25-80 61l-62 376z m614 42l-63 190c-3 11-13 18-24 18h-268c-11 0-20-7-23-17l-64-191h442z m-242-146v-208c0-12 9-21 21-21s21 9 21 21v208c0 12-9 21-21 21s-21-9-21-21z m187-211l30 206c1 11-7 22-18 24-11 2-22-6-24-18l-29-206c-2-11 6-22 17-24 12-1 23 7 24 18z m-292 6l-29 206c-2 11-12 19-24 18-11-2-19-13-17-24l29-206c2-12 12-20 24-18 11 2 19 13 17 24z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart-light" unicode="" d="M708-4c0-35 28-63 63-63 34 0 62 28 62 63 0 34-28 62-62 62-35 0-63-28-63-62z m-520 687l750 0c12 0 22-11 20-23l-32-260c-7-52-51-92-104-92l-559 0 8-41c10-49 53-84 102-84l481 0c12 0 21-9 21-20 0-12-9-21-21-21l-481 0c-69 0-129 49-143 117l-101 508-108 0c-12 0-21 9-21 21 0 11 9 20 21 20l125 0c10 0 18-7 20-16l22-109z m8-41l59-292 567 0c32 0 58 24 62 55l30 237-718 0z m471-646c0 57 46 104 104 104 57 0 104-47 104-104 0-58-47-104-104-104-58 0-104 46-104 104z m-417 0c0 57 47 104 104 104 58 0 104-47 104-104 0-58-46-104-104-104-57 0-104 46-104 104z m42 0c0-35 28-63 62-63 35 0 63 28 63 63 0 34-28 62-63 62-34 0-62-28-62-62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart-medium" unicode="" d="M740-4c0-29 23-52 52-52s52 23 52 52-24 52-52 52-52-23-52-52z m-523 698h741c19 0 34-17 31-35l-32-261c-7-57-56-100-114-100h-546l6-29c8-44 47-75 92-75h480c17 0 31-14 31-31s-14-32-31-32h-481c-74 0-139 53-153 126l-100 499h-99c-17 0-32 14-32 32s15 31 32 31h125c15 0 28-11 31-25l19-100z m13-63l54-271h559c26 0 48 20 52 46l28 225h-693z m447-635c0 63 51 114 115 114s114-51 114-114-51-115-114-115-115 51-115 115z m-417 0c0 63 52 114 115 114s115-51 115-114-52-115-115-115-115 51-115 115z m63 0c0-29 23-52 52-52s52 23 52 52-23 52-52 52-52-23-52-52z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cart-solid" unicode="" d="M188 683h750c5 0 11-2 15-7 4-4 6-10 5-16l-32-260c-7-52-51-92-103-92h-560l8-41c10-48 53-84 102-84h481c12 0 21-9 21-20s-9-21-21-21h-481c-69 0-129 49-143 117l-101 508h-108c-12 0-21 9-21 21s9 20 21 20h125c10 0 18-7 20-16l22-109z m583-583c57 0 104-47 104-104s-47-104-104-104-104 46-104 104 46 104 104 104z m-417 0c58 0 104-47 104-104s-46-104-104-104-104 46-104 104 47 104 104 104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="exchange" unicode="" d="M392 600v-345c0-17-19-30-42-30s-42 13-42 30v345h-104c-6 0-10 2-14 5-5 4-7 8-7 13 0 5 2 10 7 13l145 130c5 4 10 5 15 5s10-1 15-5l145-130c5-3 7-8 7-13 0-5-2-9-7-13-4-3-9-5-14-5h-104z m208-500v345c0 17 19 30 42 30s41-13 41-30v-345h105c5 0 10-2 14-5s6-8 6-13-2-9-6-13l-146-130c-4-4-9-5-14-5s-11 1-15 5l-146 130c-4 4-6 8-6 13s2 9 6 13 9 5 15 5h104z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="preview-thin" unicode="" d="M500 663c117 0 233-50 338-134 79-62 141-146 141-179s-62-112-141-179c-105-83-221-133-338-133s-233 50-337 133c-80 67-142 146-142 179s62 113 142 179c104 84 220 134 337 134z m192-92l0 0c37-46 58-100 58-158 0-138-112-250-250-250s-250 112-250 250c0 62 21 116 58 158-41-21-79-46-120-79-71-59-125-129-125-146s58-88 125-146c95-79 204-125 312-125s217 46 313 125c70 58 125 129 125 146s-59 87-125 146c-42 33-80 62-121 79z m-192 50l-8 0c-113-4-200-96-200-208 0-117 91-209 208-209s208 92 208 209c0 112-87 204-200 208l-8 0z m0-108c54 0 100-46 100-100 0-55-46-100-100-100s-100 45-100 100c0 4 0 4 0 8 8-4 17-4 25-4 42 0 75 33 75 75 4 8 4 12 0 21l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-laptop" unicode="" d="M797 646c41 0 75-34 75-75v-390c0-13-3-25-9-35h82c7 0 13-6 13-14v-31c0-26-20-46-45-46h-825c-26 0-46 20-46 46v31c0 8 6 14 13 14h77c-5 10-9 22-9 35v390c0 41 34 75 75 75h599z m-8-83h-582v-374h582v374z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="collapse" unicode="" d="M826-108h-652c-73 0-132 59-132 132v652c0 73 59 132 132 132h652c73 0 132-59 132-132v-652c0-73-59-132-132-132z m-652 823c-21 0-39-17-39-39v-652c0-21 18-39 39-39h652c21 0 39 18 39 39v652c0 22-18 39-39 39h-652z m76-457c0 8 3 16 9 22l219 227c6 6 13 10 22 10s16-4 22-10l219-227c6-6 9-14 9-22s-3-17-9-23c-6-7-13-10-22-10h-438c-8 0-16 3-22 10-6 6-9 14-9 23z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="expand" unicode="" d="M865 715v-730h-730v730h730z m8 93h-746c-47 0-85-38-85-85v-746c0-47 38-85 85-85h746c47 0 85 38 85 85v746c0 47-38 85-85 85z m-623-365c0-9 3-17 9-23l219-227c6-6 13-10 22-10s16 4 22 10l219 227c6 6 9 14 9 23s-3 16-9 22-13 10-22 10h-438c-8 0-16-3-22-10s-9-14-9-22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="navigator" unicode="" d="M936 613l-418 192c-11 5-24 5-35 0l-419-192c-14-7-22-20-22-34s8-27 22-33l418-192c6-3 12-4 18-4s12 1 18 4l418 192c14 6 22 19 22 33s-8 27-22 34z m-46-205c23 11 52 1 63-23 12-23 2-52-22-63l-411-195c-12-7-28-7-41 0l-410 195c-24 11-34 40-23 63s40 35 64 23l390-185 390 185z m0-229c23 11 52 1 63-23s2-52-22-63l-411-196c-12-6-28-6-41 0l-410 196c-24 11-34 40-23 63s40 34 64 23l390-186 390 186z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plug" unicode="" d="M404 625l179 183c30 30 75 30 105 0l0 0c29-29 29-75 0-104l-180-179 125-125 180 179c29 29 75 29 104 0l0 0c29-29 29-75 0-104l-179-179 41-42c9-8 9-21 0-29l-75-83c-8-9-21-9-29 0l-25 25-117-117c-79-79-200-83-283-17l-121-121c-8-8-21-8-29 0s-8 21 0 30l121 121-46 45-121-121c-8-8-21-8-29 0-8 9-8 21 0 30l121 125c-67 83-63 204 17 283l116 117-25 21c-4 8-4 20 0 29l79 75c9 8 21 8 30 0l41-42z m75-75l179 179c13 13 13 34 0 46l0 0c-12 13-33 13-45 0l-180-179 46-46z m229-229l180 179c12 13 12 33 0 46l0 0c-13 12-34 12-46 0l-179-179 45-46z m-362 304l-46-46 25-25c8-8 8-21 0-29l-133-133c-67-67-67-175 0-242l75-75c66-67 175-67 241 0l134 133c8 9 21 9 29 0l25-25 46 46-396 396z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dashboard" unicode="" d="M500 558c25 0 42-16 42-41s-17-42-42-42-42 17-42 42 17 41 42 41z m208-83c25 0 42-17 42-42s-17-41-42-41-41 16-41 41 16 42 41 42z m-416 0c25 0 41-17 41-42s-16-41-41-41-42 16-42 41 17 42 42 42z m-84-167c25 0 42-16 42-41s-17-42-42-42-41 17-41 42 16 41 41 41z m584 0c25 0 41-16 41-41s-16-42-41-42-42 17-42 42 17 41 42 41z m-217-154c-4 34-21 63-50 79-29 17-62 17-92 5l-12 4 208 166-41-262-13 8z m-92-100c-16 0-37 4-50 13-25 12-41 37-50 62-8 25-4 54 9 79s37 42 62 50 54 5 79-8c25-12 42-37 50-62 9-25 5-55-8-80s-37-41-62-50c-13 0-21-4-30-4z m0 167c-4 0-12 0-16-4-17-4-29-17-38-29-8-13-12-34-4-46 4-17 17-29 29-38 13-8 34-12 46-8 17 4 29 17 38 29 8 13 12 33 4 46-4 17-17 29-29 37v0c-9 13-17 13-30 13z m409-267h-784l-4 8c-66 88-104 192-104 305 0 275 225 500 500 500 275 0 500-225 500-500 0-113-37-217-104-305l-4-8z m-763 42h742c58 79 87 171 87 271 0 254-204 458-458 458s-458-204-458-458c0-100 29-192 87-271z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="typography" unicode="" d="M146 504v-583c0-4 4-13 12-13h663v867c0 4-4 13-13 13h-379v-230c0-29-25-54-54-54h-229z m246 284l0 0-238-242h225c4 0 13 4 13 12v230z m-234-921c-29 0-54 25-54 54v625c0 4 4 12 4 12l255 263c4 4 8 8 16 8h434c29 0 54-25 54-54v-888c0-12-9-20-21-20h-271-417z m255 316l-59 142-58-142h117z m45-125l-37 92h-138l-37-92h-42l129 330h46l129-330h-50z m230 30c-25-25-50-38-75-38-21 0-38 8-50 21s-21 29-21 46c0 25 12 46 33 62 21 13 54 21 96 21h12v29c0 29-12 42-41 42-25 0-50-8-75-21v38c29 12 58 16 83 16 29 0 46-4 58-16 13-13 21-34 21-59v-108c0-25 9-38 25-38 0 0 4 0 9 0l4-25c-9-4-21-8-34-8-29 4-41 17-45 38z m-9 25v62l-16 0c-25 0-42-4-59-12-12-9-21-21-21-38 0-12 5-21 13-25 8-8 17-12 29-12 17 0 33 8 54 25z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info-circle-o" unicode="" d="M479 483c0 34 29 59 63 59 33 0 62-25 62-59 0-33-29-58-62-58-34 0-63 25-63 58z m125-320c0-5-4-9-8-13-21-21-50-29-83-33-13 0-30 0-42 0-38 8-58 33-54 66 8 38 16 75 21 113 4 12 4 21 8 33 0 4 0 9 0 13 0 8-8 12-17 12-4 0-8 0-12 0-4 0-13 4-17 4-8 5-8 17 4 17 4 0 9 4 17 4 21 0 42 0 62 0h59c12 0 21-8 25-16 0-13-4-25-4-38-9-37-17-71-21-104-4-13-4-25-9-38 0-4 0-8 0-12 5-17 13-21 30-17 4 0 8 4 16 4 4 0 9 5 17 9 4 8 8 4 8-4z m-104-313c-275 0-500 225-500 500s225 500 500 500 500-225 500-500-225-500-500-500z m0 42c254 0 458 204 458 458s-204 458-458 458-458-204-458-458 204-458 458-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="integration" unicode="" d="M275 679l417-241c8-5 12-17 8-30s-17-12-29-8l-417 242c-33-42-91-50-141-25-50 33-71 100-38 154s100 71 154 42c46-30 63-84 46-134z m475-412l-417-242c-8-4-20-4-29 8-4 9-4 21 9 30l416 241c-16 50 4 104 50 134 54 29 121 12 154-42 30-54 13-121-41-154-46-25-104-13-142 25z m-617-184v459c0 12 9 21 21 21s21-9 21-21v-459c50-8 92-54 92-108 0-63-50-113-113-113s-112 50-112 113c0 54 37 100 91 108z m-50-108c0-38 30-71 71-71s71 29 71 71-29 71-71 71-71-33-71-71z m788 304c33 21 46 63 25 96-21 33-63 46-96 25-33-21-46-62-25-96 21-33 63-46 96-25z m-733 375c33-21 75-8 95 25s9 75-25 96-79 8-100-25-4-75 30-96z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-circle-o" unicode="" d="M500-113c-254 0-462 209-462 463s208 463 462 463 463-209 463-463-209-463-463-463z m0 92c204 0 371 167 371 371s-167 371-371 371-371-167-371-371 167-371 371-371z m-46 417v175c0 25 21 46 46 46 25 0 46-21 46-46v-175h175c25 0 46-21 46-46s-21-46-46-46h-175v-175c0-25-21-46-46-46-25 0-46 21-46 46v175h-175c-25 0-46 21-46 46s21 46 46 46h175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="rating" unicode="" d="M325 446l83 12 75 150c9 17 30 17 38 0l75-150 79-12 71 125c8 17 29 12 37 0l50-125 130-25c16-4 20-25 8-38l-96-87 17-133c0-17-17-30-34-21l-112 66-71-33c0 0-4 0-4 0l12-67c5-16-16-29-29-20l-154 83-150-79c-17-9-33 4-29 21l12 66c-4 0-4 0-8 0l-71 34-112-67c-17-8-34 4-34 21l17 129-100 87c-12 13-8 34 8 38l130 25 54 121c8 16 29 16 37 0l71-121z m-46-8l-41 75-42-92c-4-8-8-13-17-13l-96-20 75-67c5-4 9-13 9-17l-13-100 88 50c4 4 12 4 21 0l79-37 8 58-121 117c-12 12-4 33 13 37l37 9z m438 4l41-4c17-5 25-25 13-38l-121-117 8-58 75 33c5 5 13 5 21 0l88-50-9 96c0 9 0 13 9 17l75 67-100 20c-9 0-13 5-17 13l-42 92-41-71z m-350-292l121 63c4 4 12 4 20 0l121-63-25 138c0 8 0 12 4 16l100 96-137 21c-8 0-13 4-17 12l-62 125-63-125c-4-4-8-8-16-12l-138-21 100-96c4-4 8-12 4-16l-12-138z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="review" unicode="" d="M254 113c-58 0-108 50-108 108v292c0 58 46 108 108 108h492c58 0 108-50 108-108v-292c0-58-46-108-108-108h-283l-200-113c-17-8-38 8-30 25l42 88h-21z m192 37c4 0 8 4 8 4h292c37 0 67 29 67 67v292c0 37-30 66-67 66h-492c-37 0-66-29-66-66v-292c0-38 29-67 66-67h59c16 0 25-16 16-29l-29-58 146 83z m46 154c4 4 12 4 21 0l50-25-9 54c0 9 0 13 4 17l38 38-54 8c-9 0-13 4-17 12l-25 50-25-50c-4-4-8-8-17-12l-54-8 38-38c4-4 8-12 4-17l-8-54 54 25z m-67-83c-17-8-33 4-29 21l12 83-62 58c-13 13-4 34 12 38l84 12 37 75c9 17 29 17 38 0l37-75 84-12c16-4 25-25 12-38l-62-58 12-83c4-17-17-29-29-21l-75 42-71-42z m458 217c-8 8-8 20 0 29 9 8 21 8 30 0l75-75c8-9 8-21 0-29l-75-75c-9-9-21-9-30 0-8 8-8 20 0 29l59 58-59 63z m-762 0l-58-59 58-58c8-8 8-21 0-29-8-9-21-9-29 0l-75 75c-9 8-9 21 0 29l75 75c8 8 21 8 29 0 8-8 8-25 0-33z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tools" unicode="" d="M246-79c-8 0-17 0-25 0 0 0 0 0 0 0l-79 12 87 92-29 33-92-91-12 79c-4 17-4 33 0 50 4 29 21 58 42 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l0 0 0 0c25 25 54 38 83 42 17 8 29 8 46 4h0l137 137-91 96-63-66-21 20-16-16c12-17 12-42-5-59l-29-25c-16-16-46-16-62 0l-92 92c-8 8-12 21-12 29s4 21 12 29l29 30c9 8 21 12 29 12 0 0 0 0 0 0 13 0 21-4 30-12l4-5 16 17-29 33 84 84c0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 54 50 100 83 141 104 50 29 100 42 146 42 0 0 0 0 0 0 9 0 17 0 25 0 9 0 17 0 25-4l75-17-137-138 91-91 88 83c-4 17-4 29 0 46 4 29 17 58 42 83 0 0 0 0 0 0l0 0 0 0c0 0 0 0 0 0 0 0 0 0 0 0l0 0c0 0 0 0 0 0 0 0 0 0 0 0 20 21 45 34 75 42 16 4 37 4 58 0l79-13-92-87 30-33 91 87 13-79c0 0 0 0 0 0 4-17 4-33 0-50-4-29-17-54-38-75 0 0 0 0-4-4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-37-38-87-50-137-42l-84-83 284-284c33-33 33-87 0-121l-30-29c-16-16-37-25-62-25 0 0 0 0 0 0-25 0-46 9-63 25l-283 284-133-134c4-20 4-41 0-62-4-29-21-54-42-75l0 0c0 0 0 0 0 0 0 0 0 0 0 0l0 0 0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-21-21-50-34-79-42-8-8-17-8-25-8z m-13 41c9 0 17 0 25 0 21 5 46 13 63 30l0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 21 29 29 46 4 16 4 37 0 54l0 0c0 4 0 4 0 8l-4 13c-4 12-13 20-17 29 0 4-4 4-4 4 0 0 0 0 0 0-4 4-8 8-12 8-42 34-105 29-142-8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l0 0c-17-17-25-38-29-63 0-12 0-20 0-33l25 38c8 8 21 12 33 12 0 0 0 0 0 0 13 0 21-4 29-12l29-30c9-8 13-16 13-29s-4-21-13-29l-33-33c4-5 4-5 8-5z m321 305l284-284c16-16 45-16 62 0l29 30c17 16 17 45 0 62l-283 283 0 0 0 0-92-91z m-191-100c4-9 8-13 12-21h0l275 275 0 0 71 71c-13 8-21 16-33 25-13 12-21 25-30 41l-350-350c9-4 13-8 21-12 9-4 13-8 17-17 0 0 0 0 0 0 0 0 0 0 0 0l0 0c8-4 12-8 17-12z m-275 296l-34-30 92-95 33 29-12 12-79 84z m254 20l91-91 92 91-92 92-91-92z m-175 50l83-83 271 271c-8 0-17 4-29 4-4 0-9 0-13 0-33 0-79-8-133-37-42-21-83-55-125-96 0 0-4-4-4-4 0 0 0 0 0 0l-50-55z m550 13c41-42 112-42 154 0l0 0c0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 25 37 29 58 0 9 0 21 0 29 0 0 0 5 0 5v0l-33-34c-17-16-46-16-59 0l-29 38c-8 8-12 21-12 29 0 12 4 21 12 29l34 33c-13 0-25 0-38 0-21-4-42-12-54-29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-46-46-46-116-4-158l0 0 0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="loading" unicode="" d="M500-125v117c196 0 358 162 358 358s-162 358-358 358-358-162-358-358h-117c0 263 213 475 475 475s475-212 475-475-212-475-475-475z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sitemap" unicode="" d="M479 417v154h-75c-12 0-21 8-21 21v191c0 13 9 21 21 21h192c12 0 21-8 21-21v-195c0-13-9-21-21-21h-75v-154h267c37 0 70-30 70-71v-175h75c13 0 21-9 21-21v-196c0-13-8-21-21-21h-191c-13 0-21 8-21 21v196c0 12 8 21 21 21h75v175c0 16-13 29-29 29h-267v-200h75c12 0 21-8 21-21v-196c0-12-9-21-21-21h-192c-12 0-21 9-21 21v196c0 13 9 21 21 21h75v200h-266c-17 0-30-13-30-29v-175h75c13 0 21-9 21-21v-196c0-13-8-21-21-21h-191c-13 0-21 8-21 21v196c0 12 8 21 21 21h75v175c0 37 29 71 71 71h266z m-54 346v-155h150v155h-150z m-337-784h150v154h-150v-154z m675 154v-154h150v154h-150z m-338-154h150v154h-150v-154z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="click" unicode="" d="M326 458v178c0 66 53 119 118 119s118-53 118-119v-178c57 39 94 104 94 178 0 119-95 214-212 214s-213-96-213-214c0-75 38-140 95-178z m396-165c-53 12-184 48-198 62s-9 103-9 116c0 54 0 109 0 164 0 40-32 72-71 72s-71-32-71-72c0-187 0-328 0-422 0-29-3-70-14-87s-28-23-54 1-32 34-62 42-65-19-73-35-10-30 0-53c15-31 52-73 66-87 27-27 68-68 122-123 13-13 31-21 50-21h321c36 0 63 26 68 61l36 251c0 3 0 6 0 9 0 30-13 99-111 122z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="clock" unicode="" d="M500-67c-230 0-417 187-417 417s187 417 417 417 417-187 417-417-187-417-417-417z m198 310l-160 105v192c0 20-17 38-38 38s-38-18-38-38v-212c0-13 6-25 17-32l177-117c17-11 41-6 52 11 12 18 7 41-10 53z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="library-open" unicode="" d="M958 300c0-8-4-21-16-33l-163-192c-12-17-33-29-58-42s-50-16-71-16h-529c-13 0-21 4-29 8s-13 13-13 21c0 8 4 21 17 33l162 192c13 17 34 29 59 42s50 16 71 16h529c12 0 21-4 29-8s12-8 12-21z m-166 171v-79h-409c-29 0-62-9-95-25s-59-34-80-59l-162-191-4-4c0 0 0 4 0 4s0 4 0 4v475c0 29 12 54 33 79s46 33 79 33h159c29 0 54-12 79-33s25-50 25-79v-17h266c30 0 55-12 80-33s29-46 29-75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="warning" unicode="" d="M538 663c-5 8-9 12-17 16-21 9-46 4-58-16l-371-646c-4-9-4-13-4-21 0-25 16-42 41-42h742c8 0 12 0 21 4 21 13 25 38 16 59l-370 646z m33 20l371-645c25-42 8-92-29-113-13-8-25-13-42-13h-742c-46 0-83 38-83 84 0 12 4 29 12 42l371 645c25 42 75 55 113 30 12-9 25-17 29-30z m-121-450l-8 142c0 29-4 46-4 58 0 21 4 34 16 46 13 13 25 17 42 17 25 0 37-13 46-25 8-13 8-29 8-54 0-13 0-25-4-42l-13-146c0-16-4-33-8-41-8-13-17-21-33-21-17 0-25 8-34 21-4 12-8 25-8 45z m42-112c16 0 29-4 41-17 13-12 17-25 17-37 0-17-4-29-17-42-12-8-25-12-37-12-17 0-29 4-38 12-12 8-16 25-16 42 0 16 4 29 16 37 5 13 21 17 34 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flow" unicode="" d="M542 392h237c42 0 75-34 75-75v-125h113c21 0 33-17 33-34v-233c0-21-17-33-33-33h-304c-21 0-34 16-34 33v233c0 21 17 34 34 34h108v116h-542v-116h109c20 0 33-17 33-34v-233c4-17-13-33-33-33h-305c-16 0-33 16-33 33v233c0 21 17 34 33 34h113v125c0 41 33 75 75 75h237v116h-112c-21 0-33 17-33 34v233c0 17 16 33 33 33h304c21 0 33-16 33-33v-233c0-21-16-34-33-34h-108v-116z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cursor-move" unicode="" d="M208 296v-71c0-4 0-8-4-12-4-5-8-5-12-5-4 0-9 0-13 5l-129 137c-8 0-8 4-8 13s0 8 4 12l129 138c4 4 8 4 17 4 4 0 8 0 12-4 4-5 4-9 4-17v-75h221v221h-75c-8 0-12 0-16 4-5 4-5 8-5 12 0 5 0 9 5 13l137 129c4 8 8 8 17 8s8 0 12-4l138-129c4-4 4-8 4-12 0-5 0-9-4-13-4-8-9-8-17-8h-75v-221h242v75c0 4 0 8 4 12s8 9 12 9 9 0 13-4l129-138c4-4 4-8 4-12s0-9-4-13l-129-137c-4-5-8-5-13-5s-8 0-12 5c-4 0-4 4-4 12v75h-238v-242h71c4 0 8 0 13-4 4-4 4-8 4-12s0-9-4-13l-138-129c0-8-4-8-8-8s-9 0-13 4l-137 129c-9 4-9 8-9 17s0 8 5 12 8 4 16 4h75v238h-221z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="arrow-circle-left" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z m-354-229l-175-175c-17-17-17-46 0-62 16-17 41-17 58 0l204 208c17 17 17 46 0 62l-204 205c-17 16-46 16-58 0-17-17-17-46 0-63l175-175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flash" unicode="" d="M150 321l188 446c4 12 16 21 29 21l304-5c17 0 33-16 33-33 0-4 0-8-4-12l-83-192 216 0c17 0 34-17 34-33 0-9-4-17-9-21l-537-571c-13-13-33-13-46 0-8 8-12 21-8 33l91 321-175 0c-16 0-33 17-33 33 0 5 0 9 0 13z m113 42l212 0-62-217 295 317-220 0 100 237-184 0-141-337z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="redo" unicode="" d="M679 592c-4 0-8 4-8 4-138 79-317 33-396-104s-33-313 104-392 313-33 396 104c17 29 50 38 79 21 29-17 38-50 21-79-112-192-358-259-550-146s-262 358-150 554 358 259 550 146c17-8 25-17 38-25l4 4 58 59c17 16 46 4 46-21l0-196c0-17-13-29-29-29l-196 0c-25 0-38 29-21 46l54 54z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ban" unicode="" d="M208 550c-41-58-62-125-62-200 0-192 154-350 350-350 79 0 150 25 212 71 0 0-4 4-4 4l-487 467c-4 4-9 4-9 8z m75 75c5 0 5-4 9-8l483-467c0 0 4-4 4-4 42 58 63 125 63 200 0 192-154 350-350 350-79 4-150-25-209-71z m209-733c-254 0-459 204-459 458s205 458 459 458 458-204 458-458-204-458-458-458z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="barcode" unicode="" d="M125 725v-750h-42v750h42z m42 0v-750h-42v750h42z m41 0v-750h-37v750h37z m42 0v-750h-33v750h33z m42 0v-750h-34v750h34z m41 0v-750h-29v750h29z m42 0v-750h-29v750h29z m42 0v-750h-25v750h25z m41 0v-750h-25v750h25z m42 0v-750h-21v750h21z m46 0v-750h-21v750h21z m42 0v-750h-17v750h17z m41 0v-750h-16v750h16z m42 0v-750h-13v750h13z m42 0v-750h-13v750h13z m41 0v-750h-8v750h8z m42 0v-750h-8v750h8z m42 0v-750h-5v750h5z m41 0v-750h-4v750h4z m42 0v-750h-4v750h4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="calendar" unicode="" d="M917 604v-637c0-50-42-88-88-88h-658c-46 4-88 42-88 92v633c0 50 42 88 88 88h87v96c5 12 13 20 25 20h75c13 0 21-8 21-20v-96h238v96c0 12 8 20 21 20h75c12 0 20-8 20-20v-96h88c54 0 96-38 96-88z m-88-625v542h-658v-538c0-4 4-12 12-12h634c4 0 12 4 12 8z m-471 367h-75c-12 0-20 8-20 21v75c0 12 8 21 20 21h75c13 0 21-9 21-21v-71c0-13-8-25-21-25z m200 21c0-13-8-21-20-21h-75c-13 0-21 8-21 21v75c0 12 8 21 21 21h75c12 0 20-9 20-21v-75z m180 0c0-13-9-21-21-21h-75c-13 0-21 8-21 21v75c0 12 8 21 21 21h75c12 0 21-9 21-21v-75z m-180-159c0-12-8-20-20-20h-75c-13 0-21 8-21 20v71c0 13 8 21 21 21h75c12 0 20-8 20-21v-71z m-179 0c0-12-8-20-21-20h-75c-12 0-20 8-20 20v71c0 13 8 21 20 21h75c13 0 21-8 21-21v-71z m359 0c0-12-9-20-21-20h-75c-13 0-21 8-21 20v71c0 13 8 21 21 21h75c12 0 21-8 21-21v-71z m-180-158c0-12-8-21-20-21h-75c-13 0-21 9-21 21v71c0 12 8 21 21 21h75c12 0 20-9 20-21v-71z m-179 0c0-12-8-21-21-21h-75c-12 0-20 9-20 21v71c0 12 8 21 20 21h75c13 0 21-9 21-21v-71z m359 0c0-12-9-21-21-21h-75c-13 0-21 9-21 21v71c0 12 8 21 21 21h75c12 0 21-9 21-21v-71z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-left" unicode="" d="M592 604c8 9 12 9 25 9 8 0 16-5 25-9 8-8 8-12 8-25v-458c0-8-4-17-8-25-9-8-13-8-25-8-9 0-17 4-25 8l-229 229c-9 8-9 13-9 25 0 8 4 17 9 25l229 229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-right" unicode="" d="M408 604c-8 4-16 9-25 9-8 0-16-5-20-9-9-8-13-16-13-25v-458c0-8 4-17 8-25 9-8 13-8 25-8 9 0 17 4 25 8l230 229c8 8 8 13 8 25 0 8-4 17-8 25l-230 229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-up" unicode="" d="M763 279c8-8 8-12 8-25 0-8-4-16-8-25-9-8-13-8-25-8h-459c-8 0-16 4-25 8 0 9-4 17-4 25 0 9 4 17 8 25l230 229c8 5 16 9 25 9 8 0 16-4 25-9l225-229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chain-broken" unicode="" d="M500 492c-21-21-50-21-71 0-21 21-21 50 0 71l142 141c79 79 208 79 287 0 80-79 80-208 0-287l-141-142c-21-21-50-21-71 0-21 21-21 50 0 71l142 142c37 37 37 104 0 141s-105 38-142 0l-146-137z m0-284c21 21 50 21 71 0 21-20 21-50 0-70l-142-142c-79-79-208-79-287 0-79 79-79 208 0 287l141 142c21 21 50 21 71 0 21-25 21-54 4-75l-141-142c-38-37-38-104 0-141s104-38 141 0l142 141z m142 284c21-21 21-50 0-71l-213-213c-21-20-50-20-71 0-20 21-20 50 0 71l213 213c21 21 54 21 71 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="check-circle-o" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z m-504-337l-109 108c-16 17-45 17-66 0-17-17-17-46 0-67l141-141c17-17 46-17 63 0l358 346c17 16 17 45 0 66-16 17-46 17-66 0l-321-312z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="check" unicode="" d="M813 625c25 25 62 25 87 0 25-25 25-62 0-87l-487-467c-25-25-63-25-88 0l-225 225c-25 25-25 62 0 87 25 25 63 25 88 0l183-183 442 425z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-double-left" unicode="" d="M304 350l254-250c25-25 25-62 0-87-25-26-62-26-87 0l-300 295c-25 25-25 67 0 88l300 296c25 25 62 25 87 0 25-25 25-63 0-88l-254-254z m250 0l254-250c25-25 25-62 0-87s-62-26-87 0l-300 295c-25 25-25 67 0 88l300 296c25 25 62 25 87 0s25-63 0-88l-254-254z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="chevron-double-right" unicode="" d="M679 350l-254-250c-25-25-25-62 0-87 25-26 63-26 88 0l300 295c25 25 25 67 0 88l-300 296c-25 25-63 25-88 0-25-25-25-63 0-88l254-254z m-250 0l-254-250c-25-25-25-62 0-87s63-26 88 0l300 295c25 25 25 67 0 88l-305 292c-25 25-62 25-87 0s-21-63 4-88l254-250z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="undo" unicode="" d="M325 592c0 4 4 4 8 8 138 79 317 33 396-104s34-313-104-396-312-33-396 104c-16 29-50 38-79 21-29-17-37-50-21-79 113-192 359-259 550-146s259 358 146 550-354 263-550 150c-12-8-25-17-33-25l-4 4-59 59c-16 16-46 4-46-17l0-196c0-17 13-29 30-29l195 0c25 0 38 29 21 46l-54 50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="filter" unicode="" d="M96 492c-29 0-54 25-54 54s25 54 54 54h812c25 0 50-25 50-54s-25-54-54-54h-808z m121-209c-29 0-54 25-54 55 0 29 25 54 54 54h566c30 0 55-25 55-54 0-30-25-55-55-55h-566z m121-208c-30 0-55 25-55 54 0 29 25 54 55 54h325c29 0 54-25 54-54 0-29-25-54-54-54h-325z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="circle-o" unicode="" d="M500-108c254 0 458 204 458 458s-204 458-458 458-458-204-458-458 204-458 458-458z m0 108c-192 0-350 154-350 350s158 350 350 350 350-154 350-350-158-350-350-350z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="circle" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="clock-o" unicode="" d="M500 721c-204 0-371-167-371-371 0-204 167-371 371-371 204 0 371 167 371 371 0 204-167 371-371 371z m0 87c254 0 458-204 458-458s-204-458-458-458-458 204-458 458 204 458 458 458z m100-600l-17-20c-12-17-37-21-58-9l-108 88v225c0 21 16 41 41 41h25c21 0 42-16 42-41v-175l67-54c16-13 21-38 8-55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cog" unicode="" d="M904 246l-75 42c9 41 9 83 0 120l75 42c9 8 13 21 13 29-21 63-54 117-96 167-8 8-17 8-25 4l-75-42c-33 25-67 46-108 63v83c0 9-9 17-17 21-63 13-129 13-192 0-8-4-16-12-16-21v-87c-38-13-75-34-105-63l-75 46c-8 4-20 0-29-4-41-46-75-104-96-167 0-8 5-21 13-25l75-41c-8-42-8-84 0-121l-75-42c-8-4-13-17-8-25 20-62 54-117 95-167 9-8 17-8 25-4l75 42c34-25 67-46 109-63v-87c0-9 8-17 16-21 63-13 130-13 192 0 8 4 17 12 17 21v87c37 13 75 34 108 63l75-42c8-4 21-4 25 4 42 46 75 105 96 167-4 4-8 17-17 21z m-404-33c-79 0-142 62-142 141s63 142 142 142 142-63 142-142-63-141-142-141z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cogs" unicode="" d="M775 454l-12-21c-5-8-13-12-21-8-17 8-34 17-46 29-8 4-8 17-4 21l12 21c-8 12-16 25-21 37h-25c-8 0-16 5-16 17-4 17-4 33 0 54 0 9 8 17 16 17h25c5 12 13 29 21 37l-12 21c-4 9-4 17 4 21 12 8 29 17 46 25 8 0 16 0 21-8l12-21c17 4 29 4 46 0l12 21c5 8 13 8 21 8 17-4 34-17 46-25 8-4 8-17 4-21l-12-21c12-16 16-29 25-41h25c8 0 16-4 16-17 5-17 5-33 0-54 0-8-8-17-16-17h-25c-4-12-13-29-21-37l8-17c4-8 4-17-4-21-12-12-29-21-46-25-8-4-16 0-21 9l-12 20c-17-8-29-8-46-4l0 0z m-17 84c55-42 117 20 75 75-54 41-116-21-75-75l0 0z m-162-217l50-25c12-8 21-25 17-42-13-33-38-66-63-91-12-13-29-17-42-9l-41 25c-25-21-50-33-79-46v-45c0-17-13-30-30-34-33-4-70-4-108 0-17 4-29 17-29 34v45c-29 9-54 25-79 46l-42-25c-12-8-33-4-42 9-25 29-45 58-62 91-4 17 0 34 17 42l45 25c-4 29-4 58 0 92l-50 20c-12 9-20 25-12 42 12 33 37 67 62 92 13 12 30 16 42 8l42-25c25 21 50 33 79 46v50c0 17 12 29 29 33 33 4 67 4 104 0 17-4 29-16 29-33v-46c30-8 55-25 80-46l41 25c13 9 34 4 42-8 25-29 46-58 58-92 4-16 0-33-12-41l-50-25c8-34 8-63 4-92z m-171-33c83 108-42 233-150 150-83-109 42-234 150-150z m350-259l-12-21c-5-8-13-12-21-8-17 4-34 17-46 25-8 4-8 17-4 21l12 21c-8 12-16 25-21 37h-25c-8 0-16 4-16 17-4 17-4 33 0 54 0 8 8 17 16 17h25c5 12 13 29 21 37l-12 21c-4 8-4 17 4 21 12 12 29 21 46 25 8 4 16 0 21-8l12-21c17 4 29 4 46 0l12 21c5 8 13 12 21 8 17-4 34-17 46-25 8-4 8-17 4-21l-12-21c8-12 16-25 21-37h25c8 0 16-4 16-17 4-17 4-33 0-54 0-8-8-17-16-17h-21c-4-12-13-29-21-37l12-21c5-8 5-17-4-21-12-12-29-21-46-25-8-4-16 0-20 8l-13 21c-21 0-33 0-50 0z m-17 84c55-42 117 20 75 75-54 41-116-21-75-75l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="commenting-o" unicode="" d="M300 433c-33 0-58-25-58-54 0-29 25-54 58-54s58 25 58 54c0 29-25 54-58 54z m200 0c-33 0-58-25-58-54 0-29 25-54 58-54s58 25 58 54c0 29-25 54-58 54z m200 0c-33 0-58-25-58-54 0-29 25-54 58-54 33 0 58 25 58 54 0 29-25 54-58 54z m-200 309c-250 0-458-163-458-367 0-83 37-158 96-221-25-71-84-129-84-129-12-8-12-29-8-42s21-25 37-25c109 0 196 46 250 80 50-17 109-25 167-25 254 0 458 162 458 366s-204 363-458 363z m0-646c-46 0-96 8-142 21l-41 12-34-25c-25-16-62-37-104-50 17 21 29 46 38 71l21 50-38 38c-33 33-71 91-71 162 0 154 167 279 371 279s371-125 371-279-167-279-371-279z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="copy" unicode="" d="M875 692l-92 91c-12 17-33 25-54 25h-300c-46 0-83-37-83-87v-88h-138c-45 5-83-33-83-83v-575c0-46 38-83 83-83h388c46 0 83 37 83 87v88h138c46 0 83 37 83 87v475c0 25-8 46-25 63z m-287-713h-371c-4 0-9 4-9 13v550c0 4 5 12 9 12h129v-400c0-46 37-87 83-87h167v-75c0-9-4-13-8-13z m220 171h-366c-4 0-9 4-9 13v550c0 4 5 12 9 12h183v-158c0-25 17-42 42-42h154v-362c-4-9-8-13-13-13l0 0z m9 458h-109v113h17c4 0 4 0 8-4l84-88c0 0 4-4 4-8v-13l-4 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="database" unicode="" d="M275 429c63-12 133-21 204-21s142 9 204 21c63 13 113 34 150 59v-80c0-20-16-41-45-58s-75-33-130-42-112-16-179-16-125 4-179 16-100 25-129 42-46 38-46 58v80c38-25 88-46 150-59z m0-358c63-13 133-21 204-21s142 8 204 21 113 33 150 58v-79c0-21-16-42-45-58-34-17-75-34-130-42-54-13-112-17-179-17s-125 4-179 17c-54 12-100 25-129 42-29 21-46 37-46 62v79c38-29 88-45 150-62z m0 179c63-12 133-21 204-21s142 9 204 21c63 13 113 33 150 58v-79c0-21-16-41-45-58-34-17-75-33-130-42-54-12-112-16-179-16s-125 4-179 16c-54 13-100 25-129 42-29 21-46 37-46 58v79c38-25 88-45 150-58z m29 500c54 13 113 17 179 17s125-4 180-17 100-25 129-42 46-37 46-58v-58c0-21-17-42-46-59-34-16-75-33-129-41s-113-17-180-17-125 0-179 8-100 25-129 42c-33 21-50 42-50 63v58c0 21 17 42 46 58s79 38 133 46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dot-circle-o" unicode="" d="M500-108c-254 0-458 204-458 458s204 458 458 458 458-204 458-458-204-458-458-458z m0 108c192 0 350 154 350 350s-158 350-350 350-350-158-350-350 158-350 350-350z m125 425c13-21 21-46 21-75s-8-50-21-75c-12-21-29-42-54-54-21-13-46-21-75-21s-50 8-75 21c-21 12-42 29-54 54-13 21-21 46-21 75s8 50 21 75c12 21 29 42 54 54 21 13 46 21 75 21s50-8 75-21c25-16 42-33 54-54z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="envelope" unicode="" d="M942 467c8 4 16 0 16-9v-366c0-46-37-88-87-88h-742c-46 0-87 38-87 88v362c0 9 8 13 16 9 42-30 92-71 275-205 38-29 100-87 167-83 63 0 129 58 167 83 179 138 233 175 275 209z m-442-234c42 0 100 55 133 75 238 171 255 188 313 230 8 8 12 20 12 33v33c0 46-37 88-87 88h-742c-50 0-87-38-87-88v-33c0-13 4-25 16-33 55-42 71-59 313-230 29-20 87-75 129-75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="external-link-square" unicode="" d="M125 808h750c46 0 83-37 83-83v-750c0-46-37-83-83-83h-750c-46 0-83 37-83 83v750c0 46 37 83 83 83z m458-287l-395-396c-25-25-25-62 0-87s62-25 87 0l396 395 79-79c21-21 58-4 63 25l4 250c0 21-17 34-34 34l-250-5c-33 0-45-37-25-62l75-75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="eyedropper" unicode="" d="M767 771c41 0 75-13 104-42 29-29 42-62 42-104s-9-79-38-108l-104-104 50-50c4-5 4-9 4-13 0-4 0-8-4-12l-96-96c-4-4-8-4-12-4s-9 0-13 4l-50 50-283-275c-13-13-25-17-42-17h-92l-112-58c-4 0-8 0-8 0l-21 20c-9 5-9 9-4 13l58 113v95c0 17 4 30 17 42l279 279-50 50c-4 4-4 4-4 9 0 4 0 8 4 12l96 96c4 4 8 4 12 4s8 0 13-4l50-50 104 104c25 33 58 46 100 46z m-442-679l267 266-92 88-262-263c-5-4-5-8-5-12v-75c0-4 5-8 9-8h79c0 0 0 0 4 4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="folder" unicode="" d="M958 454v-396c0-33-12-62-37-87s-54-38-88-38h-666c-34 0-63 13-88 38s-37 54-37 87v542c0 33 12 63 37 88s54 37 88 37h175c33 0 62-12 87-37s38-55 38-88v-17h366c34 0 63-12 88-37s37-54 37-92z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="font" unicode="" d="M454 517l-87-229c12 0 33 0 71 0 33 0 62 0 83 0 8 0 17 0 29 0-33 83-62 162-96 229z m-371-567l0 42c9 4 17 4 30 8s20 4 29 4c8 0 16 4 25 9 8 4 16 8 21 16 8 9 12 17 16 25l121 317 142 371h66c5-9 9-13 9-17l104-246c12-25 29-71 54-133s46-108 58-142c5-12 17-37 30-75s25-66 37-87c8-17 13-25 17-29 8-5 21-9 46-17 25-4 37-9 41-13 0-12 4-21 4-29 0 0 0-4 0-8 0-4 0-4 0-9-20 0-54 0-95 5-42 4-75 4-96 4-25 0-63 0-109-4s-79-5-91-5c0 17 0 30 0 42l66 13c0 0 5 0 9 0 4 0 8 0 8 0 0 0 4 0 8 4 5 0 5 4 9 4s4 4 4 4c4 0 4 4 4 4 0 0 0 5 0 9 0 4-4 21-17 50-12 29-20 58-37 91-13 34-21 50-21 50l-229 0c-8-20-21-54-38-100s-25-75-25-83c0-8 5-12 9-21 0 13 8 9 16 4 9-4 17-4 25-8 9 0 17-4 30-4s20 0 20 0c0-9 0-17 0-29 0-5 0-9 0-13-20 0-50 0-87 4-42 4-71 4-88 4-4 0-8 0-12 0s-8 0-13 0c-29-8-62-12-100-12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="adjust" unicode="" d="M42 350c0-254 204-458 458-458s458 204 458 458-204 458-458 458-458-204-458-458z m458-342v684c188 0 342-154 342-342 0-187-154-342-342-342z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lightbox" unicode="" d="M871 808h-571c-50 0-87-37-87-87v-88h-84c-50 5-87-33-87-83v-575c0-46 37-83 87-83h575c46 0 88 37 88 87v88h87c46 0 88 37 88 87v567c-9 50-46 87-96 87z m-171-829h-571v371h575v-371z m171 171h-88v400c0 46-37 88-87 88h-396v83h575v-571z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="heart-o" unicode="" d="M863 667c-105 87-263 75-363-25-100 100-258 112-362 25-134-113-117-292-21-388l312-312c17-17 42-30 67-30 25 0 50 9 67 30l312 312c104 96 121 279-12 388z m-42-329l-313-313c-4-4-8-4-12 0l-313 313c-66 66-79 187 13 266 71 59 175 50 246-16l58-67 63 62c66 67 175 75 245 17 92-71 75-196 13-262l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="history" unicode="" d="M200 633c25 30 54 50 88 67 191 113 441 46 550-146s45-441-146-550-442-50-554 146c-17 29-9 63 20 79 30 17 63 9 80-21 79-137 254-183 395-104s184 254 105 396-255 179-396 100c-21-12-42-29-59-46l67-66c0 0 4-5 4-5 0-4-4-8-8-8l-233-17c0 0 0 0 0 0-5 0-9 5-9 9l13 229c0 0 0 4 4 4 4 4 8 4 12 0l67-67z m383-420c-12-17-37-21-58-9l-108 88v225c0 21 16 41 41 41h25c21 0 42-16 42-41v-175l67-54c16-13 21-38 8-59l-17-16z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="image-bold" unicode="" d="M871 725h-742c-50 0-87-37-87-87v-559c0-46 37-87 87-87h746c46 0 88 37 88 87v559c-5 50-42 87-92 87z m-733-642c-5 0-13 5-13 13v533c0 4 4 13 13 13h725c4 0 12-4 12-13v-537c0-4-4-13-12-13h-725z m129 484c-38 0-71-34-71-71s33-71 71-71 71 33 71 71-30 71-71 71z m-71-417h608v196l-166 167c-9 8-25 8-34 0l-229-230-75 75c-8 9-25 9-33 0l-75-75v-133z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info-circle" unicode="" d="M500-108c254 0 458 204 458 458s-204 458-458 458-458-204-458-458c0-254 204-458 458-458z m0 762c25 0 50-21 50-50s-25-46-50-46c-25 0-50 21-50 50 0 13 4 25 13 34s25 12 37 12z m-87-229c-13 4-21 17-21 29 0 9 4 17 8 21 4 4 13 8 21 8h121c4 0 8-4 8-8v-296c0-46 21-62 38-66 12-5 20-17 20-30 0-16-12-29-29-29h-154c-8 4-17 4-25 13-4 4-8 12-8 21 0 12 8 25 21 29 16 4 37 21 37 66v180c0 41-21 58-37 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="link" unicode="" d="M479 325c38-37 109-37 154 8l117 121c46 46 50 113 8 154s-104 38-150-8l-50-50c-20-21-54-21-75 0-20 21-20 54 0 75l50 50c84 88 221 92 305 8s79-220-9-308l-121-117c-87-87-225-91-308-8-21 21-21 54 0 75 21 21 58 21 79 0z m46 46c-37 37-108 37-154-8l-121-121c-46-46-50-113-8-154 37-38 108-38 154 8l54 54c21 21 54 21 75 0 21-21 21-54 0-75l-54-54c-83-84-221-92-304-8s-79 220 8 308l121 121c87 87 225 91 308 8 21-21 21-54 0-75-25-25-58-25-79-4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="long-arrow-left" unicode="" d="M292 179c0-29-38-46-63-25l-179 175c-12 13-12 38 0 50l179 175c25 17 63 0 63-29v-112h604c33 0 62-30 62-63 0-33-29-62-62-62h-604v-109z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="long-arrow-right" unicode="" d="M708 179c0-29 38-46 63-25l179 175c13 13 13 38 0 50l-179 175c-25 17-63 0-63-29v-112h-604c-33 0-62-30-62-63 0-33 29-62 62-62h604v-109z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="caret-down" unicode="" d="M571 457q0-14-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25 25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
|
||||
|
||||
<glyph glyph-name="paint-brush" unicode="" d="M883 608c-91-175-154-270-187-304-17-16-42-41-79-50-13-4-9 25-50 63-34 33-67 25-67 46 0 8 8 50 42 91 33 38 116 121 254 246 8 8 71 75 108 42 38-34-16-121-21-134z m-370-591c-46-46-105-67-180-67-41 0-79 8-112 25s-58 38-79 67-34 58-46 91c-8 34-13 71-13 113 0 0 46-46 88-54 150-21 179 187 337 116 34-16 80-62 75-158-4-54-50-112-70-133z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pencil" unicode="" d="M892 525l-75-79c-9-8-21-8-29 0l-180 187c-8 9-8 21 0 30l75 79c30 33 80 33 113 0l96-100c33-34 33-84 0-117z m-346 71l-429-446-34-208c-4-30 17-55 46-46l196 37 429 446c9 9 9 21 0 29l-179 188c-8 8-21 8-29 0z m-263-408c-8 8-8 25 0 33l250 262c9 9 25 9 34 0 8-8 8-25 0-33l-250-262c-9-9-21-9-34 0l0 0z m-58-146h79v-63l-104-21-50 59 17 108h58v-83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-circle" unicode="" d="M104 579c42 71 96 125 167 167s146 62 229 62 158-20 229-62 125-96 167-167c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229z m350-183h-175c-25 0-46-21-46-46s21-46 46-46h175v-175c0-25 21-46 46-46 25 0 46 21 46 46v175h175c25 0 46 21 46 46s-21 46-46 46h-175v175c0 25-21 46-46 46-25 0-46-21-46-46v-175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="zoom-in-bold" unicode="" d="M388 467v71c0 29 25 54 54 54 29 0 54-25 54-54v-71h71c29 0 54-25 54-54s-25-55-54-55h-71v-70c0-30-25-55-54-55-29 0-54 25-54 55v70h-71c-29 0-54 25-54 55s25 54 54 54h71z m266-350c-62-46-137-71-216-71-205 0-367 162-367 367s162 366 367 366 366-162 366-366c0-84-25-159-71-217l163-163c21-20 21-54 0-75-21-21-54-21-75 0l-167 159z m-216 37c141 0 258 117 258 259s-117 258-258 258-259-117-259-258 117-259 259-259z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sort-amount-desc" unicode="" d="M263 129l0 0h83c25 0 37-29 21-46l-138-137c-12-13-29-13-37 0l-138 137c-16 17-4 46 21 46h83 0v588c0 33 25 62 55 62s54-29 54-62v-588z m225 284c-34 0-63 25-63 54s29 54 63 54h287c33 0 63-25 63-54s-30-54-63-54h-287z m0-209c-34 0-63 25-63 54s29 55 63 55h170c34 0 63-25 63-55s-29-54-63-54h-170z m0-208c-34 0-63 25-63 54s29 54 63 54h58c33 0 62-25 62-54s-29-54-62-54h-58z m0 625c-34 0-63 25-63 54s29 54 63 54h400c33 0 62-25 62-54s-29-54-62-54h-400z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="sign-out" unicode="" d="M946 317l-304-300c-29-25-75-9-75 29v175h-250c-25 0-42 21-42 42v175c0 25 21 41 42 41h246v175c0 38 45 59 75 29l304-304c21-16 21-41 4-62z m-567 287h-166c-42 0-80-37-80-79v-350c0-42 38-79 80-79h166c25 0 46-21 46-46 0-25-21-46-46-46h-166c-96 0-171 75-171 171v350c0 96 75 171 171 171h166c25 0 46-21 46-46s-21-46-46-46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="spinner" unicode="" d="M588 721c0-46-38-88-88-88s-87 42-87 88 41 87 87 87 88-37 88-87z m-88-658c-46 0-87-38-87-88s41-83 87-83 88 37 88 87-42 84-88 84z m371 375c-46 0-88-38-88-88s38-87 88-87 87 41 87 87-37 88-87 88z m-658-88c0 46-38 88-88 88s-83-42-83-88 37-87 87-87 84 41 84 87z m25-179c-46 0-88-38-88-88s38-87 88-87 87 37 87 87c-4 50-42 88-87 88z m525 0c-46 0-88-38-88-88s38-87 88-87 87 37 87 87c0 50-37 88-87 88z m-525 529c-46 0-88-37-88-87s38-88 88-88 87 38 87 88-42 87-87 87z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="square" unicode="" d="M958 638v-575c0-46-16-88-50-121s-75-50-120-50h-575c-46 0-88 16-121 50s-50 75-50 121v575c0 45 16 87 50 120s75 50 121 50h575c45 0 87-16 120-50s50-75 50-120z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="star-o" unicode="" d="M913 500l-250 38-113 237c-21 42-79 42-100 0l-112-237-250-38c-46-8-63-62-30-96l180-183-42-259c-8-45 42-83 79-58l225 121 225-121c42-21 88 13 79 58l-41 259 179 183c33 34 12 92-29 96l0 0z m-242-250l42-246-213 117-212-117 41 246-171 175 238 38 104 220 108-225 238-37-175-171z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="star" unicode="" d="M450 775l-112-237-250-38c-42-4-63-67-30-100l180-183-42-263c-8-46 42-79 79-58l225 117 225-117c42-21 88 12 79 58l-41 263 179 183c33 33 12 92-29 100l-250 38-113 237c-21 42-79 42-100 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-justify" unicode="" d="M104-17c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z m0 209c-33 0-62 25-62 54s29 54 62 54h792c33 0 62-25 62-54s-29-54-62-54h-792z m0 208c-33 0-62 25-62 54s29 54 62 54h792c33 0 62-25 62-54s-29-54-62-54h-792z m0 208c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-center" unicode="" d="M188 400c-34 0-63 25-63 54s29 54 63 54h620c38 0 63-25 63-54s-29-54-63-54h-620z m83-208c-33 0-63 25-63 54s30 54 63 54h458c34 0 63-25 63-54s-29-54-63-54h-458z m-167-209c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z m254 625c-37 0-66 25-66 55s29 54 66 54h284c37 0 66-25 66-54s-29-55-66-55h-284z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tags" unicode="" d="M238 517c12 12 20 29 20 46 0 16-4 33-16 41s-25 17-42 17-33-4-42-17-16-25-16-41c0-17 4-34 16-42 13-13 25-17 42-17s29 4 38 13z m537-234c0-16-4-33-17-41l-237-238c-13-12-29-17-46-17-17 0-33 5-42 17l-345 346c-13 13-21 29-30 50s-16 38-16 54v200c0 17 4 29 16 42s25 17 42 17h200c17 0 38-5 58-13 25-4 38-17 50-29l346-346c13-8 21-25 21-42z m183 0c0-16-4-33-16-41l-238-238c-12-12-29-17-46-17-12 0-20 5-29 9-8 4-16 12-25 21l225 225c13 12 17 25 17 41 0 17-4 34-17 46l-346 346c-8 8-25 21-45 29-21 9-38 13-55 13h109c16 0 37-4 58-13 17-8 33-21 46-33l346-346c12-8 16-25 16-42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-left" unicode="" d="M104 400c-33 0-62 25-62 54s29 54 62 54h750c34 0 63-25 63-54s-29-54-63-54h-750z m0-208c-33 0-62 25-62 54s29 54 62 54h625c34 0 63-25 63-54s-29-54-63-54h-625z m0-209c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55h-792z m0 625c-33 0-62 25-62 55s29 54 62 54h542c33 0 62-25 62-54s-29-55-62-55h-542z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="text-align-right" unicode="" d="M896 400h-750c-33 0-63 25-63 54s30 54 63 54h750c33 0 62-25 62-54s-29-54-62-54z m0-208h-625c-33 0-63 25-63 54s30 54 63 54h625c33 0 62-25 62-54s-29-54-62-54z m0-209h-792c-33 0-62 25-62 55s29 54 62 54h792c33 0 62-25 62-54s-29-55-62-55z m0 625h-542c-33 0-62 25-62 55s29 54 62 54h542c33 0 62-25 62-54s-29-55-62-55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="close-circle" unicode="" d="M896 579c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229 96 125 167 167 146 62 229 62 158-20 229-62 125-96 167-167z m-333-229l125 125c16 17 16 46 0 63-17 20-46 20-63 4l-125-125-125 125c-46 41-108-25-67-67l125-125-125-125c-16-17-16-46 0-62 17-21 46-21 67-5l125 125 125-125c42-41 104 21 63 63l-125 129z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="trash-o" unicode="" d="M588 63h41c13 0 21 8 21 20v388c0 12-8 21-21 21h-41c-13 0-21-9-21-21v-388c0-8 12-20 21-20z m287 604h-142l-62 100c-17 25-42 41-71 41h-175c-29 0-54-16-71-41l-58-100h-142c-16 0-29-13-29-29v-30c0-16 13-29 29-29h29v-600c0-46 38-87 84-87h500c46 0 83 37 83 87v600h25c17 0 29 13 29 29v30c-4 16-16 29-29 29z m-454 50c0 4 4 4 8 4h163c4 0 8 0 8-4l29-50h-237l29 50z m342-738h-500v600h500v-600z m-367 84h42c12 0 20 8 20 20v388c0 12-8 21-20 21h-42c-13 0-21-9-21-21v-388c0-8 8-20 21-20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="font-awesome" unicode="" d="M777 788h-679c-54 0-98-45-98-98v-679c0-54 44-99 98-99h679c54 0 98 45 98 99v679c0 53-44 98-98 98z m-89-556c0-8-7-11-15-15-33-14-67-27-105-27-53 0-77 33-140 33-46 0-93-17-132-34-2-1-5-1-7-2v-89c0-3 0-7-1-9v-3c-5-16-20-28-37-28-22 0-40 18-40 40v427c-15 12-26 30-26 51 0 37 30 66 66 66 36 0 65-29 65-66 0-21-9-39-25-51v-36c3 1 7 2 10 5 36 15 80 28 120 28 45 0 80-12 119-27 8-4 17-5 26-5 44 0 93 32 105 32 9 0 18-7 18-16v-274z" horiz-adv-x="875" />
|
||||
|
||||
<glyph glyph-name="user-circle-o" unicode="" d="M313 58c54-33 120-54 187-54 71 0 133 21 188 54-21 25-46 46-71 63-34 21-75 29-117 29-75 0-146-33-187-92z m-84 71c67 79 163 129 271 129 58 0 117-16 171-45 37-21 71-50 100-84 50 59 79 138 79 221 0 192-154 350-350 350s-350-158-350-350c0-83 33-162 79-221z m271-237c-254 0-458 204-458 458s204 458 458 458 458-204 458-458-204-458-458-458z m0 383c-100 0-179 79-179 179s79 179 179 179 179-79 179-179-79-179-179-179z m0 108c38 0 71 34 71 71s-33 71-71 71-71-33-71-71 34-71 71-71z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="video-camera" unicode="" d="M575 642h-458c-42 0-75-34-75-71v-438c0-41 33-70 75-70h458c42 0 75 33 75 70v438c4 37-33 71-75 71z m304-59l-175-116v-238l175-116c34-21 79 0 79 37v396c0 37-45 62-79 37z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="heart" unicode="" d="M871 671c-100 83-242 67-333-25l-38-38-33 38c-92 92-238 104-334 25-112-96-116-263-16-367l346-354c20-21 58-21 79 0l346 354c100 100 95 271-17 367z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wrench" unicode="" d="M629 329l-375-375c-41-42-108-42-146 0s-41 109 0 146l375 375c-25 79-8 171 55 233 66 67 162 84 241 55 4 0 13-5 9-9-5-4-5-4-5-4-29-29-75-75-133-133 17-59 25-92 29-92s34-12 92-29c58 62 100 104 129 133 4 4 4 4 4 4s4-4 9-8c33-83 12-179-50-246-63-58-155-75-234-50z m-475-329c17-17 42-17 59 0 16 17 16 42 0 58s-42 17-59 0c-16-12-16-41 0-58z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="help" unicode="" d="M104 579c42 71 96 125 167 167s146 62 229 62 158-20 229-62 125-96 167-167c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229z m350-321h84l0 21c4 21 12 42 29 54l25 25c21 21 33 38 41 55s13 33 13 54c0 41-13 71-38 96s-62 33-108 33c-46 0-83-13-108-33s-42-55-42-96h96c0 16 4 29 17 41s25 9 41 9c34 0 50-17 50-54 0-13-4-25-8-34s-21-25-38-41c-20-17-33-34-41-55s-13-45-13-75z m-12-100c0-12 4-25 12-37 9-8 21-13 38-13s29 5 37 13c9 8 13 21 13 37 0 13-4 25-17 38-8 8-21 12-37 12s-30-4-38-12c0-13-8-25-8-38z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="help-o" unicode="" d="M500-113c-254 0-462 209-462 463s208 463 462 463 463-209 463-463-209-463-463-463z m0 92c204 0 371 167 371 371s-167 371-371 371-371-167-371-371 167-371 371-371z m-46 279c0 30 4 55 13 71s21 38 41 54c21 17 34 34 38 42s8 21 8 33c0 38-16 55-50 55-16 0-29-5-37-17s-17-25-17-42h-96c0 42 13 75 42 96s62 33 108 33c46 0 84-12 109-33s37-54 37-96c0-16-4-37-12-54s-21-33-42-54l-25-25c-17-17-25-33-29-54l0-21h-88z m-12-100c0 13 4 25 16 38 9 8 21 12 38 12s29-4 37-12c9-8 17-21 17-38 0-12-4-25-12-37-9-8-21-13-38-13s-29 5-37 13c-17 8-21 21-21 37z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="zoom-out-bold" unicode="" d="M750 167l196-196c17-17 17-50 0-67-17-17-50-21-67 0l-196 196c-66-54-150-83-245-83-217 0-396 179-396 396s179 395 396 395 395-179 395-395c0-92-33-175-83-246z m-454 291h279c25 0 46-20 46-50 0-25-21-45-46-45h-279c-25 0-46 20-46 45 0 30 21 50 46 50z m142-345c166 0 300 133 300 300s-134 300-300 300-300-134-300-300 133-300 300-300z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="plus-square-o" unicode="" d="M867 717h-734v-730h730v730z m4 91c50 0 87-37 87-87v-746c0-46-37-88-87-88h-742c-50 5-87 42-87 92v742c0 50 37 87 87 87h742z m-421-412v175c0 25 21 46 46 46 29 0 46-17 46-46v-175h175c25 0 46-21 46-46s-21-46-46-46h-175v-175c0-25-21-46-46-46-25 0-46 21-46 46v175h-175c-25 0-46 21-46 46s21 46 46 46h175z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-square-o" unicode="" d="M867 717h-734v-730h730v730z m4 91c50 0 87-37 87-87v-746c0-46-37-88-87-88h-742c-50 5-87 42-87 92v742c0 50 37 87 87 87h742z m-592-504c-25 0-46 21-46 46s21 46 46 46h446c25 0 46-21 46-46s-21-46-46-46h-446z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-circle" unicode="" d="M104 579c42 71 96 125 167 167s146 62 229 62 158-20 229-62 125-96 167-167c42-71 62-146 62-229s-20-158-62-229c-42-71-96-125-167-167-71-42-146-62-229-62s-158 20-229 62c-71 42-125 96-167 167-41 71-62 146-62 229s21 158 62 229z m171-275h446c25 0 46 21 46 46s-21 46-46 46h-446c-25 0-46-21-46-46s21-46 46-46z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="minus-circle-o" unicode="" d="M500-113c-254 0-462 209-462 463s208 463 462 463 463-209 463-463-209-463-463-463z m0 92c204 0 371 167 371 371s-167 371-371 371-371-167-371-371 167-371 371-371z m-221 325c-25 0-46 21-46 46s21 46 46 46h446c25 0 46-21 46-46s-21-46-46-46h-446z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="code-bold" unicode="" d="M842 313l-125 125c-21 20-21 54 0 75 21 20 54 20 75 0l166-163c21-21 21-54 0-75l-166-171c-21-21-54-21-75 0s-21 54 0 75l125 134z m-388-359c-8-29-37-46-66-37-30 8-46 37-38 66l196 725c8 30 37 46 67 38 29-8 45-38 37-67l-196-725z m-166 225c20-21 20-54 0-75s-55-21-75 0l-167 171c-21 21-21 54 0 75l167 163c20 20 54 20 75 0 20-21 20-55 0-75l-125-125 125-134z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cloud-upload" unicode="" d="M779 425c100-8 179-92 179-192 0-108-87-195-191-195h-496c-125 0-229 104-229 233 0 121 87 221 204 233 50 96 146 159 254 159 138 0 254-100 279-238z m-366-96v-183c0-13 12-25 25-25h125c12 0 25 12 25 25v183h75c8 0 12 4 16 9 4 4 9 8 9 16 0 9-5 13-9 17l-162 162c-4 5-9 9-17 9s-12-4-17-9l-162-162c-4-4-8-8-8-17 0-8 4-12 8-16 4-5 8-9 17-9h75z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="search-bold" unicode="" d="M654 117c-62-46-137-71-216-71-205 0-367 162-367 367s162 366 367 366 366-162 366-366c0-84-25-159-71-217l163-163c21-20 21-54 0-75-21-21-54-21-75 0l-167 159z m-216 37c141 0 258 117 258 259s-117 258-258 258-259-117-259-258 117-259 259-259z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="map-pin" unicode="" d="M104 413c0 218 177 395 396 395s396-177 396-395c0-129-107-273-321-431-37-62-62-93-75-93s-37 31-75 93c-214 158-321 302-321 431z m396-125c69 0 125 55 125 125s-56 125-125 125-125-56-125-125 56-125 125-125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="meetup" unicode="" d="M588 805c163 47 324-75 321-243 94-39 120-164 50-238 56-107 26-242-74-312-39-27-83-42-129-44-38-107-169-147-260-81-100-66-233-40-302 60-21 31-34 66-37 103-152 37-209 229-102 344-57 115 10 256 135 281 68 158 263 225 398 130z m-365-155l-4-11-11-1c-110-16-168-141-110-237l8-13-11-12c-102-94-51-267 85-289l16-3 0-16c2-35 12-69 32-98 56-82 166-103 248-48 2 2 3 3 5 5l3 2 0 0 14 11 12-11c73-64 188-29 212 66l4 15 16 0c43-2 84 10 120 35 87 62 111 182 55 273l-9 15 13 11c65 55 42 161-38 186l-16 5 1 15c12 151-133 262-278 214l-10-3-8 7c-116 89-294 27-349-118z m330-29c38 0 53-32 59-31 13 1 53 20 99 5 59-20 87-88 78-140s-26-92-69-171c-15-27-10-46 27-29 28 14 65-10 65-40 1-44-72-81-110-90-45-10-114-1-134 55-12 33-7 68 0 88 7 29 60 131 48 148-13 27-48-73-79-158-11-30-22-74-74-70-14 1-29 12-38 24-31 45 29 156 38 194 6 28-21 32-34 0-13-32-17-66-55-168-6-16-20-41-35-59-26-31-66-36-91-28-53 17-73 75-56 125 7 22 59 190 80 235 18 39 50 125 145 95 17-6 48-21 55-24 16-7 39 41 81 39z m-3-42c-4 1-9-2-19-10-2-2-15-13-20-16-17-13-35-18-56-8-16 8-39 18-50 22-36 11-56 0-76-35-3-6-6-12-10-19-2-5-8-18-9-20-6-14-18-48-34-94-2-7-2-7-4-15-8-24-17-49-25-76-5-16-9-30-14-45-10-33 2-64 29-73 14-4 35 1 46 15 11 13 23 34 28 47 13 36 23 64 31 91 4 13 14 48 16 54 3 9 5 16 8 24 12 29 36 50 66 49 38-3 56-38 47-74-2-8-5-18-10-32-2-4-11-29-14-36-5-13-9-24-12-35-10-32-11-53-8-58 3-4 8-7 7-7 13 0 17 3 25 23 1 4 8 22 7 20 2 6 5 13 9 26l4 9c18 51 30 79 41 102 7 17 15 29 23 37 23 23 59 22 77-8 17-27 10-48-17-114-2-5-2-5-4-10-24-58-22-50-24-59-6-19-7-41 0-60 9-26 47-38 85-29 37 8 79 38 78 49 0 0-5 4-5 4-35-17-66-19-86 12-15 23-10 47 5 74 40 74 55 111 63 159 7 36-16 81-50 92-16 5-33 5-53 0-3-1-14-4-13-4-7-1-12-2-17-3-14-1-23 3-32 11-3 2-4 4-7 7-5 5-6 6-8 7-5 5-9 6-18 6z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="slideshow" unicode="" d="M128 600h745c45 0 82-35 85-80l1-6v-557c0-46-35-83-80-86l-6-1h-745c-46 0-83 35-86 80l-1 6v558c0 46 35 83 80 86l7 0h745-745z m734-86h-724c-5 0-9-3-10-8l0-3v-536c0-5 3-9 8-10l2 0h724c5 0 9 3 10 8l1 2v536c0 6-5 11-11 11z m-227-124l3-2 166-166v-197h-608v135l75 75c8 8 20 9 29 3l3-3 75-75 227 228c8 8 21 9 30 2l0 0z m-367 53c39 0 71-33 71-72s-32-72-71-72-72 32-72 72 32 72 72 72z m565 274c23 0 42-19 42-42v-42h-750v42c0 23 19 42 42 42h666z m-125 116c23 0 42-18 42-41v-42h-500v42c0 23 19 41 42 41h416z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="t-letter-bold" unicode="" d="M925 808c18 0 33-14 33-33v-196c0-18-14-33-33-33h-65c-18 0-33 15-33 33v66h-245v-622h81c18 0 33-15 33-33v-66c0-18-14-33-33-33h-327c-18 0-33 15-33 33v66c0 18 15 33 33 33h82v622h-245v-66c0-18-15-33-33-33h-65c-18 0-33 15-33 33v196c0 18 14 33 33 33h850z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="preferences" unicode="" d="M246 333c67-29 142-33 208-4l13 4h25c4 0 12 0 16 0l-4-12 0 0c-8-25 0-50 21-67l4-4 13-8 0-4 0 0 0-5-13-8c-25-12-33-42-25-67 13-37 34-75 59-104 16-21 45-25 66-12l4 4 13 8 4-4 0 0 4-4v-13c0-4 0-12 4-16-8-9-20-13-33-13l-8 0h-525c-38 0-67 29-71 67l0 4v63c0 108 87 195 192 200l8 0h25z m471 125c33 9 66 9 100 0 4 0 8-4 8-8l0-4v-46c17-4 33-12 46-25l8-8 38 21c4 4 8 0 12-5 21-25 42-54 50-87 0-4 0-8-4-13l-4 0-38-20c5-17 5-38 0-55l0-12 38-21c4-4 8-8 4-12-8-34-25-63-50-88-4-4-8-4-12-4l-5 0-37 21c-13-13-29-21-46-29l-8-5v-45c0-5-4-9-9-13-33-8-66-8-100 0-4 0-8 4-8 8l0 5v45c-17 5-33 13-46 25l-8 9-38-21c-4-4-8 0-12 4-21 25-42 54-50 88 0 4 0 8 4 12l4 0 38 21c-4 17-4 37 0 54l0 13-38 20c-4 5-8 9-4 13 8 33 25 62 50 87 4 5 8 5 13 5l4 0 37-21c13 12 29 21 46 29l8 4v50c0 4 0 8 9 8z m75-154c-29 13-59 4-79-16-21-21-25-55-17-80 12-29 37-45 67-45 41 0 70 33 70 70 5 34-12 63-41 71z m-434 463c105 0 192-88 192-192s-87-192-192-192-191 84-191 192 83 192 191 192z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="table-of-contents" unicode="" d="M854 850c34 0 63-29 63-62v-876c0-33-29-62-63-62h-708c-33 0-63 29-63 62v876c0 33 30 62 63 62h708z m21-208h-750v-730c0-8 8-16 17-20l4 0h708c9 0 17 8 21 16l0 4v730z m-604-584c12 0 21-8 21-20v-42c0-13-9-21-21-21h-42c-12 0-21 8-21 21v42c0 12 9 20 21 20h42z m500-20c12 0 21-9 21-21s-9-21-21-21h-417c-12 0-21 8-21 21s9 21 21 21h417z m-500 187c8 0 17-8 21-17l0-4v-41c0-9-9-17-17-21l-4 0h-42c-8 0-16 8-21 16l0 5v41c0 9 9 17 17 21l4 0h42z m500-21c12 0 21-8 21-21 0-8-9-16-17-20l-4 0h-417c-12 0-21 8-21 20 0 9 9 17 17 21l4 0h417z m-500 188c12 0 21-9 21-21v-42c0-12-9-21-21-21h-42c-12 0-21 9-21 21v42c0 12 9 21 21 21h42z m500-21c12 0 21-8 21-21s-9-21-21-21h-417c-12 0-21 9-21 21s9 21 21 21h417z m-500 187c8 0 17-8 21-16l0-4v-42c0-8-9-17-17-21l-4 0h-42c-8 0-16 8-21 17l0 4v42c0 8 9 16 17 20l4 0h42z m500-20c12 0 21-9 21-21 0-9-9-17-17-21l-4 0h-417c-12 0-21 8-21 21 0 8 9 16 17 21l4 0h417z m83 270h-708c-8 0-17-8-21-16l0-4v-105h750v105c0 8-8 16-21 20l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="tv" unicode="" d="M875 725c46 0 79-33 83-79l0-4v-417c0-46-33-79-79-83l-4 0h-333v-75h250c25 0 41-17 41-42 0-21-16-38-37-42l-4 0h-584c-25 0-41 17-41 42 0 21 16 38 37 42l4 0h250v75h-333c-46 0-79 33-83 79l0 4v417c0 46 33 79 79 83l4 0h750z m0-83h-750v-417h750v417z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upload" unicode="" d="M883 308h-229v50h100c67 0 104 84 54 130l-254 254c-29 29-79 29-108 0l-254-250c-46-46-13-129 54-129h100v-55h-229c-42 0-75-33-75-75v-204c0-42 33-75 75-75h762c42 0 75 33 75 75v204c4 42-29 75-71 75z m-637 130l254 254 254-254h-179v-255h-154v255h-175z m637-409h-766v204h229v-50c0-41 33-75 75-75h154c42 0 75 34 75 75v50h229v-204z m-66 100c0-21-17-37-38-37-21 0-37 16-37 37 0 21 16 38 37 38 21 0 38-17 38-38z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-comments" unicode="" d="M804 258c21 42 29 88 29 134 0 183-158 333-354 333-196 0-354-150-354-333 0-184 158-334 354-334 50 0 100 13 146 30l50-9 175-41c0 0 4 0 4 4l-50 216z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-nested-gallery" unicode="" d="M792 642c50-38 83-100 83-167v-292c0-116-92-208-208-208h-292c-67 0-129 33-167 83h417c92 0 167 75 167 167v417z m-209 83c67 0 121-50 125-117l0-8v-333c0-67-50-121-116-125l-9 0h-333c-67 0-121 50-125 116l0 9v333c0 67 50 121 117 125l8 0h333z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-post" unicode="" d="M838 225l0 0c12-4 20-12 20-21l0-4-66-279c-4-13-13-17-25-17-9 4-17 13-17 21l0 4 67 279c0 13 8 17 21 17z m-96 542c54 0 91-46 91-100v-338c0-12-8-21-20-21s-21 9-21 21v338c0 33-21 58-50 58h-650c-29 0-50-25-50-58v-634c0-33 21-58 50-58h387c13 0 21-8 21-21s-8-21-21-21h-387c-54 0-92 46-92 100v634c0 54 38 100 92 100h650z m-75-629c8 8 21 8 29 0 8-9 8-17 4-25l-4-5-63-66 63-67c8-8 8-21 0-29-4-4-8-4-13-4-4 0-8 0-12 4l-4 0-79 83c-9 9-9 17-5 25l5 4 79 80z m221 0c8 8 16 8 25 4l4-4 79-84c8-8 8-16 4-25l-4-4-79-83c-4-5-9-5-13-5-4 0-8 0-12 5-9 8-9 16-4 25l4 4 62 67-62 66c-9 13-9 25-4 34z m-384 441c79 0 142-62 142-141v-180c0-79-63-141-142-141h-175c-79 0-141 62-141 141v180c0 79 62 141 141 141h175z m0-41h-175c-54 0-100-46-100-100v-180c0-54 46-100 100-100h179c55 0 100 46 100 100v180c-4 54-50 100-104 100z m-87-67c66 0 121-54 121-121s-55-121-121-121c-67 0-121 54-121 121s54 121 121 121z m0-42c-42 0-79-33-79-79s37-79 79-79c41 0 79 33 79 79s-38 79-79 79z m129 63c17 0 29-13 29-29 0-17-12-30-29-30-17 0-29 13-29 30 0 16 12 29 29 29z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-video" unicode="" d="M625 683c46 0 79-33 83-79l0-4v-500c0-46-33-79-79-83l-4 0h-500c-46 0-79 33-83 79l0 4v500c0 46 33 79 79 83l4 0h500z m-250-104c-125 0-229-104-229-229 0-125 104-229 229-229 125 0 229 104 229 229 0 125-104 229-229 229z m583 21v-479h-16c-75 0-129 46-146 67l-4 8v329l4 4c17 25 71 71 146 71h16z m-583-125c71 0 125-54 125-125s-54-125-125-125c-71 0-125 54-125 125s54 125 125 125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-gallery" unicode="" d="M817 350c75 0 137-58 141-133l0-9v-179c0-75-58-137-133-142l-8 0h-179c-75 0-138 59-142 134l0 8v179c0 75 58 138 133 142l9 0h179z m0-42h-179c-50 0-96-41-100-91l0-9v-179c0-50 41-96 91-100l9 0h179c50 0 96 42 100 92l0 8v179c0 50-42 96-92 100l-8 0z m-88-66c67 0 121-54 121-121s-54-121-121-121-121 54-121 121 55 121 121 121z m-521 25c25 0 42-17 42-42v-167c0-25-17-41-42-41h-166c-25 0-42 16-42 41v167c0 25 17 42 42 42h166z m242 0c13 0 21-9 21-21 0-8-8-17-17-21l-4 0h-117v-167h117c13 0 21-8 21-20 0-9-8-17-17-21l-4 0h-117c-20 0-37 16-41 37l0 4v167c0 21 16 38 37 42l4 0h117z m279-67c-41 0-79-33-79-79 0-42 33-79 79-79s79 33 79 79c0 42-37 79-79 79z m-521 25h-166v-167h166v167z m650 38c17 0 30-13 30-30 0-16-13-29-30-29s-29 13-29 29c0 17 13 30 29 30z m-650 295c25 0 42-16 42-41v-167c0-25-17-42-42-42h-166c-25 0-42 17-42 42v167c0 25 17 41 42 41h166z m292 0c25 0 42-16 42-41v-134c0-12-9-20-21-20s-21 12-21 20v134h-167v-167h125c13 0 21-8 21-21s-8-21-21-21h-125c-25 0-41 17-41 42v167c0 25 16 41 41 41h167z m-292-41h-166v-167h166v167z m584 41c25 0 41-16 41-41v-109c0-12-8-20-20-20s-21 8-21 20v109h-167v-109c0-12-8-20-21-20s-21 8-21 20v109c0 25 17 41 42 41h167z m-584 292c25 0 42-17 42-42v-166c0-25-17-42-42-42h-166c-25 0-42 17-42 42v166c0 25 17 42 42 42h166z m292 0c21 0 38-17 42-37l0-5v-166c0-21-17-38-38-42l-4 0h-167c-20 0-37 17-41 38l0 4v166c0 21 16 38 37 42l4 0h167z m292 0c21 0 37-17 41-37l0-5v-166c0-21-16-38-37-42l-4 0h-167c-21 0-37 17-42 38l0 4v166c0 21 17 38 38 42l4 0h167z m-584-42h-166v-166h166v166z m292 0h-167v-166h167v166z m292 0h-167v-166h167v166z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="instagram-likes" unicode="" d="M846 538c-71 208-300 166-346 41-42 125-271 167-346-41-62-188 188-417 346-521 158 104 408 333 346 521z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="facebook" unicode="" d="M858 808h-716c-54 0-100-45-100-100v-721c0-50 46-95 100-95h279v312h-129v146h129v113c0 129 75 195 192 195 54 0 112-8 112-8v-125h-62c-63 0-84-37-84-79v-96h142l-21-146h-117v-312h280c54 0 100 45 100 100v716c-5 55-50 100-105 100l0 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="twitter" unicode="" d="M863 538c0-9 0-17 0-25 0-250-188-534-534-534-108 0-204 29-287 84 16 0 29-5 46-5 87 0 166 30 233 80-83 0-150 54-175 129 12 0 25-4 37-4 17 0 34 4 50 8-87 17-150 92-150 183v9c25-13 55-21 84-25-50 33-84 91-84 158 0 33 9 67 25 96 92-113 234-188 388-196-4 12-4 29-4 42 0 104 83 187 187 187 54 0 104-21 138-58 41 8 83 25 121 46-13-42-42-80-84-105 38 5 75 13 109 30-30-38-63-71-100-100z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="pinterest" unicode="" d="M950 354c0-250-204-454-454-454-46 0-92 8-133 21 16 29 45 79 58 121 4 21 29 108 29 108 17-29 58-54 104-54 138 0 238 125 238 283 0 150-121 263-279 263-196 0-300-134-300-275 0-67 37-150 91-175 9-4 13-4 17 4 0 4 8 37 12 50 0 4 0 8-4 12-16 25-33 67-33 105-8 100 71 195 200 195 112 0 192-75 192-183 0-125-63-208-142-208-46 0-79 37-67 83 13 54 38 113 38 150 0 33-17 63-59 63-45 0-83-46-83-109 0-41 13-66 13-66s-46-192-55-225c-8-38-4-96 0-130-170 63-291 230-291 421 0 250 204 454 454 454s454-204 454-454z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="frame-expand" unicode="" d="M863 267c27 0 51-22 53-49l1-5v-226l-1-5c-2-25-23-46-48-48l-5-1h-225l-6 1c-25 2-46 23-48 48l-1 5 1 6c2 25 23 46 48 48l6 1h170v171l1 5c2 27 26 49 54 49z m-725 0c27 0 51-22 53-49l1-5v-171h171c27 0 51-22 53-49l1-6c0-27-22-51-49-53l-5-1h-225c-28 0-52 22-54 49l-1 5v226c0 30 25 54 55 54z m725 500c27 0 51-22 53-49l1-5v-225c0-30-24-55-54-55-28 0-52 22-54 49l-1 6v170h-170c-28 0-52 22-54 49l-1 6c0 27 22 51 49 53l6 1h225z m-500 0l5-1c25-2 46-23 48-48l1-5-1-6c-2-25-23-46-48-48l-5-1h-171v-170l-1-6c-2-27-26-49-53-49s-52 22-54 49l-1 6v225l1 5c2 25 23 46 48 48l6 1h225z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="frame-minimize" unicode="" d="M363 267c29 0 50-21 54-50l0-4v-226c0-29-25-54-54-54-30 0-50 21-55 50l0 4v171h-170c-30 0-50 21-55 50l0 5c0 29 21 50 50 54l5 0h225z m275 0c-30 0-50-21-55-50l0-4v-226c0-29 25-54 55-54 29 0 50 21 54 50l0 4v171h171c29 0 50 21 54 50l0 5c0 29-21 50-50 54l-4 0h-225z m-275 166c29 0 50 21 54 50l0 5v225c0 29-25 54-54 54-30 0-50-21-55-50l0-4v-171h-170c-30 0-50-21-55-50l0-4c0-30 21-50 50-55l5 0h225z m275 0c-30 0-50 21-55 50l0 5v225c0 29 25 54 55 54 29 0 50-21 54-50l0-4v-171h171c29 0 50-21 54-50l0-4c0-30-21-50-50-55l-4 0h-225z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="archive" unicode="" d="M896 788c54 0 100-38 104-88l0-8v-688c0-50-42-92-96-92l-8 0h-792c-54 0-100 38-104 88l0 8v688c0 50 42 92 96 92l8 0h792z m0-42h-792c-33 0-58-21-62-46l0-4v-688c0-25 25-50 58-50l4 0h792c33 0 58 21 62 46l0 4v688c0 25-25 50-58 50l-4 0z m-667-554c13 0 21-9 21-21v-83c0-13-8-21-21-21h-83c-13 0-21 8-21 21v83c0 12 8 21 21 21h83z m209-84c12 0 20-8 20-20 0-13-8-21-20-21h-125c-13 0-21 8-21 21 0 12 8 20 21 20h125z m208 84c12 0 21-9 21-21v-83c0-13-9-21-21-21h-83c-13 0-21 8-21 21v83c0 12 8 21 21 21h83z m208-84c13 0 21-8 21-20 0-13-8-21-21-21h-125c-12 0-21 8-21 21 0 12 9 20 21 20h125z m-646 42h-41v-42h41v42z m417 0h-42v-42h42v42z m-187 42c12 0 20-9 20-21 0-13-8-21-20-21h-125c-13 0-21 8-21 21 0 12 8 21 21 21h125z m416 0c13 0 21-9 21-21 0-13-8-21-21-21h-125c-12 0-21 8-21 21 0 12 9 21 21 21h125z m-625 208c13 0 21-8 21-21v-83c0-13-8-21-21-21h-83c-13 0-21 8-21 21v83c0 13 8 21 21 21h83z m209-83c12 0 20-9 20-21s-8-21-20-21h-125c-13 0-21 8-21 21s8 21 21 21h125z m208 83c12 0 21-8 21-21v-83c0-13-9-21-21-21h-83c-13 0-21 8-21 21v83c0 13 8 21 21 21h83z m208-83c13 0 21-9 21-21s-8-21-21-21h-125c-12 0-21 8-21 21s9 21 21 21h125z m-646 41h-41v-41h41v41z m417 0h-42v-41h42v41z m-187 42c12 0 20-8 20-21s-8-21-20-21h-125c-13 0-21 9-21 21s8 21 21 21h125z m416 0c13 0 21-8 21-21s-8-21-21-21h-125c-12 0-21 9-21 21s9 21 21 21h125z m-625 208c13 0 21-8 21-20v-84c0-12-8-21-21-21h-83c-13 0-21 9-21 21v84c0 12 8 20 21 20h83z m209-83c12 0 20-8 20-21s-8-21-20-21h-125c-13 0-21 9-21 21s8 21 21 21h125z m208 83c12 0 21-8 21-20v-84c0-12-9-21-21-21h-83c-13 0-21 9-21 21v84c0 12 8 20 21 20h83z m208-83c13 0 21-8 21-21s-8-21-21-21h-125c-12 0-21 9-21 21s9 21 21 21h125z m-646 42h-41v-42h41v42z m417 0h-42v-42h42v42z m-187 41c12 0 20-8 20-20 0-13-8-21-20-21h-125c-13 0-21 8-21 21 0 12 8 20 21 20h125z m416 0c13 0 21-8 21-20 0-13-8-21-21-21h-125c-12 0-21 8-21 21 0 12 9 20 21 20h125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="colors-typography" unicode="" d="M896 808c55 0 100-41 104-93l0-7v-757c0-54-43-97-97-101l-7 0h-792c-55 0-100 41-104 94l0 6v758c0 53 43 97 98 100l6 0h792z m62-208h-916v-650c0-30 24-55 56-58l6 0h792c32 0 59 23 62 53l0 6v649z m-333-642c-5 0-9 2-13 5l-2 2-2 2-1-2c-2-3-5-5-8-5l-4-1-3-1h-84c-10 0-18 8-20 17l0 4v167c0 46 35 84 81 87l6 0 59 0-13 80c0 35 25 64 59 70l5 0 7 1c37 0 67-29 70-68l0-6-12-76 58 0c45 0 81-33 87-75l1-6 0-7v-166c0-11-7-19-17-21l-4-1h-250z m229 134h-325v-92h46l13 51c5 18 28 21 37 7l2-3 1-4 13-51h47v46c0 12 9 21 20 21 11 0 19-8 21-17l0-4v-46h42v46c0 12 9 21 21 21 10 0 18-8 20-17l1-4v-46h41v92z m-312 425c10 0 18-8 20-17l1-4v-99c0-27-38-28-42-4l-1 7c-1 8-7 14-15 15l-3 1-118 0 0-297c0-8 5-15 12-17l4-1 8-1c20-4 21-33 3-40l-3-1-5-1h-139l-4 1c-22 4-22 37 0 41l8 0c7 2 13 8 15 15l0 4 0 296-118 0c-8 0-15-5-17-12l-1-3-1-8c-4-22-37-22-41 0l0 4v100c0 10 7 19 17 20l3 1h417z m-21-42h-375v-21l2 1 5 1 0 0 6 1 6 0h138c11 0 19-7 21-17l0-4v-317c0-4 0-8-1-12l-1-5-1-2h24l0 2-2 5 0 0 0 6-1 6v317c0 11 8 19 17 21l4 0h139c3 0 8 0 11-1l6-1 2-1v21z m171-133c-15 0-27-11-29-22l-1-4 17-100c2-11-6-22-17-23l-4-1h-83c-24 0-43-18-45-41l-1-5v-13h325v13c0 22-15 40-36 44l-5 1-5 1h-83c-12 0-21 9-21 20l1 4 16 97c0 16-13 29-29 29z m204 425h-792c-32 0-59-24-62-54l0-5v-66h916v66c0 30-24 56-56 59l-6 0z m-771-63c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="custom" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-549-87l3-3 150-150 135 136c14 13 30 20 48 21l7 0c15-1 30-7 42-17l5-4 55-56c26-26 28-68 4-96l-4-5-136-135 150-150c7-7 8-18 3-27l-3-3-126-126c-7-7-19-8-27-3l-3 3-150 150-100-100c-1-1-2-2-4-3l-3-1 0 0-1-1-178-51c-14-4-28 8-26 23l1 3 51 179 0 0 1 3 0 0 2 2 0 0 2 2 99 100-150 150c-7 7-8 18-3 27l3 3 126 126c8 8 19 9 27 3z m280-339l-98-97 136-135 97 97-9 9-23-24c-8-8-21-8-30 0-7 8-7 19-2 27l2 3 24 23-9 9-10-11c-9-8-22-8-30 0-7 7-8 19-2 27l2 3 10 11-8 8-24-23c-8-8-21-8-29 0-7 7-8 18-3 27l3 3 23 23-20 20z m-358-124l-31-107 108 31-77 76z m417 425l-5-1c-4 0-9-2-13-5l-3-3-377-377 98-97 376 376c5 5 8 11 8 17l1 4c0 7-2 13-6 18l-3 4-55 55c-4 4-10 7-17 8l-4 1z m44-41c8-7 8-18 3-26l-3-3-355-355c-8-8-21-8-29 0-7 7-8 18-3 27l3 2 355 355c8 8 21 8 29 0z m-395 32l-97-97 135-135 98 97-21 21-24-23c-8-8-21-8-29 0-7 7-8 18-3 27l3 3 23 23-9 9-10-11c-8-8-21-8-30 0-7 7-8 18-2 27l2 2 11 11-9 9-23-24c-8-8-21-8-30 0-7 7-7 18-2 27l2 2 24 24-9 8z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="footer" unicode="" d="M896 788c58 0 104-42 104-92v-688c0-54-46-91-104-91h-792c-58 0-104 41-104 91v688c0 54 46 92 104 92h792z m62-667h-916v-117c0-29 29-50 62-50h792c33 0 62 25 62 50v117z m-62 625h-792c-33 0-62-25-62-50v-533h916v533c0 25-29 50-62 50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="header" unicode="" d="M896 788c54 0 100-38 104-88l0-8v-688c0-50-42-92-96-92l-8 0h-792c-54 0-100 38-104 88l0 8v688c0 50 42 92 96 92l8 0h792z m62-209h-916v-575c0-25 25-50 58-50l4 0h792c33 0 58 21 62 46l0 4v575z m-62 167h-792c-33 0-58-21-62-46l0-4v-75h916v75c0 25-25 50-58 50l-4 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="layout-settings" unicode="" d="M896 808c55 0 100-43 104-97l0-7v-750c0-55-43-100-97-104l-7 0h-792c-55 0-100 43-104 97l0 7v750c0 56 43 101 98 104l6 0h792z m-750-354h-104v-500c0-32 24-59 56-62l6 0h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v83h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42v62z m812 0h-770v-562h708c32 0 59 24 62 56l0 6v500z m-687-312c12 0 21-9 21-21 0-11-8-19-17-21l-4 0h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42z m125 0c12 0 21-9 21-21 0-11-8-19-17-21l-4 0h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h42z m125 41c10 0 19-7 20-17l1-3v-42c0-11-8-19-17-21l-4 0h-42c-11 0-21 9-21 21 0 10 8 19 17 20l4 1h21v21c0 10 8 18 17 20l4 0z m0 125c10 0 19-7 20-17l1-3v-42c0-12-9-21-21-21-11 0-19 8-21 17l0 4v42c0 11 9 20 21 20z m0 125c10 0 19-7 20-17l1-3v-42c0-12-9-21-21-21-11 0-19 8-21 17l0 4v42c0 11 9 20 21 20z m-375 167h-104v-104h104v104z m812 0h-770v-104h62v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h83v42c0 11 9 20 21 20 10 0 19-7 20-17l1-3v-42h41v104z m-62 167h-792c-32 0-59-25-62-57l0-6v-62h916v62c0 33-24 59-56 62l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lightbox-expand" unicode="" d="M896 808c55 0 100-41 104-93l0-7v-757c0-54-43-97-97-101l-7 0h-792c-55 0-100 41-104 94l0 6v758c0 53 43 97 98 100l6 0h792z m62-208h-916v-650c0-30 24-55 56-58l6 0h792c32 0 59 23 62 53l0 6v649z m-545-146c12 0 21-9 21-21 0-10-7-18-17-20l-4 0h-71l149-150 149 150h-71c-10 0-19 7-20 17l-1 3c0 11 8 19 17 21l4 0 122 0c1 0 2 0 3 0l-3 0 2 0 0 0 3 0 0 0 3-1 0 0 2-1 0 0 2-2 0 0 2-1 2-2 0 0 2-3 0 0 1-4 0 0 1-2 0 0 1-2 0 0 0-2v-121c0-12-9-21-21-21-11 0-19 7-21 17l0 4 0 71-149-150 149-149 0 71c0 10 8 19 17 20l4 1c10 0 19-8 20-17l1-4v-122c0-1 0-3-1-4l-1-4 0 0-1-2 0 0-1-3 0 0-3-2-1-1 0 0-3-2 0 0-2-1 0 0-3-1 0 0-2-1-3 0h-122c-11 0-21 10-21 21 0 11 8 19 17 21l4 0 71 0-149 149-149-149 71 0c10 0 19-8 20-17l1-4c0-11-8-19-17-21l-4 0-124 0 0 0-4 1 0 0-3 1 0 0-3 2 0 0-2 2-2 1 0 0-2 3 0 0-1 4 0 0-1 3 0 2 0 0 0 123c0 12 9 21 21 21 10 0 18-8 20-17l1-4v-71l149 149-149 150v-71c0-11-8-19-18-21l-3 0c-11 0-19 7-21 17l0 4 0 122c0 1 0 1 0 2l0-3 0 2 0 0 0 3 0 0 1 3 0 0 2 3 0 0 1 3 0 0 2 1 1 2 0 0 3 1 0 0 2 2 0 0 3 0 0 0 4 1 0 0 123 0z m483 313h-792c-32 0-59-24-62-54l0-5v-66h916v66c0 30-24 56-56 59l-6 0z m-771-63c0-11-9-21-21-21s-21 10-21 21 10 21 21 21 21-9 21-21m83 0c0-11-9-21-20-21s-21 10-21 21 9 21 21 21 20-9 20-21m84 0c0-11-9-21-21-21-12 0-21 10-21 21s9 21 21 21c12 0 21-9 21-21" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="error-404" unicode="" d="M896 788c57 0 104-42 104-94v-688c0-52-47-94-104-94h-792c-57 0-104 42-104 94v688c0 52 47 94 104 94h792z m0-42h-792c-35 0-62-24-62-52v-688c0-28 27-52 62-52h792c35 0 62 24 62 52v688c0 28-27 52-62 52z m-596-266c5 0 9-2 13-5 3-3 5-8 5-14 0-3 0-6-3-9l-86-149 0 0 22-1 0 0 29 0 0 0 18-1v52l1 4c2 4 4 7 6 9 3 3 7 4 11 4 4 0 9-1 12-4 2-2 5-5 6-8l1-5v-53h28l4-1c4-2 7-4 9-7 3-3 4-7 4-11 0-4-2-8-5-12-2-2-6-4-10-6l-4-1-19 0-7 0v-49l0-4c-1-5-3-9-6-12-4-4-8-6-13-6-4 0-8 2-11 5-3 3-5 7-6 12l-1 4v51l-85 1c-5 0-10 0-15 0-13 2-20 9-20 20 0 2 0 4 1 6 11 20 22 40 34 60l17 30c17 29 35 59 52 89 2 4 5 7 8 9 4 1 7 2 10 2z m450 0c4 0 8-2 12-5 4-3 6-8 6-14 0-3-1-6-3-9l-86-149 0 0 21-1 0 0 29 0 0 0 19-1v52l1 4c1 4 3 7 6 9 3 3 7 4 11 4 4 0 8-1 12-4 2-2 4-5 6-8l1-5v-53h27l4-1c4-2 7-4 9-7 3-3 5-7 5-11 0-4-2-8-5-12-3-2-6-4-10-6l-4-1-19 0-7 0v-49l0-4c-1-5-3-9-6-12-4-4-9-6-13-6-4 0-8 2-12 5-3 3-5 7-6 12l0 4v51l-85 1c-5 0-10 0-15 0-14 2-20 9-20 20 0 2 0 4 0 6l17 30 0 0 18 30 42 74 26 45c3 4 6 7 9 9 3 1 6 2 10 2z m-242 5l10-1c7 0 13-2 20-5 6-3 12-6 18-10s12-9 17-14c8-9 15-20 20-32 5-11 9-24 11-36s3-26 3-39-1-25-2-38c-3-11-7-23-12-36-6-13-13-26-20-37-8-11-18-21-28-29-11-8-23-13-36-15-9-1-17-1-25-1-9 1-16 3-25 7-6 4-12 7-19 10-5 4-11 9-15 14-7 10-13 21-18 32s-7 23-9 35-3 25-3 37c0 13 1 25 3 37 1 13 5 26 10 40s12 26 20 38c8 12 18 21 30 29 12 8 25 12 40 13l10 1 0 0z m7-39c-8 2-16 1-24-1-8-2-16-7-23-13-10-9-18-22-24-38s-10-34-11-52-1-36 2-53 10-30 19-41c5-6 11-10 16-12 6-3 13-4 21-6 12 1 22 4 30 9s16 11 22 19 10 15 14 25c3 6 5 13 7 20l2 10 1 3 1 14 1 13c1 10 0 19-1 28-2 8-3 16-5 24s-5 15-10 23c-5 7-10 14-17 19-6 5-14 8-21 9z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="theme-style" unicode="" d="M945 741c40-24 55-75 34-117l-4-7-183-292v-275l-1-7c-3-52-45-93-97-97l-6 0h-584l-6 0c-53 4-94 45-98 97l0 7v583l0 7c4 53 45 94 98 98l6 0h584l6-1c47-3 86-37 95-82l32 55c26 43 81 57 124 31z m-257-45h-584l-6 0c-29-3-53-27-56-56l0-7v-583l0-6c3-29 27-53 56-56l6-1h584l5 1c30 3 54 27 57 56l0 6v209l-33-53c18-51 1-115-47-159l-7-6c-75-63-202-69-273 6-10 10-7 26 5 33l3 1 2 1c4 2 10 5 17 11l0 3v267c0 10 7 18 17 20l4 0 196 0 24 42-533 0c-10 0-19 8-20 17l-1 4v167c0 10 8 18 17 20l4 0h542c10 0 18-7 20-17l1-3v-136l62 109v47l0 6c-3 30-27 54-57 56l-5 1z m-25-479c-35 36-81 38-118 2-10-9-16-19-22-31-3-5-4-9-6-14l-2-6-9-25c-8-26-16-40-31-55-10-9-18-17-26-23l-6-5-2-1 5-4c52-31 125-26 177 8l7 5 7 5c49 42 60 108 26 144z m-309 166c11 0 19-7 21-17l0-3v-292c0-11-7-19-17-21l-4 0h-229c-10 0-19 8-20 17l-1 4v292c0 10 8 18 17 20l4 0h229z m-21-41h-187v-250h187v250z m125 0l0-207c2 4 5 9 7 15l5 14 4 13 4 12c1 2 1 4 2 5l2 5 4 7c7 16 17 30 30 42 18 18 38 29 59 35l3 0 33 58-153 1z m217 31l-50-88c21-5 42-15 60-32l7-7 53 85-70 42z m185 321l-3-4-161-282 72-43 172 274c13 23 6 53-17 66-21 13-48 8-63-11z m-214-102h-500v-125h500v125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="search-results" unicode="" d="M896 788c57 0 104-42 104-94v-688c0-52-47-94-104-94h-792c-57 0-104 42-104 94v688c0 52 47 94 104 94h792z m0-42h-792c-35 0-62-24-62-52v-688c0-28 27-52 62-52h792c35 0 62 24 62 52v688c0 28-27 52-62 52z m-228-354c82 0 148-66 148-148 0-34-11-64-30-89l71-73c8-8 8-21 0-29-8-8-19-8-27-3l-3 3-71 72c-25-17-55-28-88-28-81 0-147 66-147 147s66 148 147 148z m-168-271c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h333z m168 229c-58 0-105-47-105-106s47-106 105-106 106 48 106 106-47 106-106 106z m-251-104c11 0 21-9 21-21 0-10-8-19-18-20l-3-1h-250c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h250z m41 125c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-291c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h291z m-83 125c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-208c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h208z m250 0c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-167c-11 0-20 9-20 21 0 10 7 19 17 20l3 1h167z m208 0c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-125c-11 0-20 9-20 21 0 10 7 19 17 20l3 1h125z m-416 125c11 0 21-9 21-21 0-10-8-19-18-20l-3-1h-250c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h250z m416 0c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="single-post" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-63-625c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-666c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h666z m0 125c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-666c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h666z m-544 365l1-4 105-292c3-10-2-22-13-26-9-4-20 1-25 9l-2 3-25 70h-119l-25-70c-3-9-13-15-23-13l-3 0c-10 4-15 14-14 23l1 4 104 292c7 17 29 18 38 4z m544-240c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z m-562 167l-45-125h89l-44 125z m562-42c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z m0 125c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 8 19 17 20l4 1h333z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="site-identity" unicode="" d="M896 808c55 0 100-45 104-101l0-7v-742c0-57-43-104-97-108l-7 0h-792c-55 0-100 45-104 101l0 7v742c0 57 43 104 97 108l7 0h792z m62-208h-916v-642c0-35 25-63 56-66l6 0h792c32 0 59 26 62 60l0 6v642z m-604-125c127 0 229-102 229-229 0-68-29-128-75-170l-9-8 0 0c-9-7-17-13-26-19l-11-6 0 0-10-5 0 0-10-4-12-5 0 0-9-3 0 0-5-1 0 0-6-2 0 0-10-2 0 0-13-2 0 0-11-1 0 0-7-1 0 0-5 0c-3 0-6-1-10-1l-14 1 0 0-14 1 0 0-6 1 0 0-11 1 0 0-11 3 0 0-5 1 0 0-10 3 0 0-6 3 0 0-4 1 0 0-8 3 0 0-9 4 0 0-9 5 0 0c-10 5-19 11-28 17l-10 8 0 0c-51 42-83 106-83 177-1 128 102 230 228 230z m0-292c-50 0-94-27-117-69l-4-8-1-2 5-4 9-7 0 0 7-5 8-5c4-2 9-5 14-7l8-3 7-3c5-2 10-4 15-5l9-2 11-2c6-1 13-2 20-2l9-1 5 0 0 0 7 1 8 1 11 1 7 2 0 0 5 1 9 2 9 3 9 4c5 2 9 3 14 6l10 5 0 0 8 5c3 1 6 4 8 6l8 5 4 5-1 2c-19 41-59 70-105 76l-8 1-8-1z m500 0c11 0 19-7 21-17l0-3v-84c0-10-7-19-17-20l-4-1h-208c-11 0-19 8-21 17l0 4v84c0 10 8 18 17 20l4 0h208z m-21-41h-166v-42h166v42z m-479 291c-103 0-187-84-187-187 0-41 13-78 35-109 19 33 48 58 82 73-21 20-34 47-34 78 0 57 47 104 104 104s104-47 104-104c0-31-13-58-34-78 35-15 64-40 83-73 22 31 35 68 35 109 0 103-84 187-188 187z m0-83c-34 0-62-28-62-62s28-63 62-63 63 28 63 63-28 62-63 62z m500 83c11 0 19-7 21-17l0-3v-84c0-10-7-19-17-20l-4-1h-208c-11 0-19 8-21 17l0 4v84c0 10 8 18 17 20l4 0h208z m-21-41h-166v-42h166v42z m63 375h-792c-32 0-59-27-62-61l0-6v-58h916v58c0 35-25 63-56 66l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="theme-builder" unicode="" d="M550 79c29 0 50-21 54-50l0-4v-100c0-29-21-50-50-54l-4 0h-100c-29 0-50 21-54 50l0 4v100c0 29 21 50 50 54l4 0h100z m375 0c29 0 50-21 54-50l0-4v-100c0-29-21-50-50-54l-4 0h-100c-29 0-50 21-54 50l0 4v100c0 29 21 50 50 54l4 0h100z m-750 0c29 0 50-21 54-50l0-4v-100c0-29-21-50-50-54l-4 0h-100c-29 0-50 21-54 50l0 4v100c0 29 21 50 50 54l4 0h100z m375-41h-100c-4 0-12-5-12-9l0-4v-100c0-4 4-13 8-13l4 0h100c4 0 13 5 13 9l0 4v100c0 4-5 13-13 13l0 0z m375 0h-100c-4 0-12-5-12-9l0-4v-100c0-4 4-13 8-13l4 0h100c4 0 13 5 13 9l0 4v100c0 4-5 13-13 13l0 0z m-750 0h-100c-4 0-12-5-12-9l0-4v-100c0-4 4-13 8-13l4 0h100c4 0 13 5 13 9l0 4v100c0 4-5 13-13 13l0 0z m325 375c8 0 17-9 21-17l0-4v-104h229c79 0 146-67 146-146 0-13-8-21-21-21s-21 8-21 21c0 54-41 100-96 104l-8 0h-229v-104c0-13-8-21-21-21-8 0-17 8-21 17l0 4v104h-229c-58 0-104-46-104-104 0-13-8-21-21-21s-21 8-21 21c0 79 63 141 138 146l8 0h229v104c0 12 9 21 21 21z m83 416c55 0 100-41 105-96l0-8v-167c0-54-42-100-96-104l-9 0h-166c-54 0-100 42-104 96l0 8v167c0 54 41 100 95 104l9 0h166z m0-41h-166c-34 0-59-25-63-59l0-4v-167c0-33 25-58 59-62l4 0h166c34 0 59 25 63 58l0 4v167c0 33-25 58-58 63l-5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-bold" unicode="" d="M572 808h-144c-23 0-43-19-43-43v-300h-157c-31 0-48-39-25-62l272-272c14-13 36-13 49 0l273 272c22 23 6 62-26 62h-157v300c1 24-19 43-42 43z m386-873v200c0 24-19 43-43 43h-262l-88-88c-36-36-94-36-130 0l-88 88h-262c-24 0-43-19-43-43v-200c0-24 19-43 43-43h830c24 0 43 19 43 43z m-222 42c0 20-16 36-36 36-19 0-35-16-35-36 0-19 16-35 35-35 20 0 36 16 36 35z m79 36c20 0 36-16 36-36 0-19-16-35-36-35-20 0-36 16-36 35 0 20 16 36 36 36z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="share-arrow" unicode="" d="M946 467l-279 250c-25 21-63 4-63-29v-130c-366-4-533-345-562-520 196 225 321 291 562 295v-141c0-34 38-50 63-29l279 245c17 17 17 42 0 59z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="global-settings" unicode="" d="M816 302c49-10 92-36 127-74 3-4 5-10 5-16-1-4-3-9-6-12l-2-2c-9-7-12-18-6-27 4-8 13-11 22-9l4 1c5 2 11 2 16 0 6-3 9-7 12-12 8-26 12-50 12-73 0-24-4-48-12-74-2-5-6-10-12-12-4-2-8-2-13-1l-3 1c-10 4-21 1-26-8-5-8-4-17 3-24l3-2c4-3 7-9 8-15 0-6-1-11-5-16-34-38-78-64-127-73-1-1-2-1-4-1-4 0-9 2-12 4-4 3-7 7-8 12l-1 3c-1 11-10 19-20 19-9 0-17-6-20-16l-1-3c0-6-3-11-8-15s-11-4-16-3c-49 9-93 35-127 73-4 5-6 10-5 16 1 5 3 9 6 12l2 3c9 7 11 17 6 27-5 7-13 11-22 9l-4-2c-5-2-11-2-17 0-5 3-9 7-11 13-9 25-13 49-13 73 0 24 4 47 13 73 2 6 6 10 11 12 5 2 9 3 14 2l3-2c10-4 21 0 26 8 5 8 3 18-3 24l-3 3c-4 3-7 8-8 14-1 6 1 12 5 16 34 39 78 64 126 74 6 1 12 0 17-4 3-3 6-7 8-11l0-4c2-10 10-18 20-18 10 0 18 6 20 15l1 3c0 6 4 12 8 15 5 4 11 5 17 4z m-337 546c264 0 479-215 479-479 0-17 0-34-3-53-1-11-12-19-22-18-12 1-20 12-19 23 1 9 2 18 2 27l-416 0 0-416c9 0 18 1 27 2 11 1 22-7 23-19 1-11-7-21-18-23-19-2-36-2-53-2-264 0-479 215-479 479s215 479 479 479z m346-592c-10-20-31-33-54-33s-44 13-55 33c-27-8-51-23-73-43 12-19 13-43 2-63-12-20-34-31-56-30-4-15-6-29-6-43 0-14 2-27 6-42 22 1 44-10 56-31 11-20 10-44-2-63 22-20 46-35 73-43 11 20 32 33 55 33s44-13 54-33c28 8 52 23 73 43-10 17-12 39-4 58l3 5c12 20 33 32 56 31 4 15 5 29 5 43 0 13-1 27-5 42-23 0-44 10-56 30-12 20-10 45 1 64-20 19-45 34-73 42z m-367-158l-157 0c38-91 94-153 157-165l0 165z m-203 0l-119 0c52-67 124-118 207-145-36 36-66 85-88 145z m516 83c57 0 104-46 104-104s-47-104-104-104-104 47-104 104 46 104 104 104z m0-41c-35 0-63-28-63-63 0-34 28-62 63-62s62 28 62 62c0 35-28 63-62 63z m-562 208l-166 0c3-76 26-147 64-208l134 0c-17 55-28 118-31 185l-1 23z m249 0l-208 0c3-75 15-147 35-208l174 0v208z m-218 250l-133 0c-38-61-61-132-65-208l166 0c2 75 14 146 32 208z m218 0l-173 0c-20-62-33-133-35-208l208 0v208z m215 0l-173 0v-208l208 0c-2 68-13 133-30 191l-5 17z m179 0l-134 0c19-62 30-133 32-208l166 0c-3 70-23 137-57 195l-7 13z m-509 187l-10-4c-79-28-147-77-197-141l119 0c22 59 52 109 88 145z m-42-145l157 0 0 164c-60-11-114-69-153-154l-4-10z m199 165l0-165 158 0c-37 87-90 148-150 163l-8 2z m116-20l1-1c35-36 64-85 87-144l119 0c-53 66-125 117-207 145z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="user-preferences" unicode="" d="M167 829c11 0 21-9 21-21v-62h20c58 0 105-47 105-104v-84c0-57-47-104-105-104h-20v-562c0-12-10-21-21-21s-21 9-21 21v562h-21c-57 0-104 47-104 104v84c0 57 47 104 104 104h21v62c0 12 9 21 21 21z m333 0c12 0 21-9 21-21v-312h21c57 0 104-47 104-104v-84c0-57-47-104-104-104h-21v-312c0-12-9-21-21-21s-21 9-21 21v312h-21c-57 0-104 47-104 104v84c0 57 47 104 104 104h21v312c0 12 9 21 21 21z m333 0c12 0 21-9 21-21v-562h21c58 0 104-47 104-104v-84c0-57-46-104-104-104h-21v-62c0-12-9-21-21-21s-20 9-20 21v62h-21c-58 0-104 47-104 104v84c0 57 46 104 104 104h21v562c0 12 9 21 20 21z m42-625h-83c-35 0-63-28-63-62v-84c0-34 28-62 63-62h83c35 0 63 28 63 62v84c0 34-28 62-63 62z m-333 250h-84c-34 0-62-28-62-62v-84c0-34 28-62 62-62h84c34 0 62 28 62 62v84c0 34-28 62-62 62z m-334 250h-83c-35 0-62-28-62-62v-84c0-34 27-62 62-62h83c35 0 63 28 63 62v84c0 34-28 62-63 62z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lock" unicode="" d="M500 842c149 0 272-115 283-264l0-10 0-10v-125h79c53 0 96-43 96-96v-392c0-53-43-95-96-95h-724c-53 0-96 42-96 95v392c0 53 43 96 96 96h79l0 126 0 11c6 151 131 272 283 272z m0-575c-42 0-76-31-82-71l-1-6 0-7v-93l0 0c5-41 40-73 83-73 40 0 74 28 82 67l1 6 0 0v93c0 46-37 84-83 84z m0 466c-91 0-167-70-174-158l-1-8 0-9 0-125h350l0 124 0 8c-4 94-81 168-175 168z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="export-kit" unicode="" d="M838 767c64 0 117-51 120-115l0-7v-235c0-23-18-42-41-42-22 0-39 16-42 37l0 5v32h-750v-404c0-20 15-35 33-38l4 0h676c19 0 35 15 37 34l0 4c0 23 19 42 42 42s41-19 41-42c0-64-50-118-113-121l-7 0h-676c-64 0-117 50-120 114l0 7v607c0 65 50 118 113 122l7 0h676z m-5-427c6 0 11-2 15-6l104-98c8-8 8-21 1-30l-105-98c-9-8-22-8-30 0-4 4-6 10-6 15l0 56h-271c-23 0-41 19-41 41 0 22 16 40 36 42l5 0h271l0 56c1 12 10 22 21 22z m5 343h-676c-19 0-35-14-37-33l0-5v-120h750v120c0 20-15 36-33 38l-4 0z m-633-38c23 0 42-19 42-42s-19-41-42-41-42 18-42 41 19 42 42 42z m122 0c23 0 41-19 41-42s-18-41-41-41-42 18-42 41 19 42 42 42z m121 0c23 0 42-19 42-42s-19-41-42-41c-23 0-41 18-41 41s18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="import-kit" unicode="" d="M838 767c64 0 117-51 120-115l0-7v-235c0-23-18-42-41-42-22 0-39 16-42 37l0 5v32h-750v-404c0-20 15-35 33-38l4 0h676c19 0 35 15 37 34l0 4c0 23 19 42 42 42s41-19 41-42c0-64-50-118-113-121l-7 0h-676c-64 0-117 50-120 114l0 7v607c0 65 50 118 113 122l7 0h676z m-213-427c-5 0-10-2-14-6l-104-98c-9-8-9-21-1-30l105-98c8-8 22-8 29 0 4 4 6 10 6 15l0 56h271c23 0 42 19 42 41 0 22-16 40-37 42l-5 1h-271l0 56c0 11-9 21-21 21z m213 343h-676c-19 0-35-14-37-33l0-5v-120h750v120c0 20-15 36-33 38l-4 0z m-633-38c23 0 42-19 42-42s-19-41-42-41-42 18-42 41 19 42 42 42z m122 0c23 0 41-19 41-42s-18-41-41-41-42 18-42 41 19 42 42 42z m121 0c23 0 42-19 42-42s-19-41-42-41c-23 0-41 18-41 41s18 42 41 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="lottie" unicode="" d="M200 767c13 0 23-11 23-24s-10-23-23-23-23 10-23 23 10 24 23 24z m47-64c7 11 21 14 32 7 36-24 64-55 86-86 8-11 5-25-5-33s-25-5-33 6c-19 27-44 54-74 73-10 8-13 22-6 33z m137-146c11 6 25 2 31-10 24-44 43-93 52-146 0-3 1-8 1-12l1-9 64 0c11 0 21-8 22-19l1-4c0-12-8-21-20-23l-3 0-62 0 0-14 0-15-1-19c-1-16-2-30-3-40-12-103-50-190-117-246-63-55-172-73-249-4-38 35-63 88-58 159 5 70 35 118 85 157 59 47 152 67 269 68l25 0 0 3-2 11c-7 46-25 91-46 131-6 11-1 25 10 32z m41-223l-12 0c-115 0-205-17-256-58-41-33-64-68-68-124-4-56 15-95 44-121 56-51 140-36 187 4 57 49 90 124 101 217l1 13c1 9 2 21 2 33l1 16 0 20z m377 42l130-3c13-1 23-12 23-25-1-11-10-20-20-22l-4 0-130 4c-13 0-23 11-23 24 1 11 10 21 20 22l4 0z m-155 5l67-2c13-1 23-11 22-24 0-12-9-21-20-23l-3 0-67 2h-25c-13 0-23 10-23 23 0 12 8 21 19 23l4 0 26 1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="products-archive" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m7-417c7 0 14-6 14-14v-305c0-8-7-14-14-14h-368c-8 0-14 6-14 14v305c0 8 6 14 14 14h368z m-438 0c8 0 14-6 14-14v-305c0-8-6-14-14-14h-368c-7 0-14 6-14 14v305c0 8 7 14 14 14h368z m410-41h-312v-250h312v250z m-437 0h-313v-250h313v250z m-171-192c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m64 0c12 0 21-9 21-21s-9-21-21-21c-11 0-21 9-21 21s10 21 21 21z m373 0c12 0 21-9 21-21s-9-21-21-21-21 9-21 21 10 21 21 21z m65 0c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m-554 175c8 0 15-4 18-11l2-3 7-22 121 0c15 0 28-11 30-25l0-5c0-2 0-4 0-6l-1-3-24-71c-4-11-13-18-25-20l-4 0h-76c-11 0-22 6-27 16l-1 4-35 104-12 0c-11 0-19 8-21 17l0 4c0 10 7 19 17 20l4 1h27z m438 0c7 0 14-4 18-11l2-3 7-22 121 0c15 0 27-11 29-25l1-5c0-2-1-4-1-6l-1-3-24-71c-3-11-12-18-24-20l-4 0h-76c-11 0-22 6-27 16l-1 4-35 104-13 0c-10 0-18 7-20 17l-1 4c0 10 8 19 17 20l4 1h28z m-306-77h-92l16-48h59l17 48z m437 0h-91l16-48h59l16 48z m119 510c7 0 14-6 14-14v-305c0-8-7-14-14-14h-368c-8 0-14 6-14 14v305c0 8 6 14 14 14h368z m-438 0c8 0 14-6 14-14v-305c0-8-6-14-14-14h-368c-7 0-14 6-14 14v305c0 8 7 14 14 14h368z m410-41h-312v-250h312v250z m-437 0h-313v-250h313v250z m-171-192c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m64 0c12 0 21-9 21-21s-9-21-21-21c-11 0-21 9-21 21s10 21 21 21z m373 0c12 0 21-9 21-21s-9-21-21-21-21 9-21 21 10 21 21 21z m65 0c11 0 21-9 21-21s-10-21-21-21c-12 0-21 9-21 21s9 21 21 21z m-554 175c8 0 15-4 18-11l2-3 7-22 121 0c15 0 28-11 30-25l0-5c0-2 0-4 0-6l-1-3-24-71c-4-11-13-18-25-20l-4 0h-76c-11 0-22 6-27 16l-1 4-35 104-12 0c-11 0-19 8-21 17l0 4c0 10 7 19 17 20l4 1h27z m438 0c7 0 14-4 18-11l2-3 7-22 121 0c15 0 27-11 29-25l1-5c0-2-1-4-1-6l-1-3-24-71c-4-11-13-18-24-20l-4 0h-77c-11 0-21 6-26 16l-2 4-34 104-13 0c-10 0-19 8-20 17l-1 4c0 10 8 19 17 20l4 1h28z m-306-77h-92l16-48h59l17 48z m437 0h-91l16-48h59l16 48z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="single-product" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-647-625c7 0 14-6 14-14v-97c0-8-7-14-14-14h-152c-7 0-14 6-14 14v97c0 8 7 14 14 14h152z m216 0c8 0 14-6 14-14v-97c0-8-6-14-14-14h-147c-8 0-14 6-14 14v97c0 8 6 14 14 14h147z m221 0c8 0 14-6 14-14v-97c0-8-6-14-14-14h-151c-8 0-14 6-14 14v97c0 8 6 14 14 14h151z m217 0c7 0 14-6 14-14v-97c0-8-7-14-14-14h-148c-7 0-13 6-13 14v97c0 8 6 14 13 14h148z m-682-42h-96v-41h96v41z m217 0h-92v-41h92v41z m220 0h-95v-41h95v41z m217 0h-92v-41h92v41z m28 625c7 0 14-6 14-14v-514c0-7-7-13-14-13h-806c-7 0-14 6-14 13v514c0 8 7 14 14 14h806z m-28-41h-750v-459h750v459z m-437-340c11 0 20-10 20-21 0-12-9-21-20-21s-21 9-21 21c0 11 9 21 21 21z m104 0c11 0 21-10 21-21 0-12-10-21-21-21-12 0-21 9-21 21 0 11 9 21 21 21z m-201 298c8 0 15-4 19-11l1-3 17-49 230 0c19 0 35-15 37-33l0-4c0-3 0-6 0-8l-2-4-43-129c-5-14-16-23-30-25l-5 0h-137c-15 0-28 8-34 20l-1 5-60 177 0 0-7 22h-34c-11 0-19 8-21 17l0 4c0 10 7 19 17 20l4 1h49z m260-105h-210l39-119h131l40 119z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="disable-trash-o" unicode="" d="M600 808c27 0 52-13 68-35l3-6 59-102h143c13 0 25-10 27-25l0-4v-28c0-15-10-27-23-29l-4 0h-28l0-516 107-93c8-8 9-21 2-30l-28-31c-7-9-21-9-29-2l-55 48c-9-35-38-61-74-64l-6 0h-499c-43 0-79 35-83 79l0 7 0 553-132 116c-8 7-9 21-2 29l28 32c7 8 21 9 29 2l51-44 142 0 58 102c14 23 38 39 65 41l6 0h175z m-337-349l0-482h499l0 48-111 96 0-36c0-11-7-20-17-22l-4 0h-41c-10 0-19 7-21 17l0 4 0 109-111 96 0-205c0-10-7-19-17-21l-4 0h-41c-10 0-19 7-21 17l0 4 0 277-111 98z m499 120h-499l0-10 111-96c1 10 8 18 17 20l4 0h42c10 0 18-7 20-17l1-4 0-71 110-96 0 167c0 11 8 19 17 21l4 1h42c10 0 19-8 20-18l1-3 0-240 111-96-1 442z m-168 144h-163c-3 0-5-2-7-3l-1-2-31-53h241l-30 53c-1 2-4 4-6 5l-3 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="single-page" unicode="" d="M896 788c54 0 100-38 104-87l0-7v-688c0-50-43-90-97-93l-7-1h-792c-54 0-100 38-104 87l0 7v688c0 50 43 90 97 93l7 1h792z m0-42h-792c-33 0-59-21-62-47l0-5v-688c0-26 24-49 56-51l6-1h792c33 0 59 21 62 47l0 5v688c0 26-24 49-56 51l-6 1z m-410-542c8 0 14-6 14-14v-180c0-8-6-14-14-14h-389c-7 0-14 6-14 14v180c0 8 7 14 14 14h389z m410-166c12 0 21-10 21-21 0-11-8-19-17-21l-4 0h-333c-12 0-21 9-21 21 0 10 7 18 17 20l4 1h333z m-438 125h-333v-125h333v125z m438-42c12 0 21-9 21-21 0-10-8-19-17-20l-4-1h-333c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h333z m0 83c12 0 21-9 21-21 0-10-8-18-17-20l-4 0h-333c-12 0-21 9-21 20 0 11 7 19 17 21l4 0h333z m7 500c7 0 14-6 14-14v-430c0-8-7-14-14-14h-806c-7 0-14 6-14 14v430c0 8 7 14 14 14h806z m-258-176l-165-170c-6-5-14-8-22-5l-3 2-123 72-153-139h671l-205 240z m230 135h-750v-368l190 173c6 5 14 7 21 4l4-2 122-71 170 174c7 8 19 8 28 2l3-3 212-249v340z m-625-42c35 0 63-28 63-63s-28-62-63-62-62 28-62 62 27 63 62 63z m0-42c-12 0-21-9-21-21s9-20 21-20 21 9 21 20-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wordpress-light" unicode="" d="M500 850c276 0 500-224 500-500s-224-500-500-500-500 224-500 500 224 500 500 500z m8-541l-137-399c41-12 84-18 129-18 53 0 104 9 151 25l-143 392z m-466 41c0-177 100-331 247-407l-212 582c-23-54-35-113-35-175z m873 195l0-5 0-13c0-44-7-94-30-154l-5-14-138-398c130 81 216 225 216 389 0 70-15 135-43 195z m-415 263c-157 0-297-79-379-200l11 0 0 0 5 0c49 0 126 5 126 5 23 2 27-31 7-38l-4 0c0 0-22-2-48-4l-6-1 171-509 103 309-73 200-17 2c-18 1-32 3-32 3-24 1-23 36-1 39l4 0c0 0 71-6 118-6h13l20 0c46 2 98 6 98 6 24 1 28-32 7-38l-4-1c0 0-22-2-48-4l-6-1 170-505 48 157 15 52c12 39 20 71 20 100 0 58-20 99-38 130l-12 19c-19 30-35 59-35 91 0 39 28 77 68 82-81 70-186 112-301 112z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="cogs-check" unicode="" d="M736 312c116 0 210-94 210-210s-94-210-210-210-210 94-210 210 94 210 210 210z m-183 496c20 0 37-14 40-34l15-100c19-9 38-20 56-33l94 38c20 7 41-1 50-18l84-145c9-18 5-39-10-51l-80-63c1-10 1-21 1-33l0-5 0 0c0-5-3-11-8-14s-10-5-15-5c-41 8-77 5-115-6-6-1-12 0-17 4s-8 10-7 15l1 7 0 0c0 98-77 175-172 175s-172-77-172-172c0-95 77-173 172-173l9 1 0 0c6 0 12-2 16-7s5-11 3-17c-7-23-10-47-10-71 0-51 15-100 44-141 4-6 5-14 1-20-3-6-9-10-17-10h-131c-20 0-37 15-39 34l-15 101c-19 8-38 20-56 33l-95-38c-19-7-40 0-49 18l-84 145c-9 17-5 39 10 51l80 63c-1 12-2 23-2 33 0 10 1 20 2 33l-80 62c-16 12-20 34-9 51l83 145c10 17 31 25 49 18l95-38c19 13 38 24 56 33l15 100c2 19 19 34 39 34h168z m183-534c-94 0-171-77-171-172s77-172 171-172 172 78 172 172-77 172-172 172z m-351 496l-17-112c-1-7-5-13-12-15-22-10-44-22-66-39-6-4-13-5-19-3l-105 42-86-146 89-72c5-4 8-10 7-17-2-15-3-28-3-39 0-11 1-24 3-39 1-6-2-13-7-17l-89-69 84-148 107 41c2 1 4 1 7 1 4 0 8-1 12-4 20-16 43-29 66-39 7-2 11-8 12-15l16-111 99-1c-22 41-33 87-33 133 0 19 2 38 6 57-110 7-196 99-196 210 0 116 94 210 210 210 111 0 203-86 210-196 28 6 56 7 85 4 0 8-1 15-2 22-1 6 2 13 7 17l89 69-84 148-107-41c-6-3-13-2-18 2-21 17-44 30-67 39-6 3-11 8-12 15l-16 111-170 2z m460-597c8-8 8-20 0-28l-133-133c-4-4-9-6-14-6s-9 2-13 6l-77 76c-7 8-7 20 0 27 8 8 20 8 27 0l63-62 120 120c8 7 20 7 27 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="custom-css" unicode="" d="M896 808c55 0 100-45 104-101l0-7v-742c0-29-11-56-30-76-18-18-41-29-66-31l-8-1h-792c-55 0-100 45-104 102l0 6v742c0 57 43 104 97 108l7 0h792z m62-208h-916v-642c0-35 25-63 56-66l6 0h792c17 0 32 6 44 18 10 11 17 25 18 41l0 7v642z m-404-174c10-3 15-13 13-23l-1-4-127-323c-4-11-16-16-27-11-10 3-15 13-13 23l1 4 127 323c4 10 17 15 27 11z m-215-15c7-7 8-18 3-27l-3-3-120-120 120-120c7-7 8-18 3-26l-3-3c-7-7-18-8-26-3l-3 3-135 135c-7 7-8 18-2 26l2 3 135 135c8 8 21 8 29 0z m320 0c7 7 18 8 26 2l3-2 135-135 2-3c5-7 5-16 0-23l-2-3-135-135-3-2c-7-5-16-5-23 0l-3 2-3 3c-5 7-5 17 0 24l3 3 120 120-120 120-3 3c-5 8-4 19 3 26z m237 356h-792c-32 0-59-27-62-61l0-6v-58h916v58c0 35-25 63-56 66l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="global-colors" unicode="" d="M465 469c198 216 427 328 481 270 52-56-65-266-282-444l-12-10-16-12c-37-28-88-63-153-103l-21-14c3-100-64-203-163-210-15-1-48-1-84 1l-40 3-32 2-25 3c-19 2-36 4-49 7l-9 1c-9 2-17 5-22 8l-5 2c-1 2-3 3-4 4l-2 2c-7 8-9 19-2 29l2 2 2 2c7 8 15 19 24 38l6 13 9 24 26 67 10 23c17 39 34 70 54 95 46 60 125 73 190 49l21 29c28 38 53 70 74 95l8 9 14 15z m-330-321l-13-34c-12-32-22-56-31-74l-3-7c-5-11-10-20-14-27l-4-5 5-1c9-2 21-3 34-5l21-1 12-1c26-2 55-3 81-3l19 0 24 0-3 2c-3 4-6 7-9 11l-4 5-4 7-3 5c0 3-2 5-3 9l-15 42-2 8c-7 18-14 31-20 38l-3 3-2 1c-22 17-36 24-55 26l-8 1z m199 137c-50 18-111 9-146-36-14-17-26-38-38-63 25-3 45-13 72-34l4-4c13-12 22-30 32-55l3-9c2-5 15-47 18-52 5-10 18-19 35-25l7-2 20-6 1 0c76 42 111 170 47 247l-7 8-6 6 2-2c-8 7-15 12-24 17l-9 5-11 5z m582 429c-10 5-62-4-125-34-87-42-184-116-282-220l-22-24-16-17c-16-19-33-41-53-67l-10-14-26-34c6-4 12-9 18-13l5-5 7-7c19-20 33-44 41-69l3-11 37 24 29 19c18 12 35 23 51 33l11 8 20 15 9 6 15 12c117 94 200 189 249 276 33 59 46 109 41 120l-1 1-1 1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="globe" unicode="" d="M500 808c-253 0-458-205-458-458 0-253 205-458 458-458 253 0 458 205 458 458 0 253-205 458-458 458z m331-295h-124c-12 67-32 127-57 175 79-35 143-98 181-175l0 0z m-331 207c34 0 90-77 117-207h-234c27 130 83 207 117 207z m-370-370c0 25 3 50 8 74h144c-2-24-4-49-4-74s2-50 4-74h-144c-5 24-8 49-8 74z m39-162h124c12-68 32-128 57-175-79 35-143 97-181 175l0 0z m124 325h-124c38 77 102 140 181 175-25-48-45-108-57-175l0 0z m207-533c-34 0-90 77-117 208h234c-27-131-83-208-117-208z m130 296h-260c-2 24-3 48-3 74s2 50 3 74h260c2-24 3-48 3-74s-1-50-3-74z m20-263c25 47 45 107 57 175h124c-38-78-102-140-181-175l0 0z m69 263c1 24 3 49 3 74s-1 50-3 74h144c5-24 7-49 7-74s-2-50-7-74h-144z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="typography-1" unicode="" d="M230 663c28 0 28-41 1-42-17-1-30-3-36-6-3-1-5-3-7-7l0-3c-3-8-3-21-3-38l0-151h256l0 151c0 20-2 33-4 41-2 4-3 7-7 8-6 2-18 4-36 5-27 2-26 42 1 42h209c27 0 28-40 1-42-17-1-30-2-36-5-4-1-5-3-7-8-2-8-4-21-4-41v-434c0-20 2-33 4-41 2-4 3-7 7-8 6-2 18-4 36-5 27-1 26-42-1-42h-209c-27 0-28 41-1 42 17 1 30 2 36 5 3 1 5 4 7 8l1 3c2 8 2 21 2 38l0 155h-255l0-155c0-20 1-34 3-41 2-4 4-7 7-8 6-3 18-5 36-6 27-1 27-41-1-41h-209c-27 0-28 40-1 41 18 1 30 3 36 6 4 1 5 3 7 8 2 7 4 21 4 41v434c0 20-2 33-4 41-2 4-3 7-7 8-6 2-18 4-36 5l-4 0c-23 5-21 42 5 42h209z m648-4c13 9 30 1 32-14l1-3v-489c0-21 3-37 8-48 5-8 12-15 23-19l13-5 2-1c1 0 3 0 5 0l7-1 10 0 4 0c20-4 22-33 4-40l-4-1-4-1h-264l-4 1c-22 3-22 37 0 40l4 1 8 0c26 0 36 4 55 16 12 9 19 25 20 50l0 8v280c0 34-3 59-9 73-7 15-21 32-32 37-7 4-23 9-47 14l-8 1-19 4c-24 4-21 41 4 41 54 1 98 6 133 14 12 3 18 6 25 12l4 4 11 11c6 6 12 10 18 15z m-729-38h-47c4-13 6-31 6-54v-434l0-10c0-15-1-28-4-38l-1-6h46c-4 13-6 31-6 54v176c0 11 9 21 21 21h297c12 0 21-10 21-21v-176l0-10c0-15-2-28-4-38l-2-6h47c-4 13-6 31-6 54v434l0 10c0 16 1 28 4 38l2 6h-47c4-13 6-31 6-54v-172c0-12-9-21-21-21h-297c-12 0-21 9-21 21v172l0 10c0 16 2 28 4 38l2 6z m720-25l-1-2c-11-8-22-13-38-16-7-2-15-4-24-5l-13-3-1 0 3-2c9-8 18-18 24-29l5-9 3-7c8-18 12-44 13-78l0-12v-280c0-26-5-49-15-66l-5-6-1-1h67l-4 6c-8 15-12 34-13 57l0 11 0 442z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="background" unicode="" d="M896 808c55 0 100-45 104-101l0-7v-742c0-29-11-56-30-76-18-18-41-29-66-31l-8-1h-792c-55 0-100 45-104 102l0 6v742c0 57 43 104 97 108l7 0h792z m62-208h-916v-153l601-555h253c14 0 28 5 39 14l5 4c10 11 17 25 18 41l0 7v642z m-640-465l-238-238c2-1 4-2 7-3 1 0 3-1 5-1l6-1 6 0 89 0 186 186-61 57z m92-85l-158-158h118l101 101-61 57z m92-85l-73-73h118l16 16-61 57z m-276 255l-184-185v-77l0-7 0 0 1-7 2-7 2-4 1-3 0 0 2-4 238 237-62 57z m-92 85l-92-93v-118l153 154-61 57z m-91 85l-1-1v-118l62 62-61 57z m853 377h-792c-32 0-59-27-62-61l0-6v-58h916v58c0 35-25 63-56 66l-6 1z m-792-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21c-12 0-21 10-21 21s9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-responsive" unicode="" d="M883 588c42 0 75-34 75-75v-442c0-41-33-75-75-75h-225c-41 0-75 34-75 75v442c0 41 34 75 75 75h225z m-8-84h-208v-425h208v425z m-85 209c40 0 73-33 74-73l0-2v-9h-658v-368h336v-139h-454c-25 0-45 20-46 44l0 2v31c0 7 6 13 13 14l0 0h79c-7 10-11 23-11 37l0 3v385c0 41 32 74 72 75l2 0h593z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="device-wide" unicode="" d="M632 79c8 0 14-6 14-14v-23c0-26-21-46-46-46h-200c-25 0-46 20-46 46v23c0 8 6 14 14 14h264z m245 625c44 0 81-36 81-80l0-1v-420c0-45-35-81-80-82l-1 0h-754c-44 0-81 36-81 81l0 1v420c0 44 36 81 80 81l1 0h754z m-2-83h-750v-417h750v417z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="code-highlight" unicode="" d="M169 487c7-7 8-18 2-27l-3-2-118-118 120-127c7-7 8-18 2-26l-3-3c-7-7-19-8-26-2l-3 3-134 141c-7 7-8 18-2 26l2 3 133 132c9 8 21 8 30 0z m689 3l3-3 133-132c7-7 8-17 3-25l-3-4-134-141c-8-8-21-9-30-1-7 7-8 19-2 27l2 3 120 126-118 118c-7 7-9 18-3 27l3 3c6 6 18 7 26 2z m-169-355c10 0 19-9 19-19v-4c0-11-9-19-19-19h-378c-10 0-18 8-18 19v4c0 10 8 19 18 19h378z m-96 111c10 0 19-8 19-19v-4c0-10-9-19-19-19h-282c-10 0-18 9-18 19v4c0 11 8 19 18 19h282z m96 111c10 0 19-9 19-19v-4c0-11-9-19-19-19h-378c-10 0-18 8-18 19v4c0 10 8 19 18 19h378z m-96 111c10 0 19-8 19-19v-4c0-10-9-19-19-19h-282c-10 0-18 9-18 19v4c0 11 8 19 18 19h282z m96 111c10 0 19-8 19-19v-4c0-10-9-18-19-18h-378c-10 0-18 8-18 18v4c0 11 8 19 18 19h378z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="video-playlist" unicode="" d="M407 473c5 2 12 3 18 0l3-1 292-188c5-4 9-10 9-17 0-6-2-12-6-16l-3-2-292-187c-3-2-8-4-11-4-4 0-7 1-10 3-6 3-9 8-11 14l0 4v375c0 8 4 15 11 19z m31-57v-299l232 149-232 150z m466 288c14 0 25-11 25-25v-17h-858v17c0 14 12 25 25 25h808z m-72 84c14 0 25-12 25-25v-17h-714v17c0 13 11 25 25 25h664z m147-876h-958c-12 0-21 10-21 21v667c0 12 9 21 21 21h958c12 0 21-9 21-21v-667c0-11-9-21-21-21z m-937 42h916v625h-916v-625z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="download-kit" unicode="" d="M887-101h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z m389-527l0 0c2 0 3 0 4 1l0 0 0 0c1 1 1 1 2 1 2 1 3 2 5 3l147 127c9 7 9 21 2 30-8 8-21 9-30 2l-112-97v270c0 12-9 22-21 22-12 0-22-9-22-22v-270l-112 97c-9 7-23 6-30-2-8-9-7-23 2-30l147-127c1-1 3-2 5-3 0 0 1-1 2-1l0 0 0 0c1 0 2 0 3-1l0 0c2 0 2 0 4 0l0 0c2 0 3 0 4 0z m166-63c0 11-9 21-22 21h-295c-11 0-21-9-21-21 0-12 9-22 21-22h296c12 0 21 10 21 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-details" unicode="" d="M887-101h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z m259-126c12 0 22-9 22-21v-85c0-12-10-21-22-21h-84c-12 0-21 9-21 21v85c0 11 9 21 21 21h84z m254-85c11 0 21-9 21-21s-9-21-21-21h-169c-12 0-21 9-21 21s9 21 21 21h169z m-275 43h-42v-42h42v42z m359 42c11 0 21-9 21-21 0-12-9-22-21-22h-254c-11 0-21 9-21 22 0 11 9 21 21 21h254z m-338-211c12 0 22-9 22-21v-85c0-12-10-21-22-21h-84c-12 0-21 9-21 21v85c0 11 9 21 21 21h84z m254-85c11 0 21-9 21-21 0-12-9-21-21-21h-169c-12 0-21 9-21 21 0 12 9 21 21 21h169z m-275 42h-42v-42h42v42z m359 43c11 0 21-9 21-21s-9-22-21-22h-254c-11 0-21 10-21 22s9 21 21 21h254z m-338-211c12 0 22-9 22-22v-84c0-12-10-21-22-21h-84c-12 0-21 9-21 21v84c0 12 9 22 21 22h84z m254-84c11 0 21-10 21-22s-9-21-21-21h-169c-12 0-21 9-21 21s9 22 21 22h169z m-275 42h-42v-42h42v42z m359 42c11 0 21-9 21-22 0-11-9-21-21-21h-254c-11 0-21 9-21 21 0 12 9 22 21 22h254z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-parts" unicode="" d="M887 788c59 0 108-47 112-105l0-8v-663c0-60-46-108-105-112l-7 0h-775c-59 0-108 46-112 105v7 663c0 60 46 109 105 112l7 1h775z m-555-225h-290v-551c0-37 28-67 64-70l6-1h220v622z m625-443h-583v-178h512c37 0 67 28 70 64l1 6 0 108z m0 443h-583v-400h582v400z m-87-293c11 0 21-9 21-20 0-11-8-19-18-21l-3 0h-410c-11 0-21 9-21 21 0 10 8 18 18 20l3 0h410z m0 111c11 0 21-9 21-21 0-10-8-18-18-20l-3 0h-410c-11 0-21 9-21 20 0 11 8 19 18 21l3 0h410z m0 111c11 0 21-9 21-21 0-11-8-19-18-21l-3 0h-410c-11 0-21 9-21 21 0 10 8 19 18 20l3 1h410z m17 253h-775c-37 0-67-28-70-64v-6-70h914v70l0 6-1 4 0 0 0 4 0 0-1 4-2 6-1 2-2 5-3 6-1 3-4 4-3 4-5 5-5 3-5 4-4 2-3 2-5 2-3 1-3 1c-4 0-7 1-12 2h-6z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-upload" unicode="" d="M887-101h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z m407-506v271l113-97c8-8 22-7 29 2 8 9 7 23-2 30l-147 126c-1 2-3 3-4 4-1 0-2 0-3 0l0 0 0 0c-1 1-2 1-3 1l0 0c-2 0-2 1-4 1l0 0c0 0-2 0-3 0l0 0c-1 0-2-1-4-2l0 0 0 0c-1 0-1 0-2 0-1-1-3-2-4-4l-149-126c-8-7-9-21-2-30 8-9 21-10 30-2l113 97v-271c0-11 9-21 21-21 12 0 21 9 21 21z m148-84c0 11-9 21-22 21h-295c-11 0-21-9-21-21 0-12 9-22 21-22h296c12 0 21 10 21 22z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-plugins" unicode="" d="M730 262h-127v161h127c12 0 21 9 21 21s-9 21-21 21h-127v124c0 2-1 4-3 4l-20-2c-117-10-210-108-221-228h-89c-12 0-21-9-21-21 0-12 9-22 21-22h90c10-120 103-218 221-227l19-2c2 0 4 2 4 4v124h126c12 0 22 9 22 21-1 13-10 22-22 22z m-169-123c-91 19-160 104-160 204s69 184 160 203v-407z m326-240h-775c-62 0-112 51-112 113v663c0 62 50 113 112 113h774c62 0 112-51 112-113v-663c1-62-50-113-111-113z m-775 846c-38 0-70-31-70-70v-663c0-39 32-70 70-70h774c39 0 70 32 70 70v663c0 39-31 70-70 70h-774z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="kit-upload-alt" unicode="" d="M887 788h-775c-62 0-112-51-112-113v-663c0-62 50-112 112-112h774c62 0 112 50 112 112v663c1 62-50 113-111 113z m70-776c0-39-32-70-70-70h-775c-39 0-70 31-70 70v663c0 39 32 70 70 70h774c39 0 70-31 70-70v-663z m-122 345l-2 3-65 100c-2 5-6 9-11 12l-96 37c-11 4-23-1-27-12-4-10 1-23 11-27l47-19-200-73-201 74 46 18c11 4 16 16 12 28s-16 15-27 11l-96-37c-6-2-9-7-11-12l-65-100-2-3-1-5v-2c0-3 0-6 1-8l1-5 6-7 56-20v-148c0-9 6-18 14-21l258-93c0-1 1-1 2-1l0 0 0 0c2-1 3-1 5-1 0 0 1 0 1 0s1 0 2 0c1 0 3 0 5 1l0 0 0 0c0 0 1 0 2 1l257 93c8 3 14 12 14 21v148l56 20 6 7 2 5c1 2 1 5 1 8v2l-1 5z m-635 2l42 66 218-80-42-65-218 79z m270-262l-216 79v119l166-60c2-1 4-2 7-2 7 0 13 4 18 10l25 39v-185h0z m259 79l-215-78v185l25-39c4-6 11-10 19-10 2 0 5 1 7 1l165 61v-120h-1z m-164 104l-42 65 218 79 42-65-218-79z m-171 296c-7 9-6 22 2 30l84 72c0 0 0 0 0 0 1 0 1 0 1 1 1 0 1 0 2 1 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 1 0s1 1 1 1c1 0 1 0 1 0 1 0 1 0 2 1 0 0 1 0 1 0 1 0 1 0 2 0s0 0 0 0 1 0 1 0 1 0 1 0 1 0 2 0c0 0 1 0 1-1 1 0 1 0 2 0 0 0 0-1 1-1s1 0 1 0c1 0 1-1 1-1 0 0 1 0 1 0 1-1 1-1 1-1 1-1 1-1 1-1 0 0 1 0 1 0l83-72c9-8 10-21 3-30-5-5-10-7-16-7-5 0-10 1-14 5l-48 41v-144c0-11-9-21-21-21-11 0-21 9-21 21v144l-49-42c-4-3-9-5-14-5-6 0-12 2-16 8z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="hotspot" unicode="" d="M104 641c11 0 19-8 21-17l0-4c0-12-9-21-21-21h-62v-616l217 237c6 7 16 9 24 5l3-2 138-96 193 236c7 9 21 10 29 2l3-3 309-387v624h-354c-12 0-21 9-21 21 0 10 7 19 17 20l4 1 375 0c10 0 19-8 20-17l1-4v-708c0-11-8-19-17-21l-4 0h-958c-11 0-19 7-21 17l0 4v708c0 10 8 19 17 20l4 1 83 0z m529-325l-189-230c-6-7-16-9-24-6l-4 3-138 96-226-246h888l-307 383z m-279 493c104 0 188-84 188-187s-84-188-188-188-187 84-187 188 83 187 187 187z m0-41c-80 0-146-66-146-146s66-146 146-146 146 65 146 146-65 146-146 146z m0-42c11 0 19-8 21-17l0-4v-62h63c11 0 20-10 20-21 0-11-7-19-17-21l-3 0h-63v-63c0-11-9-20-21-20-10 0-19 7-20 17l-1 3v63h-62c-12 0-21 9-21 21 0 10 8 18 17 20l4 1h62v62c0 11 10 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="paypal-button" unicode="" d="M535 428l291-250c7-5 9-15 6-23-3-8-11-13-19-13h-88l74-122c3-5 4-11 2-16-1-6-5-10-9-13l-94-55c-3-1-6-3-10-3-2 0-4 1-6 1-5 2-10 6-12 11l-71 141-63-63c-6-6-15-8-22-5-8 4-13 11-13 20v375c0 8 4 15 12 18 7 4 15 3 22-3z m7-61v-279l48 47c3 4 9 7 14 7 1 0 2 0 4-1 6-1 12-5 15-11l73-147 56 33-82 136c-4 6-5 14-1 21 4 7 11 11 19 11h68l-214 183z m354 400c57 0 104-47 104-104v-250c0-58-47-105-104-105h-167c-11 0-21 10-21 21s10 21 21 21h167c32 0 59 25 62 57l0 6v250c0 32-24 59-56 62l-6 0h-792c-32 0-59-25-62-57l0-5v-250c0-33 24-60 56-63l6 0h334c11 0 20-9 20-21s-9-21-20-21h-334c-57 0-104 47-104 105v250c0 57 47 104 104 104h792z m-358-185c5 0 7-3 5-7l-1-2-103-148c-1-2-4-3-6-4l-3 0h-30c-3 0-5 3-4 6l1 2 33 46-34 98c-1 4 0 7 4 9l2 0h27c4 0 6-1 8-4l1-2 19-62 43 62c2 4 4 5 7 6l3 1h28z m-238 4c15 0 28-4 33-13l2-4c2-2 3-3 3-1l1 2 1 6c0 3 2 4 3 5l2 0h29c3 0 4-1 4-5l0-3-16-102c-1-6-3-8-6-8l-2 0h-27c-3 0-4 1-4 3l0 2 0 8c1 2-1 2-3 0l-2-1c-10-10-20-16-40-16-30 0-51 24-49 55 3 40 30 71 71 72z m460 0c15 0 27-4 33-13l2-4c1-2 3-3 3-1l0 2 2 6c0 3 1 4 3 5l1 0h29c3 0 5-1 5-5l0-3-17-101c-1-6-3-8-6-9l-2 0h-27c-3 0-4 2-4 4l0 2 1 8c0 2-2 2-4 0l-1-1c-11-10-20-16-41-16-29 0-51 24-49 55 3 39 31 70 72 71z m146 55c2 0 4-1 4-3l0-1-27-170c0-2-1-3-3-4l-2 0h-30c-2 0-4 1-4 3l0 1 27 170c0 3 2 4 5 4h30z m-717 1c27 0 52-15 49-52-5-43-28-67-65-67h-31c-5 0-7-4-8-11l-6-39c-1-6-5-9-9-9h-29c-5 0-7 3-6 10l24 157c2 8 5 11 10 11h71z m460 0c27 0 51-15 48-52-4-43-27-67-64-67h-32c-5 0-7-4-8-11l-6-39c-1-6-4-9-9-9h-29c-5 0-6 3-6 10l25 158c1 8 4 11 10 11h71z m-344-88c-17 0-34-14-36-31-3-18 9-32 27-32 17 0 34 14 37 32 2 17-10 31-28 31z m460 0c-17 0-34-14-37-31-2-18 10-32 27-32 18 0 35 14 37 32 3 17-9 31-27 31z m-594 53l-23 0-8-50h25l4 1c13 2 21 12 22 29 1 12-7 20-20 20z m460 0l-23 0-8-50h24c15 1 26 11 26 30 1 12-7 20-19 20z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="shape" unicode="" d="M740 317c115 0 208-94 208-209s-93-208-208-208-209 93-209 208 94 209 209 209z m-461-7l174-127c12-8 17-23 12-36l-66-222c-4-14-17-23-32-23h-215c-14 0-27 9-32 23l-67 222c-4 13 1 28 12 36l175 127c12 9 28 9 39 0z m461-35c-92 0-167-75-167-167s75-166 167-166 166 74 166 166-74 167-166 167z m-480-2l-165-120 63-210h203l63 210-164 120z m155 502c18 0 33-14 33-32l0-1v-309c0-18-14-33-33-33l0 0h-309c-18 0-33 14-33 33l0 0v309c0 18 14 33 32 33l1 0h309z m353 7l0-1 174-332c12-22-4-48-28-49l-1 0h-348c-25 0-41 26-30 48l0 1 174 332c12 23 45 24 58 2l1-1z m-362-49h-291v-291h291v291z m333 15l-161-306h321l-160 306z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wordart" unicode="" d="M208 303l9-5 588-337c41-24 66-21 79-14 13 7 20 22 19 39-1 12 8 22 20 23 12 1 22-8 23-20 2-30-11-63-41-79-31-17-73-13-121 14l-588 337c-41 24-66 21-79 14-13-7-20-22-19-39 1-12-8-22-20-23-12-1-22 8-23 20-2 30 11 63 41 80 27 14 63 13 104-6l8-4z m655 493l41-23c11-7 16-19 14-32l-107-605c-3-12-4-22-5-31 0-8 1-14 3-19 1-1 1-3 3-5 4-6 11-13 22-20 8-6 11-17 6-26-5-9-17-12-26-7l-201 116c-9 6-12 17-7 26 5 10 17 13 26 8l21-13c8-5 15-6 20-5 5 2 10 5 13 11 4 6 6 12 7 19l33 180c1 4-1 8-4 10l-182 105c-4 2-7 2-10-1l-142-121c-7-7-11-12-13-15-3-5-4-10-2-13 1-5 5-10 14-15l19-12c9-5 12-17 7-26-5-9-17-12-26-7l-133 77c-9 6-12 17-7 26 5 10 17 12 26 8 10-5 17-8 24-9l3 0 0 0c7-1 13 0 18 2l5 2c8 4 17 10 29 19l7 6 469 388c10 8 24 9 35 2z m-19-48l-15-13c-1 0-1 0 0-1 5-3 8-9 6-14l-66-370-1 0-31-172c-2-10-7-20-12-30-2-4-5-8-9-12l44-26c1 11 3 23 5 35l105 588c0 3-2 7-5 9l-12 7c-2 2-6 1-9-1z m-57-46l-207-177c-5-4-4-11 1-14l144-83c6-3 13 0 13 6l49 268z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="checkout" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1-14-1 0 0c-12 0-21 9-22 20 0 12 8 22 20 22l9 0 6 1c5 1 9 2 14 4 19 8 31 23 31 38v580c0 23-25 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-129-125c33 0 59-24 62-56l1-6v-250c0-33-25-59-57-62l-6-1h-458c-33 0-59 25-62 57l-1 6v250c0 32 25 59 57 62l6 0h458z m21-166h-500v-146c0-11 8-19 17-21l4 0h458c11 0 19 8 21 17l0 4v146z m-354-84c12 0 21-9 21-20 0-11-8-19-17-21l-4 0h-83c-12 0-21 9-21 21 0 10 7 18 17 20l4 0h83z m333 209h-458c-11 0-19-8-21-17l0-4v-63h500v63c0 12-9 21-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="container" unicode="" d="M917 663c23 0 41-19 41-42v-542c0-23-18-41-41-41h-834c-23 0-41 18-41 41v542c0 23 18 42 41 42h834z m0-42h-834v-542h834v542z m-750-417v-41h83v-42h-125v83h42z m291-41v-42h-125v42h125z m209 0v-42h-125v42h125z m208 41v-83h-125v42h83v41h42z m0 209v-125h-42v125h42z m-708 0v-125h-42v125h42z m708 166v-83h-42v42h-83v41h125z m-625 0v-41h-83v-42h-42v83h125z m208 0v-41h-125v41h125z m209 0v-41h-125v41h125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="flip" unicode="" d="M513 404c-17-21-46-21-63 0l-292 329c-25 30-8 75 30 75h579c37 0 58-45 33-75l-287-329z m258-512h-583c-17 0-30 8-38 25s-4 33 8 45l292 334c17 17 46 17 63 0l291-334c13-12 13-29 9-45-13-17-25-25-42-25z m-492 83h400l-200 229-200-229z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="info" unicode="" d="M500-108c-254 0-458 204-458 458s204 458 458 458 458-204 458-458-204-458-458-458z m0 833c-208 0-375-167-375-375s167-375 375-375 375 167 375 375-167 375-375 375z m125-583c0 25-17 41-42 41h-41v292c0 25-17 42-42 42h-83c-25 0-42-17-42-42s17-42 42-42h41v-250h-41c-25 0-42-16-42-41s17-42 42-42h166c25 0 42 17 42 42z m-125 500c25 0 42-17 42-42s-17-42-42-42-42 17-42 42 17 42 42 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="my-account" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180 0 0c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1 0 0-11-1c-2 0-2 0-4 0-11 0-21 9-21 20-1 12 8 22 20 22l9 0 0 0 5 1 0 0c5 1 10 2 14 4 20 8 32 23 32 38v580c0 23-26 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-504-166c58 0 104-47 104-104 0-31-13-58-34-78 44-19 79-56 96-103 3-11-2-23-13-27-11-4-23 2-27 13-18 54-68 90-126 90-57 0-107-36-126-90-4-10-15-16-27-13-11 4-16 16-13 27 17 47 52 84 96 104-21 19-34 46-34 77 0 57 47 104 104 104z m438-209c11 0 21-9 21-20 0-11-8-19-18-21l-3 0h-209c-11 0-20 9-20 21 0 10 7 18 17 20l3 0h209z m0 84c11 0 21-9 21-21 0-11-8-19-18-21l-3 0h-209c-11 0-20 9-20 21 0 10 7 19 17 20l3 1h209z m-438 83c-34 0-62-28-62-62 0-33 24-60 56-63l6 0 1 0c34 0 62 28 62 63 0 34-28 62-63 62z m438 0c11 0 21-9 21-21 0-10-8-19-18-20l-3-1h-209c-11 0-20 10-20 21 0 11 7 19 17 21l3 0h209z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="purchase-summary" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180 0 0c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1 0 0-11-1c-2 0-2 0-4 0-11 0-21 9-21 20-1 12 8 22 20 22l9 0 0 0 5 1 0 0c5 1 10 2 14 4 20 8 32 23 32 38v580c0 23-26 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-358-125c104 0 188-83 188-187 0-104-84-188-188-188-104 0-187 84-187 188 0 104 83 187 187 187z m0-41c-80 0-146-66-146-146 0-81 66-146 146-146 80 0 146 65 146 146 0 80-66 146-146 146z m103-63c7-7 8-18 2-26l-2-3-133-133-73 74c-8 8-8 21 0 29 7 8 18 8 27 3l3-3 44-44 102 103c9 9 22 9 30 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="page-transition" unicode="" d="M854 808c56 0 101-45 104-101l0-7v-700c0-57-43-104-97-108l-7 0h-708c-56 0-101 45-104 101l0 7v700c0 57 43 104 97 108l7 0h708z m63-208h-834v-600c0-35 25-63 57-66l6-1h708c33 0 59 27 62 61l1 6v600z m-584-458v-84c0-23-18-41-41-41h-167v41h167v84h41z m125 0v-84h417v-41h-417c-23 0-41 18-41 41v84h41z m12 193c7 8 18 8 26 3l3-3 59-58c7-7 8-19 2-27l-2-3-59-59c-8-8-21-8-29 0-7 7-8 19-3 27l3 3 44 44-44 44c-7 7-8 19-3 27l3 2z m-96 0l59-58c8-9 8-22 0-30l-59-59c-9-8-21-8-30 0-8 9-8 22 0 30l44 44-44 44c-8 9-8 22 0 30 9 7 22 7 30-1z m-125 0l59-58c8-9 8-22 0-30l-59-59c-9-8-21-8-30 0-8 9-8 22 0 30l44 44-44 44c-8 9-8 22 0 30 9 7 22 7 30-1z m43 182c23 0 41-19 41-42v-83h-41v83h-167v42h167z m583 0v-42h-417v-83h-41v83c0 23 18 42 41 42h417z m-21 250h-708c-33 0-59-27-62-61l-1-6v-58h834v58c0 35-25 63-57 66l-6 1z m-708-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="spotify" unicode="" d="M813 225c103 0 187-84 187-187s-84-188-187-188-188 84-188 188 84 187 188 187z m-313 583c254 0 458-204 458-458 0-43-5-84-16-123-12 8-25 15-38 21 8 32 13 67 13 102 0 229-188 416-417 416s-417-187-417-416 188-417 417-417c35 0 70 5 102 13 6-13 13-26 21-38-39-11-80-16-123-16-255 0-459 204-459 458s205 458 459 458z m313-625c-81 0-146-65-146-145s65-146 146-146 145 65 145 146-65 145-145 145z m-15-55l4-3 85-53c26-16 26-52 0-68l-85-54c-27-17-62 2-62 34v107c0 30 31 49 58 37z m-18-37v-107l85 54-85 53z m-526 147c156 37 293 24 406-29-15-14-28-29-39-45-98 43-216 48-354 19-17-4-29 5-34 21s5 29 21 34z m487 91l13-8c17-8 21-33 13-50-3-5-7-8-11-11-6-2-12-4-18-6-8 0-15 1-21 4-125 75-313 96-459 55-20-5-37 4-45 25-5 20 4 37 25 45 161 49 362 27 503-54l0 0z m-528 209c162 50 433 37 604-63 21-12 29-37 16-58-16-21-41-25-62-17-146 92-392 96-533 54-21-4-46 9-55 29-4 25 9 46 30 55z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="stripe-button" unicode="" d="M468 345l292-250c6-6 9-15 5-23-2-8-10-14-19-14h-88l74-122c3-4 4-10 3-16-2-5-5-10-10-13l-93-54c-4-2-7-3-11-3-2 0-4 0-6 1-5 1-10 5-12 11l-70 141-63-63c-6-6-15-8-23-5-8 3-13 11-13 19v375c0 9 5 16 12 19 7 4 16 2 22-3z m7-61v-280l48 48c4 4 9 6 15 6 1 0 2 0 3 0 7-1 12-5 15-11l74-147 55 32-82 136c-4 7-4 15 0 22 3 6 10 10 18 10h69l-215 184z m421 399c57 0 104-46 104-104v-250c0-57-47-104-104-104h-233c-12 0-21 9-21 21s9 21 21 21h233c32 0 59 24 62 56l0 6v250c0 33-24 59-56 62l-6 1h-792c-32 0-59-25-62-57l0-6v-250c0-32 24-59 56-62l6 0h267c12 0 21-9 21-21s-9-21-21-21h-267c-57 0-104 47-104 104v250c0 58 47 104 104 104h792z m-261-130c35 0 68-31 69-89 0-64-33-93-69-93-13 0-22 4-30 9l-6 4 0-57-50-10v233h44l2-12c8 6 20 15 40 15z m-310 40l0-43h38v-42h-39v-72c0-22 19-22 31-20l4 2 0 0 4 1v-41c-7-4-19-7-36-7-28 0-49 19-52 46l0 6 0 160 50 10z m-120-40c17 0 34-2 50-9v-47c-15 8-34 13-50 13-10 0-17-3-17-11 0-6 5-9 13-12l8-3 0 0 13-5 0 0 9-3c18-8 34-21 34-48 0-36-28-57-70-57-18 0-37 4-55 12v47c17-9 38-16 55-16 11 0 19 3 19 12 0 8-7 12-18 16l-17 6 0 0-9 4c-17 8-32 20-32 45 0 35 27 56 67 56z m585 0c45 0 70-36 73-85l0-9 0 0-1-16h-98c2-23 19-30 39-30 17 0 31 3 43 8l6 3v-40c-14-7-32-13-56-13-49 0-83 31-83 91 0 51 29 91 77 91z m-260-3v-175h-50v175h50z m-63 0v-46c-6 2-26 5-38-11v-118h-50v175h43l3-15c12 22 36 18 42 15z m156-41c-10 0-17-3-22-8l-2-2 0-74c5-5 12-10 24-10 18 0 30 20 30 47 1 26-12 47-30 47z m167 4c-12 0-25-8-27-27l0-5h52c0 22-13 32-25 32z m-260 104v-41l-50-11v41l50 11z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woo-settings" unicode="" d="M771 496h-542c-21 0-41-8-58-25s-25-38-25-63v-216c0-46 37-88 83-88h250l113-66c4 0 8-5 12-5s9 0 13 5c8 4 8 16 4 25l-17 41h163c46 0 83 38 83 88v216c4 50-33 88-79 88z m42-304c0-25-17-46-42-46h-196c-8 0-12-4-17-8s-4-13-4-21l4-13-66 38c-4 0-9 4-13 4h-250c-21 0-41 21-41 46v216c0 13 4 25 12 34s17 12 29 12h542c21 0 42-21 42-46v-216z m-363 108c-8-46-8-83-8-108 0-9 0-13-4-21s-9-8-13-8c-8 0-12 4-21 12-25 25-46 67-58 121-17-38-29-63-38-83-16-34-29-50-41-50-9 0-13 4-21 20-13 38-29 109-46 217 0 8 0 13 4 21 4 4 9 8 17 8 12 0 21-4 25-21 8-58 17-108 29-150l58 113c5 12 13 17 21 17 13 0 21-9 21-25 8-38 17-71 25-96 8 71 21 125 38 158 4 8 8 13 16 13 4 0 13 0 17-5s8-8 8-16c0-4 0-9-4-13-8-25-17-58-25-104z m292 104c-4 0-9 0-17 0-25 0-46-12-62-41-13-25-21-50-21-80 0-20 4-41 12-58s25-29 42-33c4 0 8 0 17 0 25 0 45 12 62 41 13 25 21 50 21 80 0 20-4 41-13 54-4 21-20 33-41 37z m12-112c-4-21-12-34-21-42s-16-12-20-8c-9 0-13 8-17 16s-4 17-4 25 0 13 0 21c4 13 8 25 12 34 9 12 17 20 29 16 9 0 13-8 17-16s4-17 4-25 0-13 0-21z m-179 112c-4 0-8 0-17 0-25 0-45-12-62-41-13-25-21-50-21-80 0-20 4-41 13-58s25-29 41-33c4 0 9 0 17 0 25 0 46 12 62 41 13 25 21 50 21 80 0 20-4 41-12 54-9 21-25 33-42 37z m8-112c-4-21-12-34-20-42s-17-12-21-8c-9 0-13 8-17 16s-4 17-4 25 0 13 0 21c4 13 8 25 12 34 9 12 17 20 30 16 8 0 12-8 16-16s4-17 4-25 0-13 0-21z m271 516h-708c-58 0-104-50-104-108v-700c0-58 46-108 104-108h708c59 0 104 50 104 108v700c0 58-45 108-104 108z m-708-41h708c34 0 63-29 63-67v-58h-834v58c0 38 30 67 63 67z m708-834h-708c-33 0-63 29-63 67v600h834v-600c0-38-29-67-63-67z m-729 771c0 13 8 21 21 21s21-8 21-21-9-21-21-21-21 9-21 21z m83 0c0 13 9 21 21 21s21-8 21-21-8-21-21-21-21 9-21 21z m84 0c0 13 8 21 21 21s20-8 20-21-8-21-20-21-21 9-21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woo-cart" unicode="" d="M601-75c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m104 0c16 0 29-13 29-29s-13-29-29-29-29 13-29 29 13 29 29 29z m-238 300c21 0 38-10 51-27 6-10 12-20 16-30h241c18 0 33-15 33-34 0-3 0-6-2-10l-51-164c-4-13-17-23-31-23h-139c-15 0-27 10-32 24l-54 180 0 0c-4 12-9 22-16 33-5 6-10 9-17 9-11 0-21 10-21 21s10 21 22 21z m296-99h-215l44-147h126l45 147z m95 682c55 0 100-37 100-85v-580c0-33-23-63-57-77-7-3-15-5-22-6l-6-1 0 0-11-1c-2 0-2 0-4 0-11 0-21 9-21 20-1 12 8 22 20 22l9 0 0 0 5 1 0 0c5 1 10 2 14 4 20 8 32 23 32 38v580c0 23-26 44-59 44h-716c-33 0-59-21-59-44v-580c0-23 26-43 59-43h306c12 0 21-10 21-21s-9-21-21-21h-306c-54 0-100 37-100 86v579c0 48 46 85 100 85h716z m-484-145l0 0h4 393c21 0 39-17 41-37l1-5v-208c0-4-1-7-2-10l0-115c0-22-16-40-36-42l-5 0h-145c-21 0-39 16-41 37l-1 5v83h-205l-4 0 0 0 0 0h-145c-21 0-39 16-41 37l0 5v208c0 21 16 39 36 41l5 1h145z m396-292h-145v-83h145l0 83z m1 125h-393v-83h393v83z m-439 0h-103v-83l103 0v83z m439 125h-393v-83l393 0v83z m-439 0l-103 0v-83h103v83z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="grow" unicode="" d="M42 850c23 0 41-19 41-42v-916c0-23-18-42-41-42s-42 19-42 42v916c0 23 19 42 42 42z m916 0c23 0 42-19 42-42v-916c0-23-19-42-42-42s-41 19-41 42v916c0 23 18 42 41 42z m-303-271c7 1 14-1 20-5l3-3 167-193c5-7 9-15 10-25 0-8-1-14-4-20l-2-5-4-5-164-190c-6-7-13-11-21-12-8 0-16 3-23 8-5 5-9 11-11 19l-1 6v113h-250l0-113c-2-10-5-19-12-25-7-5-15-8-23-8-7 1-15 5-21 12l-164 190-3 5c-5 7-7 15-6 25 1 10 4 18 9 24l168 194c6 6 13 9 22 8 8-1 15-5 22-12 5-7 8-15 8-25l0-109h250v109c0 8 2 15 5 21l3 4c7 7 14 11 22 12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="order-end" unicode="" d="M958 850c22 0 40-16 42-37l0-5v-916c0-22-16-40-37-42l-5 0-5 0c-19 2-34 18-37 37l0 5v916c0 22 16 40 37 42l5 0z m-375-250c9 1 17-1 24-6l4-3 209-211c8-7 11-16 13-27 0-8-1-15-5-22l-3-5-5-6-205-207c-7-8-17-12-27-13-10 0-19 3-28 9-6 6-11 13-13 21l-2 6 0 131-486 0c-33 0-59 26-59 58v50c0 32 26 58 59 58l486 0 0 127c0 9 3 17 7 23l3 4c8 7 18 12 28 13z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nowrap" unicode="" d="M42 850c23 0 42-19 42-42v-916c0-22-16-40-37-42l-5 0c-23 0-42 19-42 42v916c0 22 16 40 37 42l5 0z m708-250c9 1 17-1 24-6l4-3 210-211c7-7 11-16 12-27 1-8-1-15-4-22l-3-5-5-6-205-207c-8-8-17-12-27-13-10 0-20 3-28 9-7 6-11 13-14 21l-1 6 0 131h-488c-32 0-58 26-58 58v50c0 32 26 58 58 58h488l0 127c0 9 2 17 7 23l3 4c8 7 17 12 27 13z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="order-start" unicode="" d="M42 850c23 0 42-19 42-42v-916c0-22-16-40-37-42l-5 0c-23 0-42 19-42 42v916c0 22 16 40 37 42l5 0z m375-250c10-1 18-5 27-13 7-7 10-16 10-27l0-127 486 0c31 0 56-23 59-53l0-5v-50c0-30-23-55-53-58l-6 0-486 0 0-131c-2-11-7-20-15-27-9-6-18-9-28-9-10 0-19 5-27 13l-205 207-5 5c-6 8-8 18-7 28 1 10 5 20 12 27l209 210c8 8 18 11 29 10z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="progress-tracker" unicode="" d="M854 808c56 0 101-45 104-101l0-7v-700c0-57-43-104-97-108l-7 0h-708c-56 0-101 45-104 101l0 7v700c0 57 43 104 97 108l7 0h708z m63-208h-834v-600c0-35 25-63 57-66l6-1h708c33 0 59 27 62 61l1 6v600z m-83-42c21 0 39-15 41-36l0-5v-126c0-21-16-38-36-41l-5 0h-668c-21 0-38 16-41 36l0 5v126c0 21 16 39 36 41l5 0h668z m-1-41h-666v-125h666v125z m-187-42v-42h-438v42h438z m208 292h-708c-33 0-59-27-62-61l-1-6v-58h834v58c0 35-25 63-57 66l-6 1z m-708-42c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 9 21 21 21z m83 0c12 0 21-9 21-21s-9-21-21-21-21 10-21 21 10 21 21 21z m84 0c11 0 20-9 20-21s-9-21-20-21-21 10-21 21 9 21 21 21z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="shrink" unicode="" d="M500 850c23 0 42-19 42-42v-916c0-23-19-42-42-42s-42 19-42 42v916c0 23 19 42 42 42z m324-271c8-1 15-5 22-12 5-7 8-15 8-25l0-109h88c32 0 58-26 58-58v-50c0-32-26-58-58-58h-88l0-113c-1-10-5-19-12-25-7-5-14-8-22-8-8 1-15 5-22 12l-163 190-4 5c-5 7-7 15-6 25 1 10 4 18 10 24l167 194c6 6 13 9 22 8z m-648 0c7 1 14-1 19-5l4-3 167-193c5-7 9-15 9-25 1-8 0-14-3-20l-2-5-4-5-164-190c-6-7-13-11-22-12-7 0-15 3-22 8-5 5-9 11-11 19l-1 6 0 113h-88c-32 0-58 26-58 58v50c0 32 26 58 58 58h88l0 109c0 8 2 15 5 21l3 4c6 7 14 11 22 12z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="wrap" unicode="" d="M42 850c23 0 41-19 41-42v-916c0-23-18-42-41-42s-42 19-42 42v916c0 23 19 42 42 42z m637-167c208 0 321-114 321-291 0-174-109-287-309-292l-13 0h-226l0-126c0-9-2-17-7-24l-3-3c-8-8-17-13-27-14-9-1-17 2-24 6l-4 3-209 211c-7 7-10 16-12 27-1 8 1 16 4 23l4 5 4 5 204 207c8 8 17 13 27 13 10 0 19-3 28-9 6-5 11-12 13-20l2-6 0-131h226c116 0 155 39 155 125 0 82-37 122-144 125l-11 0h-511v166h512z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-center-h" unicode="" d="M500 850c21 0 39-16 41-37l1-5v-250l316 0c32 0 59-26 59-58v-50c0-32-27-58-59-58h-316v-84h191c32 0 59-26 59-58v-50c0-32-27-58-59-58h-191v-250c0-22-17-40-37-42l-5 0c-21 0-39 16-41 37l-1 5v250h-191c-32 0-59 26-59 58v50c0 32 27 58 59 58h191v84h-316c-32 0-59 26-59 58v50c0 32 27 58 59 58l316 0v250c0 22 17 40 37 42l5 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-center-v" unicode="" d="M400 767c32 0 58-27 58-59l0-316h84l0 191c0 32 26 59 58 59h50c32 0 58-27 58-59l0-191 250 0c22 0 40-17 42-37l0-5c0-21-16-39-37-41l-5-1-250 0 0-191c0-32-26-59-58-59h-50c-32 0-58 27-58 59l0 191h-84l0-316c0-32-26-59-58-59h-50c-32 0-58 27-58 59l0 316-250 0c-22 0-39 17-42 37l0 5c0 21 16 39 37 41l5 1 250 0 0 316c0 32 26 59 58 59h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-end-h" unicode="" d="M875 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m-183-542c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-300c-31 0-56 23-58 53l-1 5v50c0 30 24 55 53 58l6 0h300z m0 250c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-550c-31 0-56 23-58 53l-1 5v50c0 30 24 55 53 58l6 0h550z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-end-v" unicode="" d="M958 17c23 0 42-19 42-42s-19-42-42-42h-916c-23 0-42 19-42 42s19 42 42 42h916z m-558 750c32 0 58-27 58-59v-550c0-32-26-58-58-58h-50c-32 0-58 26-58 58v550c0 32 26 59 58 59h50z m250-250c32 0 58-27 58-59v-300c0-32-26-58-58-58h-50c-32 0-58 26-58 58v300c0 32 26 59 58 59h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-start-h" unicode="" d="M250 450v50c0 32 26 58 58 58h550c32 0 59-26 59-58v-50c0-32-27-58-59-58h-550c-32 0-58 26-58 58z m0-250v50c0 32 26 58 58 58h300c32 0 59-26 59-58v-50c0-32-27-58-59-58h-300c-32 0-58 26-58 58z m-125 650l0 0c23 0 42-19 42-42v-916c0-23-19-42-42-42l0 0c-23 0-42 19-42 42v916c0 23 19 42 42 42z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-start-v" unicode="" d="M400 600c32 0 58-26 58-58l0 0v-550c0-32-26-59-58-59l0 0h-50c-32 0-58 27-58 59l0 0v550c0 32 26 58 58 58l0 0h50z m250 0c32 0 58-26 58-58l0 0v-300c0-32-26-59-58-59l0 0h-50c-32 0-58 27-58 59l0 0v300c0 32 26 58 58 58l0 0h50z m308 167c23 0 42-19 42-42 0-23-19-42-42-42l0 0h-916c-23 0-42 19-42 42s19 42 42 42l0 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-stretch-h" unicode="" d="M42 850c23 0 41-19 41-42v-916c0-23-18-42-41-42s-42 19-42 42v916c0 23 19 42 42 42z m916 0c23 0 42-19 42-42v-916c0-23-19-42-42-42s-41 19-41 42v916c0 23 18 42 41 42z m-183-542c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-550c-30 0-55 23-58 53l0 5v50c0 30 23 55 53 58l5 0h550z m0 250c30 0 55-23 58-53l0-5v-50c0-30-23-55-53-58l-5 0h-550c-30 0-55 23-58 53l0 5v50c0 30 23 55 53 58l5 0h550z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="align-stretch-v" unicode="" d="M958-67c23 0 42-18 42-41s-19-42-42-42h-916c-23 0-42 19-42 42s19 41 42 41h916z m-558 750c30 0 55-23 58-53l0-5v-550c0-30-23-55-53-58l-5 0h-50c-30 0-55 23-58 53l0 5v550c0 30 23 55 53 58l5 0h50z m250 0c30 0 55-23 58-53l0-5v-550c0-30-23-55-53-58l-5 0h-50c-30 0-55 23-58 53l0 5v550c0 30 23 55 53 58l5 0h50z m308 167c23 0 42-19 42-42s-19-41-42-41h-916c-23 0-42 18-42 41s19 42 42 42h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-center-h" unicode="" d="M500 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m238-167c30 0 54-24 54-54v-558c0-30-24-54-54-54h-59c-30 0-54 24-54 54v558c0 30 24 54 54 54h59z m-417 0c30 0 54-24 54-54v-558c0-30-24-54-54-54h-58c-30 0-55 24-55 54v558c0 30 25 54 55 54h58z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-center-v" unicode="" d="M779 225c30 0 54-24 54-54v-58c0-30-24-55-54-55h-558c-30 0-54 25-54 55v58c0 30 24 54 54 54h558z m179 167c23 0 42-19 42-42 0-21-16-39-37-41l-5-1h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 1h916z m-179 250c30 0 54-24 54-54v-59c0-30-24-54-54-54h-558c-30 0-54 24-54 54v59c0 30 24 54 54 54h558z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-end-h" unicode="" d="M750 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m-179-167c30 0 54-24 54-54v-558c0-30-24-54-54-54h-58c-30 0-55 24-55 54v558c0 30 25 54 55 54h58z m-250 0c30 0 54-24 54-54v-558c0-30-24-54-54-54h-58c-30 0-55 24-55 54v558c0 30 25 54 55 54h58z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-end-v" unicode="" d="M958 142c23 0 42-19 42-42 0-21-16-39-37-41l-5-1h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 1h916z m-179 250c30 0 54-24 54-54v-59c0-30-24-54-54-54h-558c-30 0-54 24-54 54v59c0 30 24 54 54 54h558z m0 250c30 0 54-24 54-54v-59c0-30-24-54-54-54h-558c-30 0-54 24-54 54v59c0 30 24 54 54 54h558z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-around-h" unicode="" d="M958 850c22 0 40-16 42-37l0-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l0 5v916c0 23 18 42 41 42z m-916 0c21 0 39-16 41-37l0-5v-916c0-23-18-42-41-42-22 0-39 16-42 37l0 5v916c0 23 19 42 42 42z m608-167c32 0 58-26 58-58v-550c0-32-26-58-58-58h-50c-32 0-58 26-58 58v550c0 32 26 58 58 58h50z m-250 0c32 0 58-26 58-58v-550c0-32-26-58-58-58h-50c-32 0-58 26-58 58v550c0 32 26 58 58 58h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-around-v" unicode="" d="M958-67c23 0 42-18 42-41 0-22-16-40-37-42l-5 0h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 0h916z m-183 375c32 0 58-26 58-58v-50c0-32-26-58-58-58h-550c-32 0-58 26-58 58v50c0 32 26 58 58 58h550z m0 250c32 0 58-26 58-58v-50c0-32-26-58-58-58h-550c-32 0-58 26-58 58v50c0 32 26 58 58 58h550z m183 292c23 0 42-19 42-42 0-21-16-39-37-41l-5 0h-916c-23 0-42 18-42 41 0 22 16 40 37 42l5 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-between-h" unicode="" d="M42 850c21 0 39-16 41-37l0-5v-916c0-23-18-42-41-42-22 0-39 16-42 37l0 5v916c0 23 19 42 42 42z m916 0c22 0 40-16 42-37l0-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l0 5v916c0 23 18 42 41 42z m-683-167c32 0 58-26 58-58v-550c0-32-26-58-58-58h-108v666h108z m558 0v-666h-108c-32 0-58 26-58 58v550c0 32 26 58 58 58h108z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-between-v" unicode="" d="M958-67c23 0 42-18 42-41 0-22-16-40-37-42l-5 0h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 0h916z m-183 250c32 0 58-26 58-58v-108h-666v108c0 32 26 58 58 58h550z m58 500v-108c0-32-26-58-58-58h-550c-32 0-58 26-58 58v108h666z m125 167c23 0 42-19 42-42 0-21-16-39-37-41l-5 0h-916c-23 0-42 18-42 41 0 22 16 40 37 42l5 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-evenly-h" unicode="" d="M958 850c22 0 40-16 42-37l0-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l0 5v916c0 23 18 42 41 42z m-916 0c21 0 39-16 41-37l0-5v-916c0-23-18-42-41-42-22 0-39 16-42 37l0 5v916c0 23 19 42 42 42z m650-167c32 0 58-26 58-58v-550c0-32-26-58-58-58h-50c-32 0-59 26-59 58v550c0 32 27 58 59 58h50z m-334 0c32 0 59-26 59-58v-550c0-32-27-58-59-58h-50c-32 0-58 26-58 58v550c0 32 26 58 58 58h50z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-space-evenly-v" unicode="" d="M958-67c23 0 42-18 42-41 0-22-16-40-37-42l-5 0h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 0h916z m-183 334c32 0 58-27 58-59v-50c0-32-26-58-58-58h-550c-32 0-58 26-58 58v50c0 32 26 59 58 59h550z m0 333c32 0 58-26 58-58v-50c0-32-26-59-58-59h-550c-32 0-58 27-58 59v50c0 32 26 58 58 58h550z m183 250c23 0 42-19 42-42 0-21-16-39-37-41l-5 0h-916c-23 0-42 18-42 41 0 22 16 40 37 42l5 0h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-start-h" unicode="" d="M250 850c21 0 39-16 41-37l1-5v-916c0-23-19-42-42-42-21 0-39 16-41 37l-1 5v916c0 23 19 42 42 42z m238-167c30 0 54-24 54-54v-558c0-30-24-54-54-54h-59c-30 0-54 24-54 54v558c0 30 24 54 54 54h59z m250 0c30 0 54-24 54-54v-558c0-30-24-54-54-54h-59c-30 0-54 24-54 54v558c0 30 24 54 54 54h59z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="justify-start-v" unicode="" d="M779 225c30 0 54-24 54-54v-58c0-30-24-55-54-55h-558c-30 0-54 25-54 55v58c0 30 24 54 54 54h558z m0 250c30 0 54-24 54-54v-58c0-30-24-55-54-55h-558c-30 0-54 25-54 55v58c0 30 24 54 54 54h558z m179 167c23 0 42-19 42-42 0-21-16-39-37-41l-5-1h-916c-23 0-42 19-42 42 0 21 16 39 37 41l5 1h916z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woocommerce-cross-sells" unicode="" d="M697-79c16 0 29-13 29-29s-13-30-29-30-29 13-29 30 13 29 29 29z m104 0c17 0 29-13 29-29s-12-30-29-30-29 13-29 30 13 29 29 29z m-289 862l4-3 122-115c19-17 5-41-15-44l-4-1h-106v-235c54 45 125 65 208 68v86c0 21 23 36 41 22l3-3 115-118c10-10 11-25 3-36l-3-3-115-118c-17-18-40-5-43 15l-1 4v110c-90-3-161-29-208-85v-394c0-11-9-21-21-21-10 0-19 8-20 18l-1 3v392l-4 5c-47 53-117 79-204 82v-109c0-21-23-37-41-23l-3 3-115 118c-9 10-11 25-3 36l3 3 115 119c17 17 41 4 44-16l0-4v-85c84-3 155-25 208-70v237h-97c-21 0-37 23-23 41l3 3 123 115c8 8 21 10 31 5l4-2z m51-562c21 0 39-10 51-28 6-9 12-19 16-30h241c18 0 33-15 33-33 0-3 0-7-1-10l-51-164c-4-14-17-23-32-23h-139c-14 0-27 9-32 24l-54 180 0 0c-3 11-9 22-16 33-4 5-8 8-13 9l-3 0c-12 0-21 9-21 21s9 21 21 21z m297-99h-216l44-147h126l46 147z m-639 379l-78-80 78-81v161z m542 0v-161l78 80-78 81z m-267 240l-83-78h167l-84 78z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="woocommerce-notices" unicode="" d="M718-79c16 0 29-13 29-29s-13-30-29-30-30 13-30 30 14 29 30 29z m104 0c16 0 29-13 29-29s-13-30-29-30-29 13-29 30 13 29 29 29z m-238 300c21 0 39-10 51-28 6-9 12-19 16-30h241c18 0 33-15 33-33 0-3 0-7-2-10l-50-164c-5-14-18-23-32-23h-139c-14 0-27 9-32 24l-54 180 0 0c-3 11-9 22-16 33-4 5-8 8-13 9l-4 0c-11 0-20 9-20 21s9 21 21 21z m296-99h-216l44-147h127l45 147z m-409 666c11 0 19-8 21-18l0-3 0-64c64-5 125-32 171-78 51-51 79-120 79-192 0-80 11-155 30-215 3-11-3-23-14-26-11-4-23 3-26 13-20 65-32 144-32 228 0 61-24 120-67 162-43 43-101 68-162 68-61 0-119-25-162-68s-67-101-67-162c0-130-24-232-65-306-9-17-18-31-27-43l-3-5h443c11 0 19-7 21-17l0-4c0-10-7-18-17-20l-4 0-25 0c0-4-1-8-3-11-9-16-23-29-38-38-16-9-34-14-52-14s-37 5-52 14c-16 9-30 22-38 38-2 3-3 7-3 11l-282 0c-21 0-29 26-12 38l2 1 4 4 3 2 0 0 7 7c14 15 27 33 40 57 38 68 60 162 60 287 0 71 29 141 79 191 46 46 107 74 171 79l0 63c-1 11 9 21 20 21z m47-750l-93 0c4-5 9-10 15-13 10-5 20-8 31-8s22 3 32 8c3 2 7 5 10 8l5 5z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="inner-container" unicode="" d="M729 538h-458c-23 0-42-19-42-42v-292c0-23 19-41 42-41h458c23 0 42 18 42 41v292c0 23-19 42-42 42z m-458-42h458v-292h-458v292z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="warning-full" unicode="" d="M500 767c11 0 23-3 33-9 7-5 14-10 20-18l3-6 393-659c25-42-3-96-51-100l-5 0h-786c-49 0-80 52-59 95l3 5 393 659c6 10 14 18 24 24 10 6 21 9 32 9z m0-566c-15 0-30-6-40-16-11-11-17-25-17-40s6-30 17-40c10-11 25-17 40-17s30 6 40 17c11 10 17 25 17 40s-6 29-17 40c-10 10-25 16-40 16z m0 339c-7 0-15-1-21-4-6-3-12-7-17-13-5-5-9-11-11-18-2-7-3-14-3-21l20-199c1-7 5-15 10-20 6-5 14-8 22-8s15 3 21 8c6 5 9 13 10 20l20 199c1 7 0 14-3 21-2 7-5 13-10 18-5 6-11 10-18 13-6 3-13 4-20 4z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="exit" unicode="" d="M500 808c69 0 125-55 125-125v-187c0-12-9-21-21-21s-21 9-21 21v187c0 44-34 80-77 83l-6 1h-333c-44 0-80-34-83-77l-1-7v-666c0-44 35-80 77-83l7-1h333c44 0 80 34 83 77l0 7v187c0 12 10 21 21 21s21-9 21-21v-187c0-70-56-125-125-125h-333c-69 0-125 55-125 125v666c0 70 56 125 125 125h333z m326-296l2-2 125-146 2-2 1-2 2-3 0-3 1-4-1-4-1-4-1-2-1-2-2-2-125-146c-7-8-20-9-29-2-8 7-10 18-5 27l2 3 96 111h-559c-11 0-20 9-20 21 0 10 7 18 17 20l3 1h559l-95 111c-8 9-7 22 2 30 8 6 19 6 27 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="loop-builder" unicode="" d="M604 829c11 0 19-7 21-17l0-4v-375c0-10-7-18-17-20l-4 0h-541c-11 0-19 7-21 17l0 3v375c0 11 7 19 17 21l4 0h541z m-21-41h-500v-334h500v334z m21-542c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-541c-12 0-21 9-21 21 0 10 7 19 17 20l4 1h541z m0 104c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-541c-12 0-21 10-21 21 0 11 7 19 17 21l4 0h541z m363 263l1 3 0 4 0 4-1 4-1 3-2 3-84 104c-7 10-20 11-29 4-8-7-10-18-5-27l2-3 57-70h-186c-12 0-21-9-21-21 0-11 7-19 17-21l4 0h186l-57-70c-7-10-5-22 4-30 8-6 19-5 26 1l3 3 83 104 2 2 1 3z m-642-751l4-1 4 0 3 0 5 1 2 1 4 2 104 84c9 7 10 20 3 29-6 8-17 10-26 5l-3-2-71-56v185c0 12-9 21-21 21-10 0-18-7-20-17l0-4v-185l-71 56c-9 7-22 6-29-4-6-7-6-19 0-26l3-3 104-83 3-2 2-1z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="notes" unicode="" d="M917 850c44 0 79-35 83-80l1-7v-611c0-46-35-84-77-87l-7 0h-588c-8 0-17-3-24-7l-5-4-232-195c-26-21-64-5-67 29l-1 6v869c0 46 34 83 77 87l6 0h834z m0-45h-834c-18 0-35-16-37-37l0-5v-863l225 189c12 11 26 17 42 20l8 1 8 1h588c19 0 35 15 38 36l0 5v611c0 22-15 39-33 41l-5 1z m-303-409c12 0 22-10 22-23 0-12-8-21-18-22l-4-1h-409c-13 0-23 10-23 23 0 11 8 20 19 22l4 1h409z m182 181c12 0 22-10 22-22 0-12-8-21-18-23l-4 0h-591c-13 0-23 10-23 23 0 11 8 20 19 22l4 0h591z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="read" unicode="" d="M532 841l443-295c16-11 25-29 25-48v-492c0-42-16-81-45-110-29-29-69-46-110-46h-689c-41 0-81 17-110 46-29 29-45 69-45 110v491c0 19 9 38 25 48l442 296c19 12 45 12 64 0z m108-614l-108-72c-20-13-45-13-64 0l-108 72-240-240c2-4 4-7 7-10 8-8 19-12 29-12h688c11 0 22 4 29 12 3 3 5 7 7 10l-240 240z m-525 163v-245l147 147-147 98z m770 0l-147-98 147-147v245z m-385 333l-339-226 223-148c0 0 1-1 1-1l0 0 115-76 115 76c1 1 1 1 1 1l0 0 223 148-339 226z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="unread" unicode="" d="M821 725c77 0 139-60 143-136l1-8v-458c0-77-60-140-136-143l-8-1h-642c-76 0-139 60-143 136l-1 8 0 462 0-4c0 77 60 140 136 144l8 0h642z m-681-241l0-361c0-20 15-37 35-39l4-1h642c20 0 37 16 39 35l0 5 0 361-331-221c-16-10-36-12-53-3l-5 3-331 221z m681 137h-642c-13 0-25-7-32-17l353-235 353 235c-7 10-19 17-32 17z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="carousel-loop" unicode="" d="M400 33c0-25-20-46-45-46s-45 21-45 46 20 45 45 45 45-20 45-45z m99 45c-25 0-45-20-45-45s20-46 45-46 45 21 45 46-20 45-45 45z m144 0c-25 0-45-20-45-45s20-46 45-46 45 21 45 46-20 45-45 45z m340 552v-353c0-11-8-20-18-22h-3c0 0-101 0-101 0v-42c0-10-8-19-18-21h-3c0 0-682 0-682 0-10 0-19 8-21 18v3c0 0 0 42 0 42h-101c-11 0-20 8-21 18v4c-1 0-1 353-1 353 0 11 8 20 18 22h4c0 0 100 0 100 0v42c0 11 8 19 18 21h4c0 0 681 0 681 0 11 0 20-7 21-17v-4c1 0 1-42 1-42h100c11 0 20-8 22-18v-4z m-847-332v311h-78v-310h79z m682-21v395h-638v-437h638v42z m122 331h-79v-310h79v311z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="nested-carousel" unicode="" d="M914 251h-68c-11 0-20 8-22 17v4c0 0 0 349 0 349 0 11 8 20 18 22h4c0 0 69 0 69 0 0 0 0-1 0-2v-41h-46v-307h46v-43z m-829 349h45v-306h-45v-42c0 0 0-1 0-2h72c10 3 18 11 18 22v353c-2 10-11 18-22 18h-68v-43z m263-521c0-22 17-39 39-39s38 18 38 39-17 39-38 39-39-18-39-39z m113 0c0-22 18-39 39-39s39 18 39 39-18 39-39 39-39-18-39-39z m114 0c0-22 17-39 38-39s39 18 39 39-17 39-39 39-38-18-38-39z m-312 617h-4c-10-2-17-11-17-22v-458c2-10 10-18 21-18h478c10 2 17 11 17 22v458c-2 10-10 18-20 18h-475z m454-455h-434v412h434v-412z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="ai" unicode="" d="M825 788a38 38 0 0 0 38-38 63 63 0 0 1 62-62 38 38 0 0 0 0-75 63 63 0 0 1-62-63 38 38 0 0 0-75 0 63 63 0 0 1-63 63 38 38 0 0 0 0 75 63 63 0 0 1 63 62 38 38 0 0 0 37 38z m0-132a137 137 0 0 0-6-6 135 135 0 0 0 6-6 137 137 0 0 0 6 6 134 134 0 0 0-6 6z m-450 32a38 38 0 0 0 38-38 263 263 0 0 1 262-262 38 38 0 0 0 0-75 263 263 0 0 1-262-263 38 38 0 0 0-75 0 263 263 0 0 1-263 263 38 38 0 0 0 0 75 263 263 0 0 1 263 262 38 38 0 0 0 37 38z m0-193a337 337 0 0 0-145-145 338 338 0 0 0 145-145 337 337 0 0 0 145 145 337 337 0 0 0-145 145z m450-307a38 38 0 0 0 38-38 63 63 0 0 1 62-62 38 38 0 0 0 0-75 63 63 0 0 1-62-63 38 38 0 0 0-75 0 63 63 0 0 1-63 63 38 38 0 0 0 0 75 63 63 0 0 1 63 62 38 38 0 0 0 37 38z m0-132a136 136 0 0 0-6-6 136 136 0 0 0 6-6 136 136 0 0 0 6 6 136 136 0 0 0-6 6z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upgrade" unicode="" d="M226 822h2723c79 0 144-65 144-144v-645c0-79-65-143-144-143h-2723c-79 0-143 64-143 143v645c0 79 64 144 143 144z m683-282c-22 12-49 18-81 18h-149v-417h63v146h86c32 0 59 6 80 18 22 12 38 28 48 49 11 20 16 43 16 69s-5 48-16 69c-10 20-26 36-47 48z m-9-159c-6-13-15-22-28-30-13-7-30-10-50-10h-80v163h79c21 0 38-4 51-11 13-7 22-16 28-28 6-13 9-27 9-42s-3-30-9-42z m1823-186v128h185v54h-185v127h198v54h-261v-417h264v54h-201z m-760 363l-150-417h67l38 110h163l38-110h67l-150 417h-73z m-26-254l61 178h3l62-178h-126z m-1412-15c0-19-4-36-13-51-8-14-20-26-35-34-15-8-34-13-55-13s-39 4-54 13c-16 8-28 20-36 34-8 15-12 32-12 51v269h-63v-274c0-30 7-55 20-78 14-22 33-40 58-53 25-13 54-19 87-19s63 6 88 19c24 13 44 31 57 53 14 22 21 48 21 78v274h-63v-269z m1179 26c22 10 38 25 48 45 11 19 16 42 16 67s-5 48-16 68c-10 20-26 35-48 46-21 11-48 17-80 17h-149v-417h63v158h86c1 0 2 0 4 0l84-158h72l-92 168c4 2 8 4 12 6z m-166 189h79c21 0 38-3 51-10 12-6 22-14 28-26 6-12 9-25 9-41s-3-29-9-40c-6-11-15-20-28-26-13-5-30-8-50-8h-80v151z m-306-202h103c-1-21-5-40-14-57-10-16-23-29-40-39-16-9-36-13-59-13-24 0-46 6-65 18-19 12-34 29-45 53-11 23-17 52-17 85s5 63 16 86c11 23 26 41 45 53 19 12 40 18 64 18 13 0 26-2 38-6 11-3 22-9 31-16 9-7 17-15 23-25 7-10 12-21 16-33h65c-4 20-11 39-21 55-10 17-22 32-38 44-15 12-32 22-52 28-19 7-40 10-63 10-27 0-52-5-74-15-23-9-43-23-60-42-16-19-29-41-39-67-9-27-13-57-13-90 0-44 7-82 23-114 16-32 38-57 67-74 28-17 61-26 99-26 34 0 64 7 90 21 26 14 46 34 61 59 15 26 22 57 22 92v47h-163v-52z m1259 231c-30 16-65 25-106 25h-139v-417h135c42 0 79 8 108 25 30 17 53 41 69 72 16 31 24 69 24 112s-8 80-24 111c-16 31-38 55-67 72z m13-267c-10-23-26-40-47-52-21-12-48-18-79-18h-69v307h73c30 0 55-6 76-18s36-29 46-52c11-23 16-50 16-83s-5-61-16-84z" horiz-adv-x="3176" />
|
||||
|
||||
<glyph glyph-name="notification" unicode="" d="M765-150h-523c-16 0-30 2-43 6-55 19-92 70-92 128v339h-25c-22 0-42 9-58 24-15 15-24 36-24 58v103c0 22 9 43 24 58 16 15 36 24 58 24h59c-23 28-35 63-35 100 0 43 17 83 47 113s70 47 113 47c59 1 116-27 164-80 28-31 52-71 71-116 20 45 44 85 72 116 48 53 105 81 164 80h0c43 0 83-17 113-47 30-30 47-70 47-113 0-37-12-72-35-100h56c22 0 42-9 58-24 15-15 24-36 24-58v-103c0-22-9-43-24-58-16-15-36-24-58-24h-19v-338c0-18-3-35-9-50-21-52-70-85-125-85h0z m-232 59h232c31 0 59 19 70 48 4 8 5 18 5 28v338h-307v-414z m-367 414v-339c0-33 20-61 52-72 7-2 15-3 24-3h231v414h-307z m367 60h385c6 0 12 2 16 6 5 4 7 10 7 16v103c0 6-2 12-7 16-4 4-10 7-16 7h-163c-6-1-12-1-18-1v1h-204v-148z m-451 148c-6 0-12-3-16-7-4-4-7-10-7-16v-103c0-6 2-12 7-16 4-4 10-6 16-6h391v148h-207v-1c-6 0-12 0-18 1h-166z m459 59h210c22 3 42 13 57 28 19 19 30 45 30 72s-11 52-30 71c-19 19-44 30-71 30-43 1-84-20-120-61-32-35-58-83-76-140h0z m-289 0h210c-18 57-44 105-76 140-36 41-77 61-119 61-28 0-53-11-72-30-19-19-30-44-30-71s11-53 30-72c16-15 35-25 57-28h0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="light-mode" unicode="" d="M501 704c15 0 28-12 28-27v-37c0-15-13-27-28-27s-27 12-27 27v37c0 15 12 27 27 27z m-253-103c11 11 28 11 39 0l25-26c11-10 11-28 0-38-10-11-28-11-38 0l-26 25c-11 11-11 28 0 39z m506 0c11-11 11-28 0-39l-25-25c-11-11-28-11-39 0s-11 28 0 38l26 26c10 11 28 11 38 0z m-375-130c32 32 76 50 122 50s90-18 123-50c32-33 51-77 51-123s-19-90-51-123c-33-32-77-51-123-51s-90 19-122 51c-33 33-51 77-51 123s18 90 51 123z m122-4c-31 0-61-13-84-35-22-22-34-53-34-84s12-62 34-84c23-22 53-35 84-35s62 13 84 35c22 22 35 52 35 84s-13 62-35 84c-22 22-52 35-84 35z m-356-119c0 15 12 27 27 27h37c15 0 27-12 27-27s-12-27-27-27h-37c-15 0-27 12-27 27z m621 0c0 15 12 27 27 27h37c15 0 27-12 27-27s-12-27-27-27h-37c-15 0-27 12-27 27z m-454-189c11-11 11-28 0-39l-25-25c-11-11-28-11-39 0-11 10-11 28 0 39l26 25c10 11 28 11 38 0z m378 0c11 11 28 11 39 0l25-25c11-11 11-29 0-39s-28-11-38 0l-26 25c-11 11-11 28 0 39z m-189-76c15 0 28-12 28-27v-37c0-15-13-27-28-27s-27 12-27 27v37c0 15 12 27 27 27z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="dark-mode" unicode="" d="M465 639c-37-6-72-19-104-38-45-27-83-67-108-113-25-47-36-100-34-153 3-52 20-104 49-148 29-44 70-79 118-102 48-23 101-32 154-27 53 6 103 25 146 56 26 20 49 44 67 71-45-7-91-4-136 10-65 21-121 64-157 122-37 57-53 126-44 194 6 46 23 90 49 128z m50 57h10c8 0 16-3 21-10 9-11 8-27-3-36-41-38-67-90-74-145-7-56 5-112 35-159 31-48 76-83 130-100 53-17 110-15 162 6 7 3 15 3 22-1 13-6 18-21 13-34-24-58-63-108-114-145-50-37-110-60-172-66-62-6-125 5-182 31-56 27-105 69-139 121-35 52-55 113-58 175-3 63 11 125 40 180 30 55 74 102 128 134 53 32 115 49 177 49 2 0 3 0 4 0z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="upgrade-crown" unicode="" d="M500 646c11 0 21-6 27-15l155-233 191 153c11 9 26 10 38 2 11-7 18-21 15-34l-88-437c-3-16-16-27-32-27h-612c-16 0-29 11-32 27l-88 437c-2 13 4 27 15 34 12 8 27 7 38-2l191-153 155 233c6 9 16 15 27 15z m0-92l-148-222c-5-7-13-13-22-14-9-1-18 1-25 7l-149 118 65-322h558l65 322-148-118c-8-6-17-8-26-7-9 1-17 7-22 14l-148 222z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="off-canvas" unicode="" d="M919 718c-23 20-53 31-85 31h-190s-1 0-1 0h-477c-32 0-62-11-85-31-23-20-37-48-37-78v-578c0-30 14-59 37-79 23-20 53-30 85-30h668c32 0 62 10 85 30 24 20 38 49 38 79v413s0 0 0 0v165c0 30-14 58-38 78z m-315-161v-551h-438c-20 0-38 7-51 18-12 10-18 24-18 38v578c0 13 6 27 18 38 13 11 31 18 51 18h438v-139z m54-551v72l67-72h-67z m227 18c-13-11-31-18-51-18h-36l-140 149v133l244-236c-2-10-8-20-17-28z m18 100l-245 238v133l245-238v-133z m0 207l-245 238v106l245-212v-132z m0 202l-188 163h119c20 0 38-7 51-18 12-11 18-25 18-38v-107z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="mega-menu" unicode="" d="M917 439c11 0 19-7 21-17l0-4v-342c0-11-8-20-17-22l-4 0h-842c-10 0-18 8-20 18l0 4v342c0 11 7 19 17 21l3 0h842z m-21-43h-800v-299h800v299z m-458-48c10 0 19-8 20-18l1-4v-159c0-10-8-19-17-21l-4 0h-258c-11 0-19 8-21 18l0 3v159c0 11 7 20 17 21l4 1h258z m-21-44h-217v-115h217v115z m146 377c10 0 19-8 20-18l1-3v-130c0-11-8-20-17-21l-4-1h-488c-10 0-18 8-20 18l0 4v130c0 10 7 19 17 21l3 0h488z m-21-43h-446v-86h446v86z m231-335c12 0 21-9 21-21 0-10-7-19-17-20l-4-1h-250c-11 0-20 9-20 21 0 11 7 19 17 21l3 0h250z m-100-71c12 0 21-9 21-21 0-10-7-18-17-20l-4-1h-150c-11 0-20 10-20 21 0 11 7 19 17 21l3 0h150z m-333 300c0-11-9-21-21-21-10 0-19 8-20 17l-1 4v125c0 12 10 21 21 21 11 0 19-7 21-17l0-4v-125z" horiz-adv-x="1000" />
|
||||
|
||||
<glyph glyph-name="taxonomy-filter" unicode="" d="M471 29l-46-15v318c0 7-4 14-7 18l-186 204c-11 10-14 21-14 35v68h614v-64c0-14-7-29-18-39l-182-183c-3-3-7-10-7-17v-65c0-14 11-28 29-28s28 10 28 28v50l175 175c22 22 32 50 32 79v89c0 14-10 29-28 29h-672c-14 0-28-11-28-29v-93c0-28 10-53 28-75l179-196v-343c0-7 3-18 11-21 3-4 10-4 14-4 3 0 7 0 7 0l82 29c14 3 22 21 18 32s-14 21-29 18z m490 153c-7 14-15 25-25 36-11 11-22 18-36 25-29 11-61 11-86 0-14-7-25-14-35-25l-143-143c-4-4-7-11-7-18v-125c0-14 10-28 28-28h125c7 0 14 3 18 7l143 143c11 10 18 21 25 35 7 15 7 29 7 43s-11 36-14 50z m-50-68c-4-7-7-14-15-21l-132-136h-85v86l135 132c0 0 0 0 0 0 7 7 11 11 18 14 14 7 32 7 47 0 7-3 14-7 21-14 7-7 11-11 14-21 4-8 4-15 4-25s-4-8-7-15z" horiz-adv-x="1036" />
|
||||
|
||||
<glyph glyph-name="advanced" unicode="" d="M2946 807h-2722c-79 0-144-64-144-143v-645c0-79 65-144 144-144h2722c80 0 144 65 144 144v645c0 79-64 143-144 143z m-2345-679l-51 132h-181l-48-132h-60l166 433h62l177-433h-65z m357 0h-49v40c-20-31-49-47-88-47-25 0-48 7-69 21-21 14-37 33-49 58-11 24-17 53-17 85s5 60 16 85c10 26 26 45 46 59 21 13 45 20 71 20 18 0 35-4 50-12 15-8 27-18 36-31v156h53v-434z m220 0h-49l-120 314h57l67-188c7-20 14-41 20-63 5 17 11 36 20 60l69 191h55l-119-314z m382 0c-6 11-9 24-11 39-20-17-39-29-57-35-18-7-38-11-59-11-34 0-60 9-79 25-18 17-28 39-28 65 0 15 4 29 11 42 7 13 16 23 27 31 12 7 24 13 38 17 11 3 27 6 48 8 43 5 74 11 95 18 0 8 0 12 0 14 0 22-5 37-15 46-14 12-34 18-61 18-25 0-43-4-55-13-12-9-21-24-27-46l-52 7c5 22 13 40 24 54s26 24 47 31c20 8 44 11 71 11s49-3 65-9c17-7 29-14 37-24 8-10 14-22 17-36 2-9 2-26 2-49v-71c0-50 2-81 4-94 2-13 7-26 13-38h-55z m376 0h-53v191c0 22-2 38-7 49s-11 19-22 25-23 10-37 10c-22 0-42-7-58-22-17-14-25-41-25-81v-172h-53v314h48v-45c23 35 56 52 99 52 19 0 37-3 53-10 16-7 27-16 35-27 8-11 14-24 17-39 2-10 3-27 3-52v-193z m295 24c-24-21-53-31-87-31-43 0-78 14-104 42-26 28-39 69-39 121 0 34 6 64 17 89 11 25 28 44 51 57 23 13 48 19 75 19 34 0 62-8 84-26 21-17 35-41 41-73l-51-8c-5 21-14 37-26 47-13 11-28 16-46 16-27 0-48-9-65-28s-25-50-25-92 8-72 24-91c16-20 37-29 63-29 21 0 39 6 53 19 14 13 22 33 26 59l53-7c-6-36-21-64-44-84z m360 120h-234c2-35 12-61 29-80 18-18 40-27 66-27 20 0 36 5 50 15 14 11 25 27 33 49l55-7c-9-32-25-57-49-74-23-18-53-27-89-27-46 0-83 14-110 43-26 28-40 67-40 118s14 94 41 123c27 30 62 44 106 44s76-14 103-43c26-28 39-69 39-120 0-3 0-8 0-14z m318-144h-49v40c-20-31-49-47-88-47-25 0-48 7-69 21-21 14-37 33-48 58-12 24-18 53-18 85s5 60 16 85c10 26 26 45 47 59 21 13 44 20 70 20 19 0 36-4 51-12 14-8 26-18 36-31v156h52v-434z m-1451 138c38 5 67 12 87 20v-20c0-23-3-41-9-53-8-15-19-28-35-37-16-9-34-13-55-13s-36 5-47 14-16 21-16 35c0 10 2 18 7 26 5 7 12 13 21 17 9 4 25 8 47 11z m1057 109c11-13 18-33 20-60h-175c2 28 11 50 28 66 16 16 37 25 61 25 27 0 49-11 66-31z m-1630 0c16-20 24-52 24-94 0-39-8-69-24-88-16-18-36-28-59-28s-43 10-60 30c-17 20-26 50-26 90s8 72 24 91c16 20 36 29 59 29s45-10 62-30z m1951 0c17-20 25-52 25-94 0-39-8-69-25-88-16-18-36-28-59-28s-43 10-60 30c-17 20-25 50-25 90s8 72 24 91c15 20 35 29 59 29s44-10 61-30z m-2349 51l45-120h-147l48 127c10 28 18 55 23 83 7-23 17-53 31-90z" horiz-adv-x="3176" />
|
||||
|
||||
<glyph glyph-name="container-grid" unicode="" d="M925 654h-814c-18 0-36-15-36-36v-536c0-18 18-36 36-36h814c18 0 36 18 36 36v536c0 18-18 36-36 36z m-7-283h-379v240h379v-240z m-422 240v-240h-378v240h378z m-378-282h378v-240h-378v240z m421-240v240h379v-240h-379z" horiz-adv-x="1036" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 323 KiB |
BIN
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf
Normal file
BIN
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf
Normal file
Binary file not shown.
BIN
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff
Normal file
BIN
wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff
Normal file
Binary file not shown.
Binary file not shown.
848
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css
Normal file
848
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css
Normal file
@@ -0,0 +1,848 @@
|
||||
.flatpickr-calendar {
|
||||
background: transparent;
|
||||
overflow: hidden;
|
||||
max-height: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
-webkit-animation: none;
|
||||
animation: none;
|
||||
direction: ltr;
|
||||
border: 0;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
border-radius: 5px;
|
||||
position: absolute;
|
||||
width: 307.875px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-ms-touch-action: manipulation;
|
||||
touch-action: manipulation;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
|
||||
box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
|
||||
}
|
||||
.flatpickr-calendar.open,
|
||||
.flatpickr-calendar.inline {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
overflow: visible;
|
||||
max-height: 640px;
|
||||
}
|
||||
.flatpickr-calendar.open {
|
||||
display: inline-block;
|
||||
z-index: 99999;
|
||||
}
|
||||
.flatpickr-calendar.animate.open {
|
||||
-webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-calendar.inline {
|
||||
display: block;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
.flatpickr-calendar.static {
|
||||
position: absolute;
|
||||
top: calc(100% + 2px);
|
||||
}
|
||||
.flatpickr-calendar.static.open {
|
||||
z-index: 999;
|
||||
display: block;
|
||||
}
|
||||
.flatpickr-calendar.hasWeeks {
|
||||
width: auto;
|
||||
}
|
||||
.flatpickr-calendar .hasWeeks .dayContainer,
|
||||
.flatpickr-calendar .hasTime .dayContainer {
|
||||
border-bottom: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
.flatpickr-calendar .hasWeeks .dayContainer {
|
||||
border-left: 0;
|
||||
}
|
||||
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
|
||||
height: 40px;
|
||||
border-top: 1px solid #e6e6e6;
|
||||
}
|
||||
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
|
||||
height: auto;
|
||||
}
|
||||
.flatpickr-calendar:before,
|
||||
.flatpickr-calendar:after {
|
||||
position: absolute;
|
||||
display: block;
|
||||
pointer-events: none;
|
||||
border: solid transparent;
|
||||
content: '';
|
||||
height: 0;
|
||||
width: 0;
|
||||
left: 22px;
|
||||
}
|
||||
.flatpickr-calendar.rightMost:before,
|
||||
.flatpickr-calendar.rightMost:after {
|
||||
left: auto;
|
||||
right: 22px;
|
||||
}
|
||||
.flatpickr-calendar:before {
|
||||
border-width: 5px;
|
||||
margin: 0 -5px;
|
||||
}
|
||||
.flatpickr-calendar:after {
|
||||
border-width: 4px;
|
||||
margin: 0 -4px;
|
||||
}
|
||||
.flatpickr-calendar.arrowTop:before,
|
||||
.flatpickr-calendar.arrowTop:after {
|
||||
bottom: 100%;
|
||||
}
|
||||
.flatpickr-calendar.arrowTop:before {
|
||||
border-bottom-color: #e6e6e6;
|
||||
}
|
||||
.flatpickr-calendar.arrowTop:after {
|
||||
border-bottom-color: #fff;
|
||||
}
|
||||
.flatpickr-calendar.arrowBottom:before,
|
||||
.flatpickr-calendar.arrowBottom:after {
|
||||
top: 100%;
|
||||
}
|
||||
.flatpickr-calendar.arrowBottom:before {
|
||||
border-top-color: #e6e6e6;
|
||||
}
|
||||
.flatpickr-calendar.arrowBottom:after {
|
||||
border-top-color: #fff;
|
||||
}
|
||||
.flatpickr-calendar:focus {
|
||||
outline: 0;
|
||||
}
|
||||
.flatpickr-wrapper {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.flatpickr-month {
|
||||
background: transparent;
|
||||
color: rgba(0,0,0,0.9);
|
||||
fill: rgba(0,0,0,0.9);
|
||||
height: 28px;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.flatpickr-prev-month,
|
||||
.flatpickr-next-month {
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
line-height: 16px;
|
||||
height: 28px;
|
||||
padding: 10px calc(3.57% - 1.5px);
|
||||
z-index: 3;
|
||||
}
|
||||
.flatpickr-prev-month i,
|
||||
.flatpickr-next-month i {
|
||||
position: relative;
|
||||
}
|
||||
.flatpickr-prev-month.flatpickr-prev-month,
|
||||
.flatpickr-next-month.flatpickr-prev-month {
|
||||
/*
|
||||
/*rtl:begin:ignore*/
|
||||
/*
|
||||
*/
|
||||
left: 0;
|
||||
/*
|
||||
/*rtl:end:ignore*/
|
||||
/*
|
||||
*/
|
||||
}
|
||||
/*
|
||||
/*rtl:begin:ignore*/
|
||||
/*
|
||||
/*rtl:end:ignore*/
|
||||
.flatpickr-prev-month.flatpickr-next-month,
|
||||
.flatpickr-next-month.flatpickr-next-month {
|
||||
/*
|
||||
/*rtl:begin:ignore*/
|
||||
/*
|
||||
*/
|
||||
right: 0;
|
||||
/*
|
||||
/*rtl:end:ignore*/
|
||||
/*
|
||||
*/
|
||||
}
|
||||
/*
|
||||
/*rtl:begin:ignore*/
|
||||
/*
|
||||
/*rtl:end:ignore*/
|
||||
.flatpickr-prev-month:hover,
|
||||
.flatpickr-next-month:hover {
|
||||
color: #959ea9;
|
||||
}
|
||||
.flatpickr-prev-month:hover svg,
|
||||
.flatpickr-next-month:hover svg {
|
||||
fill: #f64747;
|
||||
}
|
||||
.flatpickr-prev-month svg,
|
||||
.flatpickr-next-month svg {
|
||||
width: 14px;
|
||||
}
|
||||
.flatpickr-prev-month svg path,
|
||||
.flatpickr-next-month svg path {
|
||||
-webkit-transition: fill 0.1s;
|
||||
transition: fill 0.1s;
|
||||
fill: inherit;
|
||||
}
|
||||
.numInputWrapper {
|
||||
position: relative;
|
||||
height: auto;
|
||||
}
|
||||
.numInputWrapper input,
|
||||
.numInputWrapper span {
|
||||
display: inline-block;
|
||||
}
|
||||
.numInputWrapper input {
|
||||
width: 100%;
|
||||
}
|
||||
.numInputWrapper span {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 14px;
|
||||
padding: 0 4px 0 2px;
|
||||
height: 50%;
|
||||
line-height: 50%;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
border: 1px solid rgba(57,57,57,0.05);
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.numInputWrapper span:hover {
|
||||
background: rgba(0,0,0,0.1);
|
||||
}
|
||||
.numInputWrapper span:active {
|
||||
background: rgba(0,0,0,0.2);
|
||||
}
|
||||
.numInputWrapper span:after {
|
||||
display: block;
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 33%;
|
||||
}
|
||||
.numInputWrapper span.arrowUp {
|
||||
top: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
.numInputWrapper span.arrowUp:after {
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-bottom: 4px solid rgba(57,57,57,0.6);
|
||||
}
|
||||
.numInputWrapper span.arrowDown {
|
||||
top: 50%;
|
||||
}
|
||||
.numInputWrapper span.arrowDown:after {
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-top: 4px solid rgba(57,57,57,0.6);
|
||||
}
|
||||
.numInputWrapper span svg {
|
||||
width: inherit;
|
||||
height: auto;
|
||||
}
|
||||
.numInputWrapper span svg path {
|
||||
fill: rgba(0,0,0,0.5);
|
||||
}
|
||||
.numInputWrapper:hover {
|
||||
background: rgba(0,0,0,0.05);
|
||||
}
|
||||
.numInputWrapper:hover span {
|
||||
opacity: 1;
|
||||
}
|
||||
.flatpickr-current-month {
|
||||
font-size: 135%;
|
||||
line-height: inherit;
|
||||
font-weight: 300;
|
||||
color: inherit;
|
||||
position: absolute;
|
||||
width: 75%;
|
||||
left: 12.5%;
|
||||
padding: 6.16px 0 0 0;
|
||||
line-height: 1;
|
||||
height: 28px;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
.flatpickr-current-month.slideLeft {
|
||||
-webkit-transform: translate3d(-100%, 0px, 0px);
|
||||
transform: translate3d(-100%, 0px, 0px);
|
||||
-webkit-animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-current-month.slideLeftNew {
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
-webkit-animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-current-month.slideRight {
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
-webkit-animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-current-month.slideRightNew {
|
||||
-webkit-transform: translate3d(0, 0, 0px);
|
||||
transform: translate3d(0, 0, 0px);
|
||||
-webkit-animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-current-month span.cur-month {
|
||||
font-family: inherit;
|
||||
font-weight: 700;
|
||||
color: inherit;
|
||||
display: inline-block;
|
||||
margin-left: 0.5ch;
|
||||
padding: 0;
|
||||
}
|
||||
.flatpickr-current-month span.cur-month:hover {
|
||||
background: rgba(0,0,0,0.05);
|
||||
}
|
||||
.flatpickr-current-month .numInputWrapper {
|
||||
width: 6ch;
|
||||
width: 7ch\0;
|
||||
display: inline-block;
|
||||
}
|
||||
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
|
||||
border-bottom-color: rgba(0,0,0,0.9);
|
||||
}
|
||||
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
|
||||
border-top-color: rgba(0,0,0,0.9);
|
||||
}
|
||||
.flatpickr-current-month input.cur-year {
|
||||
background: transparent;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: inherit;
|
||||
cursor: default;
|
||||
padding: 0 0 0 0.5ch;
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
font-size: inherit;
|
||||
font-family: inherit;
|
||||
font-weight: 300;
|
||||
line-height: inherit;
|
||||
height: initial;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
vertical-align: initial;
|
||||
}
|
||||
.flatpickr-current-month input.cur-year:focus {
|
||||
outline: 0;
|
||||
}
|
||||
.flatpickr-current-month input.cur-year[disabled],
|
||||
.flatpickr-current-month input.cur-year[disabled]:hover {
|
||||
font-size: 100%;
|
||||
color: rgba(0,0,0,0.5);
|
||||
background: transparent;
|
||||
pointer-events: none;
|
||||
}
|
||||
.flatpickr-weekdays {
|
||||
background: transparent;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
height: 28px;
|
||||
}
|
||||
span.flatpickr-weekday {
|
||||
cursor: default;
|
||||
font-size: 90%;
|
||||
background: transparent;
|
||||
color: rgba(0,0,0,0.54);
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
display: block;
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.dayContainer,
|
||||
.flatpickr-weeks {
|
||||
padding: 1px 0 0 0;
|
||||
}
|
||||
.flatpickr-days {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
width: 307.875px;
|
||||
}
|
||||
.flatpickr-days:focus {
|
||||
outline: 0;
|
||||
}
|
||||
.dayContainer {
|
||||
padding: 0;
|
||||
outline: 0;
|
||||
text-align: left;
|
||||
width: 307.875px;
|
||||
min-width: 307.875px;
|
||||
max-width: 307.875px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
-ms-flex-pack: justify;
|
||||
-webkit-justify-content: space-around;
|
||||
justify-content: space-around;
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
opacity: 1;
|
||||
}
|
||||
.flatpickr-calendar.animate .dayContainer.slideLeft {
|
||||
-webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-calendar.animate .dayContainer.slideLeft,
|
||||
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
|
||||
-webkit-transform: translate3d(-100%, 0px, 0px);
|
||||
transform: translate3d(-100%, 0px, 0px);
|
||||
}
|
||||
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
|
||||
-webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-calendar.animate .dayContainer.slideRight {
|
||||
-webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
.flatpickr-calendar.animate .dayContainer.slideRightNew {
|
||||
-webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.flatpickr-day {
|
||||
background: none;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 150px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: #393939;
|
||||
cursor: pointer;
|
||||
font-weight: 400;
|
||||
width: 14.2857143%;
|
||||
-webkit-flex-basis: 14.2857143%;
|
||||
-ms-flex-preferred-size: 14.2857143%;
|
||||
flex-basis: 14.2857143%;
|
||||
max-width: 39px;
|
||||
height: 39px;
|
||||
line-height: 39px;
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
.flatpickr-day.inRange,
|
||||
.flatpickr-day.prevMonthDay.inRange,
|
||||
.flatpickr-day.nextMonthDay.inRange,
|
||||
.flatpickr-day.today.inRange,
|
||||
.flatpickr-day.prevMonthDay.today.inRange,
|
||||
.flatpickr-day.nextMonthDay.today.inRange,
|
||||
.flatpickr-day:hover,
|
||||
.flatpickr-day.prevMonthDay:hover,
|
||||
.flatpickr-day.nextMonthDay:hover,
|
||||
.flatpickr-day:focus,
|
||||
.flatpickr-day.prevMonthDay:focus,
|
||||
.flatpickr-day.nextMonthDay:focus {
|
||||
cursor: pointer;
|
||||
outline: 0;
|
||||
background: #e6e6e6;
|
||||
border-color: #e6e6e6;
|
||||
}
|
||||
.flatpickr-day.today {
|
||||
border-color: #959ea9;
|
||||
}
|
||||
.flatpickr-day.today:hover,
|
||||
.flatpickr-day.today:focus {
|
||||
border-color: #959ea9;
|
||||
background: #959ea9;
|
||||
color: #fff;
|
||||
}
|
||||
.flatpickr-day.selected,
|
||||
.flatpickr-day.startRange,
|
||||
.flatpickr-day.endRange,
|
||||
.flatpickr-day.selected.inRange,
|
||||
.flatpickr-day.startRange.inRange,
|
||||
.flatpickr-day.endRange.inRange,
|
||||
.flatpickr-day.selected:focus,
|
||||
.flatpickr-day.startRange:focus,
|
||||
.flatpickr-day.endRange:focus,
|
||||
.flatpickr-day.selected:hover,
|
||||
.flatpickr-day.startRange:hover,
|
||||
.flatpickr-day.endRange:hover,
|
||||
.flatpickr-day.selected.prevMonthDay,
|
||||
.flatpickr-day.startRange.prevMonthDay,
|
||||
.flatpickr-day.endRange.prevMonthDay,
|
||||
.flatpickr-day.selected.nextMonthDay,
|
||||
.flatpickr-day.startRange.nextMonthDay,
|
||||
.flatpickr-day.endRange.nextMonthDay {
|
||||
background: #569ff7;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
border-color: #569ff7;
|
||||
}
|
||||
.flatpickr-day.selected.startRange,
|
||||
.flatpickr-day.startRange.startRange,
|
||||
.flatpickr-day.endRange.startRange {
|
||||
border-radius: 50px 0 0 50px;
|
||||
}
|
||||
.flatpickr-day.selected.endRange,
|
||||
.flatpickr-day.startRange.endRange,
|
||||
.flatpickr-day.endRange.endRange {
|
||||
border-radius: 0 50px 50px 0;
|
||||
}
|
||||
.flatpickr-day.selected.startRange + .endRange,
|
||||
.flatpickr-day.startRange.startRange + .endRange,
|
||||
.flatpickr-day.endRange.startRange + .endRange {
|
||||
-webkit-box-shadow: -10px 0 0 #569ff7;
|
||||
box-shadow: -10px 0 0 #569ff7;
|
||||
}
|
||||
.flatpickr-day.selected.startRange.endRange,
|
||||
.flatpickr-day.startRange.startRange.endRange,
|
||||
.flatpickr-day.endRange.startRange.endRange {
|
||||
border-radius: 50px;
|
||||
}
|
||||
.flatpickr-day.inRange {
|
||||
border-radius: 0;
|
||||
-webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
||||
box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
||||
}
|
||||
.flatpickr-day.disabled,
|
||||
.flatpickr-day.disabled:hover {
|
||||
pointer-events: none;
|
||||
}
|
||||
.flatpickr-day.disabled,
|
||||
.flatpickr-day.disabled:hover,
|
||||
.flatpickr-day.prevMonthDay,
|
||||
.flatpickr-day.nextMonthDay,
|
||||
.flatpickr-day.notAllowed,
|
||||
.flatpickr-day.notAllowed.prevMonthDay,
|
||||
.flatpickr-day.notAllowed.nextMonthDay {
|
||||
color: rgba(57,57,57,0.3);
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
cursor: default;
|
||||
}
|
||||
.flatpickr-day.week.selected {
|
||||
border-radius: 0;
|
||||
-webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
||||
box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
||||
}
|
||||
.rangeMode .flatpickr-day {
|
||||
margin-top: 1px;
|
||||
}
|
||||
.flatpickr-weekwrapper {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
}
|
||||
.flatpickr-weekwrapper .flatpickr-weeks {
|
||||
padding: 0 12px;
|
||||
-webkit-box-shadow: 1px 0 0 #e6e6e6;
|
||||
box-shadow: 1px 0 0 #e6e6e6;
|
||||
}
|
||||
.flatpickr-weekwrapper .flatpickr-weekday {
|
||||
float: none;
|
||||
width: 100%;
|
||||
line-height: 28px;
|
||||
}
|
||||
.flatpickr-weekwrapper span.flatpickr-day {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
}
|
||||
.flatpickr-innerContainer {
|
||||
display: block;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
.flatpickr-rContainer {
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.flatpickr-time {
|
||||
text-align: center;
|
||||
outline: 0;
|
||||
display: block;
|
||||
height: 0;
|
||||
line-height: 40px;
|
||||
max-height: 40px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
.flatpickr-time:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
.flatpickr-time .numInputWrapper {
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
width: 40%;
|
||||
height: 40px;
|
||||
float: left;
|
||||
}
|
||||
.flatpickr-time .numInputWrapper span.arrowUp:after {
|
||||
border-bottom-color: #393939;
|
||||
}
|
||||
.flatpickr-time .numInputWrapper span.arrowDown:after {
|
||||
border-top-color: #393939;
|
||||
}
|
||||
.flatpickr-time.hasSeconds .numInputWrapper {
|
||||
width: 26%;
|
||||
}
|
||||
.flatpickr-time.time24hr .numInputWrapper {
|
||||
width: 49%;
|
||||
}
|
||||
.flatpickr-time input {
|
||||
background: transparent;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: inherit;
|
||||
line-height: inherit;
|
||||
cursor: pointer;
|
||||
color: #393939;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.flatpickr-time input.flatpickr-hour {
|
||||
font-weight: bold;
|
||||
}
|
||||
.flatpickr-time input.flatpickr-minute,
|
||||
.flatpickr-time input.flatpickr-second {
|
||||
font-weight: 400;
|
||||
}
|
||||
.flatpickr-time input:focus {
|
||||
outline: 0;
|
||||
border: 0;
|
||||
}
|
||||
.flatpickr-time .flatpickr-time-separator,
|
||||
.flatpickr-time .flatpickr-am-pm {
|
||||
height: inherit;
|
||||
display: inline-block;
|
||||
float: left;
|
||||
line-height: inherit;
|
||||
color: #393939;
|
||||
font-weight: bold;
|
||||
width: 2%;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-webkit-align-self: center;
|
||||
-ms-flex-item-align: center;
|
||||
align-self: center;
|
||||
}
|
||||
.flatpickr-time .flatpickr-am-pm {
|
||||
outline: 0;
|
||||
width: 18%;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
font-weight: 400;
|
||||
}
|
||||
.flatpickr-time .flatpickr-am-pm:hover,
|
||||
.flatpickr-time .flatpickr-am-pm:focus {
|
||||
background: #f0f0f0;
|
||||
}
|
||||
.flatpickr-input[readonly] {
|
||||
cursor: pointer;
|
||||
}
|
||||
@-webkit-keyframes fpFadeInDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
-webkit-transform: translate3d(0, -20px, 0);
|
||||
transform: translate3d(0, -20px, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes fpFadeInDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
-webkit-transform: translate3d(0, -20px, 0);
|
||||
transform: translate3d(0, -20px, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fpSlideLeft {
|
||||
from {
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(-100%, 0px, 0px);
|
||||
transform: translate3d(-100%, 0px, 0px);
|
||||
}
|
||||
}
|
||||
@keyframes fpSlideLeft {
|
||||
from {
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(-100%, 0px, 0px);
|
||||
transform: translate3d(-100%, 0px, 0px);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fpSlideLeftNew {
|
||||
from {
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
}
|
||||
@keyframes fpSlideLeftNew {
|
||||
from {
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fpSlideRight {
|
||||
from {
|
||||
-webkit-transform: translate3d(0, 0, 0px);
|
||||
transform: translate3d(0, 0, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
}
|
||||
@keyframes fpSlideRight {
|
||||
from {
|
||||
-webkit-transform: translate3d(0, 0, 0px);
|
||||
transform: translate3d(0, 0, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(100%, 0px, 0px);
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fpSlideRightNew {
|
||||
from {
|
||||
-webkit-transform: translate3d(-100%, 0, 0px);
|
||||
transform: translate3d(-100%, 0, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(0, 0, 0px);
|
||||
transform: translate3d(0, 0, 0px);
|
||||
}
|
||||
}
|
||||
@keyframes fpSlideRightNew {
|
||||
from {
|
||||
-webkit-transform: translate3d(-100%, 0, 0px);
|
||||
transform: translate3d(-100%, 0, 0px);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translate3d(0, 0, 0px);
|
||||
transform: translate3d(0, 0, 0px);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fpFadeOut {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes fpFadeOut {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fpFadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes fpFadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
2143
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js
Normal file
2143
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js
Normal file
File diff suppressed because it is too large
Load Diff
13
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css
vendored
Normal file
13
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4619
wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css
vendored
Normal file
4619
wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
15
wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css
vendored
Normal file
15
wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Font Awesome 5 Brands';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: block;
|
||||
src: url("../webfonts/fa-brands-400.eot");
|
||||
src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); }
|
||||
|
||||
.fab {
|
||||
font-family: 'Font Awesome 5 Brands';
|
||||
font-weight: 400; }
|
||||
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}
|
||||
2337
wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css
vendored
Normal file
2337
wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css
vendored
Normal file
4
wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4597
wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css
vendored
Normal file
4597
wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
15
wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css
vendored
Normal file
15
wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: block;
|
||||
src: url("../webfonts/fa-regular-400.eot");
|
||||
src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); }
|
||||
|
||||
.far {
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-weight: 400; }
|
||||
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}
|
||||
16
wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css
vendored
Normal file
16
wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-display: block;
|
||||
src: url("../webfonts/fa-solid-900.eot");
|
||||
src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); }
|
||||
|
||||
.fa,
|
||||
.fas {
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-weight: 900; }
|
||||
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}
|
||||
371
wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css
vendored
Normal file
371
wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css
vendored
Normal file
@@ -0,0 +1,371 @@
|
||||
/*!
|
||||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
*/
|
||||
svg:not(:root).svg-inline--fa {
|
||||
overflow: visible; }
|
||||
|
||||
.svg-inline--fa {
|
||||
display: inline-block;
|
||||
font-size: inherit;
|
||||
height: 1em;
|
||||
overflow: visible;
|
||||
vertical-align: -.125em; }
|
||||
.svg-inline--fa.fa-lg {
|
||||
vertical-align: -.225em; }
|
||||
.svg-inline--fa.fa-w-1 {
|
||||
width: 0.0625em; }
|
||||
.svg-inline--fa.fa-w-2 {
|
||||
width: 0.125em; }
|
||||
.svg-inline--fa.fa-w-3 {
|
||||
width: 0.1875em; }
|
||||
.svg-inline--fa.fa-w-4 {
|
||||
width: 0.25em; }
|
||||
.svg-inline--fa.fa-w-5 {
|
||||
width: 0.3125em; }
|
||||
.svg-inline--fa.fa-w-6 {
|
||||
width: 0.375em; }
|
||||
.svg-inline--fa.fa-w-7 {
|
||||
width: 0.4375em; }
|
||||
.svg-inline--fa.fa-w-8 {
|
||||
width: 0.5em; }
|
||||
.svg-inline--fa.fa-w-9 {
|
||||
width: 0.5625em; }
|
||||
.svg-inline--fa.fa-w-10 {
|
||||
width: 0.625em; }
|
||||
.svg-inline--fa.fa-w-11 {
|
||||
width: 0.6875em; }
|
||||
.svg-inline--fa.fa-w-12 {
|
||||
width: 0.75em; }
|
||||
.svg-inline--fa.fa-w-13 {
|
||||
width: 0.8125em; }
|
||||
.svg-inline--fa.fa-w-14 {
|
||||
width: 0.875em; }
|
||||
.svg-inline--fa.fa-w-15 {
|
||||
width: 0.9375em; }
|
||||
.svg-inline--fa.fa-w-16 {
|
||||
width: 1em; }
|
||||
.svg-inline--fa.fa-w-17 {
|
||||
width: 1.0625em; }
|
||||
.svg-inline--fa.fa-w-18 {
|
||||
width: 1.125em; }
|
||||
.svg-inline--fa.fa-w-19 {
|
||||
width: 1.1875em; }
|
||||
.svg-inline--fa.fa-w-20 {
|
||||
width: 1.25em; }
|
||||
.svg-inline--fa.fa-pull-left {
|
||||
margin-right: .3em;
|
||||
width: auto; }
|
||||
.svg-inline--fa.fa-pull-right {
|
||||
margin-left: .3em;
|
||||
width: auto; }
|
||||
.svg-inline--fa.fa-border {
|
||||
height: 1.5em; }
|
||||
.svg-inline--fa.fa-li {
|
||||
width: 2em; }
|
||||
.svg-inline--fa.fa-fw {
|
||||
width: 1.25em; }
|
||||
|
||||
.fa-layers svg.svg-inline--fa {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
margin: auto;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0; }
|
||||
|
||||
.fa-layers {
|
||||
display: inline-block;
|
||||
height: 1em;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
vertical-align: -.125em;
|
||||
width: 1em; }
|
||||
.fa-layers svg.svg-inline--fa {
|
||||
-webkit-transform-origin: center center;
|
||||
transform-origin: center center; }
|
||||
|
||||
.fa-layers-text, .fa-layers-counter {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
text-align: center; }
|
||||
|
||||
.fa-layers-text {
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
-webkit-transform-origin: center center;
|
||||
transform-origin: center center; }
|
||||
|
||||
.fa-layers-counter {
|
||||
background-color: #ff253a;
|
||||
border-radius: 1em;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: #fff;
|
||||
height: 1.5em;
|
||||
line-height: 1;
|
||||
max-width: 5em;
|
||||
min-width: 1.5em;
|
||||
overflow: hidden;
|
||||
padding: .25em;
|
||||
right: 0;
|
||||
text-overflow: ellipsis;
|
||||
top: 0;
|
||||
-webkit-transform: scale(0.25);
|
||||
transform: scale(0.25);
|
||||
-webkit-transform-origin: top right;
|
||||
transform-origin: top right; }
|
||||
|
||||
.fa-layers-bottom-right {
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
top: auto;
|
||||
-webkit-transform: scale(0.25);
|
||||
transform: scale(0.25);
|
||||
-webkit-transform-origin: bottom right;
|
||||
transform-origin: bottom right; }
|
||||
|
||||
.fa-layers-bottom-left {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: auto;
|
||||
top: auto;
|
||||
-webkit-transform: scale(0.25);
|
||||
transform: scale(0.25);
|
||||
-webkit-transform-origin: bottom left;
|
||||
transform-origin: bottom left; }
|
||||
|
||||
.fa-layers-top-right {
|
||||
right: 0;
|
||||
top: 0;
|
||||
-webkit-transform: scale(0.25);
|
||||
transform: scale(0.25);
|
||||
-webkit-transform-origin: top right;
|
||||
transform-origin: top right; }
|
||||
|
||||
.fa-layers-top-left {
|
||||
left: 0;
|
||||
right: auto;
|
||||
top: 0;
|
||||
-webkit-transform: scale(0.25);
|
||||
transform: scale(0.25);
|
||||
-webkit-transform-origin: top left;
|
||||
transform-origin: top left; }
|
||||
|
||||
.fa-lg {
|
||||
font-size: 1.33333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -.0667em; }
|
||||
|
||||
.fa-xs {
|
||||
font-size: .75em; }
|
||||
|
||||
.fa-sm {
|
||||
font-size: .875em; }
|
||||
|
||||
.fa-1x {
|
||||
font-size: 1em; }
|
||||
|
||||
.fa-2x {
|
||||
font-size: 2em; }
|
||||
|
||||
.fa-3x {
|
||||
font-size: 3em; }
|
||||
|
||||
.fa-4x {
|
||||
font-size: 4em; }
|
||||
|
||||
.fa-5x {
|
||||
font-size: 5em; }
|
||||
|
||||
.fa-6x {
|
||||
font-size: 6em; }
|
||||
|
||||
.fa-7x {
|
||||
font-size: 7em; }
|
||||
|
||||
.fa-8x {
|
||||
font-size: 8em; }
|
||||
|
||||
.fa-9x {
|
||||
font-size: 9em; }
|
||||
|
||||
.fa-10x {
|
||||
font-size: 10em; }
|
||||
|
||||
.fa-fw {
|
||||
text-align: center;
|
||||
width: 1.25em; }
|
||||
|
||||
.fa-ul {
|
||||
list-style-type: none;
|
||||
margin-left: 2.5em;
|
||||
padding-left: 0; }
|
||||
.fa-ul > li {
|
||||
position: relative; }
|
||||
|
||||
.fa-li {
|
||||
left: -2em;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: 2em;
|
||||
line-height: inherit; }
|
||||
|
||||
.fa-border {
|
||||
border: solid 0.08em #eee;
|
||||
border-radius: .1em;
|
||||
padding: .2em .25em .15em; }
|
||||
|
||||
.fa-pull-left {
|
||||
float: left; }
|
||||
|
||||
.fa-pull-right {
|
||||
float: right; }
|
||||
|
||||
.fa.fa-pull-left,
|
||||
.fas.fa-pull-left,
|
||||
.far.fa-pull-left,
|
||||
.fal.fa-pull-left,
|
||||
.fab.fa-pull-left {
|
||||
margin-right: .3em; }
|
||||
|
||||
.fa.fa-pull-right,
|
||||
.fas.fa-pull-right,
|
||||
.far.fa-pull-right,
|
||||
.fal.fa-pull-right,
|
||||
.fab.fa-pull-right {
|
||||
margin-left: .3em; }
|
||||
|
||||
.fa-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear; }
|
||||
|
||||
.fa-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(360deg);
|
||||
transform: rotate(360deg); } }
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg); }
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg); } }
|
||||
|
||||
.fa-rotate-90 {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg); }
|
||||
|
||||
.fa-rotate-180 {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
||||
-webkit-transform: rotate(180deg);
|
||||
transform: rotate(180deg); }
|
||||
|
||||
.fa-rotate-270 {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
||||
-webkit-transform: rotate(270deg);
|
||||
transform: rotate(270deg); }
|
||||
|
||||
.fa-flip-horizontal {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
||||
-webkit-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1); }
|
||||
|
||||
.fa-flip-vertical {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
||||
-webkit-transform: scale(1, -1);
|
||||
transform: scale(1, -1); }
|
||||
|
||||
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
||||
-webkit-transform: scale(-1, -1);
|
||||
transform: scale(-1, -1); }
|
||||
|
||||
:root .fa-rotate-90,
|
||||
:root .fa-rotate-180,
|
||||
:root .fa-rotate-270,
|
||||
:root .fa-flip-horizontal,
|
||||
:root .fa-flip-vertical,
|
||||
:root .fa-flip-both {
|
||||
-webkit-filter: none;
|
||||
filter: none; }
|
||||
|
||||
.fa-stack {
|
||||
display: inline-block;
|
||||
height: 2em;
|
||||
position: relative;
|
||||
width: 2.5em; }
|
||||
|
||||
.fa-stack-1x,
|
||||
.fa-stack-2x {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
margin: auto;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0; }
|
||||
|
||||
.svg-inline--fa.fa-stack-1x {
|
||||
height: 1em;
|
||||
width: 1.25em; }
|
||||
|
||||
.svg-inline--fa.fa-stack-2x {
|
||||
height: 2em;
|
||||
width: 2.5em; }
|
||||
|
||||
.fa-inverse {
|
||||
color: #fff; }
|
||||
|
||||
.sr-only {
|
||||
border: 0;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px; }
|
||||
|
||||
.sr-only-focusable:active, .sr-only-focusable:focus {
|
||||
clip: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
position: static;
|
||||
width: auto; }
|
||||
|
||||
.svg-inline--fa .fa-primary {
|
||||
fill: var(--fa-primary-color, currentColor);
|
||||
opacity: 1;
|
||||
opacity: var(--fa-primary-opacity, 1); }
|
||||
|
||||
.svg-inline--fa .fa-secondary {
|
||||
fill: var(--fa-secondary-color, currentColor);
|
||||
opacity: 0.4;
|
||||
opacity: var(--fa-secondary-opacity, 0.4); }
|
||||
|
||||
.svg-inline--fa.fa-swap-opacity .fa-primary {
|
||||
opacity: 0.4;
|
||||
opacity: var(--fa-secondary-opacity, 0.4); }
|
||||
|
||||
.svg-inline--fa.fa-swap-opacity .fa-secondary {
|
||||
opacity: 1;
|
||||
opacity: var(--fa-primary-opacity, 1); }
|
||||
|
||||
.svg-inline--fa mask .fa-primary,
|
||||
.svg-inline--fa mask .fa-secondary {
|
||||
fill: black; }
|
||||
|
||||
.fad.fa-inverse {
|
||||
color: #fff; }
|
||||
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2172
wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css
vendored
Normal file
2172
wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 434 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,462 @@
|
||||
{
|
||||
"icons": [
|
||||
"500px",
|
||||
"accessible-icon",
|
||||
"accusoft",
|
||||
"acquisitions-incorporated",
|
||||
"adn",
|
||||
"adversal",
|
||||
"affiliatetheme",
|
||||
"airbnb",
|
||||
"algolia",
|
||||
"alipay",
|
||||
"amazon",
|
||||
"amazon-pay",
|
||||
"amilia",
|
||||
"android",
|
||||
"angellist",
|
||||
"angrycreative",
|
||||
"angular",
|
||||
"app-store",
|
||||
"app-store-ios",
|
||||
"apper",
|
||||
"apple",
|
||||
"apple-pay",
|
||||
"artstation",
|
||||
"asymmetrik",
|
||||
"atlassian",
|
||||
"audible",
|
||||
"autoprefixer",
|
||||
"avianex",
|
||||
"aviato",
|
||||
"aws",
|
||||
"bandcamp",
|
||||
"battle-net",
|
||||
"behance",
|
||||
"behance-square",
|
||||
"bimobject",
|
||||
"bitbucket",
|
||||
"bitcoin",
|
||||
"bity",
|
||||
"black-tie",
|
||||
"blackberry",
|
||||
"blogger",
|
||||
"blogger-b",
|
||||
"bluetooth",
|
||||
"bluetooth-b",
|
||||
"bootstrap",
|
||||
"btc",
|
||||
"buffer",
|
||||
"buromobelexperte",
|
||||
"buy-n-large",
|
||||
"buysellads",
|
||||
"canadian-maple-leaf",
|
||||
"cc-amazon-pay",
|
||||
"cc-amex",
|
||||
"cc-apple-pay",
|
||||
"cc-diners-club",
|
||||
"cc-discover",
|
||||
"cc-jcb",
|
||||
"cc-mastercard",
|
||||
"cc-paypal",
|
||||
"cc-stripe",
|
||||
"cc-visa",
|
||||
"centercode",
|
||||
"centos",
|
||||
"chrome",
|
||||
"chromecast",
|
||||
"cloudflare",
|
||||
"cloudscale",
|
||||
"cloudsmith",
|
||||
"cloudversify",
|
||||
"codepen",
|
||||
"codiepie",
|
||||
"confluence",
|
||||
"connectdevelop",
|
||||
"contao",
|
||||
"cotton-bureau",
|
||||
"cpanel",
|
||||
"creative-commons",
|
||||
"creative-commons-by",
|
||||
"creative-commons-nc",
|
||||
"creative-commons-nc-eu",
|
||||
"creative-commons-nc-jp",
|
||||
"creative-commons-nd",
|
||||
"creative-commons-pd",
|
||||
"creative-commons-pd-alt",
|
||||
"creative-commons-remix",
|
||||
"creative-commons-sa",
|
||||
"creative-commons-sampling",
|
||||
"creative-commons-sampling-plus",
|
||||
"creative-commons-share",
|
||||
"creative-commons-zero",
|
||||
"critical-role",
|
||||
"css3",
|
||||
"css3-alt",
|
||||
"cuttlefish",
|
||||
"d-and-d",
|
||||
"d-and-d-beyond",
|
||||
"dailymotion",
|
||||
"dashcube",
|
||||
"deezer",
|
||||
"delicious",
|
||||
"deploydog",
|
||||
"deskpro",
|
||||
"dev",
|
||||
"deviantart",
|
||||
"dhl",
|
||||
"diaspora",
|
||||
"digg",
|
||||
"digital-ocean",
|
||||
"discord",
|
||||
"discourse",
|
||||
"dochub",
|
||||
"docker",
|
||||
"draft2digital",
|
||||
"dribbble",
|
||||
"dribbble-square",
|
||||
"dropbox",
|
||||
"drupal",
|
||||
"dyalog",
|
||||
"earlybirds",
|
||||
"ebay",
|
||||
"edge",
|
||||
"edge-legacy",
|
||||
"elementor",
|
||||
"ello",
|
||||
"ember",
|
||||
"empire",
|
||||
"envira",
|
||||
"erlang",
|
||||
"ethereum",
|
||||
"etsy",
|
||||
"evernote",
|
||||
"expeditedssl",
|
||||
"facebook",
|
||||
"facebook-f",
|
||||
"facebook-messenger",
|
||||
"facebook-square",
|
||||
"fantasy-flight-games",
|
||||
"fedex",
|
||||
"fedora",
|
||||
"figma",
|
||||
"firefox",
|
||||
"firefox-browser",
|
||||
"first-order",
|
||||
"first-order-alt",
|
||||
"firstdraft",
|
||||
"flickr",
|
||||
"flipboard",
|
||||
"fly",
|
||||
"font-awesome",
|
||||
"font-awesome-alt",
|
||||
"font-awesome-flag",
|
||||
"fonticons",
|
||||
"fonticons-fi",
|
||||
"fort-awesome",
|
||||
"fort-awesome-alt",
|
||||
"forumbee",
|
||||
"foursquare",
|
||||
"free-code-camp",
|
||||
"freebsd",
|
||||
"fulcrum",
|
||||
"galactic-republic",
|
||||
"galactic-senate",
|
||||
"get-pocket",
|
||||
"gg",
|
||||
"gg-circle",
|
||||
"git",
|
||||
"git-alt",
|
||||
"git-square",
|
||||
"github",
|
||||
"github-alt",
|
||||
"github-square",
|
||||
"gitkraken",
|
||||
"gitlab",
|
||||
"gitter",
|
||||
"glide",
|
||||
"glide-g",
|
||||
"gofore",
|
||||
"goodreads",
|
||||
"goodreads-g",
|
||||
"google",
|
||||
"google-drive",
|
||||
"google-pay",
|
||||
"google-play",
|
||||
"google-plus",
|
||||
"google-plus-g",
|
||||
"google-plus-square",
|
||||
"google-wallet",
|
||||
"gratipay",
|
||||
"grav",
|
||||
"gripfire",
|
||||
"grunt",
|
||||
"guilded",
|
||||
"gulp",
|
||||
"hacker-news",
|
||||
"hacker-news-square",
|
||||
"hackerrank",
|
||||
"hips",
|
||||
"hire-a-helper",
|
||||
"hive",
|
||||
"hooli",
|
||||
"hornbill",
|
||||
"hotjar",
|
||||
"houzz",
|
||||
"html5",
|
||||
"hubspot",
|
||||
"ideal",
|
||||
"imdb",
|
||||
"innosoft",
|
||||
"instagram",
|
||||
"instalod",
|
||||
"intercom",
|
||||
"internet-explorer",
|
||||
"invision",
|
||||
"ioxhost",
|
||||
"itch-io",
|
||||
"itunes",
|
||||
"itunes-note",
|
||||
"java",
|
||||
"jedi-order",
|
||||
"jenkins",
|
||||
"jira",
|
||||
"joget",
|
||||
"joomla",
|
||||
"js",
|
||||
"js-square",
|
||||
"jsfiddle",
|
||||
"kaggle",
|
||||
"keybase",
|
||||
"keycdn",
|
||||
"kickstarter",
|
||||
"kickstarter-k",
|
||||
"korvue",
|
||||
"laravel",
|
||||
"lastfm",
|
||||
"lastfm-square",
|
||||
"leanpub",
|
||||
"less",
|
||||
"line",
|
||||
"linkedin",
|
||||
"linkedin-in",
|
||||
"linode",
|
||||
"linux",
|
||||
"lyft",
|
||||
"magento",
|
||||
"mailchimp",
|
||||
"mandalorian",
|
||||
"markdown",
|
||||
"mastodon",
|
||||
"maxcdn",
|
||||
"mdb",
|
||||
"medapps",
|
||||
"medium",
|
||||
"medium-m",
|
||||
"medrt",
|
||||
"meetup",
|
||||
"megaport",
|
||||
"mendeley",
|
||||
"microblog",
|
||||
"microsoft",
|
||||
"mix",
|
||||
"mixcloud",
|
||||
"mizuni",
|
||||
"modx",
|
||||
"monero",
|
||||
"napster",
|
||||
"neos",
|
||||
"nimblr",
|
||||
"node",
|
||||
"node-js",
|
||||
"npm",
|
||||
"ns8",
|
||||
"nutritionix",
|
||||
"octopus-deploy",
|
||||
"odnoklassniki",
|
||||
"odnoklassniki-square",
|
||||
"old-republic",
|
||||
"opencart",
|
||||
"openid",
|
||||
"opera",
|
||||
"optin-monster",
|
||||
"orcid",
|
||||
"osi",
|
||||
"page4",
|
||||
"pagelines",
|
||||
"palfed",
|
||||
"patreon",
|
||||
"paypal",
|
||||
"penny-arcade",
|
||||
"perbyte",
|
||||
"periscope",
|
||||
"phabricator",
|
||||
"phoenix-framework",
|
||||
"phoenix-squadron",
|
||||
"php",
|
||||
"pied-piper",
|
||||
"pied-piper-alt",
|
||||
"pied-piper-hat",
|
||||
"pied-piper-pp",
|
||||
"pied-piper-square",
|
||||
"pinterest",
|
||||
"pinterest-p",
|
||||
"pinterest-square",
|
||||
"playstation",
|
||||
"product-hunt",
|
||||
"pushed",
|
||||
"python",
|
||||
"qq",
|
||||
"quinscape",
|
||||
"quora",
|
||||
"r-project",
|
||||
"raspberry-pi",
|
||||
"ravelry",
|
||||
"react",
|
||||
"reacteurope",
|
||||
"readme",
|
||||
"rebel",
|
||||
"red-river",
|
||||
"reddit",
|
||||
"reddit-alien",
|
||||
"reddit-square",
|
||||
"redhat",
|
||||
"renren",
|
||||
"replyd",
|
||||
"researchgate",
|
||||
"resolving",
|
||||
"rev",
|
||||
"rocketchat",
|
||||
"rockrms",
|
||||
"rust",
|
||||
"safari",
|
||||
"salesforce",
|
||||
"sass",
|
||||
"schlix",
|
||||
"scribd",
|
||||
"searchengin",
|
||||
"sellcast",
|
||||
"sellsy",
|
||||
"servicestack",
|
||||
"shirtsinbulk",
|
||||
"shopware",
|
||||
"simplybuilt",
|
||||
"sistrix",
|
||||
"sith",
|
||||
"sketch",
|
||||
"skyatlas",
|
||||
"skype",
|
||||
"slack",
|
||||
"slack-hash",
|
||||
"slideshare",
|
||||
"snapchat",
|
||||
"snapchat-ghost",
|
||||
"snapchat-square",
|
||||
"soundcloud",
|
||||
"sourcetree",
|
||||
"speakap",
|
||||
"speaker-deck",
|
||||
"spotify",
|
||||
"squarespace",
|
||||
"stack-exchange",
|
||||
"stack-overflow",
|
||||
"stackpath",
|
||||
"staylinked",
|
||||
"steam",
|
||||
"steam-square",
|
||||
"steam-symbol",
|
||||
"sticker-mule",
|
||||
"strava",
|
||||
"stripe",
|
||||
"stripe-s",
|
||||
"studiovinari",
|
||||
"stumbleupon",
|
||||
"stumbleupon-circle",
|
||||
"superpowers",
|
||||
"supple",
|
||||
"suse",
|
||||
"swift",
|
||||
"symfony",
|
||||
"teamspeak",
|
||||
"telegram",
|
||||
"telegram-plane",
|
||||
"tencent-weibo",
|
||||
"the-red-yeti",
|
||||
"themeco",
|
||||
"themeisle",
|
||||
"think-peaks",
|
||||
"threads",
|
||||
"threads-square",
|
||||
"tiktok",
|
||||
"trade-federation",
|
||||
"trello",
|
||||
"tripadvisor",
|
||||
"tumblr",
|
||||
"tumblr-square",
|
||||
"twitch",
|
||||
"twitter",
|
||||
"twitter-square",
|
||||
"typo3",
|
||||
"uber",
|
||||
"ubuntu",
|
||||
"uikit",
|
||||
"umbraco",
|
||||
"uncharted",
|
||||
"uniregistry",
|
||||
"unity",
|
||||
"unsplash",
|
||||
"untappd",
|
||||
"ups",
|
||||
"usb",
|
||||
"usps",
|
||||
"ussunnah",
|
||||
"vaadin",
|
||||
"viacoin",
|
||||
"viadeo",
|
||||
"viadeo-square",
|
||||
"viber",
|
||||
"vimeo",
|
||||
"vimeo-square",
|
||||
"vimeo-v",
|
||||
"vine",
|
||||
"vk",
|
||||
"vnv",
|
||||
"vuejs",
|
||||
"watchman-monitoring",
|
||||
"waze",
|
||||
"weebly",
|
||||
"weibo",
|
||||
"weixin",
|
||||
"whatsapp",
|
||||
"whatsapp-square",
|
||||
"whmcs",
|
||||
"wikipedia-w",
|
||||
"windows",
|
||||
"wix",
|
||||
"wizards-of-the-coast",
|
||||
"wodu",
|
||||
"wolf-pack-battalion",
|
||||
"wordpress",
|
||||
"wordpress-simple",
|
||||
"wpbeginner",
|
||||
"wpexplorer",
|
||||
"wpforms",
|
||||
"wpressr",
|
||||
"xbox",
|
||||
"xing",
|
||||
"xing-square",
|
||||
"x-twitter",
|
||||
"x-twitter-square",
|
||||
"y-combinator",
|
||||
"yahoo",
|
||||
"yammer",
|
||||
"yandex",
|
||||
"yandex-international",
|
||||
"yarn",
|
||||
"yelp",
|
||||
"yoast",
|
||||
"youtube",
|
||||
"youtube-square",
|
||||
"zhihu"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
{
|
||||
"icons": [
|
||||
"address-book",
|
||||
"address-card",
|
||||
"angry",
|
||||
"arrow-alt-circle-down",
|
||||
"arrow-alt-circle-left",
|
||||
"arrow-alt-circle-right",
|
||||
"arrow-alt-circle-up",
|
||||
"bell",
|
||||
"bell-slash",
|
||||
"bookmark",
|
||||
"building",
|
||||
"calendar",
|
||||
"calendar-alt",
|
||||
"calendar-check",
|
||||
"calendar-minus",
|
||||
"calendar-plus",
|
||||
"calendar-times",
|
||||
"caret-square-down",
|
||||
"caret-square-left",
|
||||
"caret-square-right",
|
||||
"caret-square-up",
|
||||
"chart-bar",
|
||||
"check-circle",
|
||||
"check-square",
|
||||
"circle",
|
||||
"clipboard",
|
||||
"clock",
|
||||
"clone",
|
||||
"closed-captioning",
|
||||
"comment",
|
||||
"comment-alt",
|
||||
"comment-dots",
|
||||
"comments",
|
||||
"compass",
|
||||
"copy",
|
||||
"copyright",
|
||||
"credit-card",
|
||||
"dizzy",
|
||||
"dot-circle",
|
||||
"edit",
|
||||
"envelope",
|
||||
"envelope-open",
|
||||
"eye",
|
||||
"eye-slash",
|
||||
"file",
|
||||
"file-alt",
|
||||
"file-archive",
|
||||
"file-audio",
|
||||
"file-code",
|
||||
"file-excel",
|
||||
"file-image",
|
||||
"file-pdf",
|
||||
"file-powerpoint",
|
||||
"file-video",
|
||||
"file-word",
|
||||
"flag",
|
||||
"flushed",
|
||||
"folder",
|
||||
"folder-open",
|
||||
"frown",
|
||||
"frown-open",
|
||||
"futbol",
|
||||
"gem",
|
||||
"grimace",
|
||||
"grin",
|
||||
"grin-alt",
|
||||
"grin-beam",
|
||||
"grin-beam-sweat",
|
||||
"grin-hearts",
|
||||
"grin-squint",
|
||||
"grin-squint-tears",
|
||||
"grin-stars",
|
||||
"grin-tears",
|
||||
"grin-tongue",
|
||||
"grin-tongue-squint",
|
||||
"grin-tongue-wink",
|
||||
"grin-wink",
|
||||
"hand-lizard",
|
||||
"hand-paper",
|
||||
"hand-peace",
|
||||
"hand-point-down",
|
||||
"hand-point-left",
|
||||
"hand-point-right",
|
||||
"hand-point-up",
|
||||
"hand-pointer",
|
||||
"hand-rock",
|
||||
"hand-scissors",
|
||||
"hand-spock",
|
||||
"handshake",
|
||||
"hdd",
|
||||
"heart",
|
||||
"hospital",
|
||||
"hourglass",
|
||||
"id-badge",
|
||||
"id-card",
|
||||
"image",
|
||||
"images",
|
||||
"keyboard",
|
||||
"kiss",
|
||||
"kiss-beam",
|
||||
"kiss-wink-heart",
|
||||
"laugh",
|
||||
"laugh-beam",
|
||||
"laugh-squint",
|
||||
"laugh-wink",
|
||||
"lemon",
|
||||
"life-ring",
|
||||
"lightbulb",
|
||||
"list-alt",
|
||||
"map",
|
||||
"meh",
|
||||
"meh-blank",
|
||||
"meh-rolling-eyes",
|
||||
"minus-square",
|
||||
"money-bill-alt",
|
||||
"moon",
|
||||
"newspaper",
|
||||
"object-group",
|
||||
"object-ungroup",
|
||||
"paper-plane",
|
||||
"pause-circle",
|
||||
"play-circle",
|
||||
"plus-square",
|
||||
"question-circle",
|
||||
"registered",
|
||||
"sad-cry",
|
||||
"sad-tear",
|
||||
"save",
|
||||
"share-square",
|
||||
"smile",
|
||||
"smile-beam",
|
||||
"smile-wink",
|
||||
"snowflake",
|
||||
"square",
|
||||
"star",
|
||||
"star-half",
|
||||
"sticky-note",
|
||||
"stop-circle",
|
||||
"sun",
|
||||
"surprise",
|
||||
"thumbs-down",
|
||||
"thumbs-up",
|
||||
"times-circle",
|
||||
"tired",
|
||||
"trash-alt",
|
||||
"user",
|
||||
"user-circle",
|
||||
"window-close",
|
||||
"window-maximize",
|
||||
"window-minimize",
|
||||
"window-restore"
|
||||
]
|
||||
}
|
||||
1000
wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js
Normal file
1000
wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
5
wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js
vendored
Normal file
5
wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,156 @@
|
||||
{
|
||||
"icons": {
|
||||
"address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"],
|
||||
"address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"],
|
||||
"angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"],
|
||||
"arrow-alt-circle-down": [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"],
|
||||
"arrow-alt-circle-left": [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"],
|
||||
"arrow-alt-circle-right": [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"],
|
||||
"arrow-alt-circle-up": [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"],
|
||||
"bell": [448, 512, [], "f0f3", "M439.39 362.29c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71zM67.53 368c21.22-27.97 44.42-74.33 44.53-159.42 0-.2-.06-.38-.06-.58 0-61.86 50.14-112 112-112s112 50.14 112 112c0 .2-.06.38-.06.58.11 85.1 23.31 131.46 44.53 159.42H67.53zM224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64z"],
|
||||
"bell-slash": [640, 512, [], "f1f6", "M633.99 471.02L36 3.51C29.1-2.01 19.03-.9 13.51 6l-10 12.49C-2.02 25.39-.9 35.46 6 40.98l598 467.51c6.9 5.52 16.96 4.4 22.49-2.49l10-12.49c5.52-6.9 4.41-16.97-2.5-22.49zM163.53 368c16.71-22.03 34.48-55.8 41.4-110.58l-45.47-35.55c-3.27 90.73-36.47 120.68-54.84 140.42-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h279.66l-61.4-48H163.53zM320 96c61.86 0 112 50.14 112 112 0 .2-.06.38-.06.58.02 16.84 1.16 31.77 2.79 45.73l59.53 46.54c-8.31-22.13-14.34-51.49-14.34-92.85 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-26.02 5.41-49.45 16.94-69.13 32.72l38.17 29.84C275 103.18 296.65 96 320 96zm0 416c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z"],
|
||||
"bookmark": [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"],
|
||||
"building": [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"],
|
||||
"calendar": [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"],
|
||||
"calendar-alt": [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"calendar-check": [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"],
|
||||
"calendar-minus": [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"calendar-plus": [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"calendar-times": [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"caret-square-down": [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"caret-square-left": [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"caret-square-right": [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"caret-square-up": [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"chart-bar": [512, 512, [], "f080", "M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z"],
|
||||
"check-circle": [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"],
|
||||
"check-square": [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"],
|
||||
"circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"],
|
||||
"clipboard": [384, 512, [], "f328", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm144 418c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h42v36c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-36h42c3.3 0 6 2.7 6 6z"],
|
||||
"clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"],
|
||||
"clone": [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"],
|
||||
"closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"],
|
||||
"comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"],
|
||||
"comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"],
|
||||
"comment-dots": [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"],
|
||||
"comments": [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"],
|
||||
"compass": [496, 512, [], "f14e", "M347.94 129.86L203.6 195.83a31.938 31.938 0 0 0-15.77 15.77l-65.97 144.34c-7.61 16.65 9.54 33.81 26.2 26.2l144.34-65.97a31.938 31.938 0 0 0 15.77-15.77l65.97-144.34c7.61-16.66-9.54-33.81-26.2-26.2zm-77.36 148.72c-12.47 12.47-32.69 12.47-45.16 0-12.47-12.47-12.47-32.69 0-45.16 12.47-12.47 32.69-12.47 45.16 0 12.47 12.47 12.47 32.69 0 45.16zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"],
|
||||
"copy": [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"],
|
||||
"copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"],
|
||||
"credit-card": [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"],
|
||||
"dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"],
|
||||
"dot-circle": [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"],
|
||||
"edit": [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"],
|
||||
"envelope": [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"],
|
||||
"envelope-open": [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"],
|
||||
"eye": [576, 512, [], "f06e", "M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z"],
|
||||
"eye-slash": [640, 512, [], "f070", "M634 471L36 3.51A16 16 0 0 0 13.51 6l-10 12.49A16 16 0 0 0 6 41l598 467.49a16 16 0 0 0 22.49-2.49l10-12.49A16 16 0 0 0 634 471zM296.79 146.47l134.79 105.38C429.36 191.91 380.48 144 320 144a112.26 112.26 0 0 0-23.21 2.47zm46.42 219.07L208.42 260.16C210.65 320.09 259.53 368 320 368a113 113 0 0 0 23.21-2.46zM320 112c98.65 0 189.09 55 237.93 144a285.53 285.53 0 0 1-44 60.2l37.74 29.5a333.7 333.7 0 0 0 52.9-75.11 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64c-36.7 0-71.71 7-104.63 18.81l46.41 36.29c18.94-4.3 38.34-7.1 58.22-7.1zm0 288c-98.65 0-189.08-55-237.93-144a285.47 285.47 0 0 1 44.05-60.19l-37.74-29.5a333.6 333.6 0 0 0-52.89 75.1 32.35 32.35 0 0 0 0 29.19C89.72 376.41 197.08 448 320 448c36.7 0 71.71-7.05 104.63-18.81l-46.41-36.28C359.28 397.2 339.89 400 320 400z"],
|
||||
"file": [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"],
|
||||
"file-alt": [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"],
|
||||
"file-archive": [384, 512, [], "f1c6", "M128.3 160v32h32v-32zm64-96h-32v32h32zm-64 32v32h32V96zm64 32h-32v32h32zm177.6-30.1L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM256 51.9l76.1 76.1H256zM336 464H48V48h79.7v16h32V48H208v104c0 13.3 10.7 24 24 24h104zM194.2 265.7c-1.1-5.6-6-9.7-11.8-9.7h-22.1v-32h-32v32l-19.7 97.1C102 385.6 126.8 416 160 416c33.1 0 57.9-30.2 51.5-62.6zm-33.9 124.4c-17.9 0-32.4-12.1-32.4-27s14.5-27 32.4-27 32.4 12.1 32.4 27-14.5 27-32.4 27zm32-198.1h-32v32h32z"],
|
||||
"file-audio": [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"],
|
||||
"file-code": [384, 512, [], "f1c9", "M149.9 349.1l-.2-.2-32.8-28.9 32.8-28.9c3.6-3.2 4-8.8.8-12.4l-.2-.2-17.4-18.6c-3.4-3.6-9-3.7-12.4-.4l-57.7 54.1c-3.7 3.5-3.7 9.4 0 12.8l57.7 54.1c1.6 1.5 3.8 2.4 6 2.4 2.4 0 4.8-1 6.4-2.8l17.4-18.6c3.3-3.5 3.1-9.1-.4-12.4zm220-251.2L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM256 51.9l76.1 76.1H256zM336 464H48V48h160v104c0 13.3 10.7 24 24 24h104zM209.6 214c-4.7-1.4-9.5 1.3-10.9 6L144 408.1c-1.4 4.7 1.3 9.6 6 10.9l24.4 7.1c4.7 1.4 9.6-1.4 10.9-6L240 231.9c1.4-4.7-1.3-9.6-6-10.9zm24.5 76.9l.2.2 32.8 28.9-32.8 28.9c-3.6 3.2-4 8.8-.8 12.4l.2.2 17.4 18.6c3.3 3.5 8.9 3.7 12.4.4l57.7-54.1c3.7-3.5 3.7-9.4 0-12.8l-57.7-54.1c-3.5-3.3-9.1-3.2-12.4.4l-17.4 18.6c-3.3 3.5-3.1 9.1.4 12.4z"],
|
||||
"file-excel": [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"],
|
||||
"file-image": [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"],
|
||||
"file-pdf": [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"],
|
||||
"file-powerpoint": [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"],
|
||||
"file-video": [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"],
|
||||
"file-word": [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"],
|
||||
"flag": [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"],
|
||||
"flushed": [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"],
|
||||
"folder": [512, 512, [], "f07b", "M464 128H272l-54.63-54.63c-6-6-14.14-9.37-22.63-9.37H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm0 272H48V112h140.12l54.63 54.63c6 6 14.14 9.37 22.63 9.37H464v224z"],
|
||||
"folder-open": [576, 512, [], "f07c", "M527.9 224H480v-48c0-26.5-21.5-48-48-48H272l-64-64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h400c16.5 0 31.9-8.5 40.7-22.6l79.9-128c20-31.9-3-73.4-40.7-73.4zM48 118c0-3.3 2.7-6 6-6h134.1l64 64H426c3.3 0 6 2.7 6 6v42H152c-16.8 0-32.4 8.8-41.1 23.2L48 351.4zm400 282H72l77.2-128H528z"],
|
||||
"font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"],
|
||||
"frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"],
|
||||
"frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"],
|
||||
"futbol": [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"],
|
||||
"gem": [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"],
|
||||
"grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"],
|
||||
"grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"],
|
||||
"grin-alt": [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"],
|
||||
"grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"],
|
||||
"grin-beam-sweat": [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"],
|
||||
"grin-hearts": [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"],
|
||||
"grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"],
|
||||
"grin-squint-tears": [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"],
|
||||
"grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"],
|
||||
"grin-tears": [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"],
|
||||
"grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"],
|
||||
"grin-tongue-squint": [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"],
|
||||
"grin-tongue-wink": [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"],
|
||||
"grin-wink": [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"],
|
||||
"hand-lizard": [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"],
|
||||
"hand-paper": [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"],
|
||||
"hand-peace": [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"],
|
||||
"hand-point-down": [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"],
|
||||
"hand-point-left": [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"],
|
||||
"hand-point-right": [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"],
|
||||
"hand-point-up": [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"],
|
||||
"hand-pointer": [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"],
|
||||
"hand-rock": [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"],
|
||||
"hand-scissors": [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"],
|
||||
"hand-spock": [512, 512, [], "f259", "M501.03053,116.17605c-19.39059-31.50779-51.24406-35.72849-66.31044-35.01756-14.11325-50.81051-62.0038-54.08-70.73816-54.08a74.03091,74.03091,0,0,0-72.23816,58.916l-4.64648,22.66014-13.68357-53.207c-9.09569-35.37107-46.412-64.05074-89.66-53.07223a73.89749,73.89749,0,0,0-55.121,78.94722,73.68273,73.68273,0,0,0-64.8495,94.42181l24.35933,82.19721c-38.24017-7.54492-62.79677,16.18358-68.11512,21.84764a73.6791,73.6791,0,0,0,3.19921,104.19329l91.36509,85.9765A154.164,154.164,0,0,0,220.62279,512h107.4549A127.30079,127.30079,0,0,0,452.3392,413.86139l57.623-241.96272A73.20274,73.20274,0,0,0,501.03053,116.17605Zm-37.7597,44.60544L405.64788,402.74812a79.46616,79.46616,0,0,1-77.57019,61.25972H220.62279a106.34052,106.34052,0,0,1-73.1366-28.998l-91.369-85.98041C31.34381,325.72669,66.61133,288.131,91.39644,311.5392l51.123,48.10739c5.42577,5.10937,13.48239.71679,13.48239-5.82617a246.79914,246.79914,0,0,0-10.17771-70.1523l-36.01362-121.539c-9.7324-32.88279,39.69916-47.27145,49.38664-14.625l31.3437,105.77923c5.59374,18.90428,33.78119,10.71288,28.9648-8.00781L177.06427,80.23662c-8.50389-33.1035,41.43157-45.64646,49.86515-12.83593l47.32609,184.035c4.42773,17.24218,29.16207,16.5039,32.71089-.80468l31.791-154.9706c6.81054-33.1074,57.51748-24.10741,50.11906,11.96288L360.32764,246.78924c-3.72265,18.10936,23.66793,24.63084,28.05659,6.21679L413.185,148.85962C421.1498,115.512,471.14,127.79713,463.27083,160.78149Z"],
|
||||
"handshake": [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"],
|
||||
"hdd": [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"],
|
||||
"heart": [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"],
|
||||
"hospital": [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"],
|
||||
"hourglass": [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"],
|
||||
"id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"],
|
||||
"id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"],
|
||||
"image": [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"],
|
||||
"images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"],
|
||||
"keyboard": [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"],
|
||||
"kiss": [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"],
|
||||
"kiss-beam": [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"],
|
||||
"kiss-wink-heart": [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"],
|
||||
"laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"],
|
||||
"laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"],
|
||||
"laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"],
|
||||
"laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"],
|
||||
"lemon": [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"],
|
||||
"life-ring": [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"],
|
||||
"lightbulb": [352, 512, [], "f0eb", "M176 80c-52.94 0-96 43.06-96 96 0 8.84 7.16 16 16 16s16-7.16 16-16c0-35.3 28.72-64 64-64 8.84 0 16-7.16 16-16s-7.16-16-16-16zM96.06 459.17c0 3.15.93 6.22 2.68 8.84l24.51 36.84c2.97 4.46 7.97 7.14 13.32 7.14h78.85c5.36 0 10.36-2.68 13.32-7.14l24.51-36.84c1.74-2.62 2.67-5.7 2.68-8.84l.05-43.18H96.02l.04 43.18zM176 0C73.72 0 0 82.97 0 176c0 44.37 16.45 84.85 43.56 115.78 16.64 18.99 42.74 58.8 52.42 92.16v.06h48v-.12c-.01-4.77-.72-9.51-2.15-14.07-5.59-17.81-22.82-64.77-62.17-109.67-20.54-23.43-31.52-53.15-31.61-84.14-.2-73.64 59.67-128 127.95-128 70.58 0 128 57.42 128 128 0 30.97-11.24 60.85-31.65 84.14-39.11 44.61-56.42 91.47-62.1 109.46a47.507 47.507 0 0 0-2.22 14.3v.1h48v-.05c9.68-33.37 35.78-73.18 52.42-92.16C335.55 260.85 352 220.37 352 176 352 78.8 273.2 0 176 0z"],
|
||||
"list-alt": [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"],
|
||||
"map": [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"],
|
||||
"meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"],
|
||||
"meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"],
|
||||
"meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"],
|
||||
"minus-square": [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"money-bill-alt": [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"],
|
||||
"moon": [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"],
|
||||
"newspaper": [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"],
|
||||
"object-group": [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"],
|
||||
"object-ungroup": [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"],
|
||||
"paper-plane": [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"],
|
||||
"pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"],
|
||||
"play-circle": [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"],
|
||||
"plus-square": [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"],
|
||||
"question-circle": [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"],
|
||||
"registered": [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"],
|
||||
"sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"],
|
||||
"sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"],
|
||||
"save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"],
|
||||
"share-square": [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"],
|
||||
"smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"],
|
||||
"smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"],
|
||||
"smile-wink": [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"],
|
||||
"snowflake": [448, 512, [], "f2dc", "M440.1 355.2l-39.2-23 34.1-9.3c8.4-2.3 13.4-11.1 11.1-19.6l-4.1-15.5c-2.2-8.5-10.9-13.6-19.3-11.3L343 298.2 271.2 256l71.9-42.2 79.7 21.7c8.4 2.3 17-2.8 19.3-11.3l4.1-15.5c2.2-8.5-2.7-17.3-11.1-19.6l-34.1-9.3 39.2-23c7.5-4.4 10.1-14.2 5.8-21.9l-7.9-13.9c-4.3-7.7-14-10.3-21.5-5.9l-39.2 23 9.1-34.7c2.2-8.5-2.7-17.3-11.1-19.6l-15.2-4.1c-8.4-2.3-17 2.8-19.3 11.3l-21.3 81-71.9 42.2v-84.5L306 70.4c6.1-6.2 6.1-16.4 0-22.6l-11.1-11.3c-6.1-6.2-16.1-6.2-22.2 0l-24.9 25.4V16c0-8.8-7-16-15.7-16h-15.7c-8.7 0-15.7 7.2-15.7 16v46.1l-24.9-25.4c-6.1-6.2-16.1-6.2-22.2 0L142.1 48c-6.1 6.2-6.1 16.4 0 22.6l58.3 59.3v84.5l-71.9-42.2-21.3-81c-2.2-8.5-10.9-13.6-19.3-11.3L72.7 84c-8.4 2.3-13.4 11.1-11.1 19.6l9.1 34.7-39.2-23c-7.5-4.4-17.1-1.8-21.5 5.9l-7.9 13.9c-4.3 7.7-1.8 17.4 5.8 21.9l39.2 23-34.1 9.1c-8.4 2.3-13.4 11.1-11.1 19.6L6 224.2c2.2 8.5 10.9 13.6 19.3 11.3l79.7-21.7 71.9 42.2-71.9 42.2-79.7-21.7c-8.4-2.3-17 2.8-19.3 11.3l-4.1 15.5c-2.2 8.5 2.7 17.3 11.1 19.6l34.1 9.3-39.2 23c-7.5 4.4-10.1 14.2-5.8 21.9L10 391c4.3 7.7 14 10.3 21.5 5.9l39.2-23-9.1 34.7c-2.2 8.5 2.7 17.3 11.1 19.6l15.2 4.1c8.4 2.3 17-2.8 19.3-11.3l21.3-81 71.9-42.2v84.5l-58.3 59.3c-6.1 6.2-6.1 16.4 0 22.6l11.1 11.3c6.1 6.2 16.1 6.2 22.2 0l24.9-25.4V496c0 8.8 7 16 15.7 16h15.7c8.7 0 15.7-7.2 15.7-16v-46.1l24.9 25.4c6.1 6.2 16.1 6.2 22.2 0l11.1-11.3c6.1-6.2 6.1-16.4 0-22.6l-58.3-59.3v-84.5l71.9 42.2 21.3 81c2.2 8.5 10.9 13.6 19.3 11.3L375 428c8.4-2.3 13.4-11.1 11.1-19.6l-9.1-34.7 39.2 23c7.5 4.4 17.1 1.8 21.5-5.9l7.9-13.9c4.6-7.5 2.1-17.3-5.5-21.7z"],
|
||||
"square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"],
|
||||
"star": [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"],
|
||||
"star-half": [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"],
|
||||
"sticky-note": [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"],
|
||||
"stop-circle": [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"],
|
||||
"sun": [512, 512, [], "f185", "M494.2 221.9l-59.8-40.5 13.7-71c2.6-13.2-1.6-26.8-11.1-36.4-9.6-9.5-23.2-13.7-36.2-11.1l-70.9 13.7-40.4-59.9c-15.1-22.3-51.9-22.3-67 0l-40.4 59.9-70.8-13.7C98 60.4 84.5 64.5 75 74.1c-9.5 9.6-13.7 23.1-11.1 36.3l13.7 71-59.8 40.5C6.6 229.5 0 242 0 255.5s6.7 26 17.8 33.5l59.8 40.5-13.7 71c-2.6 13.2 1.6 26.8 11.1 36.3 9.5 9.5 22.9 13.7 36.3 11.1l70.8-13.7 40.4 59.9C230 505.3 242.6 512 256 512s26-6.7 33.5-17.8l40.4-59.9 70.9 13.7c13.4 2.7 26.8-1.6 36.3-11.1 9.5-9.5 13.6-23.1 11.1-36.3l-13.7-71 59.8-40.5c11.1-7.5 17.8-20.1 17.8-33.5-.1-13.6-6.7-26.1-17.9-33.7zm-112.9 85.6l17.6 91.2-91-17.6L256 458l-51.9-77-90.9 17.6 17.6-91.2-76.8-52 76.8-52-17.6-91.2 91 17.6L256 53l51.9 76.9 91-17.6-17.6 91.1 76.8 52-76.8 52.1zM256 152c-57.3 0-104 46.7-104 104s46.7 104 104 104 104-46.7 104-104-46.7-104-104-104zm0 160c-30.9 0-56-25.1-56-56s25.1-56 56-56 56 25.1 56 56-25.1 56-56 56z"],
|
||||
"surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"],
|
||||
"thumbs-down": [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"],
|
||||
"thumbs-up": [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"],
|
||||
"times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"],
|
||||
"tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"],
|
||||
"trash-alt": [448, 512, [], "f2ed", "M268 416h24a12 12 0 0 0 12-12V188a12 12 0 0 0-12-12h-24a12 12 0 0 0-12 12v216a12 12 0 0 0 12 12zM432 80h-82.41l-34-56.7A48 48 0 0 0 274.41 0H173.59a48 48 0 0 0-41.16 23.3L98.41 80H16A16 16 0 0 0 0 96v16a16 16 0 0 0 16 16h16v336a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128h16a16 16 0 0 0 16-16V96a16 16 0 0 0-16-16zM171.84 50.91A6 6 0 0 1 177 48h94a6 6 0 0 1 5.15 2.91L293.61 80H154.39zM368 464H80V128h288zm-212-48h24a12 12 0 0 0 12-12V188a12 12 0 0 0-12-12h-24a12 12 0 0 0-12 12v216a12 12 0 0 0 12 12z"],
|
||||
"user": [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"],
|
||||
"user-circle": [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"],
|
||||
"window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"],
|
||||
"window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"],
|
||||
"window-minimize": [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"],
|
||||
"window-restore": [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"]
|
||||
}
|
||||
}
|
||||
1006
wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json
Normal file
1006
wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 732 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,801 @@
|
||||
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
<metadata>
|
||||
Created by FontForge 20201107 at Tue Mar 16 10:15:04 2021
|
||||
By Robert Madole
|
||||
Copyright (c) Font Awesome
|
||||
</metadata>
|
||||
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><defs>
|
||||
<font id="FontAwesome5Free-Regular" horiz-adv-x="512" >
|
||||
<font-face
|
||||
font-family="Font Awesome 5 Free Regular"
|
||||
font-weight="400"
|
||||
font-stretch="normal"
|
||||
units-per-em="512"
|
||||
panose-1="2 0 5 3 0 0 0 0 0 0"
|
||||
ascent="448"
|
||||
descent="-64"
|
||||
bbox="-0.0663408 -64.0662 640.004 448.1"
|
||||
underline-thickness="25"
|
||||
underline-position="-50"
|
||||
unicode-range="U+0020-F5C8"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="heart" unicode=""
|
||||
d="M458.4 383.7c75.2998 -63.4004 64.0996 -166.601 10.5996 -221.3l-175.4 -178.7c-10 -10.2002 -23.2998 -15.7998 -37.5996 -15.7998c-14.2002 0 -27.5996 5.69922 -37.5996 15.8994l-175.4 178.7c-53.5996 54.7002 -64.5996 157.9 10.5996 221.2
|
||||
c57.8008 48.7002 147.101 41.2998 202.4 -15c55.2998 56.2998 144.6 63.5996 202.4 15zM434.8 196.2c36.2002 36.8994 43.7998 107.7 -7.2998 150.8c-38.7002 32.5996 -98.7002 27.9004 -136.5 -10.5996l-35 -35.7002l-35 35.7002
|
||||
c-37.5996 38.2998 -97.5996 43.1992 -136.5 10.5c-51.2002 -43.1006 -43.7998 -113.5 -7.2998 -150.7l175.399 -178.7c2.40039 -2.40039 4.40039 -2.40039 6.80078 0z" />
|
||||
<glyph glyph-name="star" unicode="" horiz-adv-x="576"
|
||||
d="M528.1 276.5c26.2002 -3.7998 36.7002 -36.0996 17.7002 -54.5996l-105.7 -103l25 -145.5c4.5 -26.3008 -23.1992 -45.9004 -46.3994 -33.7002l-130.7 68.7002l-130.7 -68.7002c-23.2002 -12.2998 -50.8994 7.39941 -46.3994 33.7002l25 145.5l-105.7 103
|
||||
c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2998l65.2998 132.4c11.7998 23.8994 45.7002 23.5996 57.4004 0l65.2998 -132.4zM388.6 135.7l100.601 98l-139 20.2002l-62.2002 126l-62.2002 -126l-139 -20.2002l100.601 -98l-23.7002 -138.4l124.3 65.2998
|
||||
l124.3 -65.2998z" />
|
||||
<glyph glyph-name="user" unicode="" horiz-adv-x="448"
|
||||
d="M313.6 144c74.2002 0 134.4 -60.2002 134.4 -134.4v-25.5996c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v25.5996c0 74.2002 60.2002 134.4 134.4 134.4c28.7998 0 42.5 -16 89.5996 -16s60.9004 16 89.5996 16zM400 -16v25.5996
|
||||
c0 47.6006 -38.7998 86.4004 -86.4004 86.4004c-14.6992 0 -37.8994 -16 -89.5996 -16c-51.2998 0 -75 16 -89.5996 16c-47.6006 0 -86.4004 -38.7998 -86.4004 -86.4004v-25.5996h352zM224 160c-79.5 0 -144 64.5 -144 144s64.5 144 144 144s144 -64.5 144 -144
|
||||
s-64.5 -144 -144 -144zM224 400c-52.9004 0 -96 -43.0996 -96 -96s43.0996 -96 96 -96s96 43.0996 96 96s-43.0996 96 -96 96z" />
|
||||
<glyph glyph-name="clock" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM317.8 96.4004l-84.8994 61.6992
|
||||
c-3.10059 2.30078 -4.90039 5.90039 -4.90039 9.7002v164.2c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12v-141.7l66.7998 -48.5996c5.40039 -3.90039 6.5 -11.4004 2.60059 -16.7998l-18.8008 -25.9004c-3.89941 -5.2998 -11.3994 -6.5 -16.7998 -2.59961z
|
||||
" />
|
||||
<glyph glyph-name="list-alt" unicode=""
|
||||
d="M464 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h416zM458 16c3.31152 0 6 2.68848 6 6v340c0 3.31152 -2.68848 6 -6 6h-404c-3.31152 0 -6 -2.68848 -6 -6v-340
|
||||
c0 -3.31152 2.68848 -6 6 -6h404zM416 108v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM416 204v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12
|
||||
v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM416 300v-24c0 -6.62695 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h200c6.62695 0 12 -5.37305 12 -12zM164 288c0 -19.8818 -16.1182 -36 -36 -36
|
||||
s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36zM164 192c0 -19.8818 -16.1182 -36 -36 -36s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36zM164 96c0 -19.8818 -16.1182 -36 -36 -36s-36 16.1182 -36 36s16.1182 36 36 36s36 -16.1182 36 -36z" />
|
||||
<glyph glyph-name="flag" unicode=""
|
||||
d="M336.174 368c35.4668 0 73.0195 12.6914 108.922 28.1797c31.6406 13.6514 66.9043 -9.65723 66.9043 -44.1162v-239.919c0 -16.1953 -8.1543 -31.3057 -21.7129 -40.1631c-26.5762 -17.3643 -70.0693 -39.9814 -128.548 -39.9814c-68.6084 0 -112.781 32 -161.913 32
|
||||
c-56.5674 0 -89.957 -11.2803 -127.826 -28.5566v-83.4434c0 -8.83691 -7.16309 -16 -16 -16h-16c-8.83691 0 -16 7.16309 -16 16v406.438c-14.3428 8.2998 -24 23.7979 -24 41.5615c0 27.5693 23.2422 49.71 51.2012 47.8965
|
||||
c22.9658 -1.49023 41.8662 -19.4717 44.4805 -42.3379c0.213867 -1.83398 0.308594 -3.65918 0.308594 -5.5498c0 -5.30273 -0.860352 -10.4053 -2.4502 -15.1768c22.418 8.68555 49.4199 15.168 80.7207 15.168c68.6084 0 112.781 -32 161.913 -32zM464 112v240
|
||||
c-31.5059 -14.6338 -84.5547 -32 -127.826 -32c-59.9111 0 -101.968 32 -161.913 32c-41.4365 0 -80.4766 -16.5879 -102.261 -32v-232c31.4473 14.5967 84.4648 24 127.826 24c59.9111 0 101.968 -32 161.913 -32c41.4365 0 80.4775 16.5879 102.261 32z" />
|
||||
<glyph glyph-name="bookmark" unicode="" horiz-adv-x="384"
|
||||
d="M336 448c26.5098 0 48 -21.4902 48 -48v-464l-192 112l-192 -112v464c0 26.5098 21.4902 48 48 48h288zM336 19.5703v374.434c0 3.31348 -2.68555 5.99609 -6 5.99609h-276c-3.31152 0 -6 -2.68848 -6 -6v-374.43l144 84z" />
|
||||
<glyph glyph-name="image" unicode=""
|
||||
d="M464 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416zM458 48c3.31152 0 6 2.68848 6 6v276c0 3.31152 -2.68848 6 -6 6h-404c-3.31152 0 -6 -2.68848 -6 -6v-276
|
||||
c0 -3.31152 2.68848 -6 6 -6h404zM128 296c22.0908 0 40 -17.9092 40 -40s-17.9092 -40 -40 -40s-40 17.9092 -40 40s17.9092 40 40 40zM96 96v48l39.5137 39.5146c4.6875 4.68652 12.2852 4.68652 16.9717 0l39.5146 -39.5146l119.514 119.515
|
||||
c4.6875 4.68652 12.2852 4.68652 16.9717 0l87.5146 -87.5146v-80h-320z" />
|
||||
<glyph glyph-name="edit" unicode="" horiz-adv-x="576"
|
||||
d="M402.3 103.1l32 32c5 5 13.7002 1.5 13.7002 -5.69922v-145.4c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h273.5c7.09961 0 10.7002 -8.59961 5.7002 -13.7002l-32 -32c-1.5 -1.5 -3.5 -2.2998 -5.7002 -2.2998h-241.5v-352h352
|
||||
v113.5c0 2.09961 0.799805 4.09961 2.2998 5.59961zM558.9 304.9l-262.601 -262.601l-90.3994 -10c-26.2002 -2.89941 -48.5 19.2002 -45.6006 45.6006l10 90.3994l262.601 262.601c22.8994 22.8994 59.8994 22.8994 82.6992 0l43.2002 -43.2002
|
||||
c22.9004 -22.9004 22.9004 -60 0.100586 -82.7998zM460.1 274l-58.0996 58.0996l-185.8 -185.899l-7.2998 -65.2998l65.2998 7.2998zM524.9 353.7l-43.2002 43.2002c-4.10059 4.09961 -10.7998 4.09961 -14.7998 0l-30.9004 -30.9004l58.0996 -58.0996l30.9004 30.8994
|
||||
c4 4.2002 4 10.7998 -0.0996094 14.9004z" />
|
||||
<glyph glyph-name="times-circle" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM357.8 254.2l-62.2002 -62.2002l62.2002 -62.2002
|
||||
c4.7002 -4.7002 4.7002 -12.2998 0 -17l-22.5996 -22.5996c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-62.2002 62.2002l-62.2002 -62.2002c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-22.5996 22.5996c-4.7002 4.7002 -4.7002 12.2998 0 17l62.2002 62.2002l-62.2002 62.2002
|
||||
c-4.7002 4.7002 -4.7002 12.2998 0 17l22.5996 22.5996c4.7002 4.7002 12.2998 4.7002 17 0l62.2002 -62.2002l62.2002 62.2002c4.7002 4.7002 12.2998 4.7002 17 0l22.5996 -22.5996c4.7002 -4.7002 4.7002 -12.2998 0 -17z" />
|
||||
<glyph glyph-name="check-circle" unicode=""
|
||||
d="M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 392c-110.549 0 -200 -89.4678 -200 -200c0 -110.549 89.4678 -200 200 -200c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200z
|
||||
M396.204 261.733c4.66699 -4.70508 4.63672 -12.3037 -0.0673828 -16.9717l-172.589 -171.204c-4.70508 -4.66797 -12.3027 -4.63672 -16.9697 0.0683594l-90.7812 91.5156c-4.66797 4.70605 -4.63672 12.3047 0.0683594 16.9717l22.7188 22.5361
|
||||
c4.70508 4.66699 12.3027 4.63574 16.9697 -0.0693359l59.792 -60.2773l141.353 140.216c4.70508 4.66797 12.3027 4.6377 16.9697 -0.0673828z" />
|
||||
<glyph glyph-name="question-circle" unicode=""
|
||||
d="M256 440c136.957 0 248 -111.083 248 -248c0 -136.997 -111.043 -248 -248 -248s-248 111.003 -248 248c0 136.917 111.043 248 248 248zM256 -8c110.569 0 200 89.4697 200 200c0 110.529 -89.5088 200 -200 200c-110.528 0 -200 -89.5049 -200 -200
|
||||
c0 -110.569 89.4678 -200 200 -200zM363.244 247.2c0 -67.0518 -72.4209 -68.084 -72.4209 -92.8633v-6.33691c0 -6.62695 -5.37305 -12 -12 -12h-45.6475c-6.62695 0 -12 5.37305 -12 12v8.65918c0 35.7451 27.1006 50.0342 47.5791 61.5156
|
||||
c17.5615 9.84473 28.3242 16.541 28.3242 29.5791c0 17.2461 -21.999 28.6934 -39.7842 28.6934c-23.1885 0 -33.8936 -10.9775 -48.9424 -29.9697c-4.05664 -5.11914 -11.46 -6.07031 -16.666 -2.12402l-27.8232 21.0986
|
||||
c-5.10742 3.87207 -6.25098 11.0654 -2.64453 16.3633c23.627 34.6934 53.7217 54.1846 100.575 54.1846c49.0713 0 101.45 -38.3037 101.45 -88.7998zM298 80c0 -23.1592 -18.8408 -42 -42 -42s-42 18.8408 -42 42s18.8408 42 42 42s42 -18.8408 42 -42z" />
|
||||
<glyph glyph-name="eye" unicode="" horiz-adv-x="576"
|
||||
d="M288 304c0.114258 0 0.240234 -0.0175781 0.354492 -0.0175781c61.6543 0 111.71 -50.0557 111.71 -111.71s-50.0557 -111.71 -111.71 -111.71s-111.71 50.0557 -111.71 111.71c0 10.7422 1.51953 21.1328 4.35547 30.9678
|
||||
c7.95898 -4.52637 17.2129 -7.17188 27 -7.24023c30.9072 0 56 25.0928 56 56c-0.0683594 9.78711 -2.71387 19.041 -7.24023 27c9.88379 3.07617 20.3896 4.83008 31.2402 5zM572.52 206.6c2.21387 -4.37793 3.46094 -9.38965 3.46094 -14.626
|
||||
c0 -5.2373 -1.24707 -10.1855 -3.46094 -14.5635c-54.1992 -105.771 -161.59 -177.41 -284.52 -177.41s-230.29 71.5898 -284.52 177.4c-2.21387 4.37793 -3.46094 9.38965 -3.46094 14.626c0 5.2373 1.24707 10.1855 3.46094 14.5635
|
||||
c54.1992 105.771 161.59 177.41 284.52 177.41s230.29 -71.5898 284.52 -177.4zM288 48c98.6602 0 189.1 55 237.93 144c-48.8398 89 -139.27 144 -237.93 144s-189.09 -55 -237.93 -144c48.8398 -89 139.279 -144 237.93 -144z" />
|
||||
<glyph glyph-name="eye-slash" unicode="" horiz-adv-x="640"
|
||||
d="M634 -23c3.66895 -2.93262 6.00391 -7.45117 6.00391 -12.5088c0 -3.7832 -1.31543 -7.26074 -3.51367 -10.001l-10 -12.4902c-2.93359 -3.66309 -7.44824 -5.99414 -12.502 -5.99414c-3.77637 0 -7.25 1.31152 -9.98828 3.50391l-598 467.49
|
||||
c-3.66895 2.93262 -6.00391 7.45117 -6.00391 12.5088c0 3.7832 1.31543 7.26074 3.51367 10.001l10 12.4902c2.93359 3.66309 7.44824 5.99414 12.502 5.99414c3.77637 0 7.25 -1.31152 9.98828 -3.50391zM296.79 301.53c7.51172 1.60254 15.2266 2.45508 23.21 2.46973
|
||||
c60.4805 0 109.36 -47.9102 111.58 -107.85zM343.21 82.46c-7.51367 -1.59375 -15.2285 -2.44336 -23.21 -2.45996c-60.4697 0 -109.35 47.9102 -111.58 107.84zM320 336c-19.8799 0 -39.2803 -2.7998 -58.2197 -7.09961l-46.4102 36.29
|
||||
c32.9199 11.8096 67.9297 18.8096 104.63 18.8096c122.93 0 230.29 -71.5898 284.57 -177.4c2.21289 -4.37793 3.45996 -9.38965 3.45996 -14.626c0 -5.2373 -1.24707 -10.1855 -3.45996 -14.5635c-14.1924 -27.5625 -31.9229 -52.6689 -52.9004 -75.1104l-37.7402 29.5
|
||||
c17.2305 18.0527 31.9385 38.1318 44 60.2002c-48.8398 89 -139.279 144 -237.93 144zM320 48c19.8896 0 39.2803 2.7998 58.2197 7.08984l46.4102 -36.2803c-32.9199 -11.7598 -67.9297 -18.8096 -104.63 -18.8096c-122.92 0 -230.28 71.5898 -284.51 177.4
|
||||
c-2.21387 4.37793 -3.46094 9.38965 -3.46094 14.626c0 5.2373 1.24707 10.1855 3.46094 14.5635c14.1885 27.5586 31.916 52.6621 52.8896 75.1006l37.7402 -29.5c-17.249 -18.0469 -31.9727 -38.1221 -44.0498 -60.1904c48.8496 -89 139.279 -144 237.93 -144z" />
|
||||
<glyph glyph-name="calendar-alt" unicode="" horiz-adv-x="448"
|
||||
d="M148 160h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM256 172c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-40zM352 172c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM256 76c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40
|
||||
c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM160 76c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM352 76c0 -6.59961 -5.40039 -12 -12 -12h-40
|
||||
c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="comment" unicode=""
|
||||
d="M256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-32.7998 0 -64 5.2002 -92.9004 14.2998c-29.0996 -20.5996 -77.5996 -46.2998 -139.1 -46.2998c-9.59961 0 -18.2998 5.7002 -22.0996 14.5c-3.80078 8.7998 -2 19 4.59961 26
|
||||
c0.5 0.400391 31.5 33.7998 46.4004 73.2002c-33 35.0996 -52.9004 78.7002 -52.9004 126.3c0 114.9 114.6 208 256 208zM256 48c114.7 0 208 71.7998 208 160s-93.2998 160 -208 160s-208 -71.7998 -208 -160c0 -42.2002 21.7002 -74.0996 39.7998 -93.4004
|
||||
l20.6006 -21.7998l-10.6006 -28.0996c-5.5 -14.5 -12.5996 -28.1006 -19.8994 -40.2002c23.5996 7.59961 43.1992 18.9004 57.5 29l19.5 13.7998l22.6992 -7.2002c25.3008 -8 51.7002 -12.0996 78.4004 -12.0996z" />
|
||||
<glyph glyph-name="folder" unicode=""
|
||||
d="M464 320c26.5098 0 48 -21.4902 48 -48v-224c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h146.74c8.49023 0 16.6299 -3.37012 22.6299 -9.37012l54.6299 -54.6299h192zM464 48v224h-198.62
|
||||
c-8.49023 0 -16.6299 3.37012 -22.6299 9.37012l-54.6299 54.6299h-140.12v-288h416z" />
|
||||
<glyph glyph-name="folder-open" unicode="" horiz-adv-x="576"
|
||||
d="M527.9 224c37.6992 0 60.6992 -41.5 40.6992 -73.4004l-79.8994 -128c-8.7998 -14.0996 -24.2002 -22.5996 -40.7002 -22.5996h-400c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h160l64 -64h160c26.5 0 48 -21.5 48 -48v-48h47.9004zM48 330v-233.4l62.9004 104.2
|
||||
c8.69922 14.4004 24.2998 23.2002 41.0996 23.2002h280v42c0 3.2998 -2.7002 6 -6 6h-173.9l-64 64h-134.1c-3.2998 0 -6 -2.7002 -6 -6zM448 48l80 128h-378.8l-77.2002 -128h376z" />
|
||||
<glyph glyph-name="chart-bar" unicode=""
|
||||
d="M396.8 96c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v230.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-230.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM204.8 96
|
||||
c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v198.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-198.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM300.8 96
|
||||
c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v134.4c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-134.4c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004zM496 48c8.83984 0 16 -7.16016 16 -16v-16
|
||||
c0 -8.83984 -7.16016 -16 -16 -16h-464c-17.6699 0 -32 14.3301 -32 32v336c0 8.83984 7.16016 16 16 16h16c8.83984 0 16 -7.16016 16 -16v-320h448zM108.8 96c-6.39941 0 -12.7998 6.40039 -12.7998 12.7998v70.4004c0 6.39941 6.40039 12.7998 12.7998 12.7998h22.4004
|
||||
c6.39941 0 12.7998 -6.40039 12.7998 -12.7998v-70.4004c0 -6.39941 -6.40039 -12.7998 -12.7998 -12.7998h-22.4004z" />
|
||||
<glyph glyph-name="comments" unicode="" horiz-adv-x="576"
|
||||
d="M532 61.7998c15.2998 -30.7002 37.4004 -54.5 37.7998 -54.7998c6.2998 -6.7002 8 -16.5 4.40039 -25c-3.7002 -8.5 -12 -14 -21.2002 -14c-53.5996 0 -96.7002 20.2998 -125.2 38.7998c-19 -4.39941 -39 -6.7998 -59.7998 -6.7998
|
||||
c-86.2002 0 -159.9 40.4004 -191.3 97.7998c-9.7002 1.2002 -19.2002 2.7998 -28.4004 4.90039c-28.5 -18.6006 -71.7002 -38.7998 -125.2 -38.7998c-9.19922 0 -17.5996 5.5 -21.1992 14c-3.7002 8.5 -1.90039 18.2998 4.39941 25
|
||||
c0.400391 0.399414 22.4004 24.1992 37.7002 54.8994c-27.5 27.2002 -44 61.2002 -44 98.2002c0 88.4004 93.0996 160 208 160c86.2998 0 160.3 -40.5 191.8 -98.0996c99.7002 -11.8008 176.2 -77.9004 176.2 -157.9c0 -37.0996 -16.5 -71.0996 -44 -98.2002zM139.2 154.1
|
||||
l19.7998 -4.5c16 -3.69922 32.5 -5.59961 49 -5.59961c86.7002 0 160 51.2998 160 112s-73.2998 112 -160 112s-160 -51.2998 -160 -112c0 -28.7002 16.2002 -50.5996 29.7002 -64l24.7998 -24.5l-15.5 -31.0996c-2.59961 -5.10059 -5.2998 -10.1006 -8 -14.8008
|
||||
c14.5996 5.10059 29 12.3008 43.0996 21.4004zM498.3 96c13.5 13.4004 29.7002 35.2998 29.7002 64c0 49.2002 -48.2998 91.5 -112.7 106c0.299805 -3.2998 0.700195 -6.59961 0.700195 -10c0 -80.9004 -78 -147.5 -179.3 -158.3
|
||||
c29.0996 -29.6006 77.2998 -49.7002 131.3 -49.7002c16.5 0 33 1.90039 49 5.59961l19.9004 4.60059l17.0996 -11.1006c14.0996 -9.09961 28.5 -16.2998 43.0996 -21.3994c-2.69922 4.7002 -5.39941 9.7002 -8 14.7998l-15.5 31.0996z" />
|
||||
<glyph glyph-name="star-half" unicode="" horiz-adv-x="576"
|
||||
d="M288 62.7002v-54.2998l-130.7 -68.6006c-23.3994 -12.2998 -50.8994 7.60059 -46.3994 33.7002l25 145.5l-105.7 103c-19 18.5 -8.5 50.7998 17.7002 54.5996l146.1 21.2002l65.2998 132.4c5.90039 11.8994 17.2998 17.7998 28.7002 17.7998v-68.0996l-62.2002 -126
|
||||
l-139 -20.2002l100.601 -98l-23.7002 -138.4z" />
|
||||
<glyph glyph-name="lemon" unicode=""
|
||||
d="M484.112 420.111c28.1221 -28.123 35.9434 -68.0039 19.0215 -97.0547c-23.0576 -39.584 50.1436 -163.384 -82.3311 -295.86c-132.301 -132.298 -256.435 -59.3594 -295.857 -82.3291c-29.0459 -16.917 -68.9219 -9.11426 -97.0576 19.0205
|
||||
c-28.1221 28.1221 -35.9434 68.0029 -19.0215 97.0547c23.0566 39.5859 -50.1436 163.386 82.3301 295.86c132.308 132.309 256.407 59.3496 295.862 82.332c29.0498 16.9219 68.9307 9.09863 97.0537 -19.0234zM461.707 347.217
|
||||
c13.5166 23.2031 -27.7578 63.7314 -50.4883 50.4912c-66.6025 -38.7939 -165.646 45.5898 -286.081 -74.8457c-120.444 -120.445 -36.0449 -219.472 -74.8447 -286.08c-13.542 -23.2471 27.8145 -63.6953 50.4932 -50.4883
|
||||
c66.6006 38.7949 165.636 -45.5996 286.076 74.8428c120.444 120.445 36.0449 219.472 74.8447 286.08zM291.846 338.481c1.37012 -10.96 -6.40332 -20.957 -17.3643 -22.3271c-54.8467 -6.85547 -135.779 -87.7871 -142.636 -142.636
|
||||
c-1.37305 -10.9883 -11.3984 -18.7334 -22.3262 -17.3643c-10.9609 1.37012 -18.7344 11.3652 -17.3643 22.3262c9.16211 73.2852 104.167 168.215 177.364 177.364c10.9531 1.36816 20.9561 -6.40234 22.3262 -17.3633z" />
|
||||
<glyph glyph-name="credit-card" unicode="" horiz-adv-x="576"
|
||||
d="M527.9 416c26.5996 0 48.0996 -21.5 48.0996 -48v-352c0 -26.5 -21.5 -48 -48.0996 -48h-479.801c-26.5996 0 -48.0996 21.5 -48.0996 48v352c0 26.5 21.5 48 48.0996 48h479.801zM54.0996 368c-3.2998 0 -6 -2.7002 -6 -6v-42h479.801v42c0 3.2998 -2.7002 6 -6 6
|
||||
h-467.801zM521.9 16c3.2998 0 6 2.7002 6 6v170h-479.801v-170c0 -3.2998 2.7002 -6 6 -6h467.801zM192 116v-40c0 -6.59961 -5.40039 -12 -12 -12h-72c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h72c6.59961 0 12 -5.40039 12 -12zM384 116v-40
|
||||
c0 -6.59961 -5.40039 -12 -12 -12h-136c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h136c6.59961 0 12 -5.40039 12 -12z" />
|
||||
<glyph glyph-name="hdd" unicode="" horiz-adv-x="576"
|
||||
d="M567.403 212.358c5.59668 -8.04688 8.59668 -17.6113 8.59668 -27.4121v-136.946c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v136.946c0 10.167 3.19531 19.6465 8.59668 27.4121l105.08 151.053
|
||||
c8.67383 12.4678 23.0791 20.5889 39.4043 20.5889h269.838c16.3252 0 30.7305 -8.12109 39.4043 -20.5889zM153.081 336l-77.9131 -112h425.664l-77.9131 112h-269.838zM528 48v128h-480v-128h480zM496 112c0 -17.6729 -14.3271 -32 -32 -32s-32 14.3271 -32 32
|
||||
s14.3271 32 32 32s32 -14.3271 32 -32zM400 112c0 -17.6729 -14.3271 -32 -32 -32s-32 14.3271 -32 32s14.3271 32 32 32s32 -14.3271 32 -32z" />
|
||||
<glyph glyph-name="hand-point-right" unicode=""
|
||||
d="M428.8 310.4c45.0996 0 83.2002 -38.1016 83.2002 -83.2002c0 -45.6162 -37.7646 -83.2002 -83.2002 -83.2002h-35.6475c-1.71387 -7.70605 -4.43555 -15.2051 -7.92969 -22.0645c2.50586 -22.0059 -3.50293 -44.9775 -15.9844 -62.791
|
||||
c-1.14062 -52.4863 -37.3984 -91.1445 -99.9404 -91.1445h-21.2988c-60.0635 0 -98.5117 40 -127.2 40h-2.67871c-5.74707 -4.95215 -13.5361 -8 -22.1201 -8h-64c-17.6729 0 -32 12.8936 -32 28.7998v230.4c0 15.9062 14.3271 28.7998 32 28.7998h64.001
|
||||
c8.58398 0 16.373 -3.04785 22.1201 -8h2.67871c6.96387 0 14.8623 6.19336 30.1816 23.6689l0.128906 0.148438l0.130859 0.145508c8.85645 9.93652 18.1162 20.8398 25.8506 33.2529c18.7051 30.2471 30.3936 78.7842 75.707 78.7842c56.9277 0 92 -35.2861 92 -83.2002
|
||||
c0 -0.0283203 0 0.0361328 0 0.0078125c0 -7.66602 -0.748047 -15.1582 -2.17578 -22.4072h86.1768zM428.8 192c18.9756 0 35.2002 16.2246 35.2002 35.2002c0 18.7002 -16.7754 35.2002 -35.2002 35.2002h-158.399c0 17.3242 26.3994 35.1992 26.3994 70.3994
|
||||
c0 26.4004 -20.625 35.2002 -44 35.2002c-8.79395 0 -20.4443 -32.7119 -34.9258 -56.0996c-9.07422 -14.5752 -19.5244 -27.2256 -30.7988 -39.875c-16.1094 -18.374 -33.8359 -36.6328 -59.0752 -39.5967v-176.753c42.79 -3.7627 74.5088 -39.6758 120 -39.6758h21.2988
|
||||
c40.5244 0 57.124 22.1973 50.6006 61.3252c14.6113 8.00098 24.1514 33.9785 12.9248 53.625c19.3652 18.2246 17.7871 46.3809 4.9502 61.0498h91.0254zM88 64c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24z" />
|
||||
<glyph glyph-name="hand-point-left" unicode=""
|
||||
d="M0 227.2c0 45.0986 38.1006 83.2002 83.2002 83.2002h86.1758c-1.3623 6.91016 -2.17578 14.374 -2.17578 22.3994c0 47.9141 35.0723 83.2002 92 83.2002c45.3135 0 57.002 -48.5371 75.7061 -78.7852c7.73438 -12.4121 16.9951 -23.3154 25.8506 -33.2529
|
||||
l0.130859 -0.145508l0.128906 -0.148438c15.3213 -17.4746 23.2197 -23.668 30.1836 -23.668h2.67871c5.74707 4.95215 13.5361 8 22.1201 8h64c17.6729 0 32 -12.8936 32 -28.7998v-230.4c0 -15.9062 -14.3271 -28.7998 -32 -28.7998h-64
|
||||
c-8.58398 0 -16.373 3.04785 -22.1201 8h-2.67871c-28.6885 0 -67.1367 -40 -127.2 -40h-21.2988c-62.542 0 -98.8008 38.6582 -99.9404 91.1445c-12.4814 17.8135 -18.4922 40.7852 -15.9844 62.791c-3.49414 6.85938 -6.21582 14.3584 -7.92969 22.0645h-35.6465
|
||||
c-45.4355 0 -83.2002 37.584 -83.2002 83.2002zM48 227.2c0 -18.9756 16.2246 -35.2002 35.2002 -35.2002h91.0244c-12.8369 -14.6689 -14.415 -42.8252 4.9502 -61.0498c-11.2256 -19.6465 -1.68652 -45.624 12.9248 -53.625
|
||||
c-6.52246 -39.1279 10.0771 -61.3252 50.6016 -61.3252h21.2988c45.4912 0 77.21 35.9131 120 39.6768v176.752c-25.2393 2.96289 -42.9658 21.2227 -59.0752 39.5967c-11.2744 12.6494 -21.7246 25.2998 -30.7988 39.875
|
||||
c-14.4814 23.3877 -26.1318 56.0996 -34.9258 56.0996c-23.375 0 -44 -8.7998 -44 -35.2002c0 -35.2002 26.3994 -53.0752 26.3994 -70.3994h-158.399c-18.4248 0 -35.2002 -16.5 -35.2002 -35.2002zM448 88c-13.2549 0 -24 -10.7451 -24 -24s10.7451 -24 24 -24
|
||||
s24 10.7451 24 24s-10.7451 24 -24 24z" />
|
||||
<glyph glyph-name="hand-point-up" unicode="" horiz-adv-x="448"
|
||||
d="M105.6 364.8c0 45.0996 38.1016 83.2002 83.2002 83.2002c45.6162 0 83.2002 -37.7646 83.2002 -83.2002v-35.6465c7.70605 -1.71387 15.2051 -4.43555 22.0645 -7.92969c22.0059 2.50684 44.9775 -3.50293 62.791 -15.9844
|
||||
c52.4863 -1.14062 91.1445 -37.3984 91.1445 -99.9404v-21.2988c0 -60.0635 -40 -98.5117 -40 -127.2v-2.67871c4.95215 -5.74707 8 -13.5361 8 -22.1201v-64c0 -17.6729 -12.8936 -32 -28.7998 -32h-230.4c-15.9062 0 -28.7998 14.3271 -28.7998 32v64
|
||||
c0 8.58398 3.04785 16.373 8 22.1201v2.67871c0 6.96387 -6.19336 14.8623 -23.6689 30.1816l-0.148438 0.128906l-0.145508 0.130859c-9.93652 8.85645 -20.8398 18.1162 -33.2529 25.8506c-30.2471 18.7051 -78.7842 30.3936 -78.7842 75.707
|
||||
c0 56.9277 35.2861 92 83.2002 92c0.0283203 0 -0.0361328 0 -0.0078125 0c7.66602 0 15.1582 -0.748047 22.4072 -2.17578v86.1768zM224 364.8c0 18.9756 -16.2246 35.2002 -35.2002 35.2002c-18.7002 0 -35.2002 -16.7754 -35.2002 -35.2002v-158.399
|
||||
c-17.3242 0 -35.1992 26.3994 -70.3994 26.3994c-26.4004 0 -35.2002 -20.625 -35.2002 -44c0 -8.79395 32.7119 -20.4443 56.0996 -34.9258c14.5752 -9.07422 27.2256 -19.5244 39.875 -30.7988c18.374 -16.1094 36.6328 -33.8359 39.5967 -59.0752h176.753
|
||||
c3.7627 42.79 39.6758 74.5088 39.6758 120v21.2988c0 40.5244 -22.1973 57.124 -61.3252 50.6006c-8.00098 14.6113 -33.9785 24.1514 -53.625 12.9248c-18.2246 19.3652 -46.3809 17.7871 -61.0498 4.9502v91.0254zM352 24c-13.2549 0 -24 -10.7451 -24 -24
|
||||
s10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24z" />
|
||||
<glyph glyph-name="hand-point-down" unicode="" horiz-adv-x="448"
|
||||
d="M188.8 -64c-45.0986 0 -83.2002 38.1006 -83.2002 83.2002v86.1758c-6.91016 -1.3623 -14.374 -2.17578 -22.3994 -2.17578c-47.9141 0 -83.2002 35.0723 -83.2002 92c0 45.3135 48.5371 57.002 78.7852 75.707c12.4121 7.73438 23.3154 16.9951 33.2529 25.8506
|
||||
l0.145508 0.130859l0.148438 0.128906c17.4746 15.3213 23.668 23.2197 23.668 30.1836v2.67871c-4.95215 5.74707 -8 13.5361 -8 22.1201v64c0 17.6729 12.8936 32 28.7998 32h230.4c15.9062 0 28.7998 -14.3271 28.7998 -32v-64.001
|
||||
c0 -8.58398 -3.04785 -16.373 -8 -22.1201v-2.67871c0 -28.6885 40 -67.1367 40 -127.2v-21.2988c0 -62.542 -38.6582 -98.8008 -91.1445 -99.9404c-17.8135 -12.4814 -40.7852 -18.4922 -62.791 -15.9844c-6.85938 -3.49414 -14.3584 -6.21582 -22.0645 -7.92969v-35.6465
|
||||
c0 -45.4355 -37.584 -83.2002 -83.2002 -83.2002zM188.8 -16c18.9756 0 35.2002 16.2246 35.2002 35.2002v91.0244c14.6689 -12.8369 42.8252 -14.415 61.0498 4.9502c19.6465 -11.2256 45.624 -1.68652 53.625 12.9248c39.1279 -6.52246 61.3252 10.0771 61.3252 50.6016
|
||||
v21.2988c0 45.4912 -35.9131 77.21 -39.6768 120h-176.752c-2.96289 -25.2393 -21.2227 -42.9658 -39.5967 -59.0752c-12.6494 -11.2744 -25.2998 -21.7246 -39.875 -30.7988c-23.3877 -14.4814 -56.0996 -26.1318 -56.0996 -34.9258c0 -23.375 8.7998 -44 35.2002 -44
|
||||
c35.2002 0 53.0752 26.3994 70.3994 26.3994v-158.399c0 -18.4248 16.5 -35.2002 35.2002 -35.2002zM328 384c0 -13.2549 10.7451 -24 24 -24s24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24z" />
|
||||
<glyph glyph-name="copy" unicode="" horiz-adv-x="448"
|
||||
d="M433.941 382.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-80v-48c0 -26.5098 -21.4902 -48 -48 -48h-224c-26.5098 0 -48 21.4902 -48 48v320c0 26.5098 21.4902 48 48 48h80v48c0 26.5098 21.4902 48 48 48
|
||||
h172.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM266 -16c3.31152 0 6 2.68848 6 6v42h-96c-26.5098 0 -48 21.4902 -48 48v224h-74c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h212zM394 80c3.31152 0 6 2.68848 6 6v202h-88
|
||||
c-13.2549 0 -24 10.7451 -24 24v88h-106c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h212zM400 336v9.63184c0 1.65527 -0.670898 3.15723 -1.75684 4.24316l-48.3682 48.3682c-1.12598 1.125 -2.65234 1.75684 -4.24316 1.75684h-9.63184v-64h64z" />
|
||||
<glyph glyph-name="save" unicode="" horiz-adv-x="448"
|
||||
d="M433.941 318.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-268.118c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h268.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM272 368h-128v-80h128v80z
|
||||
M394 16c3.31152 0 6 2.68848 6 6v259.632c0 1.65527 -0.670898 3.15723 -1.75684 4.24316l-78.2432 78.2432v-100.118c0 -13.2549 -10.7451 -24 -24 -24h-176c-13.2549 0 -24 10.7451 -24 24v104h-42c-3.31152 0 -6 -2.68848 -6 -6v-340c0 -3.31152 2.68848 -6 6 -6h340z
|
||||
M224 216c48.5234 0 88 -39.4766 88 -88s-39.4766 -88 -88 -88s-88 39.4766 -88 88s39.4766 88 88 88zM224 88c22.0557 0 40 17.9443 40 40s-17.9443 40 -40 40s-40 -17.9443 -40 -40s17.9443 -40 40 -40z" />
|
||||
<glyph glyph-name="square" unicode="" horiz-adv-x="448"
|
||||
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM394 16c3.2998 0 6 2.7002 6 6v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340z" />
|
||||
<glyph glyph-name="envelope" unicode=""
|
||||
d="M464 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h416zM464 336h-416v-40.8047c22.4248 -18.2627 58.1797 -46.6602 134.587 -106.49
|
||||
c16.834 -13.2422 50.2051 -45.0762 73.4131 -44.7012c23.2119 -0.371094 56.5723 31.4541 73.4131 44.7012c76.4189 59.8389 112.165 88.2305 134.587 106.49v40.8047zM48 48h416v185.601c-22.915 -18.252 -55.4189 -43.8691 -104.947 -82.6523
|
||||
c-22.5439 -17.748 -60.3359 -55.1787 -103.053 -54.9473c-42.9277 -0.231445 -81.2051 37.75 -103.062 54.9551c-49.5293 38.7842 -82.0244 64.3945 -104.938 82.6455v-185.602z" />
|
||||
<glyph glyph-name="lightbulb" unicode="" horiz-adv-x="352"
|
||||
d="M176 368c8.83984 0 16 -7.16016 16 -16s-7.16016 -16 -16 -16c-35.2803 0 -64 -28.7002 -64 -64c0 -8.83984 -7.16016 -16 -16 -16s-16 7.16016 -16 16c0 52.9404 43.0596 96 96 96zM96.0596 -11.1699l-0.0400391 43.1797h159.961l-0.0507812 -43.1797
|
||||
c-0.00976562 -3.13965 -0.939453 -6.21973 -2.67969 -8.83984l-24.5098 -36.8398c-2.95996 -4.45996 -7.95996 -7.14062 -13.3203 -7.14062h-78.8496c-5.35059 0 -10.3506 2.68066 -13.3203 7.14062l-24.5098 36.8398c-1.75 2.62012 -2.68066 5.68945 -2.68066 8.83984z
|
||||
M176 448c97.2002 0 176 -78.7998 176 -176c0 -44.3701 -16.4502 -84.8496 -43.5498 -115.79c-16.6406 -18.9795 -42.7402 -58.79 -52.4199 -92.1602v-0.0498047h-48v0.0996094c0.00488281 4.98145 0.790039 9.78809 2.21973 14.3008
|
||||
c5.67969 17.9893 22.9902 64.8496 62.0996 109.46c20.4102 23.29 31.6504 53.1699 31.6504 84.1396c0 70.5801 -57.4199 128 -128 128c-68.2803 0 -128.15 -54.3604 -127.95 -128c0.0898438 -30.9902 11.0703 -60.71 31.6104 -84.1396
|
||||
c39.3496 -44.9004 56.5801 -91.8604 62.1699 -109.67c1.42969 -4.56055 2.13965 -9.30078 2.15039 -14.0703v-0.120117h-48v0.0595703c-9.68066 33.3604 -35.7803 73.1709 -52.4209 92.1602c-27.1094 30.9307 -43.5596 71.4102 -43.5596 115.78
|
||||
c0 93.0303 73.7197 176 176 176z" />
|
||||
<glyph glyph-name="bell" unicode="" horiz-adv-x="448"
|
||||
d="M439.39 85.71c6 -6.44043 8.66016 -14.1602 8.61035 -21.71c-0.0996094 -16.4004 -12.9805 -32 -32.0996 -32h-383.801c-19.1191 0 -31.9893 15.5996 -32.0996 32c-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c19.3193 20.7598 55.4697 51.9902 55.4697 154.29
|
||||
c0 77.7002 54.4795 139.9 127.939 155.16v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398c73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -102.3 36.1504 -133.53 55.4697 -154.29zM67.5303 80h312.939
|
||||
c-21.2197 27.96 -44.4199 74.3203 -44.5293 159.42c0 0.200195 0.0595703 0.379883 0.0595703 0.580078c0 61.8604 -50.1396 112 -112 112s-112 -50.1396 -112 -112c0 -0.200195 0.0595703 -0.379883 0.0595703 -0.580078
|
||||
c-0.109375 -85.0898 -23.3096 -131.45 -44.5293 -159.42zM224 -64c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z" />
|
||||
<glyph glyph-name="hospital" unicode="" horiz-adv-x="448"
|
||||
d="M128 204v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12zM268 192c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-40zM192 108c0 -6.62695 -5.37305 -12 -12 -12h-40c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-40zM268 96c-6.62695 0 -12 5.37305 -12 12v40c0 6.62695 5.37305 12 12 12h40
|
||||
c6.62695 0 12 -5.37305 12 -12v-40c0 -6.62695 -5.37305 -12 -12 -12h-40zM448 -28v-36h-448v36c0 6.62695 5.37305 12 12 12h19.5v378.965c0 11.6172 10.7451 21.0352 24 21.0352h88.5v40c0 13.2549 10.7451 24 24 24h112c13.2549 0 24 -10.7451 24 -24v-40h88.5
|
||||
c13.2549 0 24 -9.41797 24 -21.0352v-378.965h19.5c6.62695 0 12 -5.37305 12 -12zM79.5 -15h112.5v67c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-67h112.5v351h-64.5v-24c0 -13.2549 -10.7451 -24 -24 -24h-112c-13.2549 0 -24 10.7451 -24 24v24
|
||||
h-64.5v-351zM266 384h-26v26c0 3.31152 -2.68848 6 -6 6h-20c-3.31152 0 -6 -2.68848 -6 -6v-26h-26c-3.31152 0 -6 -2.68848 -6 -6v-20c0 -3.31152 2.68848 -6 6 -6h26v-26c0 -3.31152 2.68848 -6 6 -6h20c3.31152 0 6 2.68848 6 6v26h26c3.31152 0 6 2.68848 6 6v20
|
||||
c0 3.31152 -2.68848 6 -6 6z" />
|
||||
<glyph glyph-name="plus-square" unicode="" horiz-adv-x="448"
|
||||
d="M352 208v-32c0 -6.59961 -5.40039 -12 -12 -12h-88v-88c0 -6.59961 -5.40039 -12 -12 -12h-32c-6.59961 0 -12 5.40039 -12 12v88h-88c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h88v88c0 6.59961 5.40039 12 12 12h32c6.59961 0 12 -5.40039 12 -12
|
||||
v-88h88c6.59961 0 12 -5.40039 12 -12zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340
|
||||
c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="circle" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200z" />
|
||||
<glyph glyph-name="smile" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM332 135.4c8.5 10.1992 23.7002 11.5 33.7998 3.09961c10.2002 -8.5 11.6006 -23.5996 3.10059 -33.7998
|
||||
c-30 -36 -74.1006 -56.6006 -120.9 -56.6006s-90.9004 20.6006 -120.9 56.6006c-8.39941 10.2002 -7.09961 25.2998 3.10059 33.7998c10.0996 8.40039 25.2998 7.09961 33.7998 -3.09961c20.7998 -25.1006 51.5 -39.4004 84 -39.4004s63.2002 14.4004 84 39.4004z" />
|
||||
<glyph glyph-name="frown" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM248 144c40.2002 0 78 -17.7002 103.8 -48.5996c8.40039 -10.2002 7.10059 -25.3008 -3.09961 -33.8008
|
||||
c-10.7002 -8.7998 -25.7002 -6.59961 -33.7998 3.10059c-16.6006 20 -41 31.3994 -66.9004 31.3994s-50.2998 -11.5 -66.9004 -31.3994c-8.5 -10.2002 -23.5996 -11.5 -33.7998 -3.10059c-10.2002 8.5 -11.5996 23.6006 -3.09961 33.8008
|
||||
c25.7998 30.8994 63.5996 48.5996 103.8 48.5996z" />
|
||||
<glyph glyph-name="meh" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM336 128c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-176c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h176z
|
||||
" />
|
||||
<glyph glyph-name="keyboard" unicode="" horiz-adv-x="576"
|
||||
d="M528 384c26.5098 0 48 -21.4902 48 -48v-288c0 -26.5098 -21.4902 -48 -48 -48h-480c-26.5098 0 -48 21.4902 -48 48v288c0 26.5098 21.4902 48 48 48h480zM536 48v288c0 4.41113 -3.58887 8 -8 8h-480c-4.41113 0 -8 -3.58887 -8 -8v-288c0 -4.41113 3.58887 -8 8 -8
|
||||
h480c4.41113 0 8 3.58887 8 8zM170 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM266 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28
|
||||
c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM362 178c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM458 178c0 -6.62695 -5.37305 -12 -12 -12h-28
|
||||
c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM122 96c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM506 96
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM122 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28
|
||||
c6.62695 0 12 -5.37305 12 -12v-28zM218 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM314 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28
|
||||
c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM410 260c0 -6.62695 -5.37305 -12 -12 -12h-28c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM506 260c0 -6.62695 -5.37305 -12 -12 -12h-28
|
||||
c-6.62695 0 -12 5.37305 -12 12v28c0 6.62695 5.37305 12 12 12h28c6.62695 0 12 -5.37305 12 -12v-28zM408 102c0 -6.62695 -5.37305 -12 -12 -12h-216c-6.62695 0 -12 5.37305 -12 12v16c0 6.62695 5.37305 12 12 12h216c6.62695 0 12 -5.37305 12 -12v-16z" />
|
||||
<glyph glyph-name="calendar" unicode="" horiz-adv-x="448"
|
||||
d="M400 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12
|
||||
v-52h48zM394 -16c3.2998 0 6 2.7002 6 6v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340z" />
|
||||
<glyph glyph-name="play-circle" unicode=""
|
||||
d="M371.7 210c16.3994 -9.2002 16.3994 -32.9004 0 -42l-176 -101c-15.9004 -8.7998 -35.7002 2.59961 -35.7002 21v208c0 18.5 19.9004 29.7998 35.7002 21zM504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192
|
||||
c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200z" />
|
||||
<glyph glyph-name="minus-square" unicode="" horiz-adv-x="448"
|
||||
d="M108 164c-6.59961 0 -12 5.40039 -12 12v32c0 6.59961 5.40039 12 12 12h232c6.59961 0 12 -5.40039 12 -12v-32c0 -6.59961 -5.40039 -12 -12 -12h-232zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352
|
||||
c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="check-square" unicode="" horiz-adv-x="448"
|
||||
d="M400 416c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h352zM400 16v352h-352v-352h352zM364.136 257.724l-172.589 -171.204
|
||||
c-4.70508 -4.66699 -12.3027 -4.63672 -16.9697 0.0683594l-90.7812 91.5156c-4.66699 4.70508 -4.63672 12.3037 0.0693359 16.9717l22.7188 22.5361c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0693359l59.792 -60.2773l141.353 140.217
|
||||
c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0683594l22.5361 -22.7178c4.66699 -4.70605 4.63672 -12.3047 -0.0683594 -16.9717z" />
|
||||
<glyph glyph-name="share-square" unicode="" horiz-adv-x="576"
|
||||
d="M561.938 289.94c18.75 -18.7402 18.75 -49.1406 0 -67.8809l-143.998 -144c-29.9727 -29.9727 -81.9404 -9.05273 -81.9404 33.9404v53.7998c-101.266 -7.83691 -99.625 -31.6406 -84.1104 -78.7598c14.2285 -43.0889 -33.4736 -79.248 -71.0195 -55.7402
|
||||
c-51.6924 32.3057 -84.8701 83.0635 -84.8701 144.76c0 39.3408 12.2197 72.7402 36.3301 99.3008c19.8398 21.8398 47.7402 38.4697 82.9102 49.4199c36.7295 11.4395 78.3096 16.1094 120.76 17.9893v57.1982c0 42.9355 51.9258 63.9541 81.9404 33.9404zM384 112l144 144
|
||||
l-144 144v-104.09c-110.86 -0.90332 -240 -10.5166 -240 -119.851c0 -52.1396 32.79 -85.6094 62.3096 -104.06c-39.8174 120.65 48.999 141.918 177.69 143.84v-103.84zM408.74 27.5068c7.4375 2.125 14.5508 5.30566 20.9736 9.30273
|
||||
c7.97656 4.95215 18.2861 -0.825195 18.2861 -10.2139v-42.5957c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h132c6.62695 0 12 -5.37305 12 -12v-4.48633c0 -4.91699 -2.9873 -9.36914 -7.56934 -11.1514
|
||||
c-13.7021 -5.33105 -26.3955 -11.5371 -38.0498 -18.585c-1.82715 -1.11523 -3.98633 -1.76953 -6.28027 -1.77734h-86.1006c-3.31152 0 -6 -2.68848 -6 -6v-340c0 -3.31152 2.68848 -6 6 -6h340c3.31152 0 6 2.68848 6 6v25.9658c0 5.37012 3.5791 10.0596 8.74023 11.541z
|
||||
" />
|
||||
<glyph glyph-name="compass" unicode="" horiz-adv-x="496"
|
||||
d="M347.94 318.14c16.6592 7.61035 33.8096 -9.54004 26.1992 -26.1992l-65.9697 -144.341c-3.19238 -6.9834 -8.78613 -12.5771 -15.7695 -15.7695l-144.341 -65.9697c-16.6592 -7.61035 -33.8096 9.5498 -26.1992 26.1992l65.9697 144.341
|
||||
c3.19238 6.9834 8.78613 12.5771 15.7695 15.7695zM270.58 169.42c12.4697 12.4697 12.4697 32.6904 0 45.1602s-32.6904 12.4697 -45.1602 0s-12.4697 -32.6904 0 -45.1602s32.6904 -12.4697 45.1602 0zM248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248
|
||||
s-248 111.03 -248 248s111.03 248 248 248zM248 -8c110.28 0 200 89.7197 200 200s-89.7197 200 -200 200s-200 -89.7197 -200 -200s89.7197 -200 200 -200z" />
|
||||
<glyph glyph-name="caret-square-down" unicode="" horiz-adv-x="448"
|
||||
d="M125.1 240h197.801c10.6992 0 16.0996 -13 8.5 -20.5l-98.9004 -98.2998c-4.7002 -4.7002 -12.2002 -4.7002 -16.9004 0l-98.8994 98.2998c-7.7002 7.5 -2.2998 20.5 8.39941 20.5zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="caret-square-up" unicode="" horiz-adv-x="448"
|
||||
d="M322.9 144h-197.801c-10.6992 0 -16.0996 13 -8.5 20.5l98.9004 98.2998c4.7002 4.7002 12.2002 4.7002 16.9004 0l98.8994 -98.2998c7.7002 -7.5 2.2998 -20.5 -8.39941 -20.5zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="caret-square-right" unicode="" horiz-adv-x="448"
|
||||
d="M176 93.0996v197.801c0 10.6992 13 16.0996 20.5 8.5l98.2998 -98.9004c4.7002 -4.7002 4.7002 -12.2002 0 -16.9004l-98.2998 -98.8994c-7.5 -7.7002 -20.5 -2.2998 -20.5 8.39941zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="file" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416z" />
|
||||
<glyph glyph-name="file-alt" unicode="" horiz-adv-x="384"
|
||||
d="M288 200v-28c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v28c0 6.59961 5.40039 12 12 12h168c6.59961 0 12 -5.40039 12 -12zM276 128c6.59961 0 12 -5.40039 12 -12v-28c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12
|
||||
v28c0 6.59961 5.40039 12 12 12h168zM384 316.1v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996l83.9004 -83.9004c9 -8.90039 14.0996 -21.2002 14.0996 -33.9004z
|
||||
M256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416h288z" />
|
||||
<glyph glyph-name="thumbs-up" unicode=""
|
||||
d="M466.27 161.31c4.6748 -22.6465 0.864258 -44.5371 -8.98926 -62.9893c2.95898 -23.8682 -4.02148 -48.5654 -17.3398 -66.9902c-0.954102 -55.9072 -35.8232 -95.3301 -112.94 -95.3301c-7 0 -15 0.00976562 -22.2197 0.00976562
|
||||
c-102.742 0 -133.293 38.9395 -177.803 39.9404c-3.56934 -13.7764 -16.085 -23.9502 -30.9775 -23.9502h-64c-17.6729 0 -32 14.3271 -32 32v240c0 17.6729 14.3271 32 32 32h98.7598c19.1455 16.9531 46.0137 60.6533 68.7598 83.4004
|
||||
c13.667 13.667 10.1533 108.6 71.7607 108.6c57.5801 0 95.2695 -31.9355 95.2695 -104.73c0 -18.4092 -3.92969 -33.7295 -8.84961 -46.5391h36.4795c48.6025 0 85.8203 -41.5654 85.8203 -85.5801c0 -19.1504 -4.95996 -34.9902 -13.7305 -49.8408zM404.52 107.48
|
||||
c21.5811 20.3838 18.6992 51.0645 5.21094 65.6191c9.44922 0 22.3594 18.9102 22.2695 37.8105c-0.0898438 18.9102 -16.71 37.8203 -37.8203 37.8203h-103.989c0 37.8193 28.3594 55.3691 28.3594 94.5391c0 23.75 0 56.7305 -47.2695 56.7305
|
||||
c-18.9102 -18.9102 -9.45996 -66.1797 -37.8203 -94.54c-26.5596 -26.5703 -66.1797 -97.46 -94.54 -97.46h-10.9199v-186.17c53.6113 0 100.001 -37.8203 171.64 -37.8203h37.8203c35.5117 0 60.8203 17.1201 53.1201 65.9004
|
||||
c15.2002 8.16016 26.5 36.4395 13.9395 57.5703zM88 16c0 13.2549 -10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24s24 10.7451 24 24z" />
|
||||
<glyph glyph-name="thumbs-down" unicode=""
|
||||
d="M466.27 222.69c8.77051 -14.8506 13.7305 -30.6904 13.7305 -49.8408c0 -44.0146 -37.2178 -85.5801 -85.8203 -85.5801h-36.4795c4.91992 -12.8096 8.84961 -28.1299 8.84961 -46.5391c0 -72.7949 -37.6895 -104.73 -95.2695 -104.73
|
||||
c-61.6074 0 -58.0938 94.9326 -71.7607 108.6c-22.7461 22.7471 -49.6133 66.4473 -68.7598 83.4004h-7.05176c-5.5332 -9.56152 -15.8662 -16 -27.708 -16h-64c-17.6729 0 -32 14.3271 -32 32v240c0 17.6729 14.3271 32 32 32h64c8.11328 0 15.5146 -3.02539 21.1553 -8
|
||||
h10.8447c40.9971 0 73.1953 39.9902 176.78 39.9902c7.21973 0 15.2197 0.00976562 22.2197 0.00976562c77.1172 0 111.986 -39.4229 112.94 -95.3301c13.3184 -18.4248 20.2979 -43.1221 17.3398 -66.9902c9.85352 -18.4521 13.6641 -40.3428 8.98926 -62.9893zM64 152
|
||||
c13.2549 0 24 10.7451 24 24s-10.7451 24 -24 24s-24 -10.7451 -24 -24s10.7451 -24 24 -24zM394.18 135.27c21.1104 0 37.7305 18.9102 37.8203 37.8203c0.0898438 18.9004 -12.8203 37.8105 -22.2695 37.8105c13.4883 14.5547 16.3701 45.2354 -5.21094 65.6191
|
||||
c12.5605 21.1309 1.26074 49.4102 -13.9395 57.5703c7.7002 48.7803 -17.6084 65.9004 -53.1201 65.9004h-37.8203c-71.6387 0 -118.028 -37.8203 -171.64 -37.8203v-186.17h10.9199c28.3604 0 67.9805 -70.8896 94.54 -97.46
|
||||
c28.3604 -28.3604 18.9102 -75.6299 37.8203 -94.54c47.2695 0 47.2695 32.9805 47.2695 56.7305c0 39.1699 -28.3594 56.7197 -28.3594 94.5391h103.989z" />
|
||||
<glyph glyph-name="sun" unicode=""
|
||||
d="M494.2 226.1c11.2002 -7.59961 17.7998 -20.0996 17.8994 -33.6992c0 -13.4004 -6.69922 -26 -17.7998 -33.5l-59.7998 -40.5l13.7002 -71c2.5 -13.2002 -1.60059 -26.8008 -11.1006 -36.3008s-22.8994 -13.7998 -36.2998 -11.0996l-70.8994 13.7002l-40.4004 -59.9004
|
||||
c-7.5 -11.0996 -20.0996 -17.7998 -33.5 -17.7998s-26 6.7002 -33.5 17.9004l-40.4004 59.8994l-70.7998 -13.7002c-13.3994 -2.59961 -26.7998 1.60059 -36.2998 11.1006s-13.7002 23.0996 -11.0996 36.2998l13.6992 71l-59.7998 40.5
|
||||
c-11.0996 7.5 -17.7998 20 -17.7998 33.5s6.59961 26 17.7998 33.5996l59.7998 40.5l-13.6992 71c-2.60059 13.2002 1.59961 26.7002 11.0996 36.3008c9.5 9.59961 23 13.6992 36.2998 11.1992l70.7998 -13.6992l40.4004 59.8994c15.0996 22.2998 51.9004 22.2998 67 0
|
||||
l40.4004 -59.8994l70.8994 13.6992c13 2.60059 26.6006 -1.59961 36.2002 -11.0996c9.5 -9.59961 13.7002 -23.2002 11.0996 -36.4004l-13.6992 -71zM381.3 140.5l76.7998 52.0996l-76.7998 52l17.6006 91.1006l-91 -17.6006l-51.9004 76.9004l-51.7998 -76.7998
|
||||
l-91 17.5996l17.5996 -91.2002l-76.7998 -52l76.7998 -52l-17.5996 -91.1992l90.8994 17.5996l51.9004 -77l51.9004 76.9004l91 -17.6006zM256 296c57.2998 0 104 -46.7002 104 -104s-46.7002 -104 -104 -104s-104 46.7002 -104 104s46.7002 104 104 104zM256 136
|
||||
c30.9004 0 56 25.0996 56 56s-25.0996 56 -56 56s-56 -25.0996 -56 -56s25.0996 -56 56 -56z" />
|
||||
<glyph glyph-name="moon" unicode=""
|
||||
d="M279.135 -64c-141.424 0 -256 114.64 -256 256c0 141.425 114.641 256 256 256c16.0342 -0.00292969 31.5078 -1.46875 46.7354 -4.27734c44.0205 -8.13086 53.7666 -66.8691 15.0215 -88.9189c-41.374 -23.5439 -67.4336 -67.4121 -67.4336 -115.836
|
||||
c0 -83.5234 75.9238 -146.475 158.272 -130.792c43.6904 8.32129 74.5186 -42.5693 46.248 -77.4004c-47.8613 -58.9717 -120.088 -94.7754 -198.844 -94.7754zM279.135 400c-114.875 0 -208 -93.125 -208 -208s93.125 -208 208 -208
|
||||
c65.2314 0 123.439 30.0361 161.575 77.0244c-111.611 -21.2568 -215.252 64.0957 -215.252 177.943c0 67.5127 36.9326 126.392 91.6934 157.555c-12.3271 2.27637 -25.0312 3.47754 -38.0166 3.47754z" />
|
||||
<glyph glyph-name="caret-square-left" unicode="" horiz-adv-x="448"
|
||||
d="M272 290.9v-197.801c0 -10.6992 -13 -16.0996 -20.5 -8.5l-98.2998 98.9004c-4.7002 4.7002 -4.7002 12.2002 0 16.9004l98.2998 98.8994c7.5 7.7002 20.5 2.2998 20.5 -8.39941zM448 368v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352
|
||||
c0 26.5 21.5 48 48 48h352c26.5 0 48 -21.5 48 -48zM400 22v340c0 3.2998 -2.7002 6 -6 6h-340c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="dot-circle" unicode=""
|
||||
d="M256 392c-110.549 0 -200 -89.4678 -200 -200c0 -110.549 89.4678 -200 200 -200c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200zM256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248z
|
||||
M256 272c44.1826 0 80 -35.8174 80 -80s-35.8174 -80 -80 -80s-80 35.8174 -80 80s35.8174 80 80 80z" />
|
||||
<glyph glyph-name="building" unicode="" horiz-adv-x="448"
|
||||
d="M128 300v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12zM268 288c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40
|
||||
c0 -6.59961 -5.40039 -12 -12 -12h-40zM140 192c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM268 192c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM192 108c0 -6.59961 -5.40039 -12 -12 -12h-40c-6.59961 0 -12 5.40039 -12 12v40c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40zM268 96c-6.59961 0 -12 5.40039 -12 12v40
|
||||
c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-40zM448 -28v-36h-448v36c0 6.59961 5.40039 12 12 12h19.5v440c0 13.2998 10.7002 24 24 24h337c13.2998 0 24 -10.7002 24 -24v-440h19.5
|
||||
c6.59961 0 12 -5.40039 12 -12zM79.5 -15h112.5v67c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-67h112.5v414l-288.5 1z" />
|
||||
<glyph glyph-name="file-pdf" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM298.2 127.7c10.5 -10.5 8 -38.7002 -17.5 -38.7002c-14.7998 0 -36.9004 6.7998 -55.7998 17c-21.6006 -3.59961 -46 -12.7002 -68.4004 -20.0996c-50.0996 -86.4004 -79.4004 -47 -76.0996 -31.2002
|
||||
c4 20 31 35.8994 51 46.2002c10.5 18.3994 25.3994 50.5 35.3994 74.3994c-7.39941 28.6006 -11.3994 51 -7 67.1006c4.7998 17.6992 38.4004 20.2998 42.6006 -5.90039c4.69922 -15.4004 -1.5 -39.9004 -5.40039 -56c8.09961 -21.2998 19.5996 -35.7998 36.7998 -46.2998
|
||||
c17.4004 2.2002 52.2002 5.5 64.4004 -6.5zM100.1 49.9004c0 -0.700195 11.4004 4.69922 30.4004 35c-5.90039 -5.5 -25.2998 -21.3008 -30.4004 -35zM181.7 240.5c-2.5 0 -2.60059 -26.9004 1.7998 -40.7998c4.90039 8.7002 5.59961 40.7998 -1.7998 40.7998zM157.3 103.9
|
||||
c15.9004 6.09961 34 14.8994 54.7998 19.1992c-11.1992 8.30078 -21.7998 20.4004 -30.0996 35.5c-6.7002 -17.6992 -15 -37.7998 -24.7002 -54.6992zM288.9 108.9c3.59961 2.39941 -2.2002 10.3994 -37.3008 7.7998c32.3008 -13.7998 37.3008 -7.7998 37.3008 -7.7998z" />
|
||||
<glyph glyph-name="file-word" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM268.1 192v0.200195h15.8008c7.7998 0 13.5 -7.2998 11.5996 -14.9004c-4.2998 -17 -13.7002 -54.0996 -34.5 -136c-1.2998 -5.39941 -6.09961 -9.09961 -11.5996 -9.09961h-24.7002
|
||||
c-5.5 0 -10.2998 3.7998 -11.6006 9.09961c-5.2998 20.9004 -17.7998 71 -17.8994 71.4004l-2.90039 17.2998c-0.5 -5.2998 -1.5 -11.0996 -3 -17.2998l-17.8994 -71.4004c-1.30078 -5.39941 -6.10059 -9.09961 -11.6006 -9.09961h-25.2002
|
||||
c-5.59961 0 -10.3994 3.7002 -11.6992 9.09961c-6.5 26.5 -25.2002 103.4 -33.2002 136c-1.7998 7.5 3.89941 14.7998 11.7002 14.7998h16.7998c5.7998 0 10.7002 -4.09961 11.7998 -9.69922c5 -25.7002 18.4004 -93.8008 19.0996 -99
|
||||
c0.300781 -1.7002 0.400391 -3.10059 0.5 -4.2002c0.800781 7.5 0.400391 4.7002 24.8008 103.7c1.39941 5.2998 6.19922 9.09961 11.6992 9.09961h13.3008c5.59961 0 10.3994 -3.7998 11.6992 -9.2002c23.9004 -99.7002 22.8008 -94.3994 23.6006 -99.5
|
||||
c0.299805 -1.7002 0.5 -3.09961 0.700195 -4.2998c0.599609 8.09961 0.399414 5.7998 21 103.5c1.09961 5.5 6 9.5 11.6992 9.5z" />
|
||||
<glyph glyph-name="file-excel" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM260 224c9.2002 0 15 -10 10.2998 -18c-16 -27.5 -45.5996 -76.9004 -46.2998 -78l46.4004 -78c4.59961 -8 -1.10059 -18 -10.4004 -18h-28.7998c-4.40039 0 -8.5 2.40039 -10.6006 6.2998
|
||||
c-22.6992 41.7998 -13.6992 27.5 -28.5996 57.7002c-5.59961 -12.7002 -6.90039 -17.7002 -28.5996 -57.7002c-2.10059 -3.89941 -6.10059 -6.2998 -10.5 -6.2998h-28.9004c-9.2998 0 -15.0996 10 -10.4004 18l46.3008 78l-46.3008 78c-4.59961 8 1.10059 18 10.4004 18
|
||||
h28.9004c4.39941 0 8.5 -2.40039 10.5996 -6.2998c21.7002 -40.4004 14.7002 -28.6006 28.5996 -57.7002c6.40039 15.2998 10.6006 24.5996 28.6006 57.7002c2.09961 3.89941 6.09961 6.2998 10.5 6.2998h28.7998z" />
|
||||
<glyph glyph-name="file-powerpoint" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM120 44v168c0 6.59961 5.40039 12 12 12h69.2002c36.7002 0 62.7998 -27 62.7998 -66.2998c0 -74.2998 -68.7002 -66.5 -95.5 -66.5v-47.2002c0 -6.59961 -5.40039 -12 -12 -12h-24.5c-6.59961 0 -12 5.40039 -12 12z
|
||||
M168.5 131.4h23c7.90039 0 13.9004 2.39941 18.0996 7.19922c8.5 9.80078 8.40039 28.5 0.100586 37.8008c-4.10059 4.59961 -9.90039 7 -17.4004 7h-23.8994v-52h0.0996094z" />
|
||||
<glyph glyph-name="file-image" unicode="" horiz-adv-x="384"
|
||||
d="M369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM332.1 320l-76.0996 76.0996v-76.0996h76.0996zM48 -16h288v288
|
||||
h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416zM80 32v64l39.5 39.5c4.7002 4.7002 12.2998 4.7002 17 0l39.5 -39.5l87.5 87.5c4.7002 4.7002 12.2998 4.7002 17 0l23.5 -23.5v-128h-224zM128 272c26.5 0 48 -21.5 48 -48s-21.5 -48 -48 -48s-48 21.5 -48 48
|
||||
s21.5 48 48 48z" />
|
||||
<glyph glyph-name="file-archive" unicode="" horiz-adv-x="384"
|
||||
d="M128.3 288h32v-32h-32v32zM192.3 384v-32h-32v32h32zM128.3 352h32v-32h-32v32zM192.3 320v-32h-32v32h32zM369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1
|
||||
c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-48.2998v-16h-32v16h-79.7002v-416h288zM194.2 182.3l17.2998 -87.7002c6.40039 -32.3994 -18.4004 -62.5996 -51.5 -62.5996
|
||||
c-33.2002 0 -58 30.4004 -51.4004 62.9004l19.7002 97.0996v32h32v-32h22.1006c5.7998 0 10.6992 -4.09961 11.7998 -9.7002zM160.3 57.9004c17.9004 0 32.4004 12.0996 32.4004 27c0 14.8994 -14.5 27 -32.4004 27c-17.8994 0 -32.3994 -12.1006 -32.3994 -27
|
||||
c0 -14.9004 14.5 -27 32.3994 -27zM192.3 256v-32h-32v32h32z" />
|
||||
<glyph glyph-name="file-audio" unicode="" horiz-adv-x="384"
|
||||
d="M369.941 350.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-332.118c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h204.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM332.118 320
|
||||
l-76.1182 76.1182v-76.1182h76.1182zM48 -16h288v288h-104c-13.2549 0 -24 10.7451 -24 24v104h-160v-416zM192 60.0244c0 -10.6914 -12.9258 -16.0459 -20.4854 -8.48535l-35.5146 35.9746h-28c-6.62695 0 -12 5.37305 -12 12v56c0 6.62695 5.37305 12 12 12h28
|
||||
l35.5146 36.9473c7.56055 7.56055 20.4854 2.20605 20.4854 -8.48535v-135.951zM233.201 107.154c9.05078 9.29688 9.05957 24.1328 0.000976562 33.4385c-22.1494 22.752 12.2344 56.2461 34.3945 33.4814c27.1982 -27.9404 27.2119 -72.4443 0.000976562 -100.401
|
||||
c-21.793 -22.3857 -56.9463 10.3154 -34.3965 33.4814z" />
|
||||
<glyph glyph-name="file-video" unicode="" horiz-adv-x="384"
|
||||
d="M369.941 350.059c8.68848 -8.68848 14.0586 -20.6943 14.0586 -33.9404v-332.118c0 -26.5098 -21.4902 -48 -48 -48h-288c-26.5098 0 -48 21.4902 -48 48v416c0 26.5098 21.4902 48 48 48h204.118c13.2461 0 25.252 -5.37012 33.9404 -14.0586zM332.118 320
|
||||
l-76.1182 76.1182v-76.1182h76.1182zM48 -16h288v288h-104c-13.2549 0 -24 10.7451 -24 24v104h-160v-416zM276.687 195.303c10.0049 10.0049 27.3135 2.99707 27.3135 -11.3135v-111.976c0 -14.2939 -17.2959 -21.332 -27.3135 -11.3135l-52.6865 52.6738v-37.374
|
||||
c0 -11.0459 -8.9541 -20 -20 -20h-104c-11.0459 0 -20 8.9541 -20 20v104c0 11.0459 8.9541 20 20 20h104c11.0459 0 20 -8.9541 20 -20v-37.374z" />
|
||||
<glyph glyph-name="file-code" unicode="" horiz-adv-x="384"
|
||||
d="M149.9 98.9004c3.5 -3.30078 3.69922 -8.90039 0.399414 -12.4004l-17.3994 -18.5996c-1.60059 -1.80078 -4 -2.80078 -6.40039 -2.80078c-2.2002 0 -4.40039 0.900391 -6 2.40039l-57.7002 54.0996c-3.7002 3.40039 -3.7002 9.30078 0 12.8008l57.7002 54.0996
|
||||
c3.40039 3.2998 9 3.2002 12.4004 -0.400391l17.3994 -18.5996l0.200195 -0.200195c3.2002 -3.59961 2.7998 -9.2002 -0.799805 -12.3994l-32.7998 -28.9004l32.7998 -28.9004zM369.9 350.1c9 -9 14.0996 -21.2998 14.0996 -34v-332.1c0 -26.5 -21.5 -48 -48 -48h-288
|
||||
c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48.0996h204.1c12.7002 0 24.9004 -5.09961 33.9004 -14.0996zM256 396.1v-76.0996h76.0996zM336 -16v288h-104c-13.2998 0 -24 10.7002 -24 24v104h-160v-416h288zM209.6 234l24.4004 -7
|
||||
c4.7002 -1.2998 7.40039 -6.2002 6 -10.9004l-54.7002 -188.199c-1.2998 -4.60059 -6.2002 -7.40039 -10.8994 -6l-24.4004 7.09961c-4.7002 1.2998 -7.40039 6.2002 -6 10.9004l54.7002 188.1c1.39941 4.7002 6.2002 7.40039 10.8994 6zM234.1 157.1
|
||||
c-3.5 3.30078 -3.69922 8.90039 -0.399414 12.4004l17.3994 18.5996c3.30078 3.60059 8.90039 3.7002 12.4004 0.400391l57.7002 -54.0996c3.7002 -3.40039 3.7002 -9.30078 0 -12.8008l-57.7002 -54.0996c-3.5 -3.2998 -9.09961 -3.09961 -12.4004 0.400391
|
||||
l-17.3994 18.5996l-0.200195 0.200195c-3.2002 3.59961 -2.7998 9.2002 0.799805 12.3994l32.7998 28.9004l-32.7998 28.9004z" />
|
||||
<glyph glyph-name="life-ring" unicode=""
|
||||
d="M256 -56c-136.967 0 -248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248s-111.033 -248 -248 -248zM152.602 20.7197c63.2178 -38.3184 143.579 -38.3184 206.797 0l-53.4111 53.4111c-31.8467 -13.5215 -68.168 -13.5059 -99.9746 0zM336 192
|
||||
c0 44.1123 -35.8877 80 -80 80s-80 -35.8877 -80 -80s35.8877 -80 80 -80s80 35.8877 80 80zM427.28 88.6016c38.3184 63.2178 38.3184 143.579 0 206.797l-53.4111 -53.4111c13.5215 -31.8467 13.5049 -68.168 0 -99.9746zM359.397 363.28
|
||||
c-63.2168 38.3184 -143.578 38.3184 -206.796 0l53.4111 -53.4111c31.8457 13.5215 68.167 13.5049 99.9736 0zM84.7197 295.398c-38.3184 -63.2178 -38.3184 -143.579 0 -206.797l53.4111 53.4111c-13.5215 31.8467 -13.5059 68.168 0 99.9746z" />
|
||||
<glyph glyph-name="paper-plane" unicode=""
|
||||
d="M440 441.5c34.5996 19.9004 77.5996 -8.7998 71.5 -48.9004l-59.4004 -387.199c-2.2998 -14.5 -11.0996 -27.3008 -23.8994 -34.5c-7.2998 -4.10059 -15.4004 -6.2002 -23.6006 -6.2002c-6.19922 0 -12.3994 1.2002 -18.2998 3.59961l-111.899 46.2002l-43.8008 -59.0996
|
||||
c-27.3994 -36.9004 -86.5996 -17.8008 -86.5996 28.5996v84.4004l-114.3 47.2998c-36.7998 15.0996 -40.1006 66 -5.7002 85.8994zM192 -16l36.5996 49.5l-36.5996 15.0996v-64.5996zM404.6 12.7002l59.4004 387.3l-416 -240l107.8 -44.5996l211.5 184.3
|
||||
c14.2002 12.2998 34.4004 -5.7002 23.7002 -21.2002l-140.2 -202.3z" />
|
||||
<glyph glyph-name="futbol" unicode="" horiz-adv-x="496"
|
||||
d="M483.8 268.6c42.2998 -130.199 -29 -270.1 -159.2 -312.399c-25.5 -8.2998 -51.2998 -12.2002 -76.6992 -12.2002c-104.5 0 -201.7 66.5996 -235.7 171.4c-42.2998 130.199 29 270.1 159.2 312.399c25.5 8.2998 51.2998 12.2002 76.6992 12.2002
|
||||
c104.5 0 201.7 -66.5996 235.7 -171.4zM409.3 74.9004c6.10059 8.39941 12.1006 16.8994 16.7998 26.1992c14.3008 28.1006 21.5 58.5 21.7002 89.2002l-38.8994 36.4004l-71.1006 -22.1006l-24.3994 -75.1992l43.6992 -60.9004zM409.3 310.3
|
||||
c-24.5 33.4004 -58.7002 58.4004 -97.8994 71.4004l-47.4004 -26.2002v-73.7998l64.2002 -46.5l70.7002 22zM184.9 381.6c-39.9004 -13.2998 -73.5 -38.5 -97.8008 -71.8994l10.1006 -52.5l70.5996 -22l64.2002 46.5v73.7998zM139 68.5l43.5 61.7002l-24.2998 74.2998
|
||||
l-71.1006 22.2002l-39 -36.4004c0.5 -55.7002 23.4004 -95.2002 37.8008 -115.3zM187.2 1.5c64.0996 -20.4004 115.5 -1.7998 121.7 0l22.3994 48.0996l-44.2998 61.7002h-78.5996l-43.6006 -61.7002z" />
|
||||
<glyph glyph-name="newspaper" unicode="" horiz-adv-x="576"
|
||||
d="M552 384c13.2549 0 24 -10.7451 24 -24v-336c0 -13.2549 -10.7451 -24 -24 -24h-496c-30.9277 0 -56 25.0723 -56 56v272c0 13.2549 10.7451 24 24 24h42.752c6.60547 18.623 24.3896 32 45.248 32h440zM48 56c0 -4.41113 3.58887 -8 8 -8s8 3.58887 8 8v248h-16v-248z
|
||||
M528 48v288h-416v-280c0 -2.7168 -0.204102 -5.38574 -0.578125 -8h416.578zM172 168c-6.62695 0 -12 5.37305 -12 12v96c0 6.62695 5.37305 12 12 12h136c6.62695 0 12 -5.37305 12 -12v-96c0 -6.62695 -5.37305 -12 -12 -12h-136zM200 248v-40h80v40h-80zM160 108v24
|
||||
c0 6.62695 5.37305 12 12 12h136c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-136c-6.62695 0 -12 5.37305 -12 12zM352 108v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-104
|
||||
c-6.62695 0 -12 5.37305 -12 12zM352 252v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-104c-6.62695 0 -12 5.37305 -12 12zM352 180v24c0 6.62695 5.37305 12 12 12h104c6.62695 0 12 -5.37305 12 -12v-24
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-104c-6.62695 0 -12 5.37305 -12 12z" />
|
||||
<glyph glyph-name="bell-slash" unicode="" horiz-adv-x="640"
|
||||
d="M633.99 -23.0195c6.91016 -5.52051 8.01953 -15.5908 2.5 -22.4902l-10 -12.4902c-5.53027 -6.88965 -15.5898 -8.00977 -22.4902 -2.49023l-598 467.51c-6.90039 5.52051 -8.01953 15.5908 -2.49023 22.4902l10 12.4902
|
||||
c5.52051 6.90039 15.5898 8.00977 22.4902 2.49023zM163.53 80h182.84l61.3994 -48h-279.659c-19.1201 0 -31.9902 15.5996 -32.1006 32c-0.0498047 7.5498 2.61035 15.2598 8.61035 21.71c18.3701 19.7402 51.5703 49.6904 54.8398 140.42l45.4697 -35.5498
|
||||
c-6.91992 -54.7803 -24.6895 -88.5498 -41.3994 -110.58zM320 352c-23.3496 0 -45 -7.17969 -62.9404 -19.4004l-38.1699 29.8408c19.6807 15.7793 43.1104 27.3096 69.1299 32.7197v20.8398c0 17.6699 14.3203 32 31.9805 32s31.9805 -14.3301 31.9805 -32v-20.8398
|
||||
c73.46 -15.2598 127.939 -77.46 127.939 -155.16c0 -41.3604 6.03027 -70.7197 14.3398 -92.8496l-59.5293 46.54c-1.63086 13.96 -2.77051 28.8896 -2.79004 45.7295c0 0.200195 0.0595703 0.379883 0.0595703 0.580078c0 61.8604 -50.1396 112 -112 112zM320 -64
|
||||
c-35.3203 0 -63.9697 28.6504 -63.9697 64h127.939c0 -35.3496 -28.6494 -64 -63.9697 -64z" />
|
||||
<glyph glyph-name="copyright" unicode=""
|
||||
d="M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 -8c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200c-110.549 0 -200 -89.4688 -200 -200c0 -110.549 89.4678 -200 200 -200z
|
||||
M363.351 93.0645c-9.61328 -9.71289 -45.5293 -41.3965 -104.064 -41.3965c-82.4297 0 -140.484 61.4248 -140.484 141.567c0 79.1514 60.2754 139.4 139.763 139.4c55.5303 0 88.7373 -26.6201 97.5928 -34.7783c2.37793 -2.1875 3.86914 -5.3252 3.86914 -8.80762
|
||||
c0 -2.39746 -0.717773 -4.64258 -1.93359 -6.51465l-18.1543 -28.1133c-3.8418 -5.9502 -11.9668 -7.28223 -17.499 -2.9209c-8.5957 6.77637 -31.8145 22.5381 -61.708 22.5381c-48.3037 0 -77.916 -35.3301 -77.916 -80.082c0 -41.5889 26.8877 -83.6924 78.2764 -83.6924
|
||||
c32.6572 0 56.8428 19.0391 65.7266 27.2256c5.26953 4.85645 13.5957 4.03906 17.8193 -1.73828l19.8652 -27.1699c1.45996 -1.98145 2.32422 -4.42969 2.32422 -7.07715c0 -3.28809 -1.32422 -6.2793 -3.47656 -8.44043z" />
|
||||
<glyph glyph-name="closed-captioning" unicode=""
|
||||
d="M464 384c26.5 0 48 -21.5 48 -48v-288c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v288c0 26.5 21.5 48 48 48h416zM458 48c3.2998 0 6 2.7002 6 6v276c0 3.2998 -2.7002 6 -6 6h-404c-3.2998 0 -6 -2.7002 -6 -6v-276c0 -3.2998 2.7002 -6 6 -6h404z
|
||||
M246.9 133.7c1.69922 -2.40039 1.5 -5.60059 -0.5 -7.7002c-53.6006 -56.7998 -172.801 -32.0996 -172.801 67.9004c0 97.2998 121.7 119.5 172.5 70.0996c2.10059 -2 2.5 -3.2002 1 -5.7002l-17.5 -30.5c-1.89941 -3.09961 -6.19922 -4 -9.09961 -1.7002
|
||||
c-40.7998 32 -94.5996 14.9004 -94.5996 -31.1992c0 -48 51 -70.5 92.1992 -32.6006c2.80078 2.5 7.10059 2.10059 9.2002 -0.899414zM437.3 133.7c1.7002 -2.40039 1.5 -5.60059 -0.5 -7.7002c-53.5996 -56.9004 -172.8 -32.0996 -172.8 67.9004
|
||||
c0 97.2998 121.7 119.5 172.5 70.0996c2.09961 -2 2.5 -3.2002 1 -5.7002l-17.5 -30.5c-1.90039 -3.09961 -6.2002 -4 -9.09961 -1.7002c-40.8008 32 -94.6006 14.9004 -94.6006 -31.1992c0 -48 51 -70.5 92.2002 -32.6006c2.7998 2.5 7.09961 2.10059 9.2002 -0.899414z
|
||||
" />
|
||||
<glyph glyph-name="object-group" unicode=""
|
||||
d="M500 320h-12v-256h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-320v-12c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v256h-12
|
||||
c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-12h320v12c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12zM448 384v-32h32v32h-32zM32 384v-32h32v32h-32zM64 0v32
|
||||
h-32v-32h32zM480 0v32h-32v-32h32zM440 64v256h-12c-6.62695 0 -12 5.37305 -12 12v12h-320v-12c0 -6.62695 -5.37305 -12 -12 -12h-12v-256h12c6.62695 0 12 -5.37305 12 -12v-12h320v12c0 6.62695 5.37305 12 12 12h12zM404 256c6.62695 0 12 -5.37207 12 -12v-168
|
||||
c0 -6.62793 -5.37305 -12 -12 -12h-200c-6.62695 0 -12 5.37207 -12 12v52h-84c-6.62695 0 -12 5.37207 -12 12v168c0 6.62793 5.37305 12 12 12h200c6.62695 0 12 -5.37207 12 -12v-52h84zM136 280v-112h144v112h-144zM376 104v112h-56v-76
|
||||
c0 -6.62793 -5.37305 -12 -12 -12h-76v-24h144z" />
|
||||
<glyph glyph-name="object-ungroup" unicode="" horiz-adv-x="576"
|
||||
d="M564 224h-12v-160h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-224v-12c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v24h-88v-12
|
||||
c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h12v160h-12c-6.62695 0 -12 5.37305 -12 12v72c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-12h224v12c0 6.62695 5.37305 12 12 12h72
|
||||
c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-12v-24h88v12c0 6.62695 5.37305 12 12 12h72c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12zM352 384v-32h32v32h-32zM352 128v-32h32v32h-32zM64 96v32h-32v-32h32zM64 352v32
|
||||
h-32v-32h32zM96 136h224v12c0 6.62695 5.37305 12 12 12h12v160h-12c-6.62695 0 -12 5.37305 -12 12v12h-224v-12c0 -6.62695 -5.37305 -12 -12 -12h-12v-160h12c6.62695 0 12 -5.37305 12 -12v-12zM224 0v32h-32v-32h32zM504 64v160h-12c-6.62695 0 -12 5.37305 -12 12v12
|
||||
h-88v-88h12c6.62695 0 12 -5.37305 12 -12v-72c0 -6.62695 -5.37305 -12 -12 -12h-72c-6.62695 0 -12 5.37305 -12 12v12h-88v-24h12c6.62695 0 12 -5.37305 12 -12v-12h224v12c0 6.62695 5.37305 12 12 12h12zM544 0v32h-32v-32h32zM544 256v32h-32v-32h32z" />
|
||||
<glyph glyph-name="sticky-note" unicode="" horiz-adv-x="448"
|
||||
d="M448 99.8936c0 -13.2451 -5.37012 -25.252 -14.0586 -33.9404l-83.8828 -83.8818c-8.68848 -8.68848 -20.6943 -14.0596 -33.9404 -14.0596h-268.118c-26.5098 0 -48 21.4902 -48 48v351.988c0 26.5098 21.4902 48 48 48h352c26.5098 0 48 -21.4902 48 -48v-268.106z
|
||||
M320 19.8936l76.1182 76.1182h-76.1182v-76.1182zM400 368h-352v-351.988h224v104c0 13.2549 10.7451 24 24 24h104v223.988z" />
|
||||
<glyph glyph-name="clone" unicode=""
|
||||
d="M464 448c26.5098 0 48 -21.4902 48 -48v-320c0 -26.5098 -21.4902 -48 -48 -48h-48v-48c0 -26.5098 -21.4902 -48 -48 -48h-320c-26.5098 0 -48 21.4902 -48 48v320c0 26.5098 21.4902 48 48 48h48v48c0 26.5098 21.4902 48 48 48h320zM362 -16c3.31152 0 6 2.68848 6 6
|
||||
v42h-224c-26.5098 0 -48 21.4902 -48 48v224h-42c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h308zM458 80c3.31152 0 6 2.68848 6 6v308c0 3.31152 -2.68848 6 -6 6h-308c-3.31152 0 -6 -2.68848 -6 -6v-308c0 -3.31152 2.68848 -6 6 -6h308z" />
|
||||
<glyph glyph-name="hourglass" unicode="" horiz-adv-x="384"
|
||||
d="M368 400c0 -80.0996 -31.8984 -165.619 -97.1797 -208c64.9912 -42.1934 97.1797 -127.436 97.1797 -208h4c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-360c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h4
|
||||
c0 80.0996 31.8994 165.619 97.1797 208c-64.9912 42.1934 -97.1797 127.436 -97.1797 208h-4c-6.62695 0 -12 5.37305 -12 12v24c0 6.62695 5.37305 12 12 12h360c6.62695 0 12 -5.37305 12 -12v-24c0 -6.62695 -5.37305 -12 -12 -12h-4zM64 400
|
||||
c0 -101.621 57.3066 -184 128 -184s128 82.3799 128 184h-256zM320 -16c0 101.62 -57.3076 184 -128 184s-128 -82.3799 -128 -184h256z" />
|
||||
<glyph glyph-name="hand-rock" unicode=""
|
||||
d="M408.864 368.948c48.8213 20.751 103.136 -15.0723 103.136 -67.9111v-114.443c0 -15.3955 -3.08887 -30.3906 -9.18262 -44.5674l-42.835 -99.6562c-4.99707 -11.625 -3.98242 -18.8574 -3.98242 -42.3701c0 -17.6729 -14.3271 -32 -32 -32h-252
|
||||
c-17.6729 0 -32 14.3271 -32 32c0 27.3301 1.1416 29.2012 -3.11035 32.9033l-97.71 85.0811c-24.8994 21.6797 -39.1797 52.8926 -39.1797 85.6338v56.9531c0 47.4277 44.8457 82.0215 91.0459 71.1807c1.96094 55.751 63.5107 87.8262 110.671 60.8057
|
||||
c29.1895 31.0713 78.8604 31.4473 108.334 -0.0214844c32.7051 18.6846 76.4121 10.3096 98.8135 -23.5879zM464 186.594v114.445c0 34.29 -52 33.8232 -52 0.676758c0 -8.83594 -7.16309 -16 -16 -16h-7c-8.83691 0 -16 7.16406 -16 16v26.751
|
||||
c0 34.457 -52 33.707 -52 0.676758v-27.4287c0 -8.83594 -7.16309 -16 -16 -16h-7c-8.83691 0 -16 7.16406 -16 16v40.4658c0 34.3525 -52 33.8115 -52 0.677734v-41.1436c0 -8.83594 -7.16406 -16 -16 -16h-7c-8.83594 0 -16 7.16406 -16 16v26.751
|
||||
c0 34.4023 -52 33.7744 -52 0.676758v-116.571c0 -8.83105 -7.17773 -15.9961 -16.0078 -15.9961c-4.0166 0 -7.68848 1.48242 -10.499 3.92969l-7 6.09473c-3.37012 2.93457 -5.49316 7.25293 -5.49316 12.0674v41.2275c0 34.2148 -52 33.8857 -52 0.677734v-56.9531
|
||||
c0 -18.8555 8.27441 -36.874 22.7002 -49.4365l97.71 -85.0801c12.4502 -10.8398 19.5898 -26.4463 19.5898 -42.8164v-10.2861h220v7.07617c0 13.21 2.65332 26.0791 7.88281 38.25l42.835 99.6553c3.37891 7.82715 5.28223 16.501 5.28223 25.5625v0.0498047z" />
|
||||
<glyph glyph-name="hand-paper" unicode="" horiz-adv-x="448"
|
||||
d="M372.57 335.359c39.9062 5.63281 75.4297 -25.7393 75.4297 -66.3594v-131.564c-0.00292969 -15.7393 -1.80566 -30.9482 -5.19531 -45.666l-30.1836 -130.958c-3.34668 -14.5234 -16.2783 -24.8125 -31.1816 -24.8125h-222.897
|
||||
c-10.7539 0 -20.2588 5.28613 -26.0615 13.4316l-119.97 168.415c-21.2441 29.8203 -14.8047 71.3574 14.5498 93.1533c18.7754 13.9395 42.1309 16.2979 62.083 8.87109v126.13c0 44.0547 41.125 75.5439 82.4053 64.9834c23.8926 48.1963 92.3535 50.2471 117.982 0.74707
|
||||
c42.5186 11.1445 83.0391 -21.9346 83.0391 -65.5469v-10.8242zM399.997 137.437l-0.00195312 131.563c0 24.9492 -36.5703 25.5508 -36.5703 -0.691406v-76.3086c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v154.184
|
||||
c0 25.501 -36.5703 26.3633 -36.5703 0.691406v-154.875c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v188.309c0 25.501 -36.5703 26.3545 -36.5703 0.691406v-189c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16
|
||||
v153.309c0 25.501 -36.5713 26.3359 -36.5713 0.691406v-206.494c0 -15.5703 -20.0352 -21.9092 -29.0303 -9.2832l-27.1279 38.0791c-14.3711 20.1709 -43.833 -2.33496 -29.3945 -22.6045l115.196 -161.697h201.92l27.3252 118.551
|
||||
c2.63086 11.417 3.96484 23.1553 3.96484 34.8857z" />
|
||||
<glyph glyph-name="hand-scissors" unicode=""
|
||||
d="M256 -32c-44.9561 0 -77.3428 43.2627 -64.0244 85.8535c-21.6484 13.71 -34.0156 38.7617 -30.3408 65.0068h-87.6348c-40.8037 0 -74 32.8105 -74 73.1406c0 40.3291 33.1963 73.1396 74 73.1396l94 -9.14062l-78.8496 18.6787
|
||||
c-38.3076 14.7422 -57.04 57.4707 -41.9424 95.1123c15.0303 37.4736 57.7549 55.7803 95.6416 41.2012l144.929 -55.7568c24.9551 30.5566 57.8086 43.9932 92.2178 24.7324l97.999 -54.8525c20.9746 -11.7393 34.0049 -33.8457 34.0049 -57.6904v-205.702
|
||||
c0 -30.7422 -21.4404 -57.5576 -51.7979 -64.5537l-118.999 -27.4268c-4.97168 -1.14648 -10.0889 -1.72949 -15.2031 -1.72949zM256 16.0127l70 -0.000976562c1.52441 0 2.99707 0.174805 4.42285 0.501953l119.001 27.4277
|
||||
c8.58203 1.97754 14.5762 9.29102 14.5762 17.7812v205.701c0 6.4873 -3.62109 12.542 -9.44922 15.8047l-98 54.8545c-8.13965 4.55566 -18.668 2.61914 -24.4873 -4.50781l-21.7646 -26.6475c-2.93457 -3.59375 -7.40332 -5.87305 -12.4004 -5.87305
|
||||
c-2.02246 0 -3.95703 0.375977 -5.73828 1.06152l-166.549 64.0908c-32.6543 12.5664 -50.7744 -34.5771 -19.2227 -46.7168l155.357 -59.7852c6 -2.30859 10.2539 -8.12402 10.2539 -14.9326v-11.6328c0 -8.83691 -7.16309 -16 -16 -16h-182
|
||||
c-34.375 0 -34.4297 -50.2803 0 -50.2803h182c8.83691 0 16 -7.16309 16 -16v-6.85645c0 -8.83691 -7.16309 -16 -16 -16h-28c-25.1221 0 -25.1592 -36.5674 0 -36.5674h28c8.83691 0 16 -7.16211 16 -16v-6.85547c0 -8.83691 -7.16309 -16 -16 -16
|
||||
c-25.1201 0 -25.1602 -36.5674 0 -36.5674z" />
|
||||
<glyph glyph-name="hand-lizard" unicode="" horiz-adv-x="576"
|
||||
d="M556.686 157.458c12.6357 -19.4863 19.3145 -42.0615 19.3145 -65.2871v-124.171h-224v71.582l-99.751 38.7871c-2.7832 1.08203 -5.70996 1.63086 -8.69727 1.63086h-131.552c-30.8789 0 -56 25.1211 -56 56c0 48.5234 39.4766 88 88 88h113.709l18.333 48h-196.042
|
||||
c-44.1123 0 -80 35.8877 -80 80v8c0 30.8779 25.1211 56 56 56h293.917c24.5 0 47.084 -12.2725 60.4111 -32.8291zM528 16v76.1709c0 0.0166016 -0.0439453 0.106445 -0.0439453 0.12207c0 14.3945 -4.24219 27.8057 -11.5439 39.0498l-146.358 225.715
|
||||
c-4.44336 6.85254 -11.9707 10.9424 -20.1367 10.9424h-293.917c-4.41113 0 -8 -3.58887 -8 -8v-8c0 -17.6445 14.3555 -32 32 -32h213.471c25.2021 0 42.626 -25.293 33.6299 -48.8457l-24.5518 -64.2812c-7.05371 -18.4658 -25.0732 -30.873 -44.8398 -30.873h-113.709
|
||||
c-22.0557 0 -40 -17.9443 -40 -40c0 -4.41113 3.58887 -8 8 -8h131.552c0.0175781 0 0.0712891 -0.0273438 0.0888672 -0.0273438c9.16992 0 17.9404 -1.72461 26.0039 -4.86621l99.752 -38.7881c18.5898 -7.22852 30.6035 -24.7881 30.6035 -44.7363v-23.582h128z" />
|
||||
<glyph glyph-name="hand-spock" unicode=""
|
||||
d="M501.03 331.824c6.92773 -11.1826 10.9697 -24.4053 10.9697 -38.5146c0 -5.92676 -0.706055 -11.6885 -2.03809 -17.208l-57.623 -241.963c-13.2236 -56.1904 -63.707 -98.1387 -123.908 -98.1387h-0.352539h-107.455
|
||||
c-0.0761719 0 -0.193359 0.00195312 -0.270508 0.00195312c-40.9248 0 -78.1475 15.9814 -105.761 42.0391l-91.3652 85.9766c-14.3076 13.4434 -23.2246 32.5547 -23.2246 53.7168c0 19.5254 7.61035 37.2861 20.0254 50.4766
|
||||
c5.31836 5.66406 29.875 29.3926 68.1152 21.8477l-24.3594 82.1973c-1.97363 6.64844 -2.97656 13.6836 -2.97656 20.9688c0 38.6953 29.8926 70.4639 67.8262 73.4531c-0.246094 2.45117 -0.34082 4.85547 -0.34082 7.37207c0 34.4199 23.585 63.376 55.4619 71.5752
|
||||
c43.248 10.9785 80.5645 -17.7012 89.6602 -53.0723l13.6836 -53.207l4.64648 22.6602c6.99023 33.5186 36.6826 58.8037 72.2373 58.916c8.73438 0 56.625 -3.26953 70.7383 -54.0801c15.0664 0.710938 46.9199 -3.50977 66.3105 -35.0176zM463.271 287.219
|
||||
c7.86914 32.9844 -42.1211 45.2695 -50.0859 11.9219l-24.8008 -104.146c-4.38867 -18.4141 -31.7783 -11.8926 -28.0557 6.2168l28.5479 139.166c7.39844 36.0703 -43.3076 45.0703 -50.1182 11.9629l-31.791 -154.971
|
||||
c-3.54883 -17.3086 -28.2832 -18.0469 -32.7109 -0.804688l-47.3262 184.035c-8.43359 32.8105 -58.3691 20.2676 -49.8652 -12.8359l42.4414 -165.039c4.81641 -18.7207 -23.3711 -26.9121 -28.9648 -8.00781l-31.3438 105.779
|
||||
c-9.6875 32.6465 -59.1191 18.2578 -49.3867 -14.625l36.0137 -121.539c6.59375 -22.2441 10.1777 -45.7803 10.1777 -70.1523c0 -6.54297 -8.05664 -10.9355 -13.4824 -5.82617l-51.123 48.1074c-24.7852 23.4082 -60.0527 -14.1875 -35.2793 -37.4902l91.3691 -85.9805
|
||||
c19.0469 -17.9736 44.75 -28.998 72.9795 -28.998h0.157227h107.455c0.0732422 0 0.138672 0.0429688 0.212891 0.0429688c37.5791 0 69.1016 26.1416 77.3564 61.2168z" />
|
||||
<glyph glyph-name="hand-pointer" unicode="" horiz-adv-x="448"
|
||||
d="M358.182 268.639c43.1934 16.6348 89.8184 -15.7949 89.8184 -62.6387v-84c-0.000976562 -5.24023 -0.600586 -10.3037 -1.72754 -15.2041l-27.4297 -118.999c-6.98242 -30.2969 -33.7549 -51.7969 -64.5566 -51.7969h-178.286
|
||||
c-21.2588 0 -41.3682 10.4102 -53.791 27.8457l-109.699 154.001c-21.2432 29.8193 -14.8047 71.3574 14.5498 93.1523c18.8115 13.9658 42.1748 16.2822 62.083 8.87207v161.129c0 36.9443 29.7363 67 66.2861 67s66.2861 -30.0557 66.2861 -67v-73.6338
|
||||
c20.4131 2.85742 41.4678 -3.94238 56.5947 -19.6289c27.1934 12.8467 60.3799 5.66992 79.8721 -19.0986zM80.9854 168.303c-14.4004 20.2119 -43.8008 -2.38281 -29.3945 -22.6055l109.712 -154c3.43457 -4.81934 8.92871 -7.69727 14.6973 -7.69727h178.285
|
||||
c8.49219 0 15.8037 5.99414 17.7822 14.5762l27.4297 119.001c0.333008 1.44629 0.501953 2.93457 0.501953 4.42285v84c0 25.1602 -36.5713 25.1211 -36.5713 0c0 -8.83594 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16406 -16 16v21
|
||||
c0 25.1602 -36.5713 25.1201 -36.5713 0v-21c0 -8.83594 -7.16309 -16 -16 -16h-6.85938c-8.83691 0 -16 7.16406 -16 16v35c0 25.1602 -36.5703 25.1201 -36.5703 0v-35c0 -8.83594 -7.16309 -16 -16 -16h-6.85742c-8.83691 0 -16 7.16406 -16 16v175
|
||||
c0 25.1602 -36.5713 25.1201 -36.5713 0v-241.493c0 -15.5703 -20.0352 -21.9092 -29.0303 -9.2832zM176.143 48v96c0 8.83691 6.26855 16 14 16h6c7.73242 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26758 -16 -14 -16h-6c-7.73242 0 -14 7.16309 -14 16zM251.571 48v96
|
||||
c0 8.83691 6.26758 16 14 16h6c7.73145 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26855 -16 -14 -16h-6c-7.73242 0 -14 7.16309 -14 16zM327 48v96c0 8.83691 6.26758 16 14 16h6c7.73242 0 14 -7.16309 14 -16v-96c0 -8.83691 -6.26758 -16 -14 -16h-6
|
||||
c-7.73242 0 -14 7.16309 -14 16z" />
|
||||
<glyph glyph-name="hand-peace" unicode="" horiz-adv-x="448"
|
||||
d="M362.146 256.024c42.5908 13.3184 85.8535 -19.0684 85.8535 -64.0244l-0.0117188 -70.001c-0.000976562 -5.24023 -0.600586 -10.3027 -1.72949 -15.2031l-27.4268 -118.999c-6.99707 -30.3564 -33.8105 -51.7969 -64.5547 -51.7969h-205.702
|
||||
c-23.8447 0 -45.9502 13.0303 -57.6904 34.0059l-54.8525 97.999c-19.2607 34.4092 -5.82422 67.2617 24.7324 92.2178l-55.7568 144.928c-14.5791 37.8867 3.72754 80.6113 41.2012 95.6416c37.6406 15.0977 80.3691 -3.63477 95.1123 -41.9424l18.6787 -78.8496
|
||||
l-9.14062 94c0 40.8037 32.8096 74 73.1396 74s73.1406 -33.1963 73.1406 -74v-87.6348c26.2451 3.6748 51.2959 -8.69238 65.0068 -30.3408zM399.987 122l-0.000976562 70c0 25.1602 -36.5674 25.1201 -36.5674 0c0 -8.83691 -7.16309 -16 -16 -16h-6.85547
|
||||
c-8.83789 0 -16 7.16309 -16 16v28c0 25.1592 -36.5674 25.1221 -36.5674 0v-28c0 -8.83691 -7.16309 -16 -16 -16h-6.85645c-8.83691 0 -16 7.16309 -16 16v182c0 34.4297 -50.2803 34.375 -50.2803 0v-182c0 -8.83691 -7.16309 -16 -16 -16h-11.6328
|
||||
c-6.80859 0 -12.624 4.25391 -14.9326 10.2539l-59.7842 155.357c-12.1396 31.5518 -59.2842 13.4326 -46.7168 -19.2227l64.0898 -166.549c0.685547 -1.78125 1.07812 -3.71875 1.07812 -5.74121c0 -4.99707 -2.2959 -9.46289 -5.88965 -12.3975l-26.6475 -21.7646
|
||||
c-7.12695 -5.81934 -9.06445 -16.3467 -4.50781 -24.4873l54.8535 -98c3.26367 -5.82812 9.31934 -9.44922 15.8057 -9.44922h205.701c8.49121 0 15.8037 5.99414 17.7812 14.5762l27.4277 119.001c0.333008 1.44629 0.501953 2.93457 0.501953 4.42285z" />
|
||||
<glyph glyph-name="registered" unicode=""
|
||||
d="M256 440c136.967 0 248 -111.033 248 -248s-111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248zM256 -8c110.549 0 200 89.4678 200 200c0 110.549 -89.4678 200 -200 200c-110.549 0 -200 -89.4688 -200 -200c0 -110.549 89.4678 -200 200 -200z
|
||||
M366.442 73.791c4.40332 -7.99219 -1.37012 -17.791 -10.5107 -17.791h-42.8096c-0.00488281 0 -0.000976562 -0.0126953 -0.00585938 -0.0126953c-4.58594 0 -8.57422 2.58301 -10.5869 6.37305l-47.5156 89.3027h-31.958v-83.6631c0 -6.61719 -5.38281 -12 -12 -12
|
||||
h-38.5674c-6.61719 0 -12 5.38281 -12 12v248.304c0 6.61719 5.38281 12 12 12h78.667c71.251 0 101.498 -32.749 101.498 -85.252c0 -31.6123 -15.2148 -59.2969 -39.4824 -73.1758c3.02148 -4.61719 0.225586 0.199219 53.2715 -96.085zM256.933 208.094
|
||||
c20.9131 0 32.4307 11.5186 32.4316 32.4316c0 19.5752 -6.5127 31.709 -38.9297 31.709h-27.377v-64.1406h33.875z" />
|
||||
<glyph glyph-name="calendar-plus" unicode="" horiz-adv-x="448"
|
||||
d="M336 156v-24c0 -6.59961 -5.40039 -12 -12 -12h-76v-76c0 -6.59961 -5.40039 -12 -12 -12h-24c-6.59961 0 -12 5.40039 -12 12v76h-76c-6.59961 0 -12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12h76v76c0 6.59961 5.40039 12 12 12h24c6.59961 0 12 -5.40039 12 -12
|
||||
v-76h76c6.59961 0 12 -5.40039 12 -12zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40
|
||||
c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="calendar-minus" unicode="" horiz-adv-x="448"
|
||||
d="M124 120c-6.59961 0 -12 5.40039 -12 12v24c0 6.59961 5.40039 12 12 12h200c6.59961 0 12 -5.40039 12 -12v-24c0 -6.59961 -5.40039 -12 -12 -12h-200zM448 336v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52
|
||||
c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="calendar-times" unicode="" horiz-adv-x="448"
|
||||
d="M311.7 73.2998l-17 -17c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-53.7002 53.7998l-53.7002 -53.6992c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-17 17c-4.7002 4.69922 -4.7002 12.2998 0 17l53.7002 53.6992l-53.7002 53.7002c-4.7002 4.7002 -4.7002 12.2998 0 17
|
||||
l17 17c4.7002 4.7002 12.2998 4.7002 17 0l53.7002 -53.7002l53.7002 53.7002c4.7002 4.7002 12.2998 4.7002 17 0l17 -17c4.7002 -4.7002 4.7002 -12.2998 0 -17l-53.7998 -53.7998l53.6992 -53.7002c4.80078 -4.7002 4.80078 -12.2998 0.100586 -17zM448 336v-352
|
||||
c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h48v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h128v52c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-52h48c26.5 0 48 -21.5 48 -48zM400 -10
|
||||
v298h-352v-298c0 -3.2998 2.7002 -6 6 -6h340c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="calendar-check" unicode="" horiz-adv-x="448"
|
||||
d="M400 384c26.5098 0 48 -21.4902 48 -48v-352c0 -26.5098 -21.4902 -48 -48 -48h-352c-26.5098 0 -48 21.4902 -48 48v352c0 26.5098 21.4902 48 48 48h48v52c0 6.62695 5.37305 12 12 12h40c6.62695 0 12 -5.37305 12 -12v-52h128v52c0 6.62695 5.37305 12 12 12h40
|
||||
c6.62695 0 12 -5.37305 12 -12v-52h48zM394 -16c3.31152 0 6 2.68848 6 6v298h-352v-298c0 -3.31152 2.68848 -6 6 -6h340zM341.151 184.65l-142.31 -141.169c-4.70508 -4.66699 -12.3027 -4.6377 -16.9707 0.0673828l-75.0908 75.6992
|
||||
c-4.66699 4.70508 -4.6377 12.3027 0.0673828 16.9707l22.7197 22.5361c4.70508 4.66699 12.3027 4.63672 16.9697 -0.0693359l44.1035 -44.4609l111.072 110.182c4.70508 4.66699 12.3027 4.63672 16.9707 -0.0683594l22.5361 -22.7178
|
||||
c4.66699 -4.70508 4.63672 -12.3027 -0.0683594 -16.9697z" />
|
||||
<glyph glyph-name="map" unicode="" horiz-adv-x="576"
|
||||
d="M560.02 416c8.4502 0 15.9805 -6.83008 15.9805 -16.0195v-346.32c0 -13.4707 -8.32422 -24.9951 -20.1201 -29.71l-151.83 -52.8105c-6.23242 -2.02832 -12.9023 -3.12305 -19.8076 -3.12305c-7.07324 0 -13.8799 1.15039 -20.2422 3.27344l-172 60.71l-170.05 -62.8398
|
||||
c-1.99023 -0.790039 -4 -1.16016 -5.95996 -1.16016c-8.45996 0 -15.9902 6.83008 -15.9902 16.0195v346.32c0.00292969 13.4697 8.32617 24.9932 20.1201 29.71l151.83 52.8105c6.43945 2.08984 13.1201 3.13965 19.8096 3.13965
|
||||
c7.06641 -0.00292969 13.8789 -1.16602 20.2402 -3.28027l172 -60.7197h0.00976562l170.05 62.8398c1.98047 0.790039 4 1.16016 5.95996 1.16016zM224 357.58v-285.97l128 -45.1904v285.97zM48 29.9502l127.36 47.0801l0.639648 0.229492v286.2l-128 -44.5303v-288.979z
|
||||
M528 65.0801v288.97l-127.36 -47.0693l-0.639648 -0.240234v-286.19z" />
|
||||
<glyph glyph-name="comment-alt" unicode=""
|
||||
d="M448 448c35.2998 0 64 -28.7002 64 -64v-288c0 -35.2998 -28.7002 -64 -64 -64h-144l-124.9 -93.5996c-2.19922 -1.7002 -4.69922 -2.40039 -7.09961 -2.40039c-6.2002 0 -12 4.90039 -12 12v84h-96c-35.2998 0 -64 28.7002 -64 64v288c0 35.2998 28.7002 64 64 64h384z
|
||||
M464 96v288c0 8.7998 -7.2002 16 -16 16h-384c-8.7998 0 -16 -7.2002 -16 -16v-288c0 -8.7998 7.2002 -16 16 -16h144v-60l67.2002 50.4004l12.7998 9.59961h160c8.7998 0 16 7.2002 16 16z" />
|
||||
<glyph glyph-name="pause-circle" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM352 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-48
|
||||
c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h48c8.7998 0 16 -7.2002 16 -16zM240 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-48c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h48c8.7998 0 16 -7.2002 16 -16z" />
|
||||
<glyph glyph-name="stop-circle" unicode=""
|
||||
d="M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200zM352 272v-160c0 -8.7998 -7.2002 -16 -16 -16h-160
|
||||
c-8.7998 0 -16 7.2002 -16 16v160c0 8.7998 7.2002 16 16 16h160c8.7998 0 16 -7.2002 16 -16z" />
|
||||
<glyph glyph-name="handshake" unicode="" horiz-adv-x="640"
|
||||
d="M519.2 320.1h120.8v-255.699h-64c-17.5 0 -31.7998 14.1992 -31.9004 31.6992h-57.8994c-1.7998 -8.19922 -5.2998 -16.0996 -10.9004 -23l-26.2002 -32.2998c-15.7998 -19.3994 -41.8994 -25.5 -64 -16.7998c-13.5 -16.5996 -30.5996 -24 -48.7998 -24
|
||||
c-15.0996 0 -28.5996 5.09961 -41.0996 15.9004c-31.7998 -21.9004 -74.7002 -21.3008 -105.601 3.7998l-84.5996 76.3994h-9.09961c-0.100586 -17.5 -14.3008 -31.6992 -31.9004 -31.6992h-64v255.699h118l47.5996 47.6006c10.5 10.3994 24.8008 16.2998 39.6006 16.2998
|
||||
h226.8c15.4326 0 29.4326 -6.22168 39.5996 -16.2998zM48 96.4004c8.7998 0 16 7.09961 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16zM438 103.3c2.7002 3.40039 2.2002 8.5 -1.2002 11.2998l-108.2 87.8008l-8.19922 -7.5
|
||||
c-40.3008 -36.8008 -86.7002 -11.8008 -101.5 4.39941c-26.7002 29 -25 74.4004 4.39941 101.3l38.7002 35.5h-56.7002c-2 -0.799805 -3.7002 -1.5 -5.7002 -2.2998l-61.6992 -61.5996h-41.9004v-128.101h27.7002l97.2998 -88
|
||||
c16.0996 -13.0996 41.4004 -10.5 55.2998 6.60059l15.6006 19.2002l36.7998 -31.5c3 -2.40039 12 -4.90039 18 2.39941l30 36.5l23.8994 -19.3994c3.5 -2.80078 8.5 -2.2002 11.3008 1.19922zM544 144.1v128h-44.7002l-61.7002 61.6006
|
||||
c-1.39941 1.5 -3.39941 2.2998 -5.5 2.2998l-83.6992 -0.200195c-10 0 -19.6006 -3.7002 -27 -10.5l-65.6006 -60.0996c-9.7002 -8.7998 -10.5 -24 -1.2002 -33.9004c8.90039 -9.39941 25.1006 -8.7002 34.6006 0l55.2002 50.6006c6.5 5.89941 16.5996 5.5 22.5996 -1
|
||||
l10.9004 -11.7002c6 -6.5 5.5 -16.6006 -1 -22.6006l-12.5 -11.3994l102.699 -83.4004c2.80078 -2.2998 5.40039 -4.89941 7.7002 -7.7002h69.2002zM592 96.4004c8.7998 0 16 7.09961 16 16c0 8.7998 -7.2002 16 -16 16s-16 -7.2002 -16 -16c0 -8.80078 7.2002 -16 16 -16z
|
||||
" />
|
||||
<glyph glyph-name="envelope-open" unicode=""
|
||||
d="M494.586 283.484c10.6523 -8.80762 17.4141 -22.1064 17.4141 -36.9932v-262.491c0 -26.5098 -21.4902 -48 -48 -48h-416c-26.5098 0 -48 21.4902 -48 48v262.515c0 14.9355 6.80469 28.2705 17.5146 37.0771c4.08008 3.35449 110.688 89.0996 135.15 108.549
|
||||
c22.6992 18.1426 60.1299 55.8594 103.335 55.8594c43.4365 0 81.2314 -38.1914 103.335 -55.8594c23.5283 -18.707 130.554 -104.773 135.251 -108.656zM464 -10v253.632c0 0.00195312 0.00390625 0.000976562 0.00390625 0.00292969
|
||||
c0 1.88184 -0.869141 3.56152 -2.22754 4.66016c-15.8633 12.8232 -108.793 87.5752 -132.366 106.316c-17.5527 14.0195 -49.7168 45.3887 -73.4102 45.3887c-23.6016 0 -55.2451 -30.8799 -73.4102 -45.3887c-23.5713 -18.7393 -116.494 -93.4795 -132.364 -106.293
|
||||
c-1.40918 -1.13965 -2.22559 -2.85254 -2.22559 -4.66504v-253.653c0 -3.31152 2.68848 -6 6 -6h404c3.31152 0 6 2.68848 6 6zM432.009 177.704c4.24902 -5.15918 3.46484 -12.7949 -1.74512 -16.9814c-28.9746 -23.2822 -59.2734 -47.5967 -70.9287 -56.8623
|
||||
c-22.6992 -18.1436 -60.1299 -55.8604 -103.335 -55.8604c-43.4521 0 -81.2871 38.2373 -103.335 55.8604c-11.2793 8.9668 -41.7441 33.4131 -70.9268 56.8643c-5.20996 4.1875 -5.99316 11.8223 -1.74512 16.9814l15.2578 18.5283
|
||||
c4.17773 5.07227 11.6572 5.84277 16.7793 1.72559c28.6182 -23.001 58.5654 -47.0352 70.5596 -56.5713c17.5527 -14.0195 49.7168 -45.3887 73.4102 -45.3887c23.6016 0 55.2461 30.8799 73.4102 45.3887c11.9941 9.53516 41.9434 33.5703 70.5625 56.5684
|
||||
c5.12207 4.11621 12.6016 3.3457 16.7783 -1.72656z" />
|
||||
<glyph glyph-name="address-book" unicode="" horiz-adv-x="448"
|
||||
d="M436 288h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-64h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12h-20v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48
|
||||
h320c26.5 0 48 -21.5 48 -48v-48h20c6.59961 0 12 -5.40039 12 -12v-40c0 -6.59961 -5.40039 -12 -12 -12zM368 -16v416h-320v-416h320zM208 192c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM118.4 64
|
||||
c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002c0 -10.6006 -10 -19.2002 -22.4004 -19.2002
|
||||
h-179.199z" />
|
||||
<glyph glyph-name="address-card" unicode="" horiz-adv-x="576"
|
||||
d="M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM528 16v352h-480v-352h480zM208 192c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64z
|
||||
M118.4 64c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002
|
||||
c0 -10.6006 -10 -19.2002 -22.4004 -19.2002h-179.199zM360 128c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 192c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112
|
||||
c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 256c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112z" />
|
||||
<glyph glyph-name="user-circle" unicode="" horiz-adv-x="496"
|
||||
d="M248 344c53 0 96 -43 96 -96s-43 -96 -96 -96s-96 43 -96 96s43 96 96 96zM248 200c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8
|
||||
c49.7002 0 95.0996 18.2998 130.1 48.4004c-14.8994 23 -40.3994 38.5 -69.5996 39.5c-20.7998 -6.5 -40.5996 -9.60059 -60.5 -9.60059s-39.7002 3.2002 -60.5 9.60059c-29.2002 -0.900391 -54.7002 -16.5 -69.5996 -39.5c35 -30.1006 80.3994 -48.4004 130.1 -48.4004z
|
||||
M410.7 76.0996c23.3994 32.7002 37.2998 72.7002 37.2998 115.9c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -43.2002 13.9004 -83.2002 37.2998 -115.9c24.5 31.4004 62.2002 51.9004 105.101 51.9004c10.1992 0 26.0996 -9.59961 57.5996 -9.59961
|
||||
c31.5996 0 47.4004 9.59961 57.5996 9.59961c43 0 80.7002 -20.5 105.101 -51.9004z" />
|
||||
<glyph glyph-name="id-badge" unicode="" horiz-adv-x="384"
|
||||
d="M336 448c26.5 0 48 -21.5 48 -48v-416c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v416c0 26.5 21.5 48 48 48h288zM336 -16v416h-288v-416h288zM144 336c-8.7998 0 -16 7.2002 -16 16s7.2002 16 16 16h96c8.7998 0 16 -7.2002 16 -16s-7.2002 -16 -16 -16
|
||||
h-96zM192 160c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64zM102.4 32c-12.4004 0 -22.4004 8.59961 -22.4004 19.2002v19.2002c0 31.7998 30.0996 57.5996 67.2002 57.5996c11.3994 0 17.8994 -8 44.7998 -8
|
||||
c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996v-19.2002c0 -10.6006 -10 -19.2002 -22.4004 -19.2002h-179.199z" />
|
||||
<glyph glyph-name="id-card" unicode="" horiz-adv-x="576"
|
||||
d="M528 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-480c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h480zM528 16v288h-480v-288h32.7998c-1 4.5 -0.799805 -3.59961 -0.799805 22.4004c0 31.7998 30.0996 57.5996 67.2002 57.5996
|
||||
c11.3994 0 17.8994 -8 44.7998 -8c26.0996 0 34 8 44.7998 8c37.1006 0 67.2002 -25.7998 67.2002 -57.5996c0 -26 0.0996094 -17.9004 -0.799805 -22.4004h224.8zM360 96c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16
|
||||
c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 160c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM360 224c-4.40039 0 -8 3.59961 -8 8v16c0 4.40039 3.59961 8 8 8h112
|
||||
c4.40039 0 8 -3.59961 8 -8v-16c0 -4.40039 -3.59961 -8 -8 -8h-112zM192 128c-35.2998 0 -64 28.7002 -64 64s28.7002 64 64 64s64 -28.7002 64 -64s-28.7002 -64 -64 -64z" />
|
||||
<glyph glyph-name="window-maximize" unicode=""
|
||||
d="M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM464 22v234h-416v-234c0 -3.2998 2.7002 -6 6 -6h404c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="window-minimize" unicode=""
|
||||
d="M480 -32h-448c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32h448c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32z" />
|
||||
<glyph glyph-name="window-restore" unicode=""
|
||||
d="M464 448c26.5 0 48 -21.5 48 -48v-320c0 -26.5 -21.5 -48 -48 -48h-48v-48c0 -26.5 -21.5 -48 -48 -48h-320c-26.5 0 -48 21.5 -48 48v320c0 26.5 21.5 48 48 48h48v48c0 26.5 21.5 48 48 48h320zM368 -16v208h-320v-208h320zM464 80v320h-320v-48h224
|
||||
c26.5 0 48 -21.5 48 -48v-224h48z" />
|
||||
<glyph glyph-name="snowflake" unicode="" horiz-adv-x="448"
|
||||
d="M440.1 92.7998c7.60059 -4.39941 10.1006 -14.2002 5.5 -21.7002l-7.89941 -13.8994c-4.40039 -7.7002 -14 -10.2998 -21.5 -5.90039l-39.2002 23l9.09961 -34.7002c2.30078 -8.5 -2.69922 -17.2998 -11.0996 -19.5996l-15.2002 -4.09961
|
||||
c-8.39941 -2.30078 -17.0996 2.7998 -19.2998 11.2998l-21.2998 81l-71.9004 42.2002v-84.5l58.2998 -59.3008c6.10059 -6.19922 6.10059 -16.3994 0 -22.5996l-11.0996 -11.2998c-6.09961 -6.2002 -16.0996 -6.2002 -22.2002 0l-24.8994 25.3994v-46.0996
|
||||
c0 -8.7998 -7 -16 -15.7002 -16h-15.7002c-8.7002 0 -15.7002 7.2002 -15.7002 16v45.9004l-24.8994 -25.4004c-6.10059 -6.2002 -16.1006 -6.2002 -22.2002 0l-11.1006 11.2998c-6.09961 6.2002 -6.09961 16.4004 0 22.6006l58.3008 59.2998v84.5l-71.9004 -42.2002
|
||||
l-21.2998 -81c-2.2998 -8.5 -10.9004 -13.5996 -19.2998 -11.2998l-15.2002 4.09961c-8.40039 2.2998 -13.2998 11.1006 -11.1006 19.6006l9.10059 34.6992l-39.2002 -23c-7.5 -4.39941 -17.2002 -1.7998 -21.5 5.90039l-7.90039 13.9004
|
||||
c-4.2998 7.69922 -1.69922 17.5 5.80078 21.8994l39.1992 23l-34.0996 9.2998c-8.40039 2.30078 -13.2998 11.1006 -11.0996 19.6006l4.09961 15.5c2.2998 8.5 10.9004 13.5996 19.2998 11.2998l79.7002 -21.7002l71.9004 42.2002l-71.9004 42.2002l-79.7002 -21.7002
|
||||
c-8.39941 -2.2998 -17.0996 2.7998 -19.2998 11.2998l-4.09961 15.5c-2.30078 8.5 2.69922 17.2998 11.0996 19.6006l34.0996 9.09961l-39.1992 23c-7.60059 4.5 -10.1006 14.2002 -5.80078 21.9004l7.90039 13.8994c4.40039 7.7002 14 10.2998 21.5 5.90039l39.2002 -23
|
||||
l-9.10059 34.7002c-2.2998 8.5 2.7002 17.2998 11.1006 19.5996l15.2002 4.09961c8.39941 2.30078 17.0996 -2.7998 19.2998 -11.2998l21.2998 -81l71.9004 -42.2002v84.5l-58.3008 59.3008c-6.09961 6.19922 -6.09961 16.3994 0 22.5996l11.5 11.2998
|
||||
c6.10059 6.2002 16.1006 6.2002 22.2002 0l24.9004 -25.3994v46.0996c0 8.7998 7 16 15.7002 16h15.6992c8.7002 0 15.7002 -7.2002 15.7002 -16v-45.9004l24.9004 25.4004c6.09961 6.2002 16.0996 6.2002 22.2002 0l11.0996 -11.2998
|
||||
c6.09961 -6.2002 6.09961 -16.4004 0 -22.6006l-58.2998 -59.2998v-84.5l71.8994 42.2002l21.3008 81c2.2998 8.5 10.8994 13.5996 19.2998 11.2998l15.2002 -4.09961c8.39941 -2.2998 13.2998 -11.1006 11.0996 -19.6006l-9.09961 -34.6992l39.1992 23
|
||||
c7.5 4.39941 17.2002 1.7998 21.5 -5.90039l7.90039 -13.9004c4.2998 -7.69922 1.7002 -17.5 -5.7998 -21.8994l-39.2002 -23l34.0996 -9.2998c8.40039 -2.30078 13.3008 -11.1006 11.1006 -19.6006l-4.10059 -15.5c-2.2998 -8.5 -10.8994 -13.5996 -19.2998 -11.2998
|
||||
l-79.7002 21.7002l-71.8994 -42.2002l71.7998 -42.2002l79.7002 21.7002c8.39941 2.2998 17.0996 -2.7998 19.2998 -11.2998l4.09961 -15.5c2.30078 -8.5 -2.69922 -17.2998 -11.0996 -19.6006l-34.0996 -9.2998z" />
|
||||
<glyph glyph-name="trash-alt" unicode="" horiz-adv-x="448"
|
||||
d="M268 32c-6.62305 0 -12 5.37695 -12 12v216c0 6.62305 5.37695 12 12 12h24c6.62305 0 12 -5.37695 12 -12v-216c0 -6.62305 -5.37695 -12 -12 -12h-24zM432 368c8.83105 0 16 -7.16895 16 -16v-16c0 -8.83105 -7.16895 -16 -16 -16h-16v-336
|
||||
c0 -26.4922 -21.5078 -48 -48 -48h-288c-26.4922 0 -48 21.5078 -48 48v336h-16c-8.83105 0 -16 7.16895 -16 16v16c0 8.83105 7.16895 16 16 16h82.4102l34.0195 56.7002c8.39258 13.9844 23.6777 23.2998 41.1602 23.2998h100.82
|
||||
c0.0078125 0 -0.015625 0.0517578 -0.0078125 0.0517578c17.4824 0 32.7949 -9.36719 41.1875 -23.3516l34 -56.7002h82.4102zM171.84 397.09l-17.4502 -29.0898h139.221l-17.46 29.0898c-1.0498 1.74707 -2.95898 2.91016 -5.14355 2.91016h-0.00683594h-94
|
||||
c-0.00585938 0 -0.00683594 0.00683594 -0.0126953 0.00683594c-2.18457 0 -4.09766 -1.16992 -5.14746 -2.91699zM368 -16v336h-288v-336h288zM156 32c-6.62305 0 -12 5.37695 -12 12v216c0 6.62305 5.37695 12 12 12h24c6.62305 0 12 -5.37695 12 -12v-216
|
||||
c0 -6.62305 -5.37695 -12 -12 -12h-24z" />
|
||||
<glyph glyph-name="images" unicode="" horiz-adv-x="576"
|
||||
d="M480 32v-16c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256c0 26.5098 21.4902 48 48 48h16v-48h-10c-3.31152 0 -6 -2.68848 -6 -6v-244c0 -3.31152 2.68848 -6 6 -6h372c3.31152 0 6 2.68848 6 6v10h48zM522 368h-372
|
||||
c-3.31152 0 -6 -2.68848 -6 -6v-244c0 -3.31152 2.68848 -6 6 -6h372c3.31152 0 6 2.68848 6 6v244c0 3.31152 -2.68848 6 -6 6zM528 416c26.5098 0 48 -21.4902 48 -48v-256c0 -26.5098 -21.4902 -48 -48 -48h-384c-26.5098 0 -48 21.4902 -48 48v256
|
||||
c0 26.5098 21.4902 48 48 48h384zM264 304c0 -22.0908 -17.9092 -40 -40 -40s-40 17.9092 -40 40s17.9092 40 40 40s40 -17.9092 40 -40zM192 208l39.5146 39.5146c4.68652 4.68652 12.2842 4.68652 16.9717 0l39.5137 -39.5146l103.515 103.515
|
||||
c4.68652 4.68652 12.2842 4.68652 16.9717 0l71.5137 -71.5146v-80h-288v48z" />
|
||||
<glyph glyph-name="clipboard" unicode="" horiz-adv-x="384"
|
||||
d="M336 384c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-288c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h80c0 35.2998 28.7002 64 64 64s64 -28.7002 64 -64h80zM192 408c-13.2998 0 -24 -10.7002 -24 -24s10.7002 -24 24 -24s24 10.7002 24 24
|
||||
s-10.7002 24 -24 24zM336 -10v340c0 3.2998 -2.7002 6 -6 6h-42v-36c0 -6.59961 -5.40039 -12 -12 -12h-168c-6.59961 0 -12 5.40039 -12 12v36h-42c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h276c3.2998 0 6 2.7002 6 6z" />
|
||||
<glyph glyph-name="arrow-alt-circle-down" unicode=""
|
||||
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM256 -8c110.5 0 200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200zM224 308c0 6.59961 5.40039 12 12 12h40c6.59961 0 12 -5.40039 12 -12v-116
|
||||
h67c10.7002 0 16.0996 -12.9004 8.5 -20.5l-99 -99c-4.7002 -4.7002 -12.2998 -4.7002 -17 0l-99 99c-7.5 7.59961 -2.2002 20.5 8.5 20.5h67v116z" />
|
||||
<glyph glyph-name="arrow-alt-circle-left" unicode=""
|
||||
d="M8 192c0 137 111 248 248 248s248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248zM456 192c0 110.5 -89.5 200 -200 200s-200 -89.5 -200 -200s89.5 -200 200 -200s200 89.5 200 200zM384 212v-40c0 -6.59961 -5.40039 -12 -12 -12h-116v-67
|
||||
c0 -10.7002 -12.9004 -16 -20.5 -8.5l-99 99c-4.7002 4.7002 -4.7002 12.2998 0 17l99 99c7.59961 7.59961 20.5 2.2002 20.5 -8.5v-67h116c6.59961 0 12 -5.40039 12 -12z" />
|
||||
<glyph glyph-name="arrow-alt-circle-right" unicode=""
|
||||
d="M504 192c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248s248 -111 248 -248zM56 192c0 -110.5 89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200s-200 -89.5 -200 -200zM128 172v40c0 6.59961 5.40039 12 12 12h116v67
|
||||
c0 10.7002 12.9004 16 20.5 8.5l99 -99c4.7002 -4.7002 4.7002 -12.2998 0 -17l-99 -99c-7.59961 -7.59961 -20.5 -2.2002 -20.5 8.5v67h-116c-6.59961 0 -12 5.40039 -12 12z" />
|
||||
<glyph glyph-name="arrow-alt-circle-up" unicode=""
|
||||
d="M256 -56c-137 0 -248 111 -248 248s111 248 248 248s248 -111 248 -248s-111 -248 -248 -248zM256 392c-110.5 0 -200 -89.5 -200 -200s89.5 -200 200 -200s200 89.5 200 200s-89.5 200 -200 200zM276 64h-40c-6.59961 0 -12 5.40039 -12 12v116h-67
|
||||
c-10.7002 0 -16 12.9004 -8.5 20.5l99 99c4.7002 4.7002 12.2998 4.7002 17 0l99 -99c7.59961 -7.59961 2.2002 -20.5 -8.5 -20.5h-67v-116c0 -6.59961 -5.40039 -12 -12 -12z" />
|
||||
<glyph glyph-name="gem" unicode="" horiz-adv-x="576"
|
||||
d="M464 448c4.09961 0 7.7998 -2 10.0996 -5.40039l99.9004 -147.199c2.90039 -4.40039 2.59961 -10.1006 -0.700195 -14.2002l-276 -340.8c-4.7998 -5.90039 -13.7998 -5.90039 -18.5996 0l-276 340.8c-3.2998 4 -3.60059 9.7998 -0.700195 14.2002l100 147.199
|
||||
c2.2002 3.40039 6 5.40039 10 5.40039h352zM444.7 400h-56.7998l51.6992 -96h68.4004zM242.6 400l-51.5996 -96h194l-51.7002 96h-90.7002zM131.3 400l-63.2998 -96h68.4004l51.6992 96h-56.7998zM88.2998 256l119.7 -160l-68.2998 160h-51.4004zM191.2 256l96.7998 -243.3
|
||||
l96.7998 243.3h-193.6zM368 96l119.6 160h-51.3994z" />
|
||||
<glyph glyph-name="money-bill-alt" unicode="" horiz-adv-x="640"
|
||||
d="M320 304c53.0195 0 96 -50.1396 96 -112c0 -61.8701 -43 -112 -96 -112c-53.0195 0 -96 50.1504 -96 112c0 61.8604 42.9805 112 96 112zM360 136v16c0 4.41992 -3.58008 8 -8 8h-16v88c0 4.41992 -3.58008 8 -8 8h-13.5801
|
||||
c-4.91113 0 -9.50586 -1.49316 -13.3096 -4.03027l-15.3301 -10.2197c-2.15332 -1.43262 -3.55957 -3.88379 -3.55957 -6.66113c0 -1.6377 0.493164 -3.16113 1.33887 -4.42871l8.88086 -13.3105c1.43164 -2.15234 3.88379 -3.55957 6.66113 -3.55957
|
||||
c1.6377 0 3.16016 0.494141 4.42871 1.33984l0.469727 0.310547v-55.4404h-16c-4.41992 0 -8 -3.58008 -8 -8v-16c0 -4.41992 3.58008 -8 8 -8h64c4.41992 0 8 3.58008 8 8zM608 384c17.6699 0 32 -14.3301 32 -32v-320c0 -17.6699 -14.3301 -32 -32 -32h-576
|
||||
c-17.6699 0 -32 14.3301 -32 32v320c0 17.6699 14.3301 32 32 32h576zM592 112v160c-35.3496 0 -64 28.6504 -64 64h-416c0 -35.3496 -28.6504 -64 -64 -64v-160c35.3496 0 64 -28.6504 64 -64h416c0 35.3496 28.6504 64 64 64z" />
|
||||
<glyph glyph-name="window-close" unicode=""
|
||||
d="M464 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-416c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h416zM464 22v340c0 3.2998 -2.7002 6 -6 6h-404c-3.2998 0 -6 -2.7002 -6 -6v-340c0 -3.2998 2.7002 -6 6 -6h404c3.2998 0 6 2.7002 6 6z
|
||||
M356.5 253.4l-61.4004 -61.4004l61.4004 -61.4004c4.59961 -4.59961 4.59961 -12.0996 0 -16.7998l-22.2998 -22.2998c-4.60059 -4.59961 -12.1006 -4.59961 -16.7998 0l-61.4004 61.4004l-61.4004 -61.4004c-4.59961 -4.59961 -12.0996 -4.59961 -16.7998 0
|
||||
l-22.2998 22.2998c-4.59961 4.60059 -4.59961 12.1006 0 16.7998l61.4004 61.4004l-61.4004 61.4004c-4.59961 4.59961 -4.59961 12.0996 0 16.7998l22.2998 22.2998c4.60059 4.59961 12.1006 4.59961 16.7998 0l61.4004 -61.4004l61.4004 61.4004
|
||||
c4.59961 4.59961 12.0996 4.59961 16.7998 0l22.2998 -22.2998c4.7002 -4.60059 4.7002 -12.1006 0 -16.7998z" />
|
||||
<glyph glyph-name="comment-dots" unicode=""
|
||||
d="M144 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM256 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM368 240c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32
|
||||
s-32 14.2998 -32 32s14.2998 32 32 32zM256 416c141.4 0 256 -93.0996 256 -208s-114.6 -208 -256 -208c-32.7998 0 -64 5.2002 -92.9004 14.2998c-29.0996 -20.5996 -77.5996 -46.2998 -139.1 -46.2998c-9.59961 0 -18.2998 5.7002 -22.0996 14.5
|
||||
c-3.80078 8.7998 -2 19 4.59961 26c0.5 0.400391 31.5 33.7998 46.4004 73.2002c-33 35.0996 -52.9004 78.7002 -52.9004 126.3c0 114.9 114.6 208 256 208zM256 48c114.7 0 208 71.7998 208 160s-93.2998 160 -208 160s-208 -71.7998 -208 -160
|
||||
c0 -42.2002 21.7002 -74.0996 39.7998 -93.4004l20.6006 -21.7998l-10.6006 -28.0996c-5.5 -14.5 -12.5996 -28.1006 -19.8994 -40.2002c23.5996 7.59961 43.1992 18.9004 57.5 29l19.5 13.7998l22.6992 -7.2002c25.3008 -8 51.7002 -12.0996 78.4004 -12.0996z" />
|
||||
<glyph glyph-name="smile-wink" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM365.8 138.4c10.2002 -8.5 11.6006 -23.6006 3.10059 -33.8008
|
||||
c-30 -36 -74.1006 -56.5996 -120.9 -56.5996s-90.9004 20.5996 -120.9 56.5996c-8.39941 10.2002 -7.09961 25.3008 3.10059 33.8008c10.0996 8.39941 25.2998 7.09961 33.7998 -3.10059c20.7998 -25.0996 51.5 -39.3994 84 -39.3994s63.2002 14.3994 84 39.3994
|
||||
c8.5 10.2002 23.5996 11.6006 33.7998 3.10059zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 268c25.7002 0 55.9004 -16.9004 59.7002 -42.0996c1.7998 -11.1006 -11.2998 -18.2002 -19.7998 -10.8008l-9.5 8.5
|
||||
c-14.8008 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-8.30078 -7.39941 -21.5 -0.399414 -19.8008 10.8008c4 25.1992 34.2002 42.0996 59.9004 42.0996z" />
|
||||
<glyph glyph-name="angry" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM248 136c33.5996 0 65.2002 -14.7998 86.7998 -40.5996
|
||||
c8.40039 -10.2002 7.10059 -25.3008 -3.09961 -33.8008c-10.6006 -8.89941 -25.7002 -6.69922 -33.7998 3c-24.8008 29.7002 -75 29.7002 -99.8008 0c-8.5 -10.1992 -23.5996 -11.5 -33.7998 -3s-11.5996 23.6006 -3.09961 33.8008
|
||||
c21.5996 25.7998 53.2002 40.5996 86.7998 40.5996zM200 208c0 -17.7002 -14.2998 -32.0996 -32 -32.0996s-32 14.2998 -32 32c0 6.19922 2.2002 11.6992 5.2998 16.5996l-28.2002 8.5c-12.6992 3.7998 -19.8994 17.2002 -16.0996 29.9004
|
||||
c3.7998 12.6992 17.0996 20 29.9004 16.0996l80 -24c12.6992 -3.7998 19.8994 -17.2002 16.0996 -29.9004c-3.09961 -10.3994 -12.7002 -17.0996 -23 -17.0996zM399 262.9c3.7998 -12.7002 -3.40039 -26.1006 -16.0996 -29.8008l-28.2002 -8.5
|
||||
c3.09961 -4.89941 5.2998 -10.3994 5.2998 -16.5996c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32c-10.2998 0 -19.9004 6.7002 -23 17.0996c-3.7998 12.7002 3.40039 26.1006 16.0996 29.9004l80 24c12.8008 3.7998 26.1006 -3.40039 29.9004 -16.0996z" />
|
||||
<glyph glyph-name="dizzy" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM214.2 209.9
|
||||
c-7.90039 -7.90039 -20.5 -7.90039 -28.4004 -0.200195l-17.7998 17.7998l-17.7998 -17.7998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0c-7.80078 7.7998 -7.80078 20.5 0 28.2998l17.8994 17.9004l-17.8994 17.8994c-7.80078 7.7998 -7.80078 20.5 0 28.2998
|
||||
c7.7998 7.80078 20.5 7.80078 28.2998 0l17.7998 -17.7998l17.9004 17.9004c7.7998 7.7998 20.5 7.7998 28.2998 0s7.7998 -20.5 0 -28.2998l-17.9004 -17.9004l17.9004 -17.7998c7.7998 -7.7998 7.7998 -20.5 0 -28.2998zM374.2 302.1
|
||||
c7.7002 -7.7998 7.7002 -20.3994 0 -28.1992l-17.9004 -17.9004l17.7998 -18c7.80078 -7.7998 7.80078 -20.5 0 -28.2998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0l-17.7998 17.7998l-17.7998 -17.7998c-7.7998 -7.7998 -20.5 -7.7998 -28.2998 0
|
||||
c-7.80078 7.7998 -7.80078 20.5 0 28.2998l17.8994 17.9004l-17.8994 17.8994c-7.80078 7.7998 -7.80078 20.5 0 28.2998c7.7998 7.80078 20.5 7.80078 28.2998 0l17.7998 -17.7998l17.9004 17.7998c7.7998 7.80078 20.5 7.80078 28.2998 0zM248 176
|
||||
c35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64s-64 28.7002 -64 64s28.7002 64 64 64z" />
|
||||
<glyph glyph-name="flushed" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM344 304c44.2002 0 80 -35.7998 80 -80s-35.7998 -80 -80 -80
|
||||
s-80 35.7998 -80 80s35.7998 80 80 80zM344 176c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM344 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM232 224c0 -44.2002 -35.7998 -80 -80 -80
|
||||
s-80 35.7998 -80 80s35.7998 80 80 80s80 -35.7998 80 -80zM152 176c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM152 248c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM312 104
|
||||
c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-128c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h128z" />
|
||||
<glyph glyph-name="frown-open" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM200 240c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32
|
||||
s14.2998 32 32 32s32 -14.2998 32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM248 160c35.5996 0 88.7998 -21.2998 95.7998 -61.2002c2 -11.7998 -9.09961 -21.5996 -20.5 -18.0996
|
||||
c-31.2002 9.59961 -59.3994 15.2998 -75.2998 15.2998s-44.0996 -5.7002 -75.2998 -15.2998c-11.5 -3.40039 -22.5 6.2998 -20.5 18.0996c7 39.9004 60.2002 61.2002 95.7998 61.2002z" />
|
||||
<glyph glyph-name="grimace" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM344 192c26.5 0 48 -21.5 48 -48v-32c0 -26.5 -21.5 -48 -48 -48h-192c-26.5 0 -48 21.5 -48 48v32c0 26.5 21.5 48 48 48
|
||||
h192zM176 96v24h-40v-8c0 -8.7998 7.2002 -16 16 -16h24zM176 136v24h-24c-8.7998 0 -16 -7.2002 -16 -16v-8h40zM240 96v24h-48v-24h48zM240 136v24h-48v-24h48zM304 96v24h-48v-24h48zM304 136v24h-48v-24h48zM360 112v8h-40v-24h24c8.7998 0 16 7.2002 16 16zM360 136v8
|
||||
c0 8.7998 -7.2002 16 -16 16h-24v-24h40z" />
|
||||
<glyph glyph-name="grin" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 9.90039 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z" />
|
||||
<glyph glyph-name="grin-alt" unicode="" horiz-adv-x="496"
|
||||
d="M200.3 200c-7.5 -11.4004 -24.5996 -12 -32.7002 0c-12.3994 18.7002 -15.1992 37.2998 -15.6992 56c0.599609 18.7002 3.2998 37.2998 15.6992 56c7.60059 11.4004 24.7002 12 32.7002 0c12.4004 -18.7002 15.2002 -37.2998 15.7002 -56
|
||||
c-0.599609 -18.7002 -3.2998 -37.2998 -15.7002 -56zM328.3 200c-7.5 -11.4004 -24.5996 -12 -32.7002 0c-12.3994 18.7002 -15.1992 37.2998 -15.6992 56c0.599609 18.7002 3.2998 37.2998 15.6992 56c7.60059 11.4004 24.7002 12 32.7002 0
|
||||
c12.4004 -18.7002 15.2002 -37.2998 15.7002 -56c-0.599609 -18.7002 -3.2998 -37.2998 -15.7002 -56zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200
|
||||
s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006
|
||||
s79.7002 4.7998 105.6 13.1006z" />
|
||||
<glyph glyph-name="grin-beam" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM117.7 216.3c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998
|
||||
c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996
|
||||
l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002zM277.7 216.3c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998
|
||||
c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002z" />
|
||||
<glyph glyph-name="grin-beam-sweat" unicode="" horiz-adv-x="496"
|
||||
d="M440 288c-29.5 0 -53.2998 26.2998 -53.2998 58.7002c0 25 31.7002 75.5 46.2002 97.2998c3.5 5.2998 10.5996 5.2998 14.1992 0c14.5 -21.7998 46.2002 -72.2998 46.2002 -97.2998c0 -32.4004 -23.7998 -58.7002 -53.2998 -58.7002zM248 48
|
||||
c-51.9004 0 -115.3 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-8 -47.0996 -71.3994 -80 -123.3 -80zM378.3 216.3
|
||||
c-3.09961 -0.899414 -7.2002 0.100586 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998
|
||||
c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998zM483.6 269.2c8 -24.2998 12.4004 -50.2002 12.4004 -77.2002c0 -137 -111 -248 -248 -248s-248 111 -248 248s111 248 248 248
|
||||
c45.7002 0 88.4004 -12.5996 125.2 -34.2002c-10.9004 -21.5996 -15.5 -36.2002 -17.2002 -45.7002c-31.2002 20.1006 -68.2002 31.9004 -108 31.9004c-110.3 0 -200 -89.7002 -200 -200s89.7002 -200 200 -200s200 89.7002 200 200
|
||||
c0 22.5 -3.90039 44.0996 -10.7998 64.2998c0.399414 0 21.7998 -2.7998 46.3994 12.9004zM168 258.6c-12.2998 0 -23.7998 -7.7998 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998
|
||||
c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996z" />
|
||||
<glyph glyph-name="grin-hearts" unicode="" horiz-adv-x="496"
|
||||
d="M353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM200.8 192.3
|
||||
l-70.2002 18.1006c-20.3994 5.2998 -31.8994 27 -24.1992 47.1992c6.69922 17.7002 26.6992 26.7002 44.8994 22l7.10059 -1.89941l2 7.09961c5.09961 18.1006 22.8994 30.9004 41.5 27.9004c21.3994 -3.40039 34.3994 -24.2002 28.7998 -44.5l-19.4004 -69.9004
|
||||
c-1.2998 -4.5 -6 -7.2002 -10.5 -6zM389.6 257.6c7.7002 -20.1992 -3.7998 -41.7998 -24.1992 -47.0996l-70.2002 -18.2002c-4.60059 -1.2002 -9.2998 1.5 -10.5 6l-19.4004 69.9004c-5.59961 20.2998 7.40039 41.0996 28.7998 44.5c18.7002 3 36.5 -9.7998 41.5 -27.9004
|
||||
l2 -7.09961l7.10059 1.89941c18.2002 4.7002 38.2002 -4.39941 44.8994 -22zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200
|
||||
s89.7002 -200 200 -200z" />
|
||||
<glyph glyph-name="grin-squint" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.9004 -123.3 80c-1.7002 9.90039 7.7998 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM118.9 184.2c-3.80078 4.39941 -3.90039 11 -0.100586 15.5l33.6006 40.2998
|
||||
l-33.6006 40.2998c-3.7002 4.5 -3.7002 11 0.100586 15.5c3.89941 4.40039 10.1992 5.5 15.2998 2.5l80 -48c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998s-2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7002 -1.7002 -15.2998 2.5zM361.8 181.7
|
||||
l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5.10059 2.90039 11.5 1.90039 15.2998 -2.5c3.80078 -4.5 3.90039 -11 0.100586 -15.5l-33.6006 -40.2998l33.6006 -40.2998c3.7002 -4.5 3.7002 -11 -0.100586 -15.5
|
||||
c-3.59961 -4.2002 -9.89941 -5.7002 -15.2998 -2.5z" />
|
||||
<glyph glyph-name="grin-squint-tears" unicode=""
|
||||
d="M117.1 63.9004c6.30078 0.899414 11.7002 -4.5 10.9004 -10.9004c-3.7002 -25.7998 -13.7002 -84 -30.5996 -100.9c-22 -21.8994 -57.9004 -21.5 -80.3008 0.900391c-22.3994 22.4004 -22.7998 58.4004 -0.899414 80.2998
|
||||
c16.8994 16.9004 75.0996 26.9004 100.899 30.6006zM75.9004 105.6c-19.6006 -3.89941 -35.1006 -8.09961 -47.3008 -12.1992c-39.2998 90.5996 -22.0996 199.899 52 274c48.5 48.3994 111.9 72.5996 175.4 72.5996c38.9004 0 77.7998 -9.2002 113.2 -27.4004
|
||||
c-4 -12.1992 -8.2002 -28 -12 -48.2998c-30.4004 17.9004 -65 27.7002 -101.2 27.7002c-53.4004 0 -103.6 -20.7998 -141.4 -58.5996c-61.5996 -61.5 -74.2998 -153.4 -38.6992 -227.801zM428.2 293.2c20.2998 3.89941 36.2002 8 48.5 12
|
||||
c47.8994 -93.2002 32.8994 -210.5 -45.2002 -288.601c-48.5 -48.3994 -111.9 -72.5996 -175.4 -72.5996c-33.6992 0 -67.2998 7 -98.6992 20.5996c4.19922 12.2002 8.2998 27.7002 12.1992 47.2002c26.6006 -12.7998 55.9004 -19.7998 86.4004 -19.7998
|
||||
c53.4004 0 103.6 20.7998 141.4 58.5996c65.6992 65.7002 75.7998 166 30.7998 242.601zM394.9 320.1c-6.30078 -0.899414 -11.7002 4.5 -10.9004 10.9004c3.7002 25.7998 13.7002 84 30.5996 100.9c22 21.8994 57.9004 21.5 80.3008 -0.900391
|
||||
c22.3994 -22.4004 22.7998 -58.4004 0.899414 -80.2998c-16.8994 -16.9004 -75.0996 -26.9004 -100.899 -30.6006zM207.9 211.8c3 -3 4.19922 -7.2998 3.19922 -11.5l-22.5996 -90.5c-1.40039 -5.39941 -6.2002 -9.09961 -11.7002 -9.09961h-0.899414
|
||||
c-5.80078 0.5 -10.5 5.09961 -11 10.8994l-4.80078 52.3008l-52.2998 4.7998c-5.7998 0.5 -10.3994 5.2002 -10.8994 11c-0.400391 5.89941 3.39941 11.2002 9.09961 12.5996l90.5 22.7002c4.2002 1 8.40039 -0.200195 11.4004 -3.2002zM247.6 236.9
|
||||
c-0.0996094 0 -6.39941 -1.80078 -11.3994 3.19922c-3 3 -4.2002 7.30078 -3.2002 11.4004l22.5996 90.5c1.40039 5.7002 7 9.2002 12.6006 9.09961c5.7998 -0.5 10.5 -5.09961 11 -10.8994l4.7998 -52.2998l52.2998 -4.80078c5.7998 -0.5 10.4004 -5.19922 10.9004 -11
|
||||
c0.399414 -5.89941 -3.40039 -11.1992 -9.10059 -12.5996zM299.6 148.4c29.1006 29.0996 53 59.5996 65.3008 83.7998c4.89941 9.2998 17.5996 9.89941 23.3994 1.7002c27.7002 -38.9004 6.10059 -106.9 -30.5996 -143.7s-104.8 -58.2998 -143.7 -30.6006
|
||||
c-8.2998 5.90039 -7.5 18.6006 1.7002 23.4004c24.2002 12.5 54.7998 36.2998 83.8994 65.4004z" />
|
||||
<glyph glyph-name="grin-stars" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM353.6 143.4c10 3.09961 19.3008 -5.5 17.7002 -15.3008
|
||||
c-8 -47.0996 -71.2998 -80 -123.3 -80s-115.4 32.8008 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.3008c26 -8.30078 64.3994 -13.1006 105.6 -13.1006s79.7002 4.7998 105.6 13.1006zM125.7 200.9l6.09961 34.8994l-25.3994 24.6006
|
||||
c-4.60059 4.59961 -1.90039 12.2998 4.2998 13.1992l34.8994 5l15.5 31.6006c2.90039 5.7998 11 5.7998 13.9004 0l15.5 -31.6006l34.9004 -5c6.19922 -1 8.7998 -8.69922 4.2998 -13.1992l-25.4004 -24.6006l6 -34.8994c1 -6.2002 -5.39941 -11 -11 -7.90039
|
||||
l-31.2998 16.2998l-31.2998 -16.2998c-5.60059 -3.09961 -12 1.7002 -11 7.90039zM385.4 273.6c6.19922 -1 8.89941 -8.59961 4.39941 -13.1992l-25.3994 -24.6006l6 -34.8994c1 -6.2002 -5.40039 -11 -11 -7.90039l-31.3008 16.2998l-31.2998 -16.2998
|
||||
c-5.59961 -3.09961 -12 1.7002 -11 7.90039l6 34.8994l-25.3994 24.6006c-4.60059 4.59961 -1.90039 12.2998 4.2998 13.1992l34.8994 5l15.5 31.6006c2.90039 5.7998 11 5.7998 13.9004 0l15.5 -31.6006z" />
|
||||
<glyph glyph-name="grin-tears" unicode="" horiz-adv-x="640"
|
||||
d="M117.1 191.9c6.30078 0.899414 11.7002 -4.5 10.9004 -10.9004c-3.7002 -25.7998 -13.7002 -84 -30.5996 -100.9c-22 -21.8994 -57.9004 -21.5 -80.3008 0.900391c-22.3994 22.4004 -22.7998 58.4004 -0.899414 80.2998c16.8994 16.9004 75.0996 26.9004 100.899 30.6006
|
||||
zM623.8 161.3c21.9004 -21.8994 21.5 -57.8994 -0.799805 -80.2002c-22.4004 -22.3994 -58.4004 -22.7998 -80.2998 -0.899414c-16.9004 16.8994 -26.9004 75.0996 -30.6006 100.899c-0.899414 6.30078 4.5 11.7002 10.8008 10.8008
|
||||
c25.7998 -3.7002 84 -13.7002 100.899 -30.6006zM497.2 99.5996c12.3994 -37.2998 25.0996 -43.7998 28.2998 -46.5c-44.5996 -65.7998 -120 -109.1 -205.5 -109.1s-160.9 43.2998 -205.5 109.1c3.09961 2.60059 15.7998 9.10059 28.2998 46.5
|
||||
c33.4004 -63.8994 100.3 -107.6 177.2 -107.6s143.8 43.7002 177.2 107.6zM122.7 223.5c-2.40039 0.299805 -5 2.5 -49.5 -6.90039c12.3994 125.4 118.1 223.4 246.8 223.4s234.4 -98 246.8 -223.5c-44.2998 9.40039 -47.3994 7.2002 -49.5 7
|
||||
c-15.2002 95.2998 -97.7998 168.5 -197.3 168.5s-182.1 -73.2002 -197.3 -168.5zM320 48c-51.9004 0 -115.3 32.9004 -123.3 80c-1.7002 10 7.89941 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996
|
||||
c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-8 -47.0996 -71.3994 -80 -123.3 -80zM450.3 216.3c-3.09961 -0.899414 -7.2002 0.100586 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17
|
||||
c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998zM240 258.6
|
||||
c-12.2998 0 -23.7998 -7.7998 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004
|
||||
c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996z" />
|
||||
<glyph glyph-name="grin-tongue" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0
|
||||
l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200
|
||||
s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996
|
||||
s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998zM168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32
|
||||
s14.2998 32 32 32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z" />
|
||||
<glyph glyph-name="grin-tongue-squint" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0
|
||||
l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200
|
||||
s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996
|
||||
s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998zM377.1 295.8c3.80078 -4.39941 3.90039 -11 0.100586 -15.5l-33.6006 -40.2998
|
||||
l33.6006 -40.2998c3.7002 -4.5 3.7002 -11 -0.100586 -15.5c-3.59961 -4.2002 -9.89941 -5.7002 -15.2998 -2.5l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5 3 11.5 1.90039 15.2998 -2.5zM214.2 250.3
|
||||
c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998s-2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7002 -1.7002 -15.2998 2.5c-3.80078 4.5 -3.90039 11 -0.100586 15.5l33.6006 40.2998l-33.6006 40.2998c-3.7002 4.5 -3.7002 11 0.100586 15.5
|
||||
c3.89941 4.5 10.2998 5.5 15.2998 2.5z" />
|
||||
<glyph glyph-name="grin-tongue-wink" unicode="" horiz-adv-x="496"
|
||||
d="M152 268c25.7002 0 55.9004 -16.9004 59.7998 -42.0996c0.799805 -5 -1.7002 -10 -6.09961 -12.4004c-5.7002 -3.09961 -11.2002 -0.599609 -13.7002 1.59961l-9.5 8.5c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5
|
||||
c-3.7998 -3.39941 -9.2998 -4 -13.7002 -1.59961c-4.39941 2.40039 -6.89941 7.40039 -6.09961 12.4004c3.89941 25.1992 34.0996 42.0996 59.7998 42.0996zM328 320c44.2002 0 80 -35.7998 80 -80s-35.7998 -80 -80 -80s-80 35.7998 -80 80s35.7998 80 80 80zM328 192
|
||||
c26.5 0 48 21.5 48 48s-21.5 48 -48 48s-48 -21.5 -48 -48s21.5 -48 48 -48zM328 264c13.2998 0 24 -10.7002 24 -24s-10.7002 -24 -24 -24s-24 10.7002 -24 24s10.7002 24 24 24zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248z
|
||||
M312 40h0.0996094v43.7998l-17.6992 8.7998c-15.1006 7.60059 -31.5 -1.69922 -34.9004 -16.5l-2.7998 -12.0996c-2.10059 -9.2002 -15.2002 -9.2002 -17.2998 0l-2.80078 12.0996c-3.39941 14.8008 -19.8994 24 -34.8994 16.5l-17.7002 -8.7998v-42.7998
|
||||
c0 -35.2002 28 -64.5 63.0996 -65c35.8008 -0.5 64.9004 28.4004 64.9004 64zM340.2 14.7002c64 33.3994 107.8 100.3 107.8 177.3c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -77 43.7998 -143.9 107.8 -177.3
|
||||
c-2.2002 8.09961 -3.7998 16.5 -3.7998 25.2998v43.5c-14.2002 12.4004 -24.4004 27.5 -27.2998 44.5c-1.7002 10 7.7998 18.4004 17.7002 15.2998c26 -8.2998 64.3994 -13.0996 105.6 -13.0996s79.7002 4.7998 105.6 13.0996c10 3.2002 19.4004 -5.39941 17.7002 -15.2998
|
||||
c-2.89941 -17 -13.0996 -32.0996 -27.2998 -44.5v-43.5c0 -8.7998 -1.59961 -17.2002 -3.7998 -25.2998z" />
|
||||
<glyph glyph-name="grin-wink" unicode="" horiz-adv-x="496"
|
||||
d="M328 268c25.6904 0 55.8799 -16.9199 59.8701 -42.1201c1.72949 -11.0898 -11.3506 -18.2695 -19.8301 -10.8398l-9.5498 8.47949c-14.8105 13.1904 -46.1602 13.1904 -60.9707 0l-9.5498 -8.47949c-8.33008 -7.40039 -21.5801 -0.379883 -19.8301 10.8398
|
||||
c3.98047 25.2002 34.1699 42.1201 59.8604 42.1201zM168 208c-17.6699 0 -32 14.3301 -32 32s14.3301 32 32 32s32 -14.3301 32 -32s-14.3301 -32 -32 -32zM353.55 143.36c10.04 3.13965 19.3906 -5.4502 17.71 -15.3408
|
||||
c-7.92969 -47.1494 -71.3193 -80.0195 -123.26 -80.0195s-115.33 32.8701 -123.26 80.0195c-1.69043 9.9707 7.76953 18.4707 17.71 15.3408c25.9297 -8.31055 64.3994 -13.0605 105.55 -13.0605s79.6201 4.75977 105.55 13.0605zM248 440c136.97 0 248 -111.03 248 -248
|
||||
s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 -8c110.28 0 200 89.7197 200 200s-89.7197 200 -200 200s-200 -89.7197 -200 -200s89.7197 -200 200 -200z" />
|
||||
<glyph glyph-name="kiss" unicode="" horiz-adv-x="496"
|
||||
d="M168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM304 140c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5
|
||||
c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002
|
||||
c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM248 440c137 0 248 -111 248 -248
|
||||
s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z
|
||||
" />
|
||||
<glyph glyph-name="kiss-beam" unicode="" horiz-adv-x="496"
|
||||
d="M168 296c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.299805 -3.7998 -2 -7.19922 -5.59961 -8.2998c-3.10059 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996c-12.3008 0 -23.8008 -7.89941 -31.5 -21.5996l-9.5 -17
|
||||
c-1.80078 -3.2002 -5.80078 -4.7002 -9.30078 -3.7002c-3.59961 1.10059 -5.89941 4.60059 -5.59961 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8
|
||||
c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM304 140c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5
|
||||
c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002
|
||||
c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM328 296
|
||||
c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.299805 -3.7998 -2 -7.19922 -5.59961 -8.2998c-3.10059 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996c-12.3008 0 -23.8008 -7.89941 -31.5 -21.5996l-9.5 -17
|
||||
c-1.80078 -3.2002 -5.80078 -4.7002 -9.30078 -3.7002c-3.59961 1.10059 -5.89941 4.60059 -5.59961 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004z" />
|
||||
<glyph glyph-name="kiss-wink-heart" unicode="" horiz-adv-x="504"
|
||||
d="M304 139.5c0 -13 -13.4004 -27.2998 -35.0996 -36.4004c21.7998 -8.69922 35.1992 -23 35.1992 -36c0 -19.1992 -28.6992 -41.5 -71.5 -44h-0.5c-3.69922 0 -7 2.60059 -7.7998 6.2002c-0.899414 3.7998 1.10059 7.7002 4.7002 9.2002l17 7.2002
|
||||
c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.2002c-6 2.59961 -5.7002 12.3994 0 14.7998l17 7.2002c12.9004 5.5 20.7002 13.5 20.7002 21.5s-7.7998 16 -20.7998 21.5l-16.9004 7.19922c-3.59961 1.5 -5.59961 5.40039 -4.7002 9.2002
|
||||
c0.799805 3.7998 4.40039 6.60059 8.2002 6.2002c42.7002 -2.5 71.5 -24.7998 71.5 -44zM374.5 223c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-2.5 -2.2998 -7.90039 -4.7002 -13.7002 -1.59961c-4.39941 2.39941 -6.89941 7.39941 -6.09961 12.3994
|
||||
c3.89941 25.2002 34.2002 42.1006 59.7998 42.1006s55.7998 -16.9004 59.7998 -42.1006c0.799805 -5 -1.7002 -10 -6.09961 -12.3994c-4.40039 -2.40039 -9.90039 -1.7002 -13.7002 1.59961zM136 239.5c0 17.7002 14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32
|
||||
s-32 14.2998 -32 32zM501.1 45.5c9.2002 -23.9004 -4.39941 -49.4004 -28.5 -55.7002l-83 -21.5c-5.39941 -1.39941 -10.8994 1.7998 -12.3994 7.10059l-22.9004 82.5996c-6.59961 24 8.7998 48.5996 34 52.5996c22 3.5 43.1006 -11.5996 49 -33l2.2998 -8.39941
|
||||
l8.40039 2.2002c21.5996 5.59961 45.0996 -5.10059 53.0996 -25.9004zM334 11.7002c17.7002 -64 10.9004 -39.5 13.4004 -46.7998c-30.5 -13.4004 -64 -20.9004 -99.4004 -20.9004c-137 0 -248 111 -248 248s111 248 248 248s248 -111 247.9 -248
|
||||
c0 -31.7998 -6.2002 -62.0996 -17.1006 -90c-6 1.5 -12.2002 2.7998 -18.5996 2.90039c-5.60059 9.69922 -13.6006 17.5 -22.6006 23.8994c6.7002 19.9004 10.4004 41.1006 10.4004 63.2002c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200
|
||||
c30.7998 0 59.9004 7.2002 86 19.7002z" />
|
||||
<glyph glyph-name="laugh" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 224c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM168 224
|
||||
c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="laugh-beam" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 296c23.7998 0 52.7002 -29.2998 55.7998 -71.4004c0.700195 -8.5 -10.7998 -11.8994 -14.8994 -4.5
|
||||
l-9.5 17c-7.7002 13.7002 -19.2002 21.6006 -31.5 21.6006c-12.3008 0 -23.8008 -7.90039 -31.5 -21.6006l-9.5 -17c-4.10059 -7.39941 -15.6006 -4.09961 -14.9004 4.5c3.2998 42.1006 32.2002 71.4004 56 71.4004zM127 220.1c-4.2002 -7.39941 -15.7002 -4 -15.0996 4.5
|
||||
c3.2998 42.1006 32.1992 71.4004 56 71.4004c23.7998 0 52.6992 -29.2998 56 -71.4004c0.699219 -8.5 -10.8008 -11.8994 -14.9004 -4.5l-9.5 17c-7.7002 13.7002 -19.2002 21.6006 -31.5 21.6006s-23.7998 -7.90039 -31.5 -21.6006zM362.4 160c8.19922 0 14.5 -7 13.5 -15
|
||||
c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="laugh-squint" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM343.6 252l33.6006 -40.2998c8.59961 -10.4004 -3.90039 -24.7998 -15.4004 -18l-80 48
|
||||
c-7.7998 4.7002 -7.7998 15.8994 0 20.5996l80 48c11.6006 6.7998 24 -7.7002 15.4004 -18zM134.2 193.7c-11.6006 -6.7998 -24.1006 7.59961 -15.4004 18l33.6006 40.2998l-33.6006 40.2998c-8.59961 10.2998 3.7998 24.9004 15.4004 18l80 -48
|
||||
c7.7998 -4.7002 7.7998 -15.8994 0 -20.5996zM362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="laugh-wink" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM389.4 50.5996c37.7998 37.8008 58.5996 88 58.5996 141.4s-20.7998 103.6 -58.5996 141.4c-37.8008 37.7998 -88 58.5996 -141.4 58.5996s-103.6 -20.7998 -141.4 -58.5996
|
||||
c-37.7998 -37.8008 -58.5996 -88 -58.5996 -141.4s20.7998 -103.6 58.5996 -141.4c37.8008 -37.7998 88 -58.5996 141.4 -58.5996s103.6 20.7998 141.4 58.5996zM328 284c25.7002 0 55.9004 -16.9004 59.7002 -42.0996c1.7998 -11.1006 -11.2998 -18.2002 -19.7998 -10.8008
|
||||
l-9.5 8.5c-14.8008 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5c-8.30078 -7.39941 -21.5 -0.399414 -19.8008 10.8008c4 25.1992 34.2002 42.0996 59.9004 42.0996zM168 224c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32s-14.2998 -32 -32 -32z
|
||||
M362.4 160c8.19922 0 14.5 -7 13.5 -15c-7.5 -59.2002 -58.9004 -105 -121.101 -105h-13.5996c-62.2002 0 -113.601 45.7998 -121.101 105c-1 8 5.30078 15 13.5 15h228.801z" />
|
||||
<glyph glyph-name="meh-blank" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM168 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32
|
||||
s-32 14.2998 -32 32s14.2998 32 32 32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z" />
|
||||
<glyph glyph-name="meh-rolling-eyes" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM336 296c39.7998 0 72 -32.2002 72 -72s-32.2002 -72 -72 -72
|
||||
s-72 32.2002 -72 72s32.2002 72 72 72zM336 184c22.0996 0 40 17.9004 40 40c0 13.5996 -7.2998 25.0996 -17.7002 32.2998c1 -2.59961 1.7002 -5.39941 1.7002 -8.2998c0 -13.2998 -10.7002 -24 -24 -24s-24 10.7002 -24 24c0 3 0.700195 5.7002 1.7002 8.2998
|
||||
c-10.4004 -7.2002 -17.7002 -18.7002 -17.7002 -32.2998c0 -22.0996 17.9004 -40 40 -40zM232 224c0 -39.7998 -32.2002 -72 -72 -72s-72 32.2002 -72 72s32.2002 72 72 72s72 -32.2002 72 -72zM120 224c0 -22.0996 17.9004 -40 40 -40s40 17.9004 40 40
|
||||
c0 13.5996 -7.2998 25.0996 -17.7002 32.2998c1 -2.59961 1.7002 -5.39941 1.7002 -8.2998c0 -13.2998 -10.7002 -24 -24 -24s-24 10.7002 -24 24c0 3 0.700195 5.7002 1.7002 8.2998c-10.4004 -7.2002 -17.7002 -18.7002 -17.7002 -32.2998zM312 96
|
||||
c13.2002 0 24 -10.7998 24 -24s-10.7998 -24 -24 -24h-128c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24h128z" />
|
||||
<glyph glyph-name="sad-cry" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM392 53.5996c34.5996 35.9004 56 84.7002 56 138.4c0 110.3 -89.7002 200 -200 200s-200 -89.7002 -200 -200c0 -53.7002 21.4004 -102.4 56 -138.4v114.4
|
||||
c0 13.2002 10.7998 24 24 24s24 -10.7998 24 -24v-151.4c28.5 -15.5996 61.2002 -24.5996 96 -24.5996s67.5 9 96 24.5996v151.4c0 13.2002 10.7998 24 24 24s24 -10.7998 24 -24v-114.4zM205.8 213.5c-5.7998 -3.2002 -11.2002 -0.700195 -13.7002 1.59961l-9.5 8.5
|
||||
c-14.7998 13.2002 -46.1992 13.2002 -61 0l-9.5 -8.5c-3.7998 -3.39941 -9.2998 -4 -13.6992 -1.59961c-4.40039 2.40039 -6.90039 7.40039 -6.10059 12.4004c3.90039 25.1992 34.2002 42.0996 59.7998 42.0996c25.6006 0 55.8008 -16.9004 59.8008 -42.0996
|
||||
c0.799805 -5 -1.7002 -10 -6.10059 -12.4004zM344 268c25.7002 0 55.9004 -16.9004 59.7998 -42.0996c0.799805 -5 -1.7002 -10 -6.09961 -12.4004c-5.7002 -3.09961 -11.2002 -0.599609 -13.7002 1.59961l-9.5 8.5c-14.7998 13.2002 -46.2002 13.2002 -61 0l-9.5 -8.5
|
||||
c-3.7998 -3.39941 -9.2002 -4 -13.7002 -1.59961c-4.39941 2.40039 -6.89941 7.40039 -6.09961 12.4004c3.89941 25.1992 34.0996 42.0996 59.7998 42.0996zM248 176c30.9004 0 56 -28.7002 56 -64s-25.0996 -64 -56 -64s-56 28.7002 -56 64s25.0996 64 56 64z" />
|
||||
<glyph glyph-name="sad-tear" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM256 144c38.0996 0 74 -16.7998 98.5 -46.0996
|
||||
c8.5 -10.2002 7.09961 -25.3008 -3.09961 -33.8008c-10.6006 -8.7998 -25.7002 -6.69922 -33.8008 3.10059c-15.2998 18.2998 -37.7998 28.7998 -61.5996 28.7998c-13.2002 0 -24 10.7998 -24 24s10.7998 24 24 24zM168 208c-17.7002 0 -32 14.2998 -32 32s14.2998 32 32 32
|
||||
s32 -14.2998 32 -32s-14.2998 -32 -32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32zM162.4 173.2c2.7998 3.7002 8.39941 3.7002 11.1992 0c11.4004 -15.2998 36.4004 -50.6006 36.4004 -68.1006
|
||||
c0 -22.6992 -18.7998 -41.0996 -42 -41.0996s-42 18.4004 -42 41.0996c0 17.5 25 52.8008 36.4004 68.1006z" />
|
||||
<glyph glyph-name="smile-beam" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM332 135.4c8.5 10.1992 23.5996 11.5 33.7998 3.09961
|
||||
c10.2002 -8.5 11.6006 -23.5996 3.10059 -33.7998c-30 -36 -74.1006 -56.6006 -120.9 -56.6006s-90.9004 20.6006 -120.9 56.6006c-8.39941 10.2002 -7.09961 25.2998 3.10059 33.7998c10.2002 8.40039 25.2998 7.09961 33.7998 -3.09961
|
||||
c20.7998 -25.1006 51.5 -39.4004 84 -39.4004s63.2002 14.4004 84 39.4004zM136.5 237l-9.5 -17c-1.90039 -3.2002 -5.90039 -4.7998 -9.2998 -3.7002c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004s52.7002 -29.2998 56 -71.4004
|
||||
c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996zM328 296c23.7998 0 52.7002 -29.2998 56 -71.4004
|
||||
c0.299805 -3.7998 -2.09961 -7.19922 -5.7002 -8.2998c-3.09961 -1 -7.2002 0 -9.2998 3.7002l-9.5 17c-7.7002 13.7002 -19.2002 21.5996 -31.5 21.5996s-23.7998 -7.89941 -31.5 -21.5996l-9.5 -17c-1.90039 -3.2002 -5.7998 -4.7998 -9.2998 -3.7002
|
||||
c-3.60059 1.10059 -6 4.60059 -5.7002 8.2998c3.2998 42.1006 32.2002 71.4004 56 71.4004z" />
|
||||
<glyph glyph-name="surprise" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM248 168c35.2998 0 64 -28.7002 64 -64s-28.7002 -64 -64 -64
|
||||
s-64 28.7002 -64 64s28.7002 64 64 64zM200 240c0 -17.7002 -14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32s32 -14.2998 32 -32zM328 272c17.7002 0 32 -14.2998 32 -32s-14.2998 -32 -32 -32s-32 14.2998 -32 32s14.2998 32 32 32z" />
|
||||
<glyph glyph-name="tired" unicode="" horiz-adv-x="496"
|
||||
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -8c110.3 0 200 89.7002 200 200s-89.7002 200 -200 200s-200 -89.7002 -200 -200s89.7002 -200 200 -200zM377.1 295.8c3.80078 -4.39941 3.90039 -11 0.100586 -15.5
|
||||
l-33.6006 -40.2998l33.6006 -40.2998c3.7998 -4.5 3.7002 -11 -0.100586 -15.5c-3.5 -4.10059 -9.89941 -5.7002 -15.2998 -2.5l-80 48c-3.59961 2.2002 -5.7998 6.09961 -5.7998 10.2998s2.2002 8.09961 5.7998 10.2998l80 48c5 2.90039 11.5 1.90039 15.2998 -2.5z
|
||||
M220 240c0 -4.2002 -2.2002 -8.09961 -5.7998 -10.2998l-80 -48c-5.40039 -3.2002 -11.7998 -1.60059 -15.2998 2.5c-3.80078 4.5 -3.90039 11 -0.100586 15.5l33.6006 40.2998l-33.6006 40.2998c-3.7998 4.5 -3.7002 11 0.100586 15.5
|
||||
c3.7998 4.40039 10.2998 5.5 15.2998 2.5l80 -48c3.59961 -2.2002 5.7998 -6.09961 5.7998 -10.2998zM248 176c45.4004 0 100.9 -38.2998 107.8 -93.2998c1.5 -11.9004 -7 -21.6006 -15.5 -17.9004c-22.7002 9.7002 -56.2998 15.2002 -92.2998 15.2002
|
||||
s-69.5996 -5.5 -92.2998 -15.2002c-8.60059 -3.7002 -17 6.10059 -15.5 17.9004c6.89941 55 62.3994 93.2998 107.8 93.2998z" />
|
||||
</font>
|
||||
</defs></svg>
|
||||
|
After Width: | Height: | Size: 141 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 898 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
502
wp-content/plugins/elementor/assets/lib/hover/hover.css
Normal file
502
wp-content/plugins/elementor/assets/lib/hover/hover.css
Normal file
@@ -0,0 +1,502 @@
|
||||
/*!
|
||||
* Hover.css (http://ianlunn.github.io/Hover/)
|
||||
* Version: 2.0.2
|
||||
* Author: Ian Lunn @IanLunn
|
||||
* Author URL: http://ianlunn.co.uk/
|
||||
* Github: https://github.com/IanLunn/Hover
|
||||
|
||||
* Made available under a MIT License:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
* Hover.css Copyright Ian Lunn 2014. Generated with Sass.
|
||||
*/
|
||||
/* 2D TRANSITIONS */
|
||||
/* Grow */
|
||||
.elementor-animation-grow {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
.elementor-animation-grow:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
/* Shrink */
|
||||
.elementor-animation-shrink {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
.elementor-animation-shrink:hover {
|
||||
transform: scale(0.9);
|
||||
}
|
||||
|
||||
/* Pulse */
|
||||
@keyframes elementor-animation-pulse {
|
||||
25% {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
75% {
|
||||
transform: scale(0.9);
|
||||
}
|
||||
}
|
||||
.elementor-animation-pulse:hover {
|
||||
animation-name: elementor-animation-pulse;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
/* Pulse Grow */
|
||||
@keyframes elementor-animation-pulse-grow {
|
||||
to {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
.elementor-animation-pulse-grow:hover {
|
||||
animation-name: elementor-animation-pulse-grow;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
/* Pulse Shrink */
|
||||
@keyframes elementor-animation-pulse-shrink {
|
||||
to {
|
||||
transform: scale(0.9);
|
||||
}
|
||||
}
|
||||
.elementor-animation-pulse-shrink:hover {
|
||||
animation-name: elementor-animation-pulse-shrink;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
/* Push */
|
||||
@keyframes elementor-animation-push {
|
||||
50% {
|
||||
transform: scale(0.8);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
.elementor-animation-push:hover {
|
||||
animation-name: elementor-animation-push;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Pop */
|
||||
@keyframes elementor-animation-pop {
|
||||
50% {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
.elementor-animation-pop:hover {
|
||||
animation-name: elementor-animation-pop;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Bounce In */
|
||||
.elementor-animation-bounce-in {
|
||||
transition-duration: 0.5s;
|
||||
}
|
||||
.elementor-animation-bounce-in:hover {
|
||||
transform: scale(1.2);
|
||||
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
|
||||
}
|
||||
|
||||
/* Bounce Out */
|
||||
.elementor-animation-bounce-out {
|
||||
transition-duration: 0.5s;
|
||||
}
|
||||
.elementor-animation-bounce-out:hover {
|
||||
transform: scale(0.8);
|
||||
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
|
||||
}
|
||||
|
||||
/* Rotate */
|
||||
.elementor-animation-rotate {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
.elementor-animation-rotate:hover {
|
||||
transform: rotate(4deg);
|
||||
}
|
||||
|
||||
/* Grow Rotate */
|
||||
.elementor-animation-grow-rotate {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
.elementor-animation-grow-rotate:hover {
|
||||
transform: scale(1.1) rotate(4deg);
|
||||
}
|
||||
|
||||
/* Float */
|
||||
.elementor-animation-float {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.elementor-animation-float:hover {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
|
||||
/* Sink */
|
||||
.elementor-animation-sink {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.elementor-animation-sink:hover {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
|
||||
/* Bob */
|
||||
@keyframes elementor-animation-bob {
|
||||
0% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
}
|
||||
@keyframes elementor-animation-bob-float {
|
||||
100% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
}
|
||||
.elementor-animation-bob:hover {
|
||||
animation-name: elementor-animation-bob-float, elementor-animation-bob;
|
||||
animation-duration: .3s, 1.5s;
|
||||
animation-delay: 0s, .3s;
|
||||
animation-timing-function: ease-out, ease-in-out;
|
||||
animation-iteration-count: 1, infinite;
|
||||
animation-fill-mode: forwards;
|
||||
animation-direction: normal, alternate;
|
||||
}
|
||||
|
||||
/* Hang */
|
||||
@keyframes elementor-animation-hang {
|
||||
0% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(4px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
}
|
||||
@keyframes elementor-animation-hang-sink {
|
||||
100% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
}
|
||||
.elementor-animation-hang:hover {
|
||||
animation-name: elementor-animation-hang-sink, elementor-animation-hang;
|
||||
animation-duration: .3s, 1.5s;
|
||||
animation-delay: 0s, .3s;
|
||||
animation-timing-function: ease-out, ease-in-out;
|
||||
animation-iteration-count: 1, infinite;
|
||||
animation-fill-mode: forwards;
|
||||
animation-direction: normal, alternate;
|
||||
}
|
||||
|
||||
/* Skew */
|
||||
.elementor-animation-skew {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
.elementor-animation-skew:hover {
|
||||
transform: skew(-10deg);
|
||||
}
|
||||
|
||||
/* Skew Forward */
|
||||
.elementor-animation-skew-forward {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transform-origin: 0 100%;
|
||||
}
|
||||
.elementor-animation-skew-forward:hover {
|
||||
transform: skew(-10deg);
|
||||
}
|
||||
|
||||
/* Skew Backward */
|
||||
.elementor-animation-skew-backward {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transform-origin: 0 100%;
|
||||
}
|
||||
.elementor-animation-skew-backward:hover {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
|
||||
/* Wobble Vertical */
|
||||
@keyframes elementor-animation-wobble-vertical {
|
||||
16.65% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translateY(-6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translateY(4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-vertical:hover {
|
||||
animation-name: elementor-animation-wobble-vertical;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Wobble Horizontal */
|
||||
@keyframes elementor-animation-wobble-horizontal {
|
||||
16.65% {
|
||||
transform: translateX(8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translateX(-6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translateX(-2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translateX(1px);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-horizontal:hover {
|
||||
animation-name: elementor-animation-wobble-horizontal;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Wobble To Bottom Right */
|
||||
@keyframes elementor-animation-wobble-to-bottom-right {
|
||||
16.65% {
|
||||
transform: translate(8px, 8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translate(-6px, -6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translate(4px, 4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translate(-2px, -2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translate(1px, 1px);
|
||||
}
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-to-bottom-right:hover {
|
||||
animation-name: elementor-animation-wobble-to-bottom-right;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Wobble To Top Right */
|
||||
@keyframes elementor-animation-wobble-to-top-right {
|
||||
16.65% {
|
||||
transform: translate(8px, -8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translate(-6px, 6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translate(4px, -4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translate(-2px, 2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translate(1px, -1px);
|
||||
}
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-to-top-right:hover {
|
||||
animation-name: elementor-animation-wobble-to-top-right;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Wobble Top */
|
||||
@keyframes elementor-animation-wobble-top {
|
||||
16.65% {
|
||||
transform: skew(-12deg);
|
||||
}
|
||||
33.3% {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
49.95% {
|
||||
transform: skew(-6deg);
|
||||
}
|
||||
66.6% {
|
||||
transform: skew(4deg);
|
||||
}
|
||||
83.25% {
|
||||
transform: skew(-2deg);
|
||||
}
|
||||
100% {
|
||||
transform: skew(0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-top {
|
||||
transform-origin: 0 100%;
|
||||
}
|
||||
.elementor-animation-wobble-top:hover {
|
||||
animation-name: elementor-animation-wobble-top;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Wobble Bottom */
|
||||
@keyframes elementor-animation-wobble-bottom {
|
||||
16.65% {
|
||||
transform: skew(-12deg);
|
||||
}
|
||||
33.3% {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
49.95% {
|
||||
transform: skew(-6deg);
|
||||
}
|
||||
66.6% {
|
||||
transform: skew(4deg);
|
||||
}
|
||||
83.25% {
|
||||
transform: skew(-2deg);
|
||||
}
|
||||
100% {
|
||||
transform: skew(0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-bottom {
|
||||
transform-origin: 100% 0;
|
||||
}
|
||||
.elementor-animation-wobble-bottom:hover {
|
||||
animation-name: elementor-animation-wobble-bottom;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Wobble Skew */
|
||||
@keyframes elementor-animation-wobble-skew {
|
||||
16.65% {
|
||||
transform: skew(-12deg);
|
||||
}
|
||||
33.3% {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
49.95% {
|
||||
transform: skew(-6deg);
|
||||
}
|
||||
66.6% {
|
||||
transform: skew(4deg);
|
||||
}
|
||||
83.25% {
|
||||
transform: skew(-2deg);
|
||||
}
|
||||
100% {
|
||||
transform: skew(0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-wobble-skew:hover {
|
||||
animation-name: elementor-animation-wobble-skew;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/* Buzz */
|
||||
@keyframes elementor-animation-buzz {
|
||||
50% {
|
||||
transform: translateX(3px) rotate(2deg);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-3px) rotate(-2deg);
|
||||
}
|
||||
}
|
||||
.elementor-animation-buzz:hover {
|
||||
animation-name: elementor-animation-buzz;
|
||||
animation-duration: 0.15s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
/* Buzz Out */
|
||||
@keyframes elementor-animation-buzz-out {
|
||||
10% {
|
||||
transform: translateX(3px) rotate(2deg);
|
||||
}
|
||||
20% {
|
||||
transform: translateX(-3px) rotate(-2deg);
|
||||
}
|
||||
30% {
|
||||
transform: translateX(3px) rotate(2deg);
|
||||
}
|
||||
40% {
|
||||
transform: translateX(-3px) rotate(-2deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateX(2px) rotate(1deg);
|
||||
}
|
||||
60% {
|
||||
transform: translateX(-2px) rotate(-1deg);
|
||||
}
|
||||
70% {
|
||||
transform: translateX(2px) rotate(1deg);
|
||||
}
|
||||
80% {
|
||||
transform: translateX(-2px) rotate(-1deg);
|
||||
}
|
||||
90% {
|
||||
transform: translateX(1px) rotate(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-1px) rotate(0);
|
||||
}
|
||||
}
|
||||
.elementor-animation-buzz-out:hover {
|
||||
animation-name: elementor-animation-buzz-out;
|
||||
animation-duration: 0.75s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=hover.css.map */
|
||||
1
wp-content/plugins/elementor/assets/lib/hover/hover.min.css
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/hover/hover.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,487 @@
|
||||
/*!
|
||||
* imagesLoaded PACKAGED v4.1.0
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
/**
|
||||
* EvEmitter v1.0.1
|
||||
* Lil' event emitter
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
/* jshint unused: true, undef: true, strict: true */
|
||||
|
||||
( function( global, factory ) {
|
||||
// universal module definition
|
||||
/* jshint strict: false */ /* globals define, module */
|
||||
if ( typeof define == 'function' && define.amd ) {
|
||||
// AMD - RequireJS
|
||||
define( 'ev-emitter/ev-emitter',factory );
|
||||
} else if ( typeof module == 'object' && module.exports ) {
|
||||
// CommonJS - Browserify, Webpack
|
||||
module.exports = factory();
|
||||
} else {
|
||||
// Browser globals
|
||||
global.EvEmitter = factory();
|
||||
}
|
||||
|
||||
}( this, function() {
|
||||
|
||||
|
||||
|
||||
function EvEmitter() {}
|
||||
|
||||
var proto = EvEmitter.prototype;
|
||||
|
||||
proto.on = function( eventName, listener ) {
|
||||
if ( !eventName || !listener ) {
|
||||
return;
|
||||
}
|
||||
// set events hash
|
||||
var events = this._events = this._events || {};
|
||||
// set listeners array
|
||||
var listeners = events[ eventName ] = events[ eventName ] || [];
|
||||
// only add once
|
||||
if ( listeners.indexOf( listener ) == -1 ) {
|
||||
listeners.push( listener );
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
proto.once = function( eventName, listener ) {
|
||||
if ( !eventName || !listener ) {
|
||||
return;
|
||||
}
|
||||
// add event
|
||||
this.on( eventName, listener );
|
||||
// set once flag
|
||||
// set onceEvents hash
|
||||
var onceEvents = this._onceEvents = this._onceEvents || {};
|
||||
// set onceListeners array
|
||||
var onceListeners = onceEvents[ eventName ] = onceEvents[ eventName ] || [];
|
||||
// set flag
|
||||
onceListeners[ listener ] = true;
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
proto.off = function( eventName, listener ) {
|
||||
var listeners = this._events && this._events[ eventName ];
|
||||
if ( !listeners || !listeners.length ) {
|
||||
return;
|
||||
}
|
||||
var index = listeners.indexOf( listener );
|
||||
if ( index != -1 ) {
|
||||
listeners.splice( index, 1 );
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
proto.emitEvent = function( eventName, args ) {
|
||||
var listeners = this._events && this._events[ eventName ];
|
||||
if ( !listeners || !listeners.length ) {
|
||||
return;
|
||||
}
|
||||
var i = 0;
|
||||
var listener = listeners[i];
|
||||
args = args || [];
|
||||
// once stuff
|
||||
var onceListeners = this._onceEvents && this._onceEvents[ eventName ];
|
||||
|
||||
while ( listener ) {
|
||||
var isOnce = onceListeners && onceListeners[ listener ];
|
||||
if ( isOnce ) {
|
||||
// remove listener
|
||||
// remove before trigger to prevent recursion
|
||||
this.off( eventName, listener );
|
||||
// unset once flag
|
||||
delete onceListeners[ listener ];
|
||||
}
|
||||
// trigger listener
|
||||
listener.apply( this, args );
|
||||
// get next listener
|
||||
i += isOnce ? 0 : 1;
|
||||
listener = listeners[i];
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
return EvEmitter;
|
||||
|
||||
}));
|
||||
|
||||
/*!
|
||||
* imagesLoaded v4.1.0
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
( function( window, factory ) { 'use strict';
|
||||
// universal module definition
|
||||
|
||||
/*global define: false, module: false, require: false */
|
||||
|
||||
if ( typeof define == 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( [
|
||||
'ev-emitter/ev-emitter'
|
||||
], function( EvEmitter ) {
|
||||
return factory( window, EvEmitter );
|
||||
});
|
||||
} else if ( typeof module == 'object' && module.exports ) {
|
||||
// CommonJS
|
||||
module.exports = factory(
|
||||
window,
|
||||
require('ev-emitter')
|
||||
);
|
||||
} else {
|
||||
// browser global
|
||||
window.imagesLoaded = factory(
|
||||
window,
|
||||
window.EvEmitter
|
||||
);
|
||||
}
|
||||
|
||||
})( window,
|
||||
|
||||
// -------------------------- factory -------------------------- //
|
||||
|
||||
function factory( window, EvEmitter ) {
|
||||
|
||||
|
||||
|
||||
var $ = window.jQuery;
|
||||
var console = window.console;
|
||||
|
||||
// -------------------------- helpers -------------------------- //
|
||||
|
||||
// extend objects
|
||||
function extend( a, b ) {
|
||||
for ( var prop in b ) {
|
||||
a[ prop ] = b[ prop ];
|
||||
}
|
||||
return a;
|
||||
}
|
||||
|
||||
// turn element or nodeList into an array
|
||||
function makeArray( obj ) {
|
||||
var ary = [];
|
||||
if ( Array.isArray( obj ) ) {
|
||||
// use object if already an array
|
||||
ary = obj;
|
||||
} else if ( typeof obj.length == 'number' ) {
|
||||
// convert nodeList to array
|
||||
for ( var i=0; i < obj.length; i++ ) {
|
||||
ary.push( obj[i] );
|
||||
}
|
||||
} else {
|
||||
// array of single index
|
||||
ary.push( obj );
|
||||
}
|
||||
return ary;
|
||||
}
|
||||
|
||||
// -------------------------- imagesLoaded -------------------------- //
|
||||
|
||||
/**
|
||||
* @param {Array, Element, NodeList, String} elem
|
||||
* @param {Object or Function} options - if function, use as callback
|
||||
* @param {Function} onAlways - callback function
|
||||
*/
|
||||
function ImagesLoaded( elem, options, onAlways ) {
|
||||
// coerce ImagesLoaded() without new, to be new ImagesLoaded()
|
||||
if ( !( this instanceof ImagesLoaded ) ) {
|
||||
return new ImagesLoaded( elem, options, onAlways );
|
||||
}
|
||||
// use elem as selector string
|
||||
if ( typeof elem == 'string' ) {
|
||||
elem = document.querySelectorAll( elem );
|
||||
}
|
||||
|
||||
this.elements = makeArray( elem );
|
||||
this.options = extend( {}, this.options );
|
||||
|
||||
if ( typeof options == 'function' ) {
|
||||
onAlways = options;
|
||||
} else {
|
||||
extend( this.options, options );
|
||||
}
|
||||
|
||||
if ( onAlways ) {
|
||||
this.on( 'always', onAlways );
|
||||
}
|
||||
|
||||
this.getImages();
|
||||
|
||||
if ( $ ) {
|
||||
// add jQuery Deferred object
|
||||
this.jqDeferred = new $.Deferred();
|
||||
}
|
||||
|
||||
// HACK check async to allow time to bind listeners
|
||||
setTimeout( function() {
|
||||
this.check();
|
||||
}.bind( this ));
|
||||
}
|
||||
|
||||
ImagesLoaded.prototype = Object.create( EvEmitter.prototype );
|
||||
|
||||
ImagesLoaded.prototype.options = {};
|
||||
|
||||
ImagesLoaded.prototype.getImages = function() {
|
||||
this.images = [];
|
||||
|
||||
// filter & find items if we have an item selector
|
||||
this.elements.forEach( this.addElementImages, this );
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Node} element
|
||||
*/
|
||||
ImagesLoaded.prototype.addElementImages = function( elem ) {
|
||||
// filter siblings
|
||||
if ( elem.nodeName == 'IMG' ) {
|
||||
this.addImage( elem );
|
||||
}
|
||||
// get background image on element
|
||||
if ( this.options.background === true ) {
|
||||
this.addElementBackgroundImages( elem );
|
||||
}
|
||||
|
||||
// find children
|
||||
// no non-element nodes, #143
|
||||
var nodeType = elem.nodeType;
|
||||
if ( !nodeType || !elementNodeTypes[ nodeType ] ) {
|
||||
return;
|
||||
}
|
||||
var childImgs = elem.querySelectorAll('img');
|
||||
// concat childElems to filterFound array
|
||||
for ( var i=0; i < childImgs.length; i++ ) {
|
||||
var img = childImgs[i];
|
||||
this.addImage( img );
|
||||
}
|
||||
|
||||
// get child background images
|
||||
if ( typeof this.options.background == 'string' ) {
|
||||
var children = elem.querySelectorAll( this.options.background );
|
||||
for ( i=0; i < children.length; i++ ) {
|
||||
var child = children[i];
|
||||
this.addElementBackgroundImages( child );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var elementNodeTypes = {
|
||||
1: true,
|
||||
9: true,
|
||||
11: true
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) {
|
||||
var style = getComputedStyle( elem );
|
||||
if ( !style ) {
|
||||
// Firefox returns null if in a hidden iframe https://bugzil.la/548397
|
||||
return;
|
||||
}
|
||||
// get url inside url("...")
|
||||
var reURL = /url\((['"])?(.*?)\1\)/gi;
|
||||
var matches = reURL.exec( style.backgroundImage );
|
||||
while ( matches !== null ) {
|
||||
var url = matches && matches[2];
|
||||
if ( url ) {
|
||||
this.addBackground( url, elem );
|
||||
}
|
||||
matches = reURL.exec( style.backgroundImage );
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Image} img
|
||||
*/
|
||||
ImagesLoaded.prototype.addImage = function( img ) {
|
||||
var loadingImage = new LoadingImage( img );
|
||||
this.images.push( loadingImage );
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.addBackground = function( url, elem ) {
|
||||
var background = new Background( url, elem );
|
||||
this.images.push( background );
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.check = function() {
|
||||
var _this = this;
|
||||
this.progressedCount = 0;
|
||||
this.hasAnyBroken = false;
|
||||
// complete if no images
|
||||
if ( !this.images.length ) {
|
||||
this.complete();
|
||||
return;
|
||||
}
|
||||
|
||||
function onProgress( image, elem, message ) {
|
||||
// HACK - Chrome triggers event before object properties have changed. #83
|
||||
setTimeout( function() {
|
||||
_this.progress( image, elem, message );
|
||||
});
|
||||
}
|
||||
|
||||
this.images.forEach( function( loadingImage ) {
|
||||
loadingImage.once( 'progress', onProgress );
|
||||
loadingImage.check();
|
||||
});
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.progress = function( image, elem, message ) {
|
||||
this.progressedCount++;
|
||||
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;
|
||||
// progress event
|
||||
this.emitEvent( 'progress', [ this, image, elem ] );
|
||||
if ( this.jqDeferred && this.jqDeferred.notify ) {
|
||||
this.jqDeferred.notify( this, image );
|
||||
}
|
||||
// check if completed
|
||||
if ( this.progressedCount == this.images.length ) {
|
||||
this.complete();
|
||||
}
|
||||
|
||||
if ( this.options.debug && console ) {
|
||||
console.log( 'progress: ' + message, image, elem );
|
||||
}
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.complete = function() {
|
||||
var eventName = this.hasAnyBroken ? 'fail' : 'done';
|
||||
this.isComplete = true;
|
||||
this.emitEvent( eventName, [ this ] );
|
||||
this.emitEvent( 'always', [ this ] );
|
||||
if ( this.jqDeferred ) {
|
||||
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve';
|
||||
this.jqDeferred[ jqMethod ]( this );
|
||||
}
|
||||
};
|
||||
|
||||
// -------------------------- -------------------------- //
|
||||
|
||||
function LoadingImage( img ) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
LoadingImage.prototype = Object.create( EvEmitter.prototype );
|
||||
|
||||
LoadingImage.prototype.check = function() {
|
||||
// If complete is true and browser supports natural sizes,
|
||||
// try to check for image status manually.
|
||||
var isComplete = this.getIsImageComplete();
|
||||
if ( isComplete ) {
|
||||
// report based on naturalWidth
|
||||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
|
||||
return;
|
||||
}
|
||||
|
||||
// If none of the checks above matched, simulate loading on detached element.
|
||||
this.proxyImage = new Image();
|
||||
this.proxyImage.addEventListener( 'load', this );
|
||||
this.proxyImage.addEventListener( 'error', this );
|
||||
// bind to image as well for Firefox. #191
|
||||
this.img.addEventListener( 'load', this );
|
||||
this.img.addEventListener( 'error', this );
|
||||
this.proxyImage.src = this.img.src;
|
||||
};
|
||||
|
||||
LoadingImage.prototype.getIsImageComplete = function() {
|
||||
return this.img.complete && this.img.naturalWidth !== undefined;
|
||||
};
|
||||
|
||||
LoadingImage.prototype.confirm = function( isLoaded, message ) {
|
||||
this.isLoaded = isLoaded;
|
||||
this.emitEvent( 'progress', [ this, this.img, message ] );
|
||||
};
|
||||
|
||||
// ----- events ----- //
|
||||
|
||||
// trigger specified handler for event type
|
||||
LoadingImage.prototype.handleEvent = function( event ) {
|
||||
var method = 'on' + event.type;
|
||||
if ( this[ method ] ) {
|
||||
this[ method ]( event );
|
||||
}
|
||||
};
|
||||
|
||||
LoadingImage.prototype.onload = function() {
|
||||
this.confirm( true, 'onload' );
|
||||
this.unbindEvents();
|
||||
};
|
||||
|
||||
LoadingImage.prototype.onerror = function() {
|
||||
this.confirm( false, 'onerror' );
|
||||
this.unbindEvents();
|
||||
};
|
||||
|
||||
LoadingImage.prototype.unbindEvents = function() {
|
||||
this.proxyImage.removeEventListener( 'load', this );
|
||||
this.proxyImage.removeEventListener( 'error', this );
|
||||
this.img.removeEventListener( 'load', this );
|
||||
this.img.removeEventListener( 'error', this );
|
||||
};
|
||||
|
||||
// -------------------------- Background -------------------------- //
|
||||
|
||||
function Background( url, element ) {
|
||||
this.url = url;
|
||||
this.element = element;
|
||||
this.img = new Image();
|
||||
}
|
||||
|
||||
// inherit LoadingImage prototype
|
||||
Background.prototype = Object.create( LoadingImage.prototype );
|
||||
|
||||
Background.prototype.check = function() {
|
||||
this.img.addEventListener( 'load', this );
|
||||
this.img.addEventListener( 'error', this );
|
||||
this.img.src = this.url;
|
||||
// check if image is already complete
|
||||
var isComplete = this.getIsImageComplete();
|
||||
if ( isComplete ) {
|
||||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
|
||||
this.unbindEvents();
|
||||
}
|
||||
};
|
||||
|
||||
Background.prototype.unbindEvents = function() {
|
||||
this.img.removeEventListener( 'load', this );
|
||||
this.img.removeEventListener( 'error', this );
|
||||
};
|
||||
|
||||
Background.prototype.confirm = function( isLoaded, message ) {
|
||||
this.isLoaded = isLoaded;
|
||||
this.emitEvent( 'progress', [ this, this.element, message ] );
|
||||
};
|
||||
|
||||
// -------------------------- jQuery -------------------------- //
|
||||
|
||||
ImagesLoaded.makeJQueryPlugin = function( jQuery ) {
|
||||
jQuery = jQuery || window.jQuery;
|
||||
if ( !jQuery ) {
|
||||
return;
|
||||
}
|
||||
// set local variable
|
||||
$ = jQuery;
|
||||
// $().imagesLoaded()
|
||||
$.fn.imagesLoaded = function( options, callback ) {
|
||||
var instance = new ImagesLoaded( this, options, callback );
|
||||
return instance.jqDeferred.promise( $(this) );
|
||||
};
|
||||
};
|
||||
// try making plugin
|
||||
ImagesLoaded.makeJQueryPlugin();
|
||||
|
||||
// -------------------------- -------------------------- //
|
||||
|
||||
return ImagesLoaded;
|
||||
|
||||
});
|
||||
|
||||
1
wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
1
wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
143
wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js
vendored
Normal file
143
wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js
vendored
Normal file
@@ -0,0 +1,143 @@
|
||||
/*
|
||||
* jQuery Easing v1.3.2 - http://gsgd.co.uk/sandbox/jquery/easing/
|
||||
* Open source under the BSD License.
|
||||
* Copyright © 2008 George McGinley Smith
|
||||
* All rights reserved.
|
||||
* https://raw.github.com/gdsmith/jquery-easing/master/LICENSE
|
||||
*/
|
||||
|
||||
// t: current time, b: begInnIng value, c: change In value, d: duration
|
||||
(function($){$.easing['jswing'] = $.easing['swing'];
|
||||
|
||||
$.extend( $.easing,
|
||||
{
|
||||
def: 'easeOutQuad',
|
||||
swing: function (x, t, b, c, d) {
|
||||
//alert($.easing.default);
|
||||
return $.easing[$.easing.def](x, t, b, c, d);
|
||||
},
|
||||
easeInQuad: function (x, t, b, c, d) {
|
||||
return c*(t/=d)*t + b;
|
||||
},
|
||||
easeOutQuad: function (x, t, b, c, d) {
|
||||
return -c *(t/=d)*(t-2) + b;
|
||||
},
|
||||
easeInOutQuad: function (x, t, b, c, d) {
|
||||
if ((t/=d/2) < 1) return c/2*t*t + b;
|
||||
return -c/2 * ((--t)*(t-2) - 1) + b;
|
||||
},
|
||||
easeInCubic: function (x, t, b, c, d) {
|
||||
return c*(t/=d)*t*t + b;
|
||||
},
|
||||
easeOutCubic: function (x, t, b, c, d) {
|
||||
return c*((t=t/d-1)*t*t + 1) + b;
|
||||
},
|
||||
easeInOutCubic: function (x, t, b, c, d) {
|
||||
if ((t/=d/2) < 1) return c/2*t*t*t + b;
|
||||
return c/2*((t-=2)*t*t + 2) + b;
|
||||
},
|
||||
easeInQuart: function (x, t, b, c, d) {
|
||||
return c*(t/=d)*t*t*t + b;
|
||||
},
|
||||
easeOutQuart: function (x, t, b, c, d) {
|
||||
return -c * ((t=t/d-1)*t*t*t - 1) + b;
|
||||
},
|
||||
easeInOutQuart: function (x, t, b, c, d) {
|
||||
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
|
||||
return -c/2 * ((t-=2)*t*t*t - 2) + b;
|
||||
},
|
||||
easeInQuint: function (x, t, b, c, d) {
|
||||
return c*(t/=d)*t*t*t*t + b;
|
||||
},
|
||||
easeOutQuint: function (x, t, b, c, d) {
|
||||
return c*((t=t/d-1)*t*t*t*t + 1) + b;
|
||||
},
|
||||
easeInOutQuint: function (x, t, b, c, d) {
|
||||
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
|
||||
return c/2*((t-=2)*t*t*t*t + 2) + b;
|
||||
},
|
||||
easeInSine: function (x, t, b, c, d) {
|
||||
return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
|
||||
},
|
||||
easeOutSine: function (x, t, b, c, d) {
|
||||
return c * Math.sin(t/d * (Math.PI/2)) + b;
|
||||
},
|
||||
easeInOutSine: function (x, t, b, c, d) {
|
||||
return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
|
||||
},
|
||||
easeInExpo: function (x, t, b, c, d) {
|
||||
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
|
||||
},
|
||||
easeOutExpo: function (x, t, b, c, d) {
|
||||
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
|
||||
},
|
||||
easeInOutExpo: function (x, t, b, c, d) {
|
||||
if (t==0) return b;
|
||||
if (t==d) return b+c;
|
||||
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
|
||||
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
|
||||
},
|
||||
easeInCirc: function (x, t, b, c, d) {
|
||||
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
|
||||
},
|
||||
easeOutCirc: function (x, t, b, c, d) {
|
||||
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
|
||||
},
|
||||
easeInOutCirc: function (x, t, b, c, d) {
|
||||
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
|
||||
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
|
||||
},
|
||||
easeInElastic: function (x, t, b, c, d) {
|
||||
var s=1.70158;var p=0;var a=c;
|
||||
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
|
||||
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
||||
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
||||
return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
|
||||
},
|
||||
easeOutElastic: function (x, t, b, c, d) {
|
||||
var s=1.70158;var p=0;var a=c;
|
||||
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
|
||||
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
||||
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
||||
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
|
||||
},
|
||||
easeInOutElastic: function (x, t, b, c, d) {
|
||||
var s=1.70158;var p=0;var a=c;
|
||||
if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
|
||||
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
||||
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
||||
if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
|
||||
return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
|
||||
},
|
||||
easeInBack: function (x, t, b, c, d, s) {
|
||||
if (s == undefined) s = 1.70158;
|
||||
return c*(t/=d)*t*((s+1)*t - s) + b;
|
||||
},
|
||||
easeOutBack: function (x, t, b, c, d, s) {
|
||||
if (s == undefined) s = 1.70158;
|
||||
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
|
||||
},
|
||||
easeInOutBack: function (x, t, b, c, d, s) {
|
||||
if (s == undefined) s = 1.70158;
|
||||
if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
|
||||
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
|
||||
},
|
||||
easeInBounce: function (x, t, b, c, d) {
|
||||
return c - $.easing.easeOutBounce (x, d-t, 0, c, d) + b;
|
||||
},
|
||||
easeOutBounce: function (x, t, b, c, d) {
|
||||
if ((t/=d) < (1/2.75)) {
|
||||
return c*(7.5625*t*t) + b;
|
||||
} else if (t < (2/2.75)) {
|
||||
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
|
||||
} else if (t < (2.5/2.75)) {
|
||||
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
|
||||
} else {
|
||||
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
|
||||
}
|
||||
},
|
||||
easeInOutBounce: function (x, t, b, c, d) {
|
||||
if (t < d/2) return $.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
|
||||
return $.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
|
||||
}
|
||||
});})(jQuery);
|
||||
1
wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
!function($){$.easing.jswing=$.easing.swing,$.extend($.easing,{def:"easeOutQuad",swing:function(x,t,b,c,d){return $.easing[$.easing.def](x,t,b,c,d)},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b},easeInOutQuad:function(x,t,b,c,d){return(t/=d/2)<1?c/2*t*t+b:-c/2*(--t*(t-2)-1)+b},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b},easeInOutCubic:function(x,t,b,c,d){return(t/=d/2)<1?c/2*t*t*t+b:c/2*((t-=2)*t*t+2)+b},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b},easeInOutQuart:function(x,t,b,c,d){return(t/=d/2)<1?c/2*t*t*t*t+b:-c/2*((t-=2)*t*t*t-2)+b},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b},easeInOutQuint:function(x,t,b,c,d){return(t/=d/2)<1?c/2*t*t*t*t*t+b:c/2*((t-=2)*t*t*t*t+2)+b},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b},easeInExpo:function(x,t,b,c,d){return 0==t?b:c*Math.pow(2,10*(t/d-1))+b},easeOutExpo:function(x,t,b,c,d){return t==d?b+c:c*(-Math.pow(2,-10*t/d)+1)+b},easeInOutExpo:function(x,t,b,c,d){return 0==t?b:t==d?b+c:(t/=d/2)<1?c/2*Math.pow(2,10*(t-1))+b:c/2*(-Math.pow(2,-10*--t)+2)+b},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b},easeInOutCirc:function(x,t,b,c,d){return(t/=d/2)<1?-c/2*(Math.sqrt(1-t*t)-1)+b:c/2*(Math.sqrt(1-(t-=2)*t)+1)+b},easeInElastic:function(x,t,b,c,d){var s=1.70158,p=0,a=c;if(0==t)return b;if(1==(t/=d))return b+c;if(p||(p=.3*d),a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b},easeOutElastic:function(x,t,b,c,d){var s=1.70158,p=0,a=c;if(0==t)return b;if(1==(t/=d))return b+c;if(p||(p=.3*d),a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b},easeInOutElastic:function(x,t,b,c,d){var s=1.70158,p=0,a=c;if(0==t)return b;if(2==(t/=d/2))return b+c;if(p||(p=d*(.3*1.5)),a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return t<1?-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b:a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b},easeInBack:function(x,t,b,c,d,s){return void 0==s&&(s=1.70158),c*(t/=d)*t*((s+1)*t-s)+b},easeOutBack:function(x,t,b,c,d,s){return void 0==s&&(s=1.70158),c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},easeInOutBack:function(x,t,b,c,d,s){return void 0==s&&(s=1.70158),(t/=d/2)<1?c/2*(t*t*(((s*=1.525)+1)*t-s))+b:c/2*((t-=2)*t*(((s*=1.525)+1)*t+s)+2)+b},easeInBounce:function(x,t,b,c,d){return c-$.easing.easeOutBounce(x,d-t,0,c,d)+b},easeOutBounce:function(x,t,b,c,d){return(t/=d)<1/2.75?c*(7.5625*t*t)+b:t<2/2.75?c*(7.5625*(t-=1.5/2.75)*t+.75)+b:t<2.5/2.75?c*(7.5625*(t-=2.25/2.75)*t+.9375)+b:c*(7.5625*(t-=2.625/2.75)*t+.984375)+b},easeInOutBounce:function(x,t,b,c,d){return t<d/2?.5*$.easing.easeInBounce(x,2*t,0,c,d)+b:.5*$.easing.easeOutBounce(x,2*t-d,0,c,d)+.5*c+b}})}(jQuery);
|
||||
112
wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js
vendored
Normal file
112
wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Based on tristen hoverintent plugin - https://github.com/tristen/hoverintent
|
||||
*/
|
||||
|
||||
(function( $ ) {
|
||||
'use strict';
|
||||
|
||||
var hoverIntent = function( el, onOver, onOut ) {
|
||||
var x, y, pX, pY,
|
||||
h = {},
|
||||
state = 0,
|
||||
timer = 0;
|
||||
|
||||
var options = {
|
||||
sensitivity: 7,
|
||||
interval: 100,
|
||||
timeout: 0
|
||||
};
|
||||
|
||||
function delay( el, e ) {
|
||||
if ( timer )
|
||||
timer = clearTimeout( timer );
|
||||
|
||||
state = 0;
|
||||
|
||||
return onOut ? onOut.call( el, e ) : null;
|
||||
}
|
||||
|
||||
function tracker( e ) {
|
||||
x = e.clientX;
|
||||
y = e.clientY;
|
||||
}
|
||||
|
||||
function compare( el, e ) {
|
||||
if ( timer )
|
||||
timer = clearTimeout( timer );
|
||||
|
||||
if ( (Math.abs( pX - x ) + Math.abs( pY - y )) < options.sensitivity ) {
|
||||
state = 1;
|
||||
|
||||
return onOver ? onOver.call( el, e ) : null;
|
||||
} else {
|
||||
pX = x;
|
||||
pY = y;
|
||||
|
||||
timer = setTimeout( function() {
|
||||
compare( el, e );
|
||||
}, options.interval );
|
||||
}
|
||||
}
|
||||
|
||||
// Public methods
|
||||
h.options = function( opt ) {
|
||||
options = $.extend( {}, options, opt );
|
||||
|
||||
return h;
|
||||
};
|
||||
|
||||
function dispatchOver( e ) {
|
||||
if ( timer )
|
||||
timer = clearTimeout( timer );
|
||||
|
||||
el.removeEventListener( 'mousemove', tracker );
|
||||
|
||||
if ( state !== 1 ) {
|
||||
pX = e.clientX;
|
||||
pY = e.clientY;
|
||||
|
||||
el.addEventListener( 'mousemove', tracker );
|
||||
|
||||
timer = setTimeout( function() {
|
||||
compare( el, e );
|
||||
}, options.interval );
|
||||
}
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
function dispatchOut( e ) {
|
||||
if ( timer )
|
||||
timer = clearTimeout( timer );
|
||||
|
||||
el.removeEventListener( 'mousemove', tracker );
|
||||
|
||||
if ( state === 1 ) {
|
||||
timer = setTimeout( function() {
|
||||
delay( el, e );
|
||||
}, options.timeout );
|
||||
}
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
h.remove = function() {
|
||||
el.removeEventListener( 'mouseover', dispatchOver );
|
||||
el.removeEventListener( 'mouseleave', dispatchOut );
|
||||
};
|
||||
|
||||
el.addEventListener( 'mouseover', dispatchOver );
|
||||
|
||||
el.addEventListener( 'mouseleave', dispatchOut );
|
||||
|
||||
return h;
|
||||
};
|
||||
|
||||
$.fn.hoverIntent = function( over, out, options ) {
|
||||
return this.each( function() {
|
||||
hoverIntent( this, over, out ).options( options || {} );
|
||||
} );
|
||||
};
|
||||
|
||||
})( jQuery );
|
||||
1
wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
!function(h){"use strict";var i=function(i,o,r){var u,s,v,c,t={},m=0,a=0,l={sensitivity:7,interval:100,timeout:0};function f(e){u=e.clientX,s=e.clientY}function e(e){return a&&(a=clearTimeout(a)),i.removeEventListener("mousemove",f),1!==m&&(v=e.clientX,c=e.clientY,i.addEventListener("mousemove",f),a=setTimeout(function(){!function e(t,n){if(a&&(a=clearTimeout(a)),Math.abs(v-u)+Math.abs(c-s)<l.sensitivity)return m=1,o?o.call(t,n):null;v=u,c=s,a=setTimeout(function(){e(t,n)},l.interval)}(i,e)},l.interval)),this}function n(n){return a&&(a=clearTimeout(a)),i.removeEventListener("mousemove",f),1===m&&(a=setTimeout(function(){var e,t;e=i,t=n,a&&(a=clearTimeout(a)),m=0,r&&r.call(e,t)},l.timeout)),this}return t.options=function(e){return l=h.extend({},l,e),t},t.remove=function(){i.removeEventListener("mouseover",e),i.removeEventListener("mouseleave",n)},i.addEventListener("mouseover",e),i.addEventListener("mouseleave",n),t};h.fn.hoverIntent=function(e,t,n){return this.each(function(){i(this,e,t).options(n||{})})}}(jQuery);
|
||||
137
wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js
vendored
Normal file
137
wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js
vendored
Normal file
@@ -0,0 +1,137 @@
|
||||
/*
|
||||
* jQuery Numerator Plugin 0.2.1
|
||||
* https://github.com/garethdn/jquery-numerator
|
||||
*
|
||||
* Copyright 2015, Gareth Nolan
|
||||
* http://ie.linkedin.com/in/garethnolan/
|
||||
|
||||
* Based on jQuery Boilerplate by Zeno Rocha with the help of Addy Osmani
|
||||
* http://jqueryboilerplate.com
|
||||
*
|
||||
* Licensed under the MIT license:
|
||||
* http://www.opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
;(function (factory) {
|
||||
'use strict';
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD is used - Register as an anonymous module.
|
||||
define(['jquery'], factory);
|
||||
} else if (typeof exports === 'object') {
|
||||
factory(require('jquery'));
|
||||
} else {
|
||||
// Neither AMD nor CommonJS used. Use global variables.
|
||||
if (typeof jQuery === 'undefined') {
|
||||
throw 'jquery-numerator requires jQuery to be loaded first';
|
||||
}
|
||||
factory(jQuery);
|
||||
}
|
||||
}(function ($) {
|
||||
|
||||
var pluginName = "numerator",
|
||||
defaults = {
|
||||
easing: 'swing',
|
||||
duration: 500,
|
||||
delimiter: undefined,
|
||||
rounding: 0,
|
||||
toValue: undefined,
|
||||
fromValue: undefined,
|
||||
queue: false,
|
||||
onStart: function(){},
|
||||
onStep: function(){},
|
||||
onProgress: function(){},
|
||||
onComplete: function(){}
|
||||
};
|
||||
|
||||
function Plugin ( element, options ) {
|
||||
this.element = element;
|
||||
this.settings = $.extend( {}, defaults, options );
|
||||
this._defaults = defaults;
|
||||
this._name = pluginName;
|
||||
this.init();
|
||||
}
|
||||
|
||||
Plugin.prototype = {
|
||||
|
||||
init: function () {
|
||||
this.parseElement();
|
||||
this.setValue();
|
||||
},
|
||||
|
||||
parseElement: function () {
|
||||
var elText = $.trim($(this.element).text());
|
||||
|
||||
this.settings.fromValue = this.settings.fromValue || this.format(elText);
|
||||
},
|
||||
|
||||
setValue: function() {
|
||||
var self = this;
|
||||
|
||||
$({value: self.settings.fromValue}).animate({value: self.settings.toValue}, {
|
||||
|
||||
duration: parseInt(self.settings.duration, 10),
|
||||
|
||||
easing: self.settings.easing,
|
||||
|
||||
start: self.settings.onStart,
|
||||
|
||||
step: function(now, fx) {
|
||||
$(self.element).text(self.format(now));
|
||||
// accepts two params - (now, fx)
|
||||
self.settings.onStep(now, fx);
|
||||
},
|
||||
|
||||
// accepts three params - (animation object, progress ratio, time remaining(ms))
|
||||
progress: self.settings.onProgress,
|
||||
|
||||
complete: self.settings.onComplete
|
||||
});
|
||||
},
|
||||
|
||||
format: function(value){
|
||||
var self = this;
|
||||
|
||||
if ( parseInt(this.settings.rounding ) < 1) {
|
||||
value = parseInt(value, 10);
|
||||
} else {
|
||||
value = parseFloat(value).toFixed( parseInt(this.settings.rounding) );
|
||||
}
|
||||
|
||||
if (self.settings.delimiter) {
|
||||
return this.delimit(value)
|
||||
} else {
|
||||
return value;
|
||||
}
|
||||
},
|
||||
|
||||
// TODO: Add comments to this function
|
||||
delimit: function(value){
|
||||
var self = this;
|
||||
|
||||
value = value.toString();
|
||||
|
||||
if (self.settings.rounding && parseInt(self.settings.rounding, 10) > 0) {
|
||||
var decimals = value.substring( (value.length - (self.settings.rounding + 1)), value.length ),
|
||||
wholeValue = value.substring( 0, (value.length - (self.settings.rounding + 1)));
|
||||
|
||||
return self.addDelimiter(wholeValue) + decimals;
|
||||
} else {
|
||||
return self.addDelimiter(value);
|
||||
}
|
||||
},
|
||||
|
||||
addDelimiter: function(value){
|
||||
return value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, this.settings.delimiter);
|
||||
}
|
||||
};
|
||||
|
||||
$.fn[ pluginName ] = function ( options ) {
|
||||
return this.each(function() {
|
||||
if ( $.data( this, "plugin_" + pluginName ) ) {
|
||||
$.data(this, 'plugin_' + pluginName, null);
|
||||
}
|
||||
$.data( this, "plugin_" + pluginName, new Plugin( this, options ) );
|
||||
});
|
||||
};
|
||||
|
||||
}));
|
||||
1
wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
!function(t){"use strict";if("function"==typeof define&&define.amd)define(["jquery"],t);else if("object"==typeof exports)t(require("jquery"));else{if("undefined"==typeof jQuery)throw"jquery-numerator requires jQuery to be loaded first";t(jQuery)}}(function(t){function e(e,s){this.element=e,this.settings=t.extend({},i,s),this._defaults=i,this._name=n,this.init()}var n="numerator",i={easing:"swing",duration:500,delimiter:void 0,rounding:0,toValue:void 0,fromValue:void 0,queue:!1,onStart:function(){},onStep:function(){},onProgress:function(){},onComplete:function(){}};e.prototype={init:function(){this.parseElement(),this.setValue()},parseElement:function(){var e=t.trim(t(this.element).text());this.settings.fromValue=this.settings.fromValue||this.format(e)},setValue:function(){var e=this;t({value:e.settings.fromValue}).animate({value:e.settings.toValue},{duration:parseInt(e.settings.duration,10),easing:e.settings.easing,start:e.settings.onStart,step:function(n,i){t(e.element).text(e.format(n)),e.settings.onStep(n,i)},progress:e.settings.onProgress,complete:e.settings.onComplete})},format:function(t){var e=this;return t=parseInt(this.settings.rounding)<1?parseInt(t,10):parseFloat(t).toFixed(parseInt(this.settings.rounding)),e.settings.delimiter?this.delimit(t):t},delimit:function(t){var e=this;if(t=t.toString(),e.settings.rounding&&parseInt(e.settings.rounding,10)>0){var n=t.substring(t.length-(e.settings.rounding+1),t.length),i=t.substring(0,t.length-(e.settings.rounding+1));return e.addDelimiter(i)+n}return e.addDelimiter(t)},addDelimiter:function(t){return t.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.settings.delimiter)}},t.fn[n]=function(i){return this.each(function(){t.data(this,"plugin_"+n)&&t.data(this,"plugin_"+n,null),t.data(this,"plugin_"+n,new e(this,i))})}});
|
||||
2400
wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js
Normal file
2400
wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js
Normal file
File diff suppressed because it is too large
Load Diff
2
wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
476
wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js
Normal file
476
wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js
Normal file
@@ -0,0 +1,476 @@
|
||||
/* NProgress, (c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress
|
||||
* @license MIT */
|
||||
|
||||
;(function(root, factory) {
|
||||
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define(factory);
|
||||
} else if (typeof exports === 'object') {
|
||||
module.exports = factory();
|
||||
} else {
|
||||
root.NProgress = factory();
|
||||
}
|
||||
|
||||
})(this, function() {
|
||||
var NProgress = {};
|
||||
|
||||
NProgress.version = '0.2.0';
|
||||
|
||||
var Settings = NProgress.settings = {
|
||||
minimum: 0.08,
|
||||
easing: 'ease',
|
||||
positionUsing: '',
|
||||
speed: 200,
|
||||
trickle: true,
|
||||
trickleRate: 0.02,
|
||||
trickleSpeed: 800,
|
||||
showSpinner: true,
|
||||
barSelector: '[role="bar"]',
|
||||
spinnerSelector: '[role="spinner"]',
|
||||
parent: 'body',
|
||||
template: '<div class="bar" role="bar"><div class="peg"></div></div><div class="spinner" role="spinner"><div class="spinner-icon"></div></div>'
|
||||
};
|
||||
|
||||
/**
|
||||
* Updates configuration.
|
||||
*
|
||||
* NProgress.configure({
|
||||
* minimum: 0.1
|
||||
* });
|
||||
*/
|
||||
NProgress.configure = function(options) {
|
||||
var key, value;
|
||||
for (key in options) {
|
||||
value = options[key];
|
||||
if (value !== undefined && options.hasOwnProperty(key)) Settings[key] = value;
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
/**
|
||||
* Last number.
|
||||
*/
|
||||
|
||||
NProgress.status = null;
|
||||
|
||||
/**
|
||||
* Sets the progress bar status, where `n` is a number from `0.0` to `1.0`.
|
||||
*
|
||||
* NProgress.set(0.4);
|
||||
* NProgress.set(1.0);
|
||||
*/
|
||||
|
||||
NProgress.set = function(n) {
|
||||
var started = NProgress.isStarted();
|
||||
|
||||
n = clamp(n, Settings.minimum, 1);
|
||||
NProgress.status = (n === 1 ? null : n);
|
||||
|
||||
var progress = NProgress.render(!started),
|
||||
bar = progress.querySelector(Settings.barSelector),
|
||||
speed = Settings.speed,
|
||||
ease = Settings.easing;
|
||||
|
||||
progress.offsetWidth; /* Repaint */
|
||||
|
||||
queue(function(next) {
|
||||
// Set positionUsing if it hasn't already been set
|
||||
if (Settings.positionUsing === '') Settings.positionUsing = NProgress.getPositioningCSS();
|
||||
|
||||
// Add transition
|
||||
css(bar, barPositionCSS(n, speed, ease));
|
||||
|
||||
if (n === 1) {
|
||||
// Fade out
|
||||
css(progress, {
|
||||
transition: 'none',
|
||||
opacity: 1
|
||||
});
|
||||
progress.offsetWidth; /* Repaint */
|
||||
|
||||
setTimeout(function() {
|
||||
css(progress, {
|
||||
transition: 'all ' + speed + 'ms linear',
|
||||
opacity: 0
|
||||
});
|
||||
setTimeout(function() {
|
||||
NProgress.remove();
|
||||
next();
|
||||
}, speed);
|
||||
}, speed);
|
||||
} else {
|
||||
setTimeout(next, speed);
|
||||
}
|
||||
});
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
NProgress.isStarted = function() {
|
||||
return typeof NProgress.status === 'number';
|
||||
};
|
||||
|
||||
/**
|
||||
* Shows the progress bar.
|
||||
* This is the same as setting the status to 0%, except that it doesn't go backwards.
|
||||
*
|
||||
* NProgress.start();
|
||||
*
|
||||
*/
|
||||
NProgress.start = function() {
|
||||
if (!NProgress.status) NProgress.set(0);
|
||||
|
||||
var work = function() {
|
||||
setTimeout(function() {
|
||||
if (!NProgress.status) return;
|
||||
NProgress.trickle();
|
||||
work();
|
||||
}, Settings.trickleSpeed);
|
||||
};
|
||||
|
||||
if (Settings.trickle) work();
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
/**
|
||||
* Hides the progress bar.
|
||||
* This is the *sort of* the same as setting the status to 100%, with the
|
||||
* difference being `done()` makes some placebo effect of some realistic motion.
|
||||
*
|
||||
* NProgress.done();
|
||||
*
|
||||
* If `true` is passed, it will show the progress bar even if its hidden.
|
||||
*
|
||||
* NProgress.done(true);
|
||||
*/
|
||||
|
||||
NProgress.done = function(force) {
|
||||
if (!force && !NProgress.status) return this;
|
||||
|
||||
return NProgress.inc(0.3 + 0.5 * Math.random()).set(1);
|
||||
};
|
||||
|
||||
/**
|
||||
* Increments by a random amount.
|
||||
*/
|
||||
|
||||
NProgress.inc = function(amount) {
|
||||
var n = NProgress.status;
|
||||
|
||||
if (!n) {
|
||||
return NProgress.start();
|
||||
} else {
|
||||
if (typeof amount !== 'number') {
|
||||
amount = (1 - n) * clamp(Math.random() * n, 0.1, 0.95);
|
||||
}
|
||||
|
||||
n = clamp(n + amount, 0, 0.994);
|
||||
return NProgress.set(n);
|
||||
}
|
||||
};
|
||||
|
||||
NProgress.trickle = function() {
|
||||
return NProgress.inc(Math.random() * Settings.trickleRate);
|
||||
};
|
||||
|
||||
/**
|
||||
* Waits for all supplied jQuery promises and
|
||||
* increases the progress as the promises resolve.
|
||||
*
|
||||
* @param $promise jQUery Promise
|
||||
*/
|
||||
(function() {
|
||||
var initial = 0, current = 0;
|
||||
|
||||
NProgress.promise = function($promise) {
|
||||
if (!$promise || $promise.state() === "resolved") {
|
||||
return this;
|
||||
}
|
||||
|
||||
if (current === 0) {
|
||||
NProgress.start();
|
||||
}
|
||||
|
||||
initial++;
|
||||
current++;
|
||||
|
||||
$promise.always(function() {
|
||||
current--;
|
||||
if (current === 0) {
|
||||
initial = 0;
|
||||
NProgress.done();
|
||||
} else {
|
||||
NProgress.set((initial - current) / initial);
|
||||
}
|
||||
});
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
})();
|
||||
|
||||
/**
|
||||
* (Internal) renders the progress bar markup based on the `template`
|
||||
* setting.
|
||||
*/
|
||||
|
||||
NProgress.render = function(fromStart) {
|
||||
if (NProgress.isRendered()) return document.getElementById('nprogress');
|
||||
|
||||
addClass(document.documentElement, 'nprogress-busy');
|
||||
|
||||
var progress = document.createElement('div');
|
||||
progress.id = 'nprogress';
|
||||
progress.innerHTML = Settings.template;
|
||||
|
||||
var bar = progress.querySelector(Settings.barSelector),
|
||||
perc = fromStart ? '-100' : toBarPerc(NProgress.status || 0),
|
||||
parent = document.querySelector(Settings.parent),
|
||||
spinner;
|
||||
|
||||
css(bar, {
|
||||
transition: 'all 0 linear',
|
||||
transform: 'translate3d(' + perc + '%,0,0)'
|
||||
});
|
||||
|
||||
if (!Settings.showSpinner) {
|
||||
spinner = progress.querySelector(Settings.spinnerSelector);
|
||||
spinner && removeElement(spinner);
|
||||
}
|
||||
|
||||
if (parent != document.body) {
|
||||
addClass(parent, 'nprogress-custom-parent');
|
||||
}
|
||||
|
||||
parent.appendChild(progress);
|
||||
return progress;
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes the element. Opposite of render().
|
||||
*/
|
||||
|
||||
NProgress.remove = function() {
|
||||
removeClass(document.documentElement, 'nprogress-busy');
|
||||
removeClass(document.querySelector(Settings.parent), 'nprogress-custom-parent');
|
||||
var progress = document.getElementById('nprogress');
|
||||
progress && removeElement(progress);
|
||||
};
|
||||
|
||||
/**
|
||||
* Checks if the progress bar is rendered.
|
||||
*/
|
||||
|
||||
NProgress.isRendered = function() {
|
||||
return !!document.getElementById('nprogress');
|
||||
};
|
||||
|
||||
/**
|
||||
* Determine which positioning CSS rule to use.
|
||||
*/
|
||||
|
||||
NProgress.getPositioningCSS = function() {
|
||||
// Sniff on document.body.style
|
||||
var bodyStyle = document.body.style;
|
||||
|
||||
// Sniff prefixes
|
||||
var vendorPrefix = ('WebkitTransform' in bodyStyle) ? 'Webkit' :
|
||||
('MozTransform' in bodyStyle) ? 'Moz' :
|
||||
('msTransform' in bodyStyle) ? 'ms' :
|
||||
('OTransform' in bodyStyle) ? 'O' : '';
|
||||
|
||||
if (vendorPrefix + 'Perspective' in bodyStyle) {
|
||||
// Modern browsers with 3D support, e.g. Webkit, IE10
|
||||
return 'translate3d';
|
||||
} else if (vendorPrefix + 'Transform' in bodyStyle) {
|
||||
// Browsers without 3D support, e.g. IE9
|
||||
return 'translate';
|
||||
} else {
|
||||
// Browsers without translate() support, e.g. IE7-8
|
||||
return 'margin';
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Helpers
|
||||
*/
|
||||
|
||||
function clamp(n, min, max) {
|
||||
if (n < min) return min;
|
||||
if (n > max) return max;
|
||||
return n;
|
||||
}
|
||||
|
||||
/**
|
||||
* (Internal) converts a percentage (`0..1`) to a bar translateX
|
||||
* percentage (`-100%..0%`).
|
||||
*/
|
||||
|
||||
function toBarPerc(n) {
|
||||
return (-1 + n) * 100;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* (Internal) returns the correct CSS for changing the bar's
|
||||
* position given an n percentage, and speed and ease from Settings
|
||||
*/
|
||||
|
||||
function barPositionCSS(n, speed, ease) {
|
||||
var barCSS;
|
||||
|
||||
if (Settings.positionUsing === 'translate3d') {
|
||||
barCSS = { transform: 'translate3d('+toBarPerc(n)+'%,0,0)' };
|
||||
} else if (Settings.positionUsing === 'translate') {
|
||||
barCSS = { transform: 'translate('+toBarPerc(n)+'%,0)' };
|
||||
} else {
|
||||
barCSS = { 'margin-left': toBarPerc(n)+'%' };
|
||||
}
|
||||
|
||||
barCSS.transition = 'all '+speed+'ms '+ease;
|
||||
|
||||
return barCSS;
|
||||
}
|
||||
|
||||
/**
|
||||
* (Internal) Queues a function to be executed.
|
||||
*/
|
||||
|
||||
var queue = (function() {
|
||||
var pending = [];
|
||||
|
||||
function next() {
|
||||
var fn = pending.shift();
|
||||
if (fn) {
|
||||
fn(next);
|
||||
}
|
||||
}
|
||||
|
||||
return function(fn) {
|
||||
pending.push(fn);
|
||||
if (pending.length == 1) next();
|
||||
};
|
||||
})();
|
||||
|
||||
/**
|
||||
* (Internal) Applies css properties to an element, similar to the jQuery
|
||||
* css method.
|
||||
*
|
||||
* While this helper does assist with vendor prefixed property names, it
|
||||
* does not perform any manipulation of values prior to setting styles.
|
||||
*/
|
||||
|
||||
var css = (function() {
|
||||
var cssPrefixes = [ 'Webkit', 'O', 'Moz', 'ms' ],
|
||||
cssProps = {};
|
||||
|
||||
function camelCase(string) {
|
||||
return string.replace(/^-ms-/, 'ms-').replace(/-([\da-z])/gi, function(match, letter) {
|
||||
return letter.toUpperCase();
|
||||
});
|
||||
}
|
||||
|
||||
function getVendorProp(name) {
|
||||
var style = document.body.style;
|
||||
if (name in style) return name;
|
||||
|
||||
var i = cssPrefixes.length,
|
||||
capName = name.charAt(0).toUpperCase() + name.slice(1),
|
||||
vendorName;
|
||||
while (i--) {
|
||||
vendorName = cssPrefixes[i] + capName;
|
||||
if (vendorName in style) return vendorName;
|
||||
}
|
||||
|
||||
return name;
|
||||
}
|
||||
|
||||
function getStyleProp(name) {
|
||||
name = camelCase(name);
|
||||
return cssProps[name] || (cssProps[name] = getVendorProp(name));
|
||||
}
|
||||
|
||||
function applyCss(element, prop, value) {
|
||||
prop = getStyleProp(prop);
|
||||
element.style[prop] = value;
|
||||
}
|
||||
|
||||
return function(element, properties) {
|
||||
var args = arguments,
|
||||
prop,
|
||||
value;
|
||||
|
||||
if (args.length == 2) {
|
||||
for (prop in properties) {
|
||||
value = properties[prop];
|
||||
if (value !== undefined && properties.hasOwnProperty(prop)) applyCss(element, prop, value);
|
||||
}
|
||||
} else {
|
||||
applyCss(element, args[1], args[2]);
|
||||
}
|
||||
}
|
||||
})();
|
||||
|
||||
/**
|
||||
* (Internal) Determines if an element or space separated list of class names contains a class name.
|
||||
*/
|
||||
|
||||
function hasClass(element, name) {
|
||||
var list = typeof element == 'string' ? element : classList(element);
|
||||
return list.indexOf(' ' + name + ' ') >= 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* (Internal) Adds a class to an element.
|
||||
*/
|
||||
|
||||
function addClass(element, name) {
|
||||
var oldList = classList(element),
|
||||
newList = oldList + name;
|
||||
|
||||
if (hasClass(oldList, name)) return;
|
||||
|
||||
// Trim the opening space.
|
||||
element.className = newList.substring(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* (Internal) Removes a class from an element.
|
||||
*/
|
||||
|
||||
function removeClass(element, name) {
|
||||
var oldList = classList(element),
|
||||
newList;
|
||||
|
||||
if (!hasClass(element, name)) return;
|
||||
|
||||
// Replace the class name.
|
||||
newList = oldList.replace(' ' + name + ' ', ' ');
|
||||
|
||||
// Trim the opening and closing spaces.
|
||||
element.className = newList.substring(1, newList.length - 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* (Internal) Gets a space separated list of the class names on the element.
|
||||
* The list is wrapped with a single space on each end to facilitate finding
|
||||
* matches within the list.
|
||||
*/
|
||||
|
||||
function classList(element) {
|
||||
return (' ' + (element.className || '') + ' ').replace(/\s+/gi, ' ');
|
||||
}
|
||||
|
||||
/**
|
||||
* (Internal) Removes an element from the DOM.
|
||||
*/
|
||||
|
||||
function removeElement(element) {
|
||||
element && element.parentNode && element.parentNode.removeChild(element);
|
||||
}
|
||||
|
||||
return NProgress;
|
||||
});
|
||||
|
||||
1
wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
6
wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js
vendored
Normal file
6
wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css
vendored
Normal file
2
wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
152
wp-content/plugins/elementor/assets/lib/share-link/share-link.js
Normal file
152
wp-content/plugins/elementor/assets/lib/share-link/share-link.js
Normal file
@@ -0,0 +1,152 @@
|
||||
/**
|
||||
* By Elementor Team
|
||||
*/
|
||||
( function( $ ) {
|
||||
window.ShareLink = function( element, userSettings ) {
|
||||
var $element,
|
||||
settings = {};
|
||||
|
||||
var getNetworkNameFromClass = function( className ) {
|
||||
var classNamePrefix = className.substr( 0, settings.classPrefixLength );
|
||||
|
||||
return classNamePrefix === settings.classPrefix ? className.substr( settings.classPrefixLength ) : null;
|
||||
};
|
||||
|
||||
var bindShareClick = function( networkName ) {
|
||||
$element.on( 'click', function() {
|
||||
openShareLink( networkName );
|
||||
} );
|
||||
|
||||
// Add "Enter" and "Space" event only if the element has role=button attribute.
|
||||
if ( 'button' === $element.attr( 'role' ) ) {
|
||||
$element.on( 'keyup', ( event ) => {
|
||||
if ( 13 === event.keyCode || 32 === event.keyCode ) {
|
||||
event.preventDefault();
|
||||
|
||||
openShareLink( networkName );
|
||||
}
|
||||
} );
|
||||
}
|
||||
};
|
||||
|
||||
var openShareLink = function( networkName ) {
|
||||
var shareWindowParams = '';
|
||||
|
||||
if ( settings.width && settings.height ) {
|
||||
var shareWindowLeft = ( screen.width / 2 ) - ( settings.width / 2 ),
|
||||
shareWindowTop = ( screen.height / 2 ) - ( settings.height / 2 );
|
||||
|
||||
shareWindowParams = 'toolbar=0,status=0,width=' + settings.width + ',height=' + settings.height + ',top=' + shareWindowTop + ',left=' + shareWindowLeft;
|
||||
}
|
||||
|
||||
var link = ShareLink.getNetworkLink( networkName, settings ),
|
||||
isPlainLink = /^https?:\/\//.test( link ),
|
||||
windowName = isPlainLink ? '' : '_self';
|
||||
|
||||
open( link, windowName, shareWindowParams );
|
||||
};
|
||||
|
||||
var run = function() {
|
||||
$.each( element.classList, function() {
|
||||
var networkName = getNetworkNameFromClass( this );
|
||||
|
||||
if ( networkName ) {
|
||||
bindShareClick( networkName );
|
||||
|
||||
return false;
|
||||
}
|
||||
} );
|
||||
};
|
||||
|
||||
var initSettings = function() {
|
||||
$.extend( settings, ShareLink.defaultSettings, userSettings );
|
||||
|
||||
[ 'title', 'text' ].forEach( function( propertyName ) {
|
||||
settings[ propertyName ] = settings[ propertyName ].replace( '#', '' );
|
||||
} );
|
||||
|
||||
settings.classPrefixLength = settings.classPrefix.length;
|
||||
};
|
||||
|
||||
var initElements = function() {
|
||||
$element = $( element );
|
||||
};
|
||||
|
||||
var init = function() {
|
||||
initSettings();
|
||||
|
||||
initElements();
|
||||
|
||||
run();
|
||||
};
|
||||
|
||||
init();
|
||||
};
|
||||
|
||||
ShareLink.networkTemplates = {
|
||||
twitter: 'https://twitter.com/intent/tweet?text={text}\x20{url}',
|
||||
'x-twitter': 'https://x.com/intent/tweet?text={text}\x20{url}',
|
||||
pinterest: 'https://www.pinterest.com/pin/create/button/?url={url}&media={image}',
|
||||
facebook: 'https://www.facebook.com/sharer.php?u={url}',
|
||||
threads: 'https://threads.net/intent/post?text={text}\x20{url}',
|
||||
vk: 'https://vkontakte.ru/share.php?url={url}&title={title}&description={text}&image={image}',
|
||||
linkedin: 'https://www.linkedin.com/shareArticle?mini=true&url={url}&title={title}&summary={text}&source={url}',
|
||||
odnoklassniki: 'https://connect.ok.ru/offer?url={url}&title={title}&imageUrl={image}',
|
||||
tumblr: 'https://tumblr.com/share/link?url={url}',
|
||||
google: 'https://plus.google.com/share?url={url}',
|
||||
digg: 'https://digg.com/submit?url={url}',
|
||||
reddit: 'https://reddit.com/submit?url={url}&title={title}',
|
||||
stumbleupon: 'https://www.stumbleupon.com/submit?url={url}',
|
||||
pocket: 'https://getpocket.com/edit?url={url}',
|
||||
whatsapp: 'https://api.whatsapp.com/send?text=*{title}*%0A{text}%0A{url}',
|
||||
xing: 'https://www.xing.com/spi/shares/new?url={url}',
|
||||
print: 'javascript:print()',
|
||||
email: 'mailto:?subject={title}&body={text}%0A{url}',
|
||||
telegram: 'https://telegram.me/share/url?url={url}&text={text}',
|
||||
skype: 'https://web.skype.com/share?url={url}',
|
||||
};
|
||||
|
||||
ShareLink.defaultSettings = {
|
||||
title: '',
|
||||
text: '',
|
||||
image: '',
|
||||
url: location.href,
|
||||
classPrefix: 's_',
|
||||
width: 640,
|
||||
height: 480,
|
||||
};
|
||||
|
||||
ShareLink.getNetworkLink = function( networkName, settings ) {
|
||||
var link = ShareLink.networkTemplates[ networkName ].replace( /{([^}]+)}/g, function( fullMatch, pureMatch ) {
|
||||
return settings[ pureMatch ] || '';
|
||||
} );
|
||||
|
||||
if ( 'email' === networkName ) {
|
||||
if ( -1 < settings['title'].indexOf( '&' ) || -1 < settings['text'].indexOf( '&' ) ) {
|
||||
var emailSafeSettings = {
|
||||
text: settings['text'].replace( new RegExp('&', 'g'), '%26' ),
|
||||
title: settings['title'].replace( new RegExp('&', 'g'), '%26' ),
|
||||
url: settings['url'],
|
||||
};
|
||||
|
||||
link = ShareLink.networkTemplates[ networkName ].replace( /{([^}]+)}/g, function( fullMatch, pureMatch ) {
|
||||
return emailSafeSettings[ pureMatch ];
|
||||
} );
|
||||
}
|
||||
|
||||
if ( link.indexOf( '?subject=&body') ) {
|
||||
link = link.replace( 'subject=&', '' );
|
||||
}
|
||||
|
||||
return link;
|
||||
}
|
||||
|
||||
return link;
|
||||
};
|
||||
|
||||
$.fn.shareLink = function( settings ) {
|
||||
return this.each( function() {
|
||||
$( this ).data( 'shareLink', new ShareLink( this, settings ) );
|
||||
} );
|
||||
};
|
||||
} )( jQuery );
|
||||
1
wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js
vendored
Normal file
1
wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
!function(t){window.ShareLink=function(e,r){var i,n={},l=function(t){var e="";if(n.width&&n.height){var r=screen.width/2-n.width/2,i=screen.height/2-n.height/2;e="toolbar=0,status=0,width="+n.width+",height="+n.height+",top="+i+",left="+r}var l=ShareLink.getNetworkLink(t,n),s=/^https?:\/\//.test(l);open(l,s?"":"_self",e)},s=function(){t.each(e.classList,(function(){var t,e=(t=this).substr(0,n.classPrefixLength)===n.classPrefix?t.substr(n.classPrefixLength):null;if(e)return function(t){i.on("click",(function(){l(t)})),"button"===i.attr("role")&&i.on("keyup",(e=>{13!==e.keyCode&&32!==e.keyCode||(e.preventDefault(),l(t))}))}(e),!1}))};t.extend(n,ShareLink.defaultSettings,r),["title","text"].forEach((function(t){n[t]=n[t].replace("#","")})),n.classPrefixLength=n.classPrefix.length,i=t(e),s()},ShareLink.networkTemplates={twitter:"https://twitter.com/intent/tweet?text={text} {url}","x-twitter":"https://x.com/intent/tweet?text={text} {url}",pinterest:"https://www.pinterest.com/pin/create/button/?url={url}&media={image}",facebook:"https://www.facebook.com/sharer.php?u={url}",threads:"https://threads.net/intent/post?text={text} {url}",vk:"https://vkontakte.ru/share.php?url={url}&title={title}&description={text}&image={image}",linkedin:"https://www.linkedin.com/shareArticle?mini=true&url={url}&title={title}&summary={text}&source={url}",odnoklassniki:"https://connect.ok.ru/offer?url={url}&title={title}&imageUrl={image}",tumblr:"https://tumblr.com/share/link?url={url}",google:"https://plus.google.com/share?url={url}",digg:"https://digg.com/submit?url={url}",reddit:"https://reddit.com/submit?url={url}&title={title}",stumbleupon:"https://www.stumbleupon.com/submit?url={url}",pocket:"https://getpocket.com/edit?url={url}",whatsapp:"https://api.whatsapp.com/send?text=*{title}*%0A{text}%0A{url}",xing:"https://www.xing.com/spi/shares/new?url={url}",print:"javascript:print()",email:"mailto:?subject={title}&body={text}%0A{url}",telegram:"https://telegram.me/share/url?url={url}&text={text}",skype:"https://web.skype.com/share?url={url}"},ShareLink.defaultSettings={title:"",text:"",image:"",url:location.href,classPrefix:"s_",width:640,height:480},ShareLink.getNetworkLink=function(t,e){var r=ShareLink.networkTemplates[t].replace(/{([^}]+)}/g,(function(t,r){return e[r]||""}));if("email"===t){if(-1<e.title.indexOf("&")||-1<e.text.indexOf("&")){var i={text:e.text.replace(new RegExp("&","g"),"%26"),title:e.title.replace(new RegExp("&","g"),"%26"),url:e.url};r=ShareLink.networkTemplates[t].replace(/{([^}]+)}/g,(function(t,e){return i[e]}))}return r.indexOf("?subject=&body")&&(r=r.replace("subject=&","")),r}return r},t.fn.shareLink=function(e){return this.each((function(){t(this).data("shareLink",new ShareLink(this,e))}))}}(jQuery);
|
||||
502
wp-content/plugins/elementor/assets/lib/swiper/css/swiper.css
Normal file
502
wp-content/plugins/elementor/assets/lib/swiper/css/swiper.css
Normal file
@@ -0,0 +1,502 @@
|
||||
/**
|
||||
* Swiper 3.4.2
|
||||
* Customized by Elementor team
|
||||
*/
|
||||
.swiper-container {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
/* Fix of Webkit flickering */
|
||||
z-index: 1;
|
||||
}
|
||||
.swiper-container .swiper-slide figure {
|
||||
line-height: 0;
|
||||
}
|
||||
.swiper-container .elementor-lightbox-content-source {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.swiper-container-no-flexbox .swiper-slide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.swiper-container-vertical > .swiper-wrapper {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.swiper-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
transition-property: transform;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.swiper-container-android .swiper-slide, .swiper-wrapper {
|
||||
transform: translate3d(0px, 0, 0);
|
||||
}
|
||||
|
||||
.swiper-container-multirow > .swiper-wrapper {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.swiper-container-free-mode > .swiper-wrapper {
|
||||
transition-timing-function: ease-out;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.swiper-slide {
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Auto Height */
|
||||
.swiper-container-autoheight {
|
||||
height: auto;
|
||||
}
|
||||
.swiper-container-autoheight .swiper-slide {
|
||||
height: auto;
|
||||
}
|
||||
.swiper-container-autoheight .swiper-wrapper {
|
||||
align-items: flex-start;
|
||||
transition-property: transform, height;
|
||||
}
|
||||
|
||||
/* a11y */
|
||||
.swiper-container .swiper-notification {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
z-index: -1000;
|
||||
}
|
||||
|
||||
/* IE10 Windows Phone 8 Fixes */
|
||||
.swiper-wp8-horizontal {
|
||||
touch-action: pan-y;
|
||||
}
|
||||
|
||||
.swiper-wp8-vertical {
|
||||
touch-action: pan-x;
|
||||
}
|
||||
|
||||
/* Arrows */
|
||||
.swiper-button-prev, .swiper-button-next {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 27px;
|
||||
height: 44px;
|
||||
margin-top: -22px;
|
||||
z-index: 10;
|
||||
cursor: pointer;
|
||||
background-size: 27px 44px;
|
||||
background: no-repeat center;
|
||||
}
|
||||
|
||||
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
|
||||
opacity: 0.35;
|
||||
cursor: auto;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
||||
left: 10px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
||||
right: 10px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
/* Pagination Styles */
|
||||
.swiper-pagination {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
transition: 300ms;
|
||||
transform: translate3d(0, 0, 0);
|
||||
z-index: 10;
|
||||
}
|
||||
.swiper-pagination.swiper-pagination-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* Common Styles */
|
||||
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
|
||||
bottom: 5px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Bullets */
|
||||
.swiper-pagination-bullet {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
display: inline-block;
|
||||
border-radius: 50%;
|
||||
background: #000;
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
.swiper-pagination-fraction {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
button.swiper-pagination-bullet {
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
appearance: none;
|
||||
}
|
||||
|
||||
.swiper-pagination-clickable .swiper-pagination-bullet {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.swiper-pagination-white .swiper-pagination-bullet {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.swiper-pagination-bullet-active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.swiper-pagination-white .swiper-pagination-bullet-active {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.swiper-pagination-black .swiper-pagination-bullet-active {
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.swiper-container-vertical > .swiper-pagination-bullets {
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
transform: translate3d(0px, -50%, 0);
|
||||
}
|
||||
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
|
||||
margin: 5px 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
/* Progressbar */
|
||||
.swiper-pagination-progressbar {
|
||||
background: rgba(0, 0, 0, 0.25);
|
||||
position: absolute;
|
||||
}
|
||||
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||
background: #000;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: scale(0);
|
||||
transform-origin: left top;
|
||||
}
|
||||
|
||||
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||
transform-origin: right top;
|
||||
}
|
||||
|
||||
.swiper-container-horizontal > .swiper-pagination-progressbar {
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.swiper-container-vertical > .swiper-pagination-progressbar {
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.swiper-pagination-progressbar.swiper-pagination-white {
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
|
||||
background: #fff;
|
||||
}
|
||||
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
|
||||
background: #000;
|
||||
}
|
||||
|
||||
/* 3D Container */
|
||||
.swiper-container-3d {
|
||||
perspective: 1200px;
|
||||
}
|
||||
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 10;
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-left {
|
||||
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-right {
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-top {
|
||||
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-bottom {
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
|
||||
/* Coverflow */
|
||||
.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
|
||||
/* Windows 8 IE 10 fix */
|
||||
-ms-perspective: 1200px;
|
||||
}
|
||||
|
||||
/* Cube + Flip */
|
||||
.swiper-container-cube, .swiper-container-flip {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-right {
|
||||
z-index: 0;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
|
||||
/* Cube */
|
||||
.swiper-container-cube .swiper-slide {
|
||||
visibility: hidden;
|
||||
transform-origin: 0 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.swiper-container-cube.swiper-container-rtl .swiper-slide {
|
||||
transform-origin: 100% 0;
|
||||
}
|
||||
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
|
||||
pointer-events: auto;
|
||||
visibility: visible;
|
||||
}
|
||||
.swiper-container-cube .swiper-cube-shadow {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #000;
|
||||
opacity: 0.6;
|
||||
-webkit-filter: blur(50px);
|
||||
filter: blur(50px);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/* Fade */
|
||||
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide {
|
||||
pointer-events: none;
|
||||
transition-property: opacity;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide .swiper-slide {
|
||||
pointer-events: none;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide-active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.swiper-zoom-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
.swiper-zoom-container > img, .swiper-zoom-container > svg, .swiper-zoom-container > canvas {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
/* Scrollbar */
|
||||
.swiper-scrollbar {
|
||||
border-radius: 10px;
|
||||
position: relative;
|
||||
-ms-touch-action: none;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.swiper-container-horizontal > .swiper-scrollbar {
|
||||
position: absolute;
|
||||
left: 1%;
|
||||
bottom: 3px;
|
||||
z-index: 50;
|
||||
height: 5px;
|
||||
width: 98%;
|
||||
}
|
||||
|
||||
.swiper-container-vertical > .swiper-scrollbar {
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
top: 1%;
|
||||
z-index: 50;
|
||||
width: 5px;
|
||||
height: 98%;
|
||||
}
|
||||
|
||||
.swiper-scrollbar-drag {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 10px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.swiper-scrollbar-cursor-drag {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.elementor-pagination-position-outside .swiper-container {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.elementor-pagination-position-outside .elementor-swiper-button {
|
||||
top: calc(50% - 30px / 2);
|
||||
}
|
||||
|
||||
.elementor-swiper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.elementor-main-swiper {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.elementor-arrows-position-outside .swiper-container {
|
||||
width: calc(100% - 60px);
|
||||
}
|
||||
.elementor-arrows-position-outside .elementor-swiper-button-prev {
|
||||
left: 0;
|
||||
}
|
||||
.elementor-arrows-position-outside .elementor-swiper-button-next {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.swiper-image-stretch .swiper-slide .swiper-slide-image {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.elementor-swiper-button {
|
||||
position: absolute;
|
||||
display: inline-flex;
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
font-size: 25px;
|
||||
color: rgba(238, 238, 238, 0.9);
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.elementor-swiper-button svg {
|
||||
fill: rgba(238, 238, 238, 0.9);
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
}
|
||||
.elementor-swiper-button-prev {
|
||||
left: 10px;
|
||||
}
|
||||
.elementor-swiper-button-next {
|
||||
right: 10px;
|
||||
}
|
||||
.elementor-swiper-button.swiper-button-disabled {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.swiper-container-cube .elementor-swiper-button {
|
||||
transform: translate3d(0, -50%, 1px);
|
||||
}
|
||||
|
||||
/* Preloader */
|
||||
.swiper-lazy-preloader {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -21px;
|
||||
margin-top: -21px;
|
||||
z-index: 10;
|
||||
transform-origin: 50%;
|
||||
animation: swiper-preloader-spin 1s steps(12, end) infinite;
|
||||
}
|
||||
.swiper-lazy-preloader:after {
|
||||
display: block;
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: 100%;
|
||||
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat 50%;
|
||||
}
|
||||
|
||||
.swiper-lazy-preloader-white:after {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
@keyframes swiper-preloader-spin {
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=swiper.css.map */
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user