wishthis/semantic/dist/components/icon.css

7147 lines
130 KiB
CSS
Raw Normal View History

2022-01-13 13:00:31 +00:00
/*!
2022-10-10 08:26:02 +00:00
* # Fomantic-UI 2.9.0 - Icon
2022-01-13 13:00:31 +00:00
* http://github.com/fomantic/Fomantic-UI/
*
*
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
Icon
*******************************/
@font-face {
2022-10-03 13:12:57 +00:00
font-family: 'icons';
src: url("./../themes/default/assets/fonts/icons.woff2") format('woff2') ;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-decoration: inherit;
text-transform: none;
}
@font-face {
font-family: 'outline-icons';
src: url("./../themes/default/assets/fonts/outline-icons.woff2") format('woff2') ;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-decoration: inherit;
text-transform: none;
}
@font-face {
font-family: 'brand-icons';
src: url("./../themes/default/assets/fonts/brand-icons.woff2") format('woff2') ;
2022-01-13 13:00:31 +00:00
font-style: normal;
font-weight: normal;
font-variant: normal;
text-decoration: inherit;
text-transform: none;
}
i.icon {
display: inline-block;
opacity: 1;
margin: 0 0.25rem 0 0;
width: 1.18em;
height: 1em;
2022-10-03 13:12:57 +00:00
font-family: 'icons';
2022-01-13 13:00:31 +00:00
font-style: normal;
font-weight: normal;
text-decoration: inherit;
text-align: center;
speak: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
2022-08-05 09:25:53 +00:00
i.icon::before {
2022-01-13 13:00:31 +00:00
background: none !important;
}
/*******************************
Types
*******************************/
/*--------------
Loading
---------------*/
i.loading.icon {
height: 1em;
line-height: 1;
}
i.loading.icon,
i.loading.icons {
-webkit-animation: loader 2s linear infinite;
animation: loader 2s linear infinite;
}
/*******************************
States
*******************************/
i.icon:hover,
i.icons:hover,
i.icon:active,
i.icons:active,
i.emphasized.icon:not(.disabled),
i.emphasized.icons:not(.disabled) {
opacity: 1;
}
i.disabled.icon,
i.disabled.icons {
opacity: 0.45;
cursor: default;
pointer-events: none;
}
/*******************************
Variations
*******************************/
/*-------------------
Fitted
--------------------*/
2022-08-05 09:25:53 +00:00
i.fitted.icons,
2022-01-13 13:00:31 +00:00
i.fitted.icon {
width: auto;
margin: 0 !important;
}
/*-------------------
Link
--------------------*/
i.link.icon:not(.disabled),
i.link.icons:not(.disabled) {
cursor: pointer;
opacity: 0.8;
-webkit-transition: opacity 0.1s ease;
transition: opacity 0.1s ease;
}
i.link.icon:hover,
i.link.icons:hover {
opacity: 1;
}
/*-------------------
Circular
--------------------*/
i.circular.icon {
border-radius: 500em !important;
line-height: 1 !important;
padding: 0.5em 0 !important;
-webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
width: 2em !important;
height: 2em !important;
}
i.circular.icon.colored {
-webkit-box-shadow: 0 0 0 0.1em currentColor inset;
box-shadow: 0 0 0 0.1em currentColor inset;
}
i.circular.inverted.icon {
border: none;
-webkit-box-shadow: none;
box-shadow: none;
}
/*-------------------
Flipped
--------------------*/
i.flipped.icon,
i.horizontally.flipped.icon {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
}
i.vertically.flipped.icon {
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
}
.icons i.flipped.icon:not(.corner):not(:first-child),
.icons i.horizontally.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(-1, 1);
transform: translateX(-50%) translateY(-50%) scale(-1, 1);
}
.icons i.vertically.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(1, -1);
transform: translateX(-50%) translateY(-50%) scale(1, -1);
}
/*-------------------
Rotated
--------------------*/
i.rotated.icon,
i.right.rotated.icon,
i.clockwise.rotated.icon {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
i.left.rotated.icon,
i.counterclockwise.rotated.icon {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
i.halfway.rotated.icon {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.icons i.rotated.rotated.icon:not(.corner):not(:first-child),
.icons i.right.rotated.icon:not(.corner):not(:first-child),
.icons i.clockwise.rotated.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.icons i.left.rotated.icon:not(.corner):not(:first-child),
.icons i.counterclockwise.rotated.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}
.icons i.halfway.rotated.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
transform: translateX(-50%) translateY(-50%) rotate(180deg);
}
/*--------------------------
Flipped & Rotated
---------------------------*/
i.rotated.flipped.icon,
i.right.rotated.flipped.icon,
i.clockwise.rotated.flipped.icon {
-webkit-transform: scale(-1, 1) rotate(90deg);
transform: scale(-1, 1) rotate(90deg);
}
i.left.rotated.flipped.icon,
i.counterclockwise.rotated.flipped.icon {
-webkit-transform: scale(-1, 1) rotate(-90deg);
transform: scale(-1, 1) rotate(-90deg);
}
i.halfway.rotated.flipped.icon {
-webkit-transform: scale(-1, 1) rotate(180deg);
transform: scale(-1, 1) rotate(180deg);
}
i.rotated.vertically.flipped.icon,
i.right.rotated.vertically.flipped.icon,
i.clockwise.rotated.vertically.flipped.icon {
-webkit-transform: scale(1, -1) rotate(90deg);
transform: scale(1, -1) rotate(90deg);
}
i.left.rotated.vertically.flipped.icon,
i.counterclockwise.rotated.vertically.flipped.icon {
-webkit-transform: scale(1, -1) rotate(-90deg);
transform: scale(1, -1) rotate(-90deg);
}
i.halfway.rotated.vertically.flipped.icon {
-webkit-transform: scale(1, -1) rotate(180deg);
transform: scale(1, -1) rotate(180deg);
}
.icons i.rotated.flipped.icon:not(.corner):not(:first-child),
.icons i.right.rotated.flipped.icon:not(.corner):not(:first-child),
.icons i.clockwise.rotated.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(-1, 1) rotate(90deg);
transform: translateX(-50%) translateY(-50%) scale(-1, 1) rotate(90deg);
}
.icons i.left.rotated.flipped.icon:not(.corner):not(:first-child),
.icons i.counterclockwise.rotated.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(-1, 1) rotate(-90deg);
transform: translateX(-50%) translateY(-50%) scale(-1, 1) rotate(-90deg);
}
.icons i.halfway.rotated.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(-1, 1) rotate(180deg);
transform: translateX(-50%) translateY(-50%) scale(-1, 1) rotate(180deg);
}
.icons i.rotated.vertically.flipped.icon:not(.corner):not(:first-child),
.icons i.right.rotated.vertically.flipped.icon:not(.corner):not(:first-child),
.icons i.clockwise.rotated.vertically.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(1, -1) rotate(90deg);
transform: translateX(-50%) translateY(-50%) scale(1, -1) rotate(90deg);
}
.icons i.left.rotated.vertically.flipped.icon:not(.corner):not(:first-child),
.icons i.counterclockwise.rotated.vertically.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(1, -1) rotate(-90deg);
transform: translateX(-50%) translateY(-50%) scale(1, -1) rotate(-90deg);
}
.icons i.halfway.rotated.vertically.flipped.icon:not(.corner):not(:first-child) {
-webkit-transform: translateX(-50%) translateY(-50%) scale(1, -1) rotate(180deg);
transform: translateX(-50%) translateY(-50%) scale(1, -1) rotate(180deg);
}
/*-------------------
Bordered
--------------------*/
i.bordered.icon {
line-height: 1;
vertical-align: baseline;
width: 2em;
height: 2em;
padding: 0.5em 0 !important;
-webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
}
i.bordered.icon.colored {
-webkit-box-shadow: 0 0 0 0.1em currentColor inset;
box-shadow: 0 0 0 0.1em currentColor inset;
}
i.bordered.inverted.icon {
border: none;
-webkit-box-shadow: none;
box-shadow: none;
}
/*-------------------
Inverted
--------------------*/
/* Inverted Shapes */
i.inverted.bordered.icon,
i.inverted.circular.icon {
background-color: #1B1C1D;
color: #FFFFFF;
}
i.inverted.icon {
color: #FFFFFF;
}
/*-------------------
Colors
--------------------*/
i.primary.icon.icon.icon.icon.icon {
2022-08-05 09:56:03 +00:00
color: #6435C9;
2022-01-13 13:00:31 +00:00
}
i.inverted.primary.icon.icon.icon.icon.icon {
2022-08-05 09:56:03 +00:00
color: #A291FB;
2022-01-13 13:00:31 +00:00
}
i.inverted.bordered.primary.icon.icon.icon.icon.icon,
i.inverted.circular.primary.icon.icon.icon.icon.icon,
i.inverted.bordered.primary.icons,
i.inverted.circular.primary.icons {
2022-08-05 09:56:03 +00:00
background-color: #6435C9;
2022-01-13 13:00:31 +00:00
color: #FFFFFF;
}
i.secondary.icon.icon.icon.icon.icon {
color: #1B1C1D;
}
i.inverted.secondary.icon.icon.icon.icon.icon {
color: #545454;
}
i.inverted.bordered.secondary.icon.icon.icon.icon.icon,
i.inverted.circular.secondary.icon.icon.icon.icon.icon,
i.inverted.bordered.secondary.icons,
i.inverted.circular.secondary.icons {
background-color: #1B1C1D;
color: #FFFFFF;
}
i.red.icon.icon.icon.icon.icon {
color: #DB2828;
}
i.inverted.red.icon.icon.icon.icon.icon {
color: #FF695E;
}
i.inverted.bordered.red.icon.icon.icon.icon.icon,
i.inverted.circular.red.icon.icon.icon.icon.icon,
i.inverted.bordered.red.icons,
i.inverted.circular.red.icons {
background-color: #DB2828;
color: #FFFFFF;
}
i.orange.icon.icon.icon.icon.icon {
color: #F2711C;
}
i.inverted.orange.icon.icon.icon.icon.icon {
color: #FF851B;
}
i.inverted.bordered.orange.icon.icon.icon.icon.icon,
i.inverted.circular.orange.icon.icon.icon.icon.icon,
i.inverted.bordered.orange.icons,
i.inverted.circular.orange.icons {
background-color: #F2711C;
color: #FFFFFF;
}
i.yellow.icon.icon.icon.icon.icon {
color: #FBBD08;
}
i.inverted.yellow.icon.icon.icon.icon.icon {
color: #FFE21F;
}
i.inverted.bordered.yellow.icon.icon.icon.icon.icon,
i.inverted.circular.yellow.icon.icon.icon.icon.icon,
i.inverted.bordered.yellow.icons,
i.inverted.circular.yellow.icons {
background-color: #FBBD08;
color: #FFFFFF;
}
i.olive.icon.icon.icon.icon.icon {
color: #B5CC18;
}
i.inverted.olive.icon.icon.icon.icon.icon {
color: #D9E778;
}
i.inverted.bordered.olive.icon.icon.icon.icon.icon,
i.inverted.circular.olive.icon.icon.icon.icon.icon,
i.inverted.bordered.olive.icons,
i.inverted.circular.olive.icons {
background-color: #B5CC18;
color: #FFFFFF;
}
i.green.icon.icon.icon.icon.icon {
color: #21BA45;
}
i.inverted.green.icon.icon.icon.icon.icon {
color: #2ECC40;
}
i.inverted.bordered.green.icon.icon.icon.icon.icon,
i.inverted.circular.green.icon.icon.icon.icon.icon,
i.inverted.bordered.green.icons,
i.inverted.circular.green.icons {
background-color: #21BA45;
color: #FFFFFF;
}
i.teal.icon.icon.icon.icon.icon {
color: #00B5AD;
}
i.inverted.teal.icon.icon.icon.icon.icon {
color: #6DFFFF;
}
i.inverted.bordered.teal.icon.icon.icon.icon.icon,
i.inverted.circular.teal.icon.icon.icon.icon.icon,
i.inverted.bordered.teal.icons,
i.inverted.circular.teal.icons {
background-color: #00B5AD;
color: #FFFFFF;
}
i.blue.icon.icon.icon.icon.icon {
color: #2185D0;
}
i.inverted.blue.icon.icon.icon.icon.icon {
color: #54C8FF;
}
i.inverted.bordered.blue.icon.icon.icon.icon.icon,
i.inverted.circular.blue.icon.icon.icon.icon.icon,
i.inverted.bordered.blue.icons,
i.inverted.circular.blue.icons {
background-color: #2185D0;
color: #FFFFFF;
}
i.violet.icon.icon.icon.icon.icon {
color: #6435C9;
}
i.inverted.violet.icon.icon.icon.icon.icon {
color: #A291FB;
}
i.inverted.bordered.violet.icon.icon.icon.icon.icon,
i.inverted.circular.violet.icon.icon.icon.icon.icon,
i.inverted.bordered.violet.icons,
i.inverted.circular.violet.icons {
background-color: #6435C9;
color: #FFFFFF;
}
i.purple.icon.icon.icon.icon.icon {
color: #A333C8;
}
i.inverted.purple.icon.icon.icon.icon.icon {
color: #DC73FF;
}
i.inverted.bordered.purple.icon.icon.icon.icon.icon,
i.inverted.circular.purple.icon.icon.icon.icon.icon,
i.inverted.bordered.purple.icons,
i.inverted.circular.purple.icons {
background-color: #A333C8;
color: #FFFFFF;
}
i.pink.icon.icon.icon.icon.icon {
color: #E03997;
}
i.inverted.pink.icon.icon.icon.icon.icon {
color: #FF8EDF;
}
i.inverted.bordered.pink.icon.icon.icon.icon.icon,
i.inverted.circular.pink.icon.icon.icon.icon.icon,
i.inverted.bordered.pink.icons,
i.inverted.circular.pink.icons {
background-color: #E03997;
color: #FFFFFF;
}
i.brown.icon.icon.icon.icon.icon {
color: #A5673F;
}
i.inverted.brown.icon.icon.icon.icon.icon {
color: #D67C1C;
}
i.inverted.bordered.brown.icon.icon.icon.icon.icon,
i.inverted.circular.brown.icon.icon.icon.icon.icon,
i.inverted.bordered.brown.icons,
i.inverted.circular.brown.icons {
background-color: #A5673F;
color: #FFFFFF;
}
i.grey.icon.icon.icon.icon.icon {
color: #767676;
}
i.inverted.grey.icon.icon.icon.icon.icon {
color: #DCDDDE;
}
i.inverted.bordered.grey.icon.icon.icon.icon.icon,
i.inverted.circular.grey.icon.icon.icon.icon.icon,
i.inverted.bordered.grey.icons,
i.inverted.circular.grey.icons {
background-color: #767676;
color: #FFFFFF;
}
i.black.icon.icon.icon.icon.icon {
color: #1B1C1D;
}
i.inverted.black.icon.icon.icon.icon.icon {
color: #545454;
}
i.inverted.bordered.black.icon.icon.icon.icon.icon,
i.inverted.circular.black.icon.icon.icon.icon.icon,
i.inverted.bordered.black.icons,
i.inverted.circular.black.icons {
background-color: #1B1C1D;
color: #FFFFFF;
}
/*-------------------
Sizes
--------------------*/
i.icon,
i.icons {
font-size: 1em;
line-height: 1;
font-style: normal;
}
i.mini.mini.mini.icon,
i.mini.mini.mini.icons {
font-size: 0.4em;
vertical-align: middle;
}
i.tiny.tiny.tiny.icon,
i.tiny.tiny.tiny.icons {
font-size: 0.5em;
vertical-align: middle;
}
i.small.small.small.icon,
i.small.small.small.icons {
font-size: 0.75em;
vertical-align: middle;
}
i.large.large.large.icon,
i.large.large.large.icons {
font-size: 1.5em;
vertical-align: middle;
}
i.big.big.big.icon,
i.big.big.big.icons {
font-size: 2em;
vertical-align: middle;
}
i.huge.huge.huge.icon,
i.huge.huge.huge.icons {
font-size: 4em;
vertical-align: middle;
}
i.massive.massive.massive.icon,
i.massive.massive.massive.icons {
font-size: 8em;
vertical-align: middle;
}
/*******************************
Groups
*******************************/
i.icons {
display: inline-block;
position: relative;
line-height: 1;
2022-08-05 09:25:53 +00:00
min-width: 1.18em;
min-height: 1em;
margin: 0 0.25rem 0 0;
text-align: center;
2022-01-13 13:00:31 +00:00
}
i.icons .icon {
position: absolute;
top: 50%;
left: 50%;
margin: 0;
}
i.icons .icon:not(.corner):not(.rotated):not(.flipped) {
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
i.icons .icon:first-child {
position: static;
width: auto;
height: auto;
vertical-align: top;
}
i.icons:not(.bordered):not(.circular) .icon:first-child:not(.rotated):not(.flipped) {
-webkit-transform: none;
transform: none;
}
/* Corner Icon */
i.icons .corner.icon {
top: auto;
left: auto;
right: 0;
bottom: 0;
font-size: 0.45em;
text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}
i.icons .corner.icon:not(.rotated):not(.flipped) {
-webkit-transform: none;
transform: none;
}
i.icons .icon.corner[class*="top right"] {
top: 0;
left: auto;
right: 0;
bottom: auto;
}
i.icons .icon.corner[class*="top left"] {
top: 0;
left: 0;
right: auto;
bottom: auto;
}
i.icons .icon.corner[class*="bottom left"] {
top: auto;
left: 0;
right: auto;
bottom: 0;
}
i.icons .icon.corner[class*="bottom right"] {
top: auto;
left: auto;
right: 0;
bottom: 0;
}
i.icons .inverted.corner.icon {
text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
}
/*************************************************
Bordered/circular with corner or group icons
*************************************************/
i.bordered.icons,
i.circular.icons {
width: 2em;
height: 2em;
-webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
vertical-align: middle;
}
i.bordered.icons.colored,
i.circular.icons.colored {
-webkit-box-shadow: 0 0 0 0.1em currentColor inset;
box-shadow: 0 0 0 0.1em currentColor inset;
}
i.circular.icons {
border-radius: 500em;
}
i.bordered.icons i.icon:first-child,
i.circular.icons i.icon:first-child {
position: absolute;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
/* Inverted Icon */
i.bordered.inverted.icons,
i.circular.inverted.icons {
border: none;
-webkit-box-shadow: none;
box-shadow: none;
background-color: #1B1C1D;
color: #FFFFFF;
}
/* Corner Icon */
i.bordered.icons .icon.corner,
i.circular.icons .icon.corner,
i.bordered.icons .icon.corner[class*="bottom right"],
i.circular.icons .icon.corner[class*="bottom right"] {
top: auto;
left: auto;
right: 1.15em;
bottom: 1.15em;
}
i.bordered.icons .icon.corner[class*="top right"],
i.circular.icons .icon.corner[class*="top right"] {
top: 1.15em;
left: auto;
right: 1.15em;
bottom: auto;
}
i.bordered.icons .icon.corner[class*="top left"],
i.circular.icons .icon.corner[class*="top left"] {
top: 1.15em;
left: 1.15em;
right: auto;
bottom: auto;
}
i.bordered.icons .icon.corner[class*="bottom left"],
i.circular.icons .icon.corner[class*="bottom left"] {
top: auto;
left: 1.15em;
right: auto;
bottom: 1.15em;
}
/* Deprecated *In/Out Naming Conflict) */
2022-08-05 09:25:53 +00:00
i.icon.linkedin.in::before {
2022-01-13 13:00:31 +00:00
content: "\f0e1";
}
2022-08-05 09:25:53 +00:00
i.icon.zoom.in::before {
2022-01-13 13:00:31 +00:00
content: "\f00e";
}
2022-08-05 09:25:53 +00:00
i.icon.zoom.out::before {
2022-01-13 13:00:31 +00:00
content: "\f010";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.in::before {
2022-01-13 13:00:31 +00:00
content: "\f2f6";
}
2022-08-05 09:25:53 +00:00
i.icon.in.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f218";
}
2022-08-05 09:25:53 +00:00
i.icon.log.out::before {
2022-01-13 13:00:31 +00:00
content: "\f2f5";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.out::before {
2022-01-13 13:00:31 +00:00
content: "\f2f5";
}
/*******************************
Solid Icons
2022-10-03 13:12:57 +00:00
*******************************/
2022-01-13 13:00:31 +00:00
/* Icons */
2022-08-05 09:25:53 +00:00
i.icon.ad::before {
2022-01-13 13:00:31 +00:00
content: "\f641";
}
2022-08-05 09:25:53 +00:00
i.icon.address.book::before {
2022-01-13 13:00:31 +00:00
content: "\f2b9";
}
2022-08-05 09:25:53 +00:00
i.icon.address.card::before {
2022-01-13 13:00:31 +00:00
content: "\f2bb";
}
2022-08-05 09:25:53 +00:00
i.icon.adjust::before {
2022-01-13 13:00:31 +00:00
content: "\f042";
}
2022-08-05 09:25:53 +00:00
i.icon.air.freshener::before {
2022-01-13 13:00:31 +00:00
content: "\f5d0";
}
2022-08-05 09:25:53 +00:00
i.icon.align.center::before {
2022-01-13 13:00:31 +00:00
content: "\f037";
}
2022-08-05 09:25:53 +00:00
i.icon.align.justify::before {
2022-01-13 13:00:31 +00:00
content: "\f039";
}
2022-08-05 09:25:53 +00:00
i.icon.align.left::before {
2022-01-13 13:00:31 +00:00
content: "\f036";
}
2022-08-05 09:25:53 +00:00
i.icon.align.right::before {
2022-01-13 13:00:31 +00:00
content: "\f038";
}
2022-08-05 09:25:53 +00:00
i.icon.allergies::before {
2022-01-13 13:00:31 +00:00
content: "\f461";
}
2022-08-05 09:25:53 +00:00
i.icon.ambulance::before {
2022-01-13 13:00:31 +00:00
content: "\f0f9";
}
2022-08-05 09:25:53 +00:00
i.icon.american.sign.language.interpreting::before {
2022-01-13 13:00:31 +00:00
content: "\f2a3";
}
2022-08-05 09:25:53 +00:00
i.icon.anchor::before {
2022-01-13 13:00:31 +00:00
content: "\f13d";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.double.down::before {
2022-01-13 13:00:31 +00:00
content: "\f103";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.double.left::before {
2022-01-13 13:00:31 +00:00
content: "\f100";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.double.right::before {
2022-01-13 13:00:31 +00:00
content: "\f101";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.double.up::before {
2022-01-13 13:00:31 +00:00
content: "\f102";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.left::before {
2022-01-13 13:00:31 +00:00
content: "\f104";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.right::before {
2022-01-13 13:00:31 +00:00
content: "\f105";
}
2022-08-05 09:25:53 +00:00
i.icon.angle.up::before {
2022-01-13 13:00:31 +00:00
content: "\f106";
}
2022-10-03 13:12:57 +00:00
i.icon.angle.down::before {
content: "\f107";
}
2022-08-05 09:25:53 +00:00
i.icon.angry::before {
2022-01-13 13:00:31 +00:00
content: "\f556";
}
2022-08-05 09:25:53 +00:00
i.icon.ankh::before {
2022-01-13 13:00:31 +00:00
content: "\f644";
}
2022-08-05 09:25:53 +00:00
i.icon.archive::before {
2022-01-13 13:00:31 +00:00
content: "\f187";
}
2022-08-05 09:25:53 +00:00
i.icon.archway::before {
2022-01-13 13:00:31 +00:00
content: "\f557";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.down::before {
2022-01-13 13:00:31 +00:00
content: "\f358";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.left::before {
2022-01-13 13:00:31 +00:00
content: "\f359";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.right::before {
2022-01-13 13:00:31 +00:00
content: "\f35a";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.up::before {
2022-01-13 13:00:31 +00:00
content: "\f35b";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.circle.down::before {
2022-01-13 13:00:31 +00:00
content: "\f0ab";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.circle.left::before {
2022-01-13 13:00:31 +00:00
content: "\f0a8";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.circle.right::before {
2022-01-13 13:00:31 +00:00
content: "\f0a9";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.circle.up::before {
2022-01-13 13:00:31 +00:00
content: "\f0aa";
}
2022-10-03 13:12:57 +00:00
i.icon.arrow.down::before {
content: "\f063";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.left::before {
2022-01-13 13:00:31 +00:00
content: "\f060";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.right::before {
2022-01-13 13:00:31 +00:00
content: "\f061";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.up::before {
2022-01-13 13:00:31 +00:00
content: "\f062";
}
2022-08-05 09:25:53 +00:00
i.icon.arrows.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f0b2";
}
2022-08-05 09:25:53 +00:00
i.icon.arrows.alternate.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f337";
}
2022-08-05 09:25:53 +00:00
i.icon.arrows.alternate.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f338";
}
2022-08-05 09:25:53 +00:00
i.icon.assistive.listening.systems::before {
2022-01-13 13:00:31 +00:00
content: "\f2a2";
}
2022-08-05 09:25:53 +00:00
i.icon.asterisk::before {
2022-01-13 13:00:31 +00:00
content: "\f069";
}
2022-08-05 09:25:53 +00:00
i.icon.at::before {
2022-01-13 13:00:31 +00:00
content: "\f1fa";
}
2022-08-05 09:25:53 +00:00
i.icon.atlas::before {
2022-01-13 13:00:31 +00:00
content: "\f558";
}
2022-08-05 09:25:53 +00:00
i.icon.atom::before {
2022-01-13 13:00:31 +00:00
content: "\f5d2";
}
2022-08-05 09:25:53 +00:00
i.icon.audio.description::before {
2022-01-13 13:00:31 +00:00
content: "\f29e";
}
2022-08-05 09:25:53 +00:00
i.icon.award::before {
2022-01-13 13:00:31 +00:00
content: "\f559";
}
2022-08-05 09:25:53 +00:00
i.icon.baby::before {
2022-01-13 13:00:31 +00:00
content: "\f77c";
}
2022-08-05 09:25:53 +00:00
i.icon.baby.carriage::before {
2022-01-13 13:00:31 +00:00
content: "\f77d";
}
2022-08-05 09:25:53 +00:00
i.icon.backspace::before {
2022-01-13 13:00:31 +00:00
content: "\f55a";
}
2022-08-05 09:25:53 +00:00
i.icon.backward::before {
2022-01-13 13:00:31 +00:00
content: "\f04a";
}
2022-08-05 09:25:53 +00:00
i.icon.bacon::before {
2022-01-13 13:00:31 +00:00
content: "\f7e5";
}
2022-08-05 09:25:53 +00:00
i.icon.bacteria::before {
content: "\e059";
}
i.icon.bacterium::before {
content: "\e05a";
}
i.icon.bahai::before {
2022-01-13 13:00:31 +00:00
content: "\f666";
}
2022-08-05 09:25:53 +00:00
i.icon.balance.scale::before {
2022-01-13 13:00:31 +00:00
content: "\f24e";
}
2022-08-05 09:25:53 +00:00
i.icon.balance.scale.left::before {
2022-01-13 13:00:31 +00:00
content: "\f515";
}
2022-08-05 09:25:53 +00:00
i.icon.balance.scale.right::before {
2022-01-13 13:00:31 +00:00
content: "\f516";
}
2022-08-05 09:25:53 +00:00
i.icon.ban::before {
2022-01-13 13:00:31 +00:00
content: "\f05e";
}
2022-08-05 09:25:53 +00:00
i.icon.band.aid::before {
2022-01-13 13:00:31 +00:00
content: "\f462";
}
2022-08-05 09:25:53 +00:00
i.icon.barcode::before {
2022-01-13 13:00:31 +00:00
content: "\f02a";
}
2022-08-05 09:25:53 +00:00
i.icon.bars::before {
2022-01-13 13:00:31 +00:00
content: "\f0c9";
}
2022-08-05 09:25:53 +00:00
i.icon.baseball.ball::before {
2022-01-13 13:00:31 +00:00
content: "\f433";
}
2022-08-05 09:25:53 +00:00
i.icon.basketball.ball::before {
2022-01-13 13:00:31 +00:00
content: "\f434";
}
2022-08-05 09:25:53 +00:00
i.icon.bath::before {
2022-01-13 13:00:31 +00:00
content: "\f2cd";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.empty::before {
2022-01-13 13:00:31 +00:00
content: "\f244";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.full::before {
2022-01-13 13:00:31 +00:00
content: "\f240";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.half::before {
2022-01-13 13:00:31 +00:00
content: "\f242";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.quarter::before {
2022-01-13 13:00:31 +00:00
content: "\f243";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.three.quarters::before {
2022-01-13 13:00:31 +00:00
content: "\f241";
}
2022-08-05 09:25:53 +00:00
i.icon.bed::before {
2022-01-13 13:00:31 +00:00
content: "\f236";
}
2022-08-05 09:25:53 +00:00
i.icon.beer::before {
2022-01-13 13:00:31 +00:00
content: "\f0fc";
}
2022-08-05 09:25:53 +00:00
i.icon.bell::before {
2022-01-13 13:00:31 +00:00
content: "\f0f3";
}
2022-08-05 09:25:53 +00:00
i.icon.bell.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f1f6";
}
2022-08-05 09:25:53 +00:00
i.icon.bezier.curve::before {
2022-01-13 13:00:31 +00:00
content: "\f55b";
}
2022-08-05 09:25:53 +00:00
i.icon.bible::before {
2022-01-13 13:00:31 +00:00
content: "\f647";
}
2022-08-05 09:25:53 +00:00
i.icon.bicycle::before {
2022-01-13 13:00:31 +00:00
content: "\f206";
}
2022-08-05 09:25:53 +00:00
i.icon.biking::before {
2022-01-13 13:00:31 +00:00
content: "\f84a";
}
2022-08-05 09:25:53 +00:00
i.icon.binoculars::before {
2022-01-13 13:00:31 +00:00
content: "\f1e5";
}
2022-08-05 09:25:53 +00:00
i.icon.biohazard::before {
2022-01-13 13:00:31 +00:00
content: "\f780";
}
2022-08-05 09:25:53 +00:00
i.icon.birthday.cake::before {
2022-01-13 13:00:31 +00:00
content: "\f1fd";
}
2022-08-05 09:25:53 +00:00
i.icon.blender::before {
2022-01-13 13:00:31 +00:00
content: "\f517";
}
2022-08-05 09:25:53 +00:00
i.icon.blender.phone::before {
2022-01-13 13:00:31 +00:00
content: "\f6b6";
}
2022-08-05 09:25:53 +00:00
i.icon.blind::before {
2022-01-13 13:00:31 +00:00
content: "\f29d";
}
2022-08-05 09:25:53 +00:00
i.icon.blog::before {
2022-01-13 13:00:31 +00:00
content: "\f781";
}
2022-08-05 09:25:53 +00:00
i.icon.bold::before {
2022-01-13 13:00:31 +00:00
content: "\f032";
}
2022-08-05 09:25:53 +00:00
i.icon.bolt::before {
2022-01-13 13:00:31 +00:00
content: "\f0e7";
}
2022-08-05 09:25:53 +00:00
i.icon.bomb::before {
2022-01-13 13:00:31 +00:00
content: "\f1e2";
}
2022-08-05 09:25:53 +00:00
i.icon.bone::before {
2022-01-13 13:00:31 +00:00
content: "\f5d7";
}
2022-08-05 09:25:53 +00:00
i.icon.bong::before {
2022-01-13 13:00:31 +00:00
content: "\f55c";
}
2022-08-05 09:25:53 +00:00
i.icon.book::before {
2022-01-13 13:00:31 +00:00
content: "\f02d";
}
2022-08-05 09:25:53 +00:00
i.icon.book.dead::before {
2022-01-13 13:00:31 +00:00
content: "\f6b7";
}
2022-08-05 09:25:53 +00:00
i.icon.book.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f7e6";
}
2022-08-05 09:25:53 +00:00
i.icon.book.open::before {
2022-01-13 13:00:31 +00:00
content: "\f518";
}
2022-08-05 09:25:53 +00:00
i.icon.book.reader::before {
2022-01-13 13:00:31 +00:00
content: "\f5da";
}
2022-08-05 09:25:53 +00:00
i.icon.bookmark::before {
2022-01-13 13:00:31 +00:00
content: "\f02e";
}
2022-08-05 09:25:53 +00:00
i.icon.border.all::before {
2022-01-13 13:00:31 +00:00
content: "\f84c";
}
2022-08-05 09:25:53 +00:00
i.icon.border.none::before {
2022-01-13 13:00:31 +00:00
content: "\f850";
}
2022-08-05 09:25:53 +00:00
i.icon.border.style::before {
2022-01-13 13:00:31 +00:00
content: "\f853";
}
2022-08-05 09:25:53 +00:00
i.icon.bowling.ball::before {
2022-01-13 13:00:31 +00:00
content: "\f436";
}
2022-08-05 09:25:53 +00:00
i.icon.box::before {
2022-01-13 13:00:31 +00:00
content: "\f466";
}
2022-08-05 09:25:53 +00:00
i.icon.box.open::before {
2022-01-13 13:00:31 +00:00
content: "\f49e";
}
2022-08-05 09:25:53 +00:00
i.icon.box.tissue::before {
content: "\e05b";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.boxes::before {
2022-01-13 13:00:31 +00:00
content: "\f468";
}
2022-08-05 09:25:53 +00:00
i.icon.braille::before {
2022-01-13 13:00:31 +00:00
content: "\f2a1";
}
2022-08-05 09:25:53 +00:00
i.icon.brain::before {
2022-01-13 13:00:31 +00:00
content: "\f5dc";
}
2022-08-05 09:25:53 +00:00
i.icon.bread.slice::before {
2022-01-13 13:00:31 +00:00
content: "\f7ec";
}
2022-08-05 09:25:53 +00:00
i.icon.briefcase::before {
2022-01-13 13:00:31 +00:00
content: "\f0b1";
}
2022-08-05 09:25:53 +00:00
i.icon.briefcase.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f469";
}
2022-08-05 09:25:53 +00:00
i.icon.broadcast.tower::before {
2022-01-13 13:00:31 +00:00
content: "\f519";
}
2022-08-05 09:25:53 +00:00
i.icon.broom::before {
2022-01-13 13:00:31 +00:00
content: "\f51a";
}
2022-08-05 09:25:53 +00:00
i.icon.brush::before {
2022-01-13 13:00:31 +00:00
content: "\f55d";
}
2022-08-05 09:25:53 +00:00
i.icon.bug::before {
2022-01-13 13:00:31 +00:00
content: "\f188";
}
2022-08-05 09:25:53 +00:00
i.icon.building::before {
2022-01-13 13:00:31 +00:00
content: "\f1ad";
}
2022-08-05 09:25:53 +00:00
i.icon.bullhorn::before {
2022-01-13 13:00:31 +00:00
content: "\f0a1";
}
2022-08-05 09:25:53 +00:00
i.icon.bullseye::before {
2022-01-13 13:00:31 +00:00
content: "\f140";
}
2022-08-05 09:25:53 +00:00
i.icon.burn::before {
2022-01-13 13:00:31 +00:00
content: "\f46a";
}
2022-08-05 09:25:53 +00:00
i.icon.bus::before {
2022-01-13 13:00:31 +00:00
content: "\f207";
}
2022-08-05 09:25:53 +00:00
i.icon.bus.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f55e";
}
2022-08-05 09:25:53 +00:00
i.icon.business.time::before {
2022-01-13 13:00:31 +00:00
content: "\f64a";
}
2022-08-05 09:25:53 +00:00
i.icon.calculator::before {
2022-01-13 13:00:31 +00:00
content: "\f1ec";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar::before {
2022-01-13 13:00:31 +00:00
content: "\f133";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f073";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.check::before {
2022-01-13 13:00:31 +00:00
content: "\f274";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.day::before {
2022-01-13 13:00:31 +00:00
content: "\f783";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.minus::before {
2022-01-13 13:00:31 +00:00
content: "\f272";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f271";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.times::before {
2022-01-13 13:00:31 +00:00
content: "\f273";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.week::before {
2022-01-13 13:00:31 +00:00
content: "\f784";
}
2022-08-05 09:25:53 +00:00
i.icon.camera::before {
2022-01-13 13:00:31 +00:00
content: "\f030";
}
2022-08-05 09:25:53 +00:00
i.icon.camera.retro::before {
2022-01-13 13:00:31 +00:00
content: "\f083";
}
2022-08-05 09:25:53 +00:00
i.icon.campground::before {
2022-01-13 13:00:31 +00:00
content: "\f6bb";
}
2022-08-05 09:25:53 +00:00
i.icon.candy.cane::before {
2022-01-13 13:00:31 +00:00
content: "\f786";
}
2022-08-05 09:25:53 +00:00
i.icon.cannabis::before {
2022-01-13 13:00:31 +00:00
content: "\f55f";
}
2022-08-05 09:25:53 +00:00
i.icon.capsules::before {
2022-01-13 13:00:31 +00:00
content: "\f46b";
}
2022-08-05 09:25:53 +00:00
i.icon.car::before {
2022-01-13 13:00:31 +00:00
content: "\f1b9";
}
2022-08-05 09:25:53 +00:00
i.icon.car.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f5de";
}
2022-08-05 09:25:53 +00:00
i.icon.car.battery::before {
2022-01-13 13:00:31 +00:00
content: "\f5df";
}
2022-08-05 09:25:53 +00:00
i.icon.car.crash::before {
2022-01-13 13:00:31 +00:00
content: "\f5e1";
}
2022-08-05 09:25:53 +00:00
i.icon.car.side::before {
2022-01-13 13:00:31 +00:00
content: "\f5e4";
}
2022-08-05 09:25:53 +00:00
i.icon.caravan::before {
2022-01-13 13:00:31 +00:00
content: "\f8ff";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.down::before {
2022-01-13 13:00:31 +00:00
content: "\f0d7";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.left::before {
2022-01-13 13:00:31 +00:00
content: "\f0d9";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.right::before {
2022-01-13 13:00:31 +00:00
content: "\f0da";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.down::before {
2022-01-13 13:00:31 +00:00
content: "\f150";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.left::before {
2022-01-13 13:00:31 +00:00
content: "\f191";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.right::before {
2022-01-13 13:00:31 +00:00
content: "\f152";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.up::before {
2022-01-13 13:00:31 +00:00
content: "\f151";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.up::before {
2022-01-13 13:00:31 +00:00
content: "\f0d8";
}
2022-08-05 09:25:53 +00:00
i.icon.carrot::before {
2022-01-13 13:00:31 +00:00
content: "\f787";
}
2022-08-05 09:25:53 +00:00
i.icon.cart.arrow.down::before {
2022-01-13 13:00:31 +00:00
content: "\f218";
}
2022-08-05 09:25:53 +00:00
i.icon.cart.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f217";
}
2022-08-05 09:25:53 +00:00
i.icon.cash.register::before {
2022-01-13 13:00:31 +00:00
content: "\f788";
}
2022-08-05 09:25:53 +00:00
i.icon.cat::before {
2022-01-13 13:00:31 +00:00
content: "\f6be";
}
2022-08-05 09:25:53 +00:00
i.icon.certificate::before {
2022-01-13 13:00:31 +00:00
content: "\f0a3";
}
2022-08-05 09:25:53 +00:00
i.icon.chair::before {
2022-01-13 13:00:31 +00:00
content: "\f6c0";
}
2022-08-05 09:25:53 +00:00
i.icon.chalkboard::before {
2022-01-13 13:00:31 +00:00
content: "\f51b";
}
2022-08-05 09:25:53 +00:00
i.icon.chalkboard.teacher::before {
2022-01-13 13:00:31 +00:00
content: "\f51c";
}
2022-08-05 09:25:53 +00:00
i.icon.charging.station::before {
2022-01-13 13:00:31 +00:00
content: "\f5e7";
}
2022-08-05 09:25:53 +00:00
i.icon.chart.area::before {
2022-01-13 13:00:31 +00:00
content: "\f1fe";
}
2022-08-05 09:25:53 +00:00
i.icon.chart.bar::before {
2022-01-13 13:00:31 +00:00
content: "\f080";
}
2022-10-03 13:12:57 +00:00
i.icon.chart.pie::before {
content: "\f200";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.chartline::before {
2022-01-13 13:00:31 +00:00
content: "\f201";
}
2022-08-05 09:25:53 +00:00
i.icon.check::before {
2022-01-13 13:00:31 +00:00
content: "\f00c";
}
2022-08-05 09:25:53 +00:00
i.icon.check.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f058";
}
2022-08-05 09:25:53 +00:00
i.icon.check.double::before {
2022-01-13 13:00:31 +00:00
content: "\f560";
}
2022-08-05 09:25:53 +00:00
i.icon.check.square::before {
2022-01-13 13:00:31 +00:00
content: "\f14a";
}
2022-08-05 09:25:53 +00:00
i.icon.cheese::before {
2022-01-13 13:00:31 +00:00
content: "\f7ef";
}
2022-08-05 09:25:53 +00:00
i.icon.chess::before {
2022-01-13 13:00:31 +00:00
content: "\f439";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.bishop::before {
2022-01-13 13:00:31 +00:00
content: "\f43a";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.board::before {
2022-01-13 13:00:31 +00:00
content: "\f43c";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.king::before {
2022-01-13 13:00:31 +00:00
content: "\f43f";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.knight::before {
2022-01-13 13:00:31 +00:00
content: "\f441";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.pawn::before {
2022-01-13 13:00:31 +00:00
content: "\f443";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.queen::before {
2022-01-13 13:00:31 +00:00
content: "\f445";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.rook::before {
2022-01-13 13:00:31 +00:00
content: "\f447";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.circle.down::before {
2022-01-13 13:00:31 +00:00
content: "\f13a";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.circle.left::before {
2022-01-13 13:00:31 +00:00
content: "\f137";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.circle.right::before {
2022-01-13 13:00:31 +00:00
content: "\f138";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.circle.up::before {
2022-01-13 13:00:31 +00:00
content: "\f139";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.down::before {
2022-01-13 13:00:31 +00:00
content: "\f078";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.left::before {
2022-01-13 13:00:31 +00:00
content: "\f053";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.right::before {
2022-01-13 13:00:31 +00:00
content: "\f054";
}
2022-08-05 09:25:53 +00:00
i.icon.chevron.up::before {
2022-01-13 13:00:31 +00:00
content: "\f077";
}
2022-08-05 09:25:53 +00:00
i.icon.child::before {
2022-01-13 13:00:31 +00:00
content: "\f1ae";
}
2022-08-05 09:25:53 +00:00
i.icon.church::before {
2022-01-13 13:00:31 +00:00
content: "\f51d";
}
2022-08-05 09:25:53 +00:00
i.icon.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f111";
}
2022-08-05 09:25:53 +00:00
i.icon.circle.notch::before {
2022-01-13 13:00:31 +00:00
content: "\f1ce";
}
2022-08-05 09:25:53 +00:00
i.icon.city::before {
2022-01-13 13:00:31 +00:00
content: "\f64f";
}
2022-08-05 09:25:53 +00:00
i.icon.clinic.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f7f2";
}
2022-08-05 09:25:53 +00:00
i.icon.clipboard::before {
2022-01-13 13:00:31 +00:00
content: "\f328";
}
2022-08-05 09:25:53 +00:00
i.icon.clipboard.check::before {
2022-01-13 13:00:31 +00:00
content: "\f46c";
}
2022-08-05 09:25:53 +00:00
i.icon.clipboard.list::before {
2022-01-13 13:00:31 +00:00
content: "\f46d";
}
2022-08-05 09:25:53 +00:00
i.icon.clock::before {
2022-01-13 13:00:31 +00:00
content: "\f017";
}
2022-08-05 09:25:53 +00:00
i.icon.clone::before {
2022-01-13 13:00:31 +00:00
content: "\f24d";
}
2022-08-05 09:25:53 +00:00
i.icon.closed.captioning::before {
2022-01-13 13:00:31 +00:00
content: "\f20a";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud::before {
2022-01-13 13:00:31 +00:00
content: "\f0c2";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.download.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f381";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.meatball::before {
2022-01-13 13:00:31 +00:00
content: "\f73b";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.moon::before {
2022-01-13 13:00:31 +00:00
content: "\f6c3";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.moon.rain::before {
2022-01-13 13:00:31 +00:00
content: "\f73c";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.rain::before {
2022-01-13 13:00:31 +00:00
content: "\f73d";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.showers.heavy::before {
2022-01-13 13:00:31 +00:00
content: "\f740";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.sun::before {
2022-01-13 13:00:31 +00:00
content: "\f6c4";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.sun.rain::before {
2022-01-13 13:00:31 +00:00
content: "\f743";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.upload.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f382";
}
2022-08-05 09:25:53 +00:00
i.icon.cocktail::before {
2022-01-13 13:00:31 +00:00
content: "\f561";
}
2022-08-05 09:25:53 +00:00
i.icon.code::before {
2022-01-13 13:00:31 +00:00
content: "\f121";
}
2022-08-05 09:25:53 +00:00
i.icon.code.branch::before {
2022-01-13 13:00:31 +00:00
content: "\f126";
}
2022-08-05 09:25:53 +00:00
i.icon.coffee::before {
2022-01-13 13:00:31 +00:00
content: "\f0f4";
}
2022-08-05 09:25:53 +00:00
i.icon.cog::before {
2022-01-13 13:00:31 +00:00
content: "\f013";
}
2022-08-05 09:25:53 +00:00
i.icon.cogs::before {
2022-01-13 13:00:31 +00:00
content: "\f085";
}
2022-08-05 09:25:53 +00:00
i.icon.coins::before {
2022-01-13 13:00:31 +00:00
content: "\f51e";
}
2022-08-05 09:25:53 +00:00
i.icon.columns::before {
2022-01-13 13:00:31 +00:00
content: "\f0db";
}
2022-08-05 09:25:53 +00:00
i.icon.comment::before {
2022-01-13 13:00:31 +00:00
content: "\f075";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f27a";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.dollar::before {
2022-01-13 13:00:31 +00:00
content: "\f651";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.dots::before {
2022-01-13 13:00:31 +00:00
content: "\f4ad";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f7f5";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f4b3";
}
2022-08-05 09:25:53 +00:00
i.icon.comments::before {
2022-01-13 13:00:31 +00:00
content: "\f086";
}
2022-08-05 09:25:53 +00:00
i.icon.comments.dollar::before {
2022-01-13 13:00:31 +00:00
content: "\f653";
}
2022-08-05 09:25:53 +00:00
i.icon.compact.disc::before {
2022-01-13 13:00:31 +00:00
content: "\f51f";
}
2022-08-05 09:25:53 +00:00
i.icon.compass::before {
2022-01-13 13:00:31 +00:00
content: "\f14e";
}
2022-08-05 09:25:53 +00:00
i.icon.compress::before {
2022-01-13 13:00:31 +00:00
content: "\f066";
}
2022-08-05 09:25:53 +00:00
i.icon.compress.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f422";
}
2022-08-05 09:25:53 +00:00
i.icon.compress.arrows.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f78c";
}
2022-08-05 09:25:53 +00:00
i.icon.concierge.bell::before {
2022-01-13 13:00:31 +00:00
content: "\f562";
}
2022-08-05 09:25:53 +00:00
i.icon.cookie::before {
2022-01-13 13:00:31 +00:00
content: "\f563";
}
2022-08-05 09:25:53 +00:00
i.icon.cookie.bite::before {
2022-01-13 13:00:31 +00:00
content: "\f564";
}
2022-08-05 09:25:53 +00:00
i.icon.copy::before {
2022-01-13 13:00:31 +00:00
content: "\f0c5";
}
2022-08-05 09:25:53 +00:00
i.icon.copyright::before {
2022-01-13 13:00:31 +00:00
content: "\f1f9";
}
2022-08-05 09:25:53 +00:00
i.icon.couch::before {
2022-01-13 13:00:31 +00:00
content: "\f4b8";
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card::before {
2022-01-13 13:00:31 +00:00
content: "\f09d";
}
2022-08-05 09:25:53 +00:00
i.icon.crop::before {
2022-01-13 13:00:31 +00:00
content: "\f125";
}
2022-08-05 09:25:53 +00:00
i.icon.crop.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f565";
}
2022-08-05 09:25:53 +00:00
i.icon.cross::before {
2022-01-13 13:00:31 +00:00
content: "\f654";
}
2022-08-05 09:25:53 +00:00
i.icon.crosshairs::before {
2022-01-13 13:00:31 +00:00
content: "\f05b";
}
2022-08-05 09:25:53 +00:00
i.icon.crow::before {
2022-01-13 13:00:31 +00:00
content: "\f520";
}
2022-08-05 09:25:53 +00:00
i.icon.crown::before {
2022-01-13 13:00:31 +00:00
content: "\f521";
}
2022-08-05 09:25:53 +00:00
i.icon.crutch::before {
2022-01-13 13:00:31 +00:00
content: "\f7f7";
}
2022-08-05 09:25:53 +00:00
i.icon.cube::before {
2022-01-13 13:00:31 +00:00
content: "\f1b2";
}
2022-08-05 09:25:53 +00:00
i.icon.cubes::before {
2022-01-13 13:00:31 +00:00
content: "\f1b3";
}
2022-08-05 09:25:53 +00:00
i.icon.cut::before {
2022-01-13 13:00:31 +00:00
content: "\f0c4";
}
2022-08-05 09:25:53 +00:00
i.icon.database::before {
2022-01-13 13:00:31 +00:00
content: "\f1c0";
}
2022-08-05 09:25:53 +00:00
i.icon.deaf::before {
2022-01-13 13:00:31 +00:00
content: "\f2a4";
}
2022-08-05 09:25:53 +00:00
i.icon.democrat::before {
2022-01-13 13:00:31 +00:00
content: "\f747";
}
2022-08-05 09:25:53 +00:00
i.icon.desktop::before {
2022-01-13 13:00:31 +00:00
content: "\f108";
}
2022-08-05 09:25:53 +00:00
i.icon.dharmachakra::before {
2022-01-13 13:00:31 +00:00
content: "\f655";
}
2022-08-05 09:25:53 +00:00
i.icon.diagnoses::before {
2022-01-13 13:00:31 +00:00
content: "\f470";
}
2022-08-05 09:25:53 +00:00
i.icon.dice::before {
2022-01-13 13:00:31 +00:00
content: "\f522";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.d20::before {
2022-01-13 13:00:31 +00:00
content: "\f6cf";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.d6::before {
2022-01-13 13:00:31 +00:00
content: "\f6d1";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.five::before {
2022-01-13 13:00:31 +00:00
content: "\f523";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.four::before {
2022-01-13 13:00:31 +00:00
content: "\f524";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.one::before {
2022-01-13 13:00:31 +00:00
content: "\f525";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.six::before {
2022-01-13 13:00:31 +00:00
content: "\f526";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.three::before {
2022-01-13 13:00:31 +00:00
content: "\f527";
}
2022-08-05 09:25:53 +00:00
i.icon.dice.two::before {
2022-01-13 13:00:31 +00:00
content: "\f528";
}
2022-08-05 09:25:53 +00:00
i.icon.digital.tachograph::before {
2022-01-13 13:00:31 +00:00
content: "\f566";
}
2022-08-05 09:25:53 +00:00
i.icon.directions::before {
2022-01-13 13:00:31 +00:00
content: "\f5eb";
}
2022-08-05 09:25:53 +00:00
i.icon.disease::before {
2022-01-13 13:00:31 +00:00
content: "\f7fa";
}
2022-08-05 09:25:53 +00:00
i.icon.divide::before {
2022-01-13 13:00:31 +00:00
content: "\f529";
}
2022-08-05 09:25:53 +00:00
i.icon.dizzy::before {
2022-01-13 13:00:31 +00:00
content: "\f567";
}
2022-08-05 09:25:53 +00:00
i.icon.dna::before {
2022-01-13 13:00:31 +00:00
content: "\f471";
}
2022-08-05 09:25:53 +00:00
i.icon.dog::before {
2022-01-13 13:00:31 +00:00
content: "\f6d3";
}
2022-08-05 09:25:53 +00:00
i.icon.dollar.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f155";
}
2022-08-05 09:25:53 +00:00
i.icon.dolly::before {
2022-01-13 13:00:31 +00:00
content: "\f472";
}
2022-08-05 09:25:53 +00:00
i.icon.dolly.flatbed::before {
2022-01-13 13:00:31 +00:00
content: "\f474";
}
2022-08-05 09:25:53 +00:00
i.icon.donate::before {
2022-01-13 13:00:31 +00:00
content: "\f4b9";
}
2022-08-05 09:25:53 +00:00
i.icon.door.closed::before {
2022-01-13 13:00:31 +00:00
content: "\f52a";
}
2022-08-05 09:25:53 +00:00
i.icon.door.open::before {
2022-01-13 13:00:31 +00:00
content: "\f52b";
}
2022-08-05 09:25:53 +00:00
i.icon.dot.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f192";
}
2022-08-05 09:25:53 +00:00
i.icon.dove::before {
2022-01-13 13:00:31 +00:00
content: "\f4ba";
}
2022-08-05 09:25:53 +00:00
i.icon.download::before {
2022-01-13 13:00:31 +00:00
content: "\f019";
}
2022-08-05 09:25:53 +00:00
i.icon.drafting.compass::before {
2022-01-13 13:00:31 +00:00
content: "\f568";
}
2022-08-05 09:25:53 +00:00
i.icon.dragon::before {
2022-01-13 13:00:31 +00:00
content: "\f6d5";
}
2022-08-05 09:25:53 +00:00
i.icon.draw.polygon::before {
2022-01-13 13:00:31 +00:00
content: "\f5ee";
}
2022-08-05 09:25:53 +00:00
i.icon.drum::before {
2022-01-13 13:00:31 +00:00
content: "\f569";
}
2022-08-05 09:25:53 +00:00
i.icon.drum.steelpan::before {
2022-01-13 13:00:31 +00:00
content: "\f56a";
}
2022-08-05 09:25:53 +00:00
i.icon.drumstick.bite::before {
2022-01-13 13:00:31 +00:00
content: "\f6d7";
}
2022-08-05 09:25:53 +00:00
i.icon.dumbbell::before {
2022-01-13 13:00:31 +00:00
content: "\f44b";
}
2022-08-05 09:25:53 +00:00
i.icon.dumpster::before {
2022-01-13 13:00:31 +00:00
content: "\f793";
}
2022-08-05 09:25:53 +00:00
i.icon.dumpster.fire::before {
2022-01-13 13:00:31 +00:00
content: "\f794";
}
2022-08-05 09:25:53 +00:00
i.icon.dungeon::before {
2022-01-13 13:00:31 +00:00
content: "\f6d9";
}
2022-08-05 09:25:53 +00:00
i.icon.edit::before {
2022-01-13 13:00:31 +00:00
content: "\f044";
}
2022-08-05 09:25:53 +00:00
i.icon.egg::before {
2022-01-13 13:00:31 +00:00
content: "\f7fb";
}
2022-08-05 09:25:53 +00:00
i.icon.eject::before {
2022-01-13 13:00:31 +00:00
content: "\f052";
}
2022-08-05 09:25:53 +00:00
i.icon.ellipsis.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f141";
}
2022-08-05 09:25:53 +00:00
i.icon.ellipsis.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f142";
}
2022-08-05 09:25:53 +00:00
i.icon.envelope::before {
2022-01-13 13:00:31 +00:00
content: "\f0e0";
}
2022-08-05 09:25:53 +00:00
i.icon.envelope.open::before {
2022-01-13 13:00:31 +00:00
content: "\f2b6";
}
2022-08-05 09:25:53 +00:00
i.icon.envelope.open.text::before {
2022-01-13 13:00:31 +00:00
content: "\f658";
}
2022-08-05 09:25:53 +00:00
i.icon.envelope.square::before {
2022-01-13 13:00:31 +00:00
content: "\f199";
}
2022-08-05 09:25:53 +00:00
i.icon.equals::before {
2022-01-13 13:00:31 +00:00
content: "\f52c";
}
2022-08-05 09:25:53 +00:00
i.icon.eraser::before {
2022-01-13 13:00:31 +00:00
content: "\f12d";
}
2022-08-05 09:25:53 +00:00
i.icon.ethernet::before {
2022-01-13 13:00:31 +00:00
content: "\f796";
}
2022-08-05 09:25:53 +00:00
i.icon.euro.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f153";
}
2022-08-05 09:25:53 +00:00
i.icon.exchange.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f362";
}
2022-08-05 09:25:53 +00:00
i.icon.exclamation::before {
2022-01-13 13:00:31 +00:00
content: "\f12a";
}
2022-08-05 09:25:53 +00:00
i.icon.exclamation.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f06a";
}
2022-08-05 09:25:53 +00:00
i.icon.exclamation.triangle::before {
2022-01-13 13:00:31 +00:00
content: "\f071";
}
2022-08-05 09:25:53 +00:00
i.icon.expand::before {
2022-01-13 13:00:31 +00:00
content: "\f065";
}
2022-08-05 09:25:53 +00:00
i.icon.expand.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f424";
}
2022-08-05 09:25:53 +00:00
i.icon.expand.arrows.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f31e";
}
2022-08-05 09:25:53 +00:00
i.icon.external.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f35d";
}
2022-08-05 09:25:53 +00:00
i.icon.external.link.square.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f360";
}
2022-08-05 09:25:53 +00:00
i.icon.eye::before {
2022-01-13 13:00:31 +00:00
content: "\f06e";
}
2022-08-05 09:25:53 +00:00
i.icon.eye.dropper::before {
2022-01-13 13:00:31 +00:00
content: "\f1fb";
}
2022-08-05 09:25:53 +00:00
i.icon.eye.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f070";
}
2022-08-05 09:25:53 +00:00
i.icon.fan::before {
2022-01-13 13:00:31 +00:00
content: "\f863";
}
2022-08-05 09:25:53 +00:00
i.icon.fast.backward::before {
2022-01-13 13:00:31 +00:00
content: "\f049";
}
2022-08-05 09:25:53 +00:00
i.icon.fast.forward::before {
2022-01-13 13:00:31 +00:00
content: "\f050";
}
2022-08-05 09:25:53 +00:00
i.icon.faucet::before {
content: "\e005";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.fax::before {
2022-01-13 13:00:31 +00:00
content: "\f1ac";
}
2022-08-05 09:25:53 +00:00
i.icon.feather::before {
2022-01-13 13:00:31 +00:00
content: "\f52d";
}
2022-08-05 09:25:53 +00:00
i.icon.feather.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f56b";
}
2022-08-05 09:25:53 +00:00
i.icon.female::before {
2022-01-13 13:00:31 +00:00
content: "\f182";
}
2022-08-05 09:25:53 +00:00
i.icon.fighter.jet::before {
2022-01-13 13:00:31 +00:00
content: "\f0fb";
}
2022-08-05 09:25:53 +00:00
i.icon.file::before {
2022-01-13 13:00:31 +00:00
content: "\f15b";
}
2022-08-05 09:25:53 +00:00
i.icon.file.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f15c";
}
2022-08-05 09:25:53 +00:00
i.icon.file.archive::before {
2022-01-13 13:00:31 +00:00
content: "\f1c6";
}
2022-08-05 09:25:53 +00:00
i.icon.file.audio::before {
2022-01-13 13:00:31 +00:00
content: "\f1c7";
}
2022-08-05 09:25:53 +00:00
i.icon.file.code::before {
2022-01-13 13:00:31 +00:00
content: "\f1c9";
}
2022-08-05 09:25:53 +00:00
i.icon.file.contract::before {
2022-01-13 13:00:31 +00:00
content: "\f56c";
}
2022-08-05 09:25:53 +00:00
i.icon.file.csv::before {
2022-01-13 13:00:31 +00:00
content: "\f6dd";
}
2022-08-05 09:25:53 +00:00
i.icon.file.download::before {
2022-01-13 13:00:31 +00:00
content: "\f56d";
}
2022-08-05 09:25:53 +00:00
i.icon.file.excel::before {
2022-01-13 13:00:31 +00:00
content: "\f1c3";
}
2022-08-05 09:25:53 +00:00
i.icon.file.export::before {
2022-01-13 13:00:31 +00:00
content: "\f56e";
}
2022-08-05 09:25:53 +00:00
i.icon.file.image::before {
2022-01-13 13:00:31 +00:00
content: "\f1c5";
}
2022-08-05 09:25:53 +00:00
i.icon.file.import::before {
2022-01-13 13:00:31 +00:00
content: "\f56f";
}
2022-08-05 09:25:53 +00:00
i.icon.file.invoice::before {
2022-01-13 13:00:31 +00:00
content: "\f570";
}
2022-08-05 09:25:53 +00:00
i.icon.file.invoice.dollar::before {
2022-01-13 13:00:31 +00:00
content: "\f571";
}
2022-08-05 09:25:53 +00:00
i.icon.file.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f477";
}
2022-08-05 09:25:53 +00:00
i.icon.file.medical.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f478";
}
2022-08-05 09:25:53 +00:00
i.icon.file.pdf::before {
2022-01-13 13:00:31 +00:00
content: "\f1c1";
}
2022-08-05 09:25:53 +00:00
i.icon.file.powerpoint::before {
2022-01-13 13:00:31 +00:00
content: "\f1c4";
}
2022-08-05 09:25:53 +00:00
i.icon.file.prescription::before {
2022-01-13 13:00:31 +00:00
content: "\f572";
}
2022-08-05 09:25:53 +00:00
i.icon.file.signature::before {
2022-01-13 13:00:31 +00:00
content: "\f573";
}
2022-08-05 09:25:53 +00:00
i.icon.file.upload::before {
2022-01-13 13:00:31 +00:00
content: "\f574";
}
2022-08-05 09:25:53 +00:00
i.icon.file.video::before {
2022-01-13 13:00:31 +00:00
content: "\f1c8";
}
2022-08-05 09:25:53 +00:00
i.icon.file.word::before {
2022-01-13 13:00:31 +00:00
content: "\f1c2";
}
2022-08-05 09:25:53 +00:00
i.icon.fill::before {
2022-01-13 13:00:31 +00:00
content: "\f575";
}
2022-08-05 09:25:53 +00:00
i.icon.fill.drip::before {
2022-01-13 13:00:31 +00:00
content: "\f576";
}
2022-08-05 09:25:53 +00:00
i.icon.film::before {
2022-01-13 13:00:31 +00:00
content: "\f008";
}
2022-08-05 09:25:53 +00:00
i.icon.filter::before {
2022-01-13 13:00:31 +00:00
content: "\f0b0";
}
2022-08-05 09:25:53 +00:00
i.icon.fingerprint::before {
2022-01-13 13:00:31 +00:00
content: "\f577";
}
2022-08-05 09:25:53 +00:00
i.icon.fire::before {
2022-01-13 13:00:31 +00:00
content: "\f06d";
}
2022-08-05 09:25:53 +00:00
i.icon.fire.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f7e4";
}
2022-08-05 09:25:53 +00:00
i.icon.fire.extinguisher::before {
2022-01-13 13:00:31 +00:00
content: "\f134";
}
2022-08-05 09:25:53 +00:00
i.icon.first.aid::before {
2022-01-13 13:00:31 +00:00
content: "\f479";
}
2022-08-05 09:25:53 +00:00
i.icon.fish::before {
2022-01-13 13:00:31 +00:00
content: "\f578";
}
2022-08-05 09:25:53 +00:00
i.icon.fist.raised::before {
2022-01-13 13:00:31 +00:00
content: "\f6de";
}
2022-08-05 09:25:53 +00:00
i.icon.flag::before {
2022-01-13 13:00:31 +00:00
content: "\f024";
}
2022-08-05 09:25:53 +00:00
i.icon.flag.checkered::before {
2022-01-13 13:00:31 +00:00
content: "\f11e";
}
2022-08-05 09:25:53 +00:00
i.icon.flag.usa::before {
2022-01-13 13:00:31 +00:00
content: "\f74d";
}
2022-08-05 09:25:53 +00:00
i.icon.flask::before {
2022-01-13 13:00:31 +00:00
content: "\f0c3";
}
2022-08-05 09:25:53 +00:00
i.icon.flushed::before {
2022-01-13 13:00:31 +00:00
content: "\f579";
}
2022-08-05 09:25:53 +00:00
i.icon.folder::before {
2022-01-13 13:00:31 +00:00
content: "\f07b";
}
2022-08-05 09:25:53 +00:00
i.icon.folder.minus::before {
2022-01-13 13:00:31 +00:00
content: "\f65d";
}
2022-08-05 09:25:53 +00:00
i.icon.folder.open::before {
2022-01-13 13:00:31 +00:00
content: "\f07c";
}
2022-08-05 09:25:53 +00:00
i.icon.folder.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f65e";
}
2022-08-05 09:25:53 +00:00
i.icon.font::before {
2022-01-13 13:00:31 +00:00
content: "\f031";
}
2022-08-05 09:25:53 +00:00
i.icon.football.ball::before {
2022-01-13 13:00:31 +00:00
content: "\f44e";
}
2022-08-05 09:25:53 +00:00
i.icon.forward::before {
2022-01-13 13:00:31 +00:00
content: "\f04e";
}
2022-08-05 09:25:53 +00:00
i.icon.frog::before {
2022-01-13 13:00:31 +00:00
content: "\f52e";
}
2022-08-05 09:25:53 +00:00
i.icon.frown::before {
2022-01-13 13:00:31 +00:00
content: "\f119";
}
2022-08-05 09:25:53 +00:00
i.icon.frown.open::before {
2022-01-13 13:00:31 +00:00
content: "\f57a";
}
2022-08-05 09:25:53 +00:00
i.icon.fruit-apple::before {
2022-01-13 13:00:31 +00:00
content: "\f5d1";
}
2022-08-05 09:25:53 +00:00
i.icon.funnel.dollar::before {
2022-01-13 13:00:31 +00:00
content: "\f662";
}
2022-08-05 09:25:53 +00:00
i.icon.futbol::before {
2022-01-13 13:00:31 +00:00
content: "\f1e3";
}
2022-08-05 09:25:53 +00:00
i.icon.gamepad::before {
2022-01-13 13:00:31 +00:00
content: "\f11b";
}
2022-08-05 09:25:53 +00:00
i.icon.gas.pump::before {
2022-01-13 13:00:31 +00:00
content: "\f52f";
}
2022-08-05 09:25:53 +00:00
i.icon.gavel::before {
2022-01-13 13:00:31 +00:00
content: "\f0e3";
}
2022-08-05 09:25:53 +00:00
i.icon.gem::before {
2022-01-13 13:00:31 +00:00
content: "\f3a5";
}
2022-08-05 09:25:53 +00:00
i.icon.genderless::before {
2022-01-13 13:00:31 +00:00
content: "\f22d";
}
2022-08-05 09:25:53 +00:00
i.icon.ghost::before {
2022-01-13 13:00:31 +00:00
content: "\f6e2";
}
2022-08-05 09:25:53 +00:00
i.icon.gift::before {
2022-01-13 13:00:31 +00:00
content: "\f06b";
}
2022-08-05 09:25:53 +00:00
i.icon.gifts::before {
2022-01-13 13:00:31 +00:00
content: "\f79c";
}
2022-08-05 09:25:53 +00:00
i.icon.glass.cheers::before {
2022-01-13 13:00:31 +00:00
content: "\f79f";
}
2022-08-05 09:25:53 +00:00
i.icon.glass.martini::before {
2022-01-13 13:00:31 +00:00
content: "\f000";
}
2022-08-05 09:25:53 +00:00
i.icon.glass.martini.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f57b";
}
2022-08-05 09:25:53 +00:00
i.icon.glass.whiskey::before {
2022-01-13 13:00:31 +00:00
content: "\f7a0";
}
2022-08-05 09:25:53 +00:00
i.icon.glasses::before {
2022-01-13 13:00:31 +00:00
content: "\f530";
}
2022-08-05 09:25:53 +00:00
i.icon.globe::before {
2022-01-13 13:00:31 +00:00
content: "\f0ac";
}
2022-08-05 09:25:53 +00:00
i.icon.globe.africa::before {
2022-01-13 13:00:31 +00:00
content: "\f57c";
}
2022-08-05 09:25:53 +00:00
i.icon.globe.americas::before {
2022-01-13 13:00:31 +00:00
content: "\f57d";
}
2022-08-05 09:25:53 +00:00
i.icon.globe.asia::before {
2022-01-13 13:00:31 +00:00
content: "\f57e";
}
2022-08-05 09:25:53 +00:00
i.icon.globe.europe::before {
2022-01-13 13:00:31 +00:00
content: "\f7a2";
}
2022-08-05 09:25:53 +00:00
i.icon.golf.ball::before {
2022-01-13 13:00:31 +00:00
content: "\f450";
}
2022-08-05 09:25:53 +00:00
i.icon.gopuram::before {
2022-01-13 13:00:31 +00:00
content: "\f664";
}
2022-08-05 09:25:53 +00:00
i.icon.graduation.cap::before {
2022-01-13 13:00:31 +00:00
content: "\f19d";
}
2022-08-05 09:25:53 +00:00
i.icon.greater.than::before {
2022-01-13 13:00:31 +00:00
content: "\f531";
}
2022-08-05 09:25:53 +00:00
i.icon.greater.than.equal::before {
2022-01-13 13:00:31 +00:00
content: "\f532";
}
2022-08-05 09:25:53 +00:00
i.icon.grimace::before {
2022-01-13 13:00:31 +00:00
content: "\f57f";
}
2022-08-05 09:25:53 +00:00
i.icon.grin::before {
2022-01-13 13:00:31 +00:00
content: "\f580";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f581";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.beam::before {
2022-01-13 13:00:31 +00:00
content: "\f582";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.beam.sweat::before {
2022-01-13 13:00:31 +00:00
content: "\f583";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.hearts::before {
2022-01-13 13:00:31 +00:00
content: "\f584";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.squint::before {
2022-01-13 13:00:31 +00:00
content: "\f585";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.squint.tears::before {
2022-01-13 13:00:31 +00:00
content: "\f586";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.stars::before {
2022-01-13 13:00:31 +00:00
content: "\f587";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tears::before {
2022-01-13 13:00:31 +00:00
content: "\f588";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tongue::before {
2022-01-13 13:00:31 +00:00
content: "\f589";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tongue.squint::before {
2022-01-13 13:00:31 +00:00
content: "\f58a";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tongue.wink::before {
2022-01-13 13:00:31 +00:00
content: "\f58b";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.wink::before {
2022-01-13 13:00:31 +00:00
content: "\f58c";
}
2022-08-05 09:25:53 +00:00
i.icon.grip.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f58d";
}
2022-08-05 09:25:53 +00:00
i.icon.grip.lines::before {
2022-01-13 13:00:31 +00:00
content: "\f7a4";
}
2022-08-05 09:25:53 +00:00
i.icon.grip.lines.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f7a5";
}
2022-08-05 09:25:53 +00:00
i.icon.grip.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f58e";
}
2022-08-05 09:25:53 +00:00
i.icon.guitar::before {
2022-01-13 13:00:31 +00:00
content: "\f7a6";
}
2022-08-05 09:25:53 +00:00
i.icon.h.square::before {
2022-01-13 13:00:31 +00:00
content: "\f0fd";
}
2022-08-05 09:25:53 +00:00
i.icon.hamburger::before {
2022-01-13 13:00:31 +00:00
content: "\f805";
}
2022-08-05 09:25:53 +00:00
i.icon.hammer::before {
2022-01-13 13:00:31 +00:00
content: "\f6e3";
}
2022-08-05 09:25:53 +00:00
i.icon.hamsa::before {
2022-01-13 13:00:31 +00:00
content: "\f665";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.holding::before {
2022-01-13 13:00:31 +00:00
content: "\f4bd";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.holding.heart::before {
2022-01-13 13:00:31 +00:00
content: "\f4be";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.holding.medical::before {
content: "\e05c";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.hand.holding.usd::before {
2022-01-13 13:00:31 +00:00
content: "\f4c0";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.holding.water::before {
2022-01-13 13:00:31 +00:00
content: "\f4c1";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.lizard::before {
2022-01-13 13:00:31 +00:00
content: "\f258";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.middle.finger::before {
2022-01-13 13:00:31 +00:00
content: "\f806";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.paper::before {
2022-01-13 13:00:31 +00:00
content: "\f256";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.peace::before {
2022-01-13 13:00:31 +00:00
content: "\f25b";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.down::before {
2022-01-13 13:00:31 +00:00
content: "\f0a7";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.left::before {
2022-01-13 13:00:31 +00:00
content: "\f0a5";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.right::before {
2022-01-13 13:00:31 +00:00
content: "\f0a4";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.up::before {
2022-01-13 13:00:31 +00:00
content: "\f0a6";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.pointer::before {
2022-01-13 13:00:31 +00:00
content: "\f25a";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.rock::before {
2022-01-13 13:00:31 +00:00
content: "\f255";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.scissors::before {
2022-01-13 13:00:31 +00:00
content: "\f257";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.sparkles::before {
content: "\e05d";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.hand.spock::before {
2022-01-13 13:00:31 +00:00
content: "\f259";
}
2022-08-05 09:25:53 +00:00
i.icon.hands::before {
2022-01-13 13:00:31 +00:00
content: "\f4c2";
}
2022-08-05 09:25:53 +00:00
i.icon.hands.helping::before {
2022-01-13 13:00:31 +00:00
content: "\f4c4";
}
2022-08-05 09:25:53 +00:00
i.icon.hands.wash::before {
content: "\e05e";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.handshake::before {
2022-01-13 13:00:31 +00:00
content: "\f2b5";
}
2022-08-05 09:25:53 +00:00
i.icon.handshake.alternate.slash::before {
content: "\e05f";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.handshake.slash::before {
content: "\e060";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.hanukiah::before {
2022-01-13 13:00:31 +00:00
content: "\f6e6";
}
2022-08-05 09:25:53 +00:00
i.icon.hard.hat::before {
2022-01-13 13:00:31 +00:00
content: "\f807";
}
2022-08-05 09:25:53 +00:00
i.icon.hashtag::before {
2022-01-13 13:00:31 +00:00
content: "\f292";
}
2022-08-05 09:25:53 +00:00
i.icon.hat.cowboy::before {
2022-01-13 13:00:31 +00:00
content: "\f8c0";
}
2022-08-05 09:25:53 +00:00
i.icon.hat.cowboy.side::before {
2022-01-13 13:00:31 +00:00
content: "\f8c1";
}
2022-08-05 09:25:53 +00:00
i.icon.hat.wizard::before {
2022-01-13 13:00:31 +00:00
content: "\f6e8";
}
2022-08-05 09:25:53 +00:00
i.icon.hdd::before {
2022-01-13 13:00:31 +00:00
content: "\f0a0";
}
2022-08-05 09:25:53 +00:00
i.icon.head.side.cough::before {
content: "\e061";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.head.side.cough.slash::before {
content: "\e062";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.head.side.mask::before {
content: "\e063";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.head.side.virus::before {
content: "\e064";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.heading::before {
2022-01-13 13:00:31 +00:00
content: "\f1dc";
}
2022-08-05 09:25:53 +00:00
i.icon.headphones::before {
2022-01-13 13:00:31 +00:00
content: "\f025";
}
2022-08-05 09:25:53 +00:00
i.icon.headphones.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f58f";
}
2022-08-05 09:25:53 +00:00
i.icon.headset::before {
2022-01-13 13:00:31 +00:00
content: "\f590";
}
2022-08-05 09:25:53 +00:00
i.icon.heart::before {
2022-01-13 13:00:31 +00:00
content: "\f004";
}
2022-08-05 09:25:53 +00:00
i.icon.heart.broken::before {
2022-01-13 13:00:31 +00:00
content: "\f7a9";
}
2022-08-05 09:25:53 +00:00
i.icon.heartbeat::before {
2022-01-13 13:00:31 +00:00
content: "\f21e";
}
2022-08-05 09:25:53 +00:00
i.icon.helicopter::before {
2022-01-13 13:00:31 +00:00
content: "\f533";
}
2022-08-05 09:25:53 +00:00
i.icon.highlighter::before {
2022-01-13 13:00:31 +00:00
content: "\f591";
}
2022-08-05 09:25:53 +00:00
i.icon.hiking::before {
2022-01-13 13:00:31 +00:00
content: "\f6ec";
}
2022-08-05 09:25:53 +00:00
i.icon.hippo::before {
2022-01-13 13:00:31 +00:00
content: "\f6ed";
}
2022-08-05 09:25:53 +00:00
i.icon.history::before {
2022-01-13 13:00:31 +00:00
content: "\f1da";
}
2022-08-05 09:25:53 +00:00
i.icon.hockey.puck::before {
2022-01-13 13:00:31 +00:00
content: "\f453";
}
2022-08-05 09:25:53 +00:00
i.icon.holly.berry::before {
2022-01-13 13:00:31 +00:00
content: "\f7aa";
}
2022-08-05 09:25:53 +00:00
i.icon.home::before {
2022-01-13 13:00:31 +00:00
content: "\f015";
}
2022-08-05 09:25:53 +00:00
i.icon.horse::before {
2022-01-13 13:00:31 +00:00
content: "\f6f0";
}
2022-08-05 09:25:53 +00:00
i.icon.horse.head::before {
2022-01-13 13:00:31 +00:00
content: "\f7ab";
}
2022-08-05 09:25:53 +00:00
i.icon.hospital::before {
2022-01-13 13:00:31 +00:00
content: "\f0f8";
}
2022-08-05 09:25:53 +00:00
i.icon.hospital.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f47d";
}
2022-08-05 09:25:53 +00:00
i.icon.hospital.symbol::before {
2022-01-13 13:00:31 +00:00
content: "\f47e";
}
2022-08-05 09:25:53 +00:00
i.icon.hospital.user::before {
2022-01-13 13:00:31 +00:00
content: "\f80d";
}
2022-08-05 09:25:53 +00:00
i.icon.hot.tub::before {
2022-01-13 13:00:31 +00:00
content: "\f593";
}
2022-08-05 09:25:53 +00:00
i.icon.hotdog::before {
2022-01-13 13:00:31 +00:00
content: "\f80f";
}
2022-08-05 09:25:53 +00:00
i.icon.hotel::before {
2022-01-13 13:00:31 +00:00
content: "\f594";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass::before {
2022-01-13 13:00:31 +00:00
content: "\f254";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.end::before {
2022-01-13 13:00:31 +00:00
content: "\f253";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.half::before {
2022-01-13 13:00:31 +00:00
content: "\f252";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.start::before {
2022-01-13 13:00:31 +00:00
content: "\f251";
}
2022-08-05 09:25:53 +00:00
i.icon.house.damage::before {
2022-01-13 13:00:31 +00:00
content: "\f6f1";
}
2022-08-05 09:25:53 +00:00
i.icon.house.user::before {
content: "\e065";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.hryvnia::before {
2022-01-13 13:00:31 +00:00
content: "\f6f2";
}
2022-08-05 09:25:53 +00:00
i.icon.i.cursor::before {
2022-01-13 13:00:31 +00:00
content: "\f246";
}
2022-08-05 09:25:53 +00:00
i.icon.ice.cream::before {
2022-01-13 13:00:31 +00:00
content: "\f810";
}
2022-08-05 09:25:53 +00:00
i.icon.icicles::before {
2022-01-13 13:00:31 +00:00
content: "\f7ad";
}
2022-08-05 09:25:53 +00:00
i.icon.icons::before {
2022-01-13 13:00:31 +00:00
content: "\f86d";
}
2022-08-05 09:25:53 +00:00
i.icon.id.badge::before {
2022-01-13 13:00:31 +00:00
content: "\f2c1";
}
2022-08-05 09:25:53 +00:00
i.icon.id.card::before {
2022-01-13 13:00:31 +00:00
content: "\f2c2";
}
2022-08-05 09:25:53 +00:00
i.icon.id.card.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f47f";
}
2022-08-05 09:25:53 +00:00
i.icon.igloo::before {
2022-01-13 13:00:31 +00:00
content: "\f7ae";
}
2022-08-05 09:25:53 +00:00
i.icon.image::before {
2022-01-13 13:00:31 +00:00
content: "\f03e";
}
2022-08-05 09:25:53 +00:00
i.icon.images::before {
2022-01-13 13:00:31 +00:00
content: "\f302";
}
2022-08-05 09:25:53 +00:00
i.icon.inbox::before {
2022-01-13 13:00:31 +00:00
content: "\f01c";
}
2022-08-05 09:25:53 +00:00
i.icon.indent::before {
2022-01-13 13:00:31 +00:00
content: "\f03c";
}
2022-08-05 09:25:53 +00:00
i.icon.industry::before {
2022-01-13 13:00:31 +00:00
content: "\f275";
}
2022-08-05 09:25:53 +00:00
i.icon.infinity::before {
2022-01-13 13:00:31 +00:00
content: "\f534";
}
2022-08-05 09:25:53 +00:00
i.icon.info::before {
2022-01-13 13:00:31 +00:00
content: "\f129";
}
2022-08-05 09:25:53 +00:00
i.icon.info.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f05a";
}
2022-08-05 09:25:53 +00:00
i.icon.italic::before {
2022-01-13 13:00:31 +00:00
content: "\f033";
}
2022-08-05 09:25:53 +00:00
i.icon.jedi::before {
2022-01-13 13:00:31 +00:00
content: "\f669";
}
2022-08-05 09:25:53 +00:00
i.icon.joint::before {
2022-01-13 13:00:31 +00:00
content: "\f595";
}
2022-08-05 09:25:53 +00:00
i.icon.journal.whills::before {
2022-01-13 13:00:31 +00:00
content: "\f66a";
}
2022-08-05 09:25:53 +00:00
i.icon.kaaba::before {
2022-01-13 13:00:31 +00:00
content: "\f66b";
}
2022-08-05 09:25:53 +00:00
i.icon.key::before {
2022-01-13 13:00:31 +00:00
content: "\f084";
}
2022-08-05 09:25:53 +00:00
i.icon.keyboard::before {
2022-01-13 13:00:31 +00:00
content: "\f11c";
}
2022-08-05 09:25:53 +00:00
i.icon.khanda::before {
2022-01-13 13:00:31 +00:00
content: "\f66d";
}
2022-08-05 09:25:53 +00:00
i.icon.kiss::before {
2022-01-13 13:00:31 +00:00
content: "\f596";
}
2022-08-05 09:25:53 +00:00
i.icon.kiss.beam::before {
2022-01-13 13:00:31 +00:00
content: "\f597";
}
2022-08-05 09:25:53 +00:00
i.icon.kiss.wink.heart::before {
2022-01-13 13:00:31 +00:00
content: "\f598";
}
2022-08-05 09:25:53 +00:00
i.icon.kiwi.bird::before {
2022-01-13 13:00:31 +00:00
content: "\f535";
}
2022-08-05 09:25:53 +00:00
i.icon.landmark::before {
2022-01-13 13:00:31 +00:00
content: "\f66f";
}
2022-08-05 09:25:53 +00:00
i.icon.language::before {
2022-01-13 13:00:31 +00:00
content: "\f1ab";
}
2022-08-05 09:25:53 +00:00
i.icon.laptop::before {
2022-01-13 13:00:31 +00:00
content: "\f109";
}
2022-08-05 09:25:53 +00:00
i.icon.laptop.code::before {
2022-01-13 13:00:31 +00:00
content: "\f5fc";
}
2022-08-05 09:25:53 +00:00
i.icon.laptop.house::before {
content: "\e066";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.laptop.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f812";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh::before {
2022-01-13 13:00:31 +00:00
content: "\f599";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.beam::before {
2022-01-13 13:00:31 +00:00
content: "\f59a";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.squint::before {
2022-01-13 13:00:31 +00:00
content: "\f59b";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.wink::before {
2022-01-13 13:00:31 +00:00
content: "\f59c";
}
2022-08-05 09:25:53 +00:00
i.icon.layer.group::before {
2022-01-13 13:00:31 +00:00
content: "\f5fd";
}
2022-08-05 09:25:53 +00:00
i.icon.leaf::before {
2022-01-13 13:00:31 +00:00
content: "\f06c";
}
2022-08-05 09:25:53 +00:00
i.icon.lemon::before {
2022-01-13 13:00:31 +00:00
content: "\f094";
}
2022-08-05 09:25:53 +00:00
i.icon.less.than::before {
2022-01-13 13:00:31 +00:00
content: "\f536";
}
2022-08-05 09:25:53 +00:00
i.icon.less.than.equal::before {
2022-01-13 13:00:31 +00:00
content: "\f537";
}
2022-08-05 09:25:53 +00:00
i.icon.level.down.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3be";
}
2022-08-05 09:25:53 +00:00
i.icon.level.up.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3bf";
}
2022-08-05 09:25:53 +00:00
i.icon.life.ring::before {
2022-01-13 13:00:31 +00:00
content: "\f1cd";
}
2022-08-05 09:25:53 +00:00
i.icon.lightbulb::before {
2022-01-13 13:00:31 +00:00
content: "\f0eb";
}
2022-08-05 09:25:53 +00:00
i.icon.linkify::before {
2022-01-13 13:00:31 +00:00
content: "\f0c1";
}
2022-08-05 09:25:53 +00:00
i.icon.lira.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f195";
}
2022-08-05 09:25:53 +00:00
i.icon.list::before {
2022-01-13 13:00:31 +00:00
content: "\f03a";
}
2022-08-05 09:25:53 +00:00
i.icon.list.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f022";
}
2022-08-05 09:25:53 +00:00
i.icon.list.ol::before {
2022-01-13 13:00:31 +00:00
content: "\f0cb";
}
2022-08-05 09:25:53 +00:00
i.icon.list.ul::before {
2022-01-13 13:00:31 +00:00
content: "\f0ca";
}
2022-08-05 09:25:53 +00:00
i.icon.location.arrow::before {
2022-01-13 13:00:31 +00:00
content: "\f124";
}
2022-08-05 09:25:53 +00:00
i.icon.lock::before {
2022-01-13 13:00:31 +00:00
content: "\f023";
}
2022-08-05 09:25:53 +00:00
i.icon.lock.open::before {
2022-01-13 13:00:31 +00:00
content: "\f3c1";
}
2022-08-05 09:25:53 +00:00
i.icon.long.arrow.alternate.down::before {
2022-01-13 13:00:31 +00:00
content: "\f309";
}
2022-08-05 09:25:53 +00:00
i.icon.long.arrow.alternate.left::before {
2022-01-13 13:00:31 +00:00
content: "\f30a";
}
2022-08-05 09:25:53 +00:00
i.icon.long.arrow.alternate.right::before {
2022-01-13 13:00:31 +00:00
content: "\f30b";
}
2022-08-05 09:25:53 +00:00
i.icon.long.arrow.alternate.up::before {
2022-01-13 13:00:31 +00:00
content: "\f30c";
}
2022-08-05 09:25:53 +00:00
i.icon.low.vision::before {
2022-01-13 13:00:31 +00:00
content: "\f2a8";
}
2022-08-05 09:25:53 +00:00
i.icon.luggage.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f59d";
}
2022-08-05 09:25:53 +00:00
i.icon.lungs::before {
2022-01-13 13:00:31 +00:00
content: "\f604";
}
2022-08-05 09:25:53 +00:00
i.icon.lungs.virus::before {
content: "\e067";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.magic::before {
2022-01-13 13:00:31 +00:00
content: "\f0d0";
}
2022-08-05 09:25:53 +00:00
i.icon.magnet::before {
2022-01-13 13:00:31 +00:00
content: "\f076";
}
2022-08-05 09:25:53 +00:00
i.icon.mail.bulk::before {
2022-01-13 13:00:31 +00:00
content: "\f674";
}
2022-08-05 09:25:53 +00:00
i.icon.male::before {
2022-01-13 13:00:31 +00:00
content: "\f183";
}
2022-08-05 09:25:53 +00:00
i.icon.map::before {
2022-01-13 13:00:31 +00:00
content: "\f279";
}
2022-08-05 09:25:53 +00:00
i.icon.map.marked::before {
2022-01-13 13:00:31 +00:00
content: "\f59f";
}
2022-08-05 09:25:53 +00:00
i.icon.map.marked.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f5a0";
}
2022-08-05 09:25:53 +00:00
i.icon.map.marker::before {
2022-01-13 13:00:31 +00:00
content: "\f041";
}
2022-08-05 09:25:53 +00:00
i.icon.map.marker.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3c5";
}
2022-08-05 09:25:53 +00:00
i.icon.map.pin::before {
2022-01-13 13:00:31 +00:00
content: "\f276";
}
2022-08-05 09:25:53 +00:00
i.icon.map.signs::before {
2022-01-13 13:00:31 +00:00
content: "\f277";
}
2022-08-05 09:25:53 +00:00
i.icon.marker::before {
2022-01-13 13:00:31 +00:00
content: "\f5a1";
}
2022-08-05 09:25:53 +00:00
i.icon.mars::before {
2022-01-13 13:00:31 +00:00
content: "\f222";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.double::before {
2022-01-13 13:00:31 +00:00
content: "\f227";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.stroke::before {
2022-01-13 13:00:31 +00:00
content: "\f229";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.stroke.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f22b";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.stroke.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f22a";
}
2022-08-05 09:25:53 +00:00
i.icon.mask::before {
2022-01-13 13:00:31 +00:00
content: "\f6fa";
}
2022-08-05 09:25:53 +00:00
i.icon.medal::before {
2022-01-13 13:00:31 +00:00
content: "\f5a2";
}
2022-08-05 09:25:53 +00:00
i.icon.medkit::before {
2022-01-13 13:00:31 +00:00
content: "\f0fa";
}
2022-08-05 09:25:53 +00:00
i.icon.meh::before {
2022-01-13 13:00:31 +00:00
content: "\f11a";
}
2022-08-05 09:25:53 +00:00
i.icon.meh.blank::before {
2022-01-13 13:00:31 +00:00
content: "\f5a4";
}
2022-08-05 09:25:53 +00:00
i.icon.meh.rolling.eyes::before {
2022-01-13 13:00:31 +00:00
content: "\f5a5";
}
2022-08-05 09:25:53 +00:00
i.icon.memory::before {
2022-01-13 13:00:31 +00:00
content: "\f538";
}
2022-08-05 09:25:53 +00:00
i.icon.menorah::before {
2022-01-13 13:00:31 +00:00
content: "\f676";
}
2022-08-05 09:25:53 +00:00
i.icon.mercury::before {
2022-01-13 13:00:31 +00:00
content: "\f223";
}
2022-08-05 09:25:53 +00:00
i.icon.meteor::before {
2022-01-13 13:00:31 +00:00
content: "\f753";
}
2022-08-05 09:25:53 +00:00
i.icon.microchip::before {
2022-01-13 13:00:31 +00:00
content: "\f2db";
}
2022-08-05 09:25:53 +00:00
i.icon.microphone::before {
2022-01-13 13:00:31 +00:00
content: "\f130";
}
2022-08-05 09:25:53 +00:00
i.icon.microphone.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3c9";
}
2022-08-05 09:25:53 +00:00
i.icon.microphone.alternate.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f539";
}
2022-08-05 09:25:53 +00:00
i.icon.microphone.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f131";
}
2022-08-05 09:25:53 +00:00
i.icon.microscope::before {
2022-01-13 13:00:31 +00:00
content: "\f610";
}
2022-08-05 09:25:53 +00:00
i.icon.minus::before {
2022-01-13 13:00:31 +00:00
content: "\f068";
}
2022-08-05 09:25:53 +00:00
i.icon.minus.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f056";
}
2022-08-05 09:25:53 +00:00
i.icon.minus.square::before {
2022-01-13 13:00:31 +00:00
content: "\f146";
}
2022-08-05 09:25:53 +00:00
i.icon.mitten::before {
2022-01-13 13:00:31 +00:00
content: "\f7b5";
}
2022-08-05 09:25:53 +00:00
i.icon.mobile::before {
2022-01-13 13:00:31 +00:00
content: "\f10b";
}
2022-08-05 09:25:53 +00:00
i.icon.mobile.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3cd";
}
2022-08-05 09:25:53 +00:00
i.icon.money.bill::before {
2022-01-13 13:00:31 +00:00
content: "\f0d6";
}
2022-08-05 09:25:53 +00:00
i.icon.money.bill.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3d1";
}
2022-08-05 09:25:53 +00:00
i.icon.money.bill.wave::before {
2022-01-13 13:00:31 +00:00
content: "\f53a";
}
2022-08-05 09:25:53 +00:00
i.icon.money.bill.wave.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f53b";
}
2022-08-05 09:25:53 +00:00
i.icon.money.check::before {
2022-01-13 13:00:31 +00:00
content: "\f53c";
}
2022-08-05 09:25:53 +00:00
i.icon.money.check.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f53d";
}
2022-08-05 09:25:53 +00:00
i.icon.monument::before {
2022-01-13 13:00:31 +00:00
content: "\f5a6";
}
2022-08-05 09:25:53 +00:00
i.icon.moon::before {
2022-01-13 13:00:31 +00:00
content: "\f186";
}
2022-08-05 09:25:53 +00:00
i.icon.mortar.pestle::before {
2022-01-13 13:00:31 +00:00
content: "\f5a7";
}
2022-08-05 09:25:53 +00:00
i.icon.mosque::before {
2022-01-13 13:00:31 +00:00
content: "\f678";
}
2022-08-05 09:25:53 +00:00
i.icon.motorcycle::before {
2022-01-13 13:00:31 +00:00
content: "\f21c";
}
2022-08-05 09:25:53 +00:00
i.icon.mountain::before {
2022-01-13 13:00:31 +00:00
content: "\f6fc";
}
2022-08-05 09:25:53 +00:00
i.icon.mouse::before {
2022-01-13 13:00:31 +00:00
content: "\f8cc";
}
2022-08-05 09:25:53 +00:00
i.icon.mouse.pointer::before {
2022-01-13 13:00:31 +00:00
content: "\f245";
}
2022-08-05 09:25:53 +00:00
i.icon.mug.hot::before {
2022-01-13 13:00:31 +00:00
content: "\f7b6";
}
2022-08-05 09:25:53 +00:00
i.icon.music::before {
2022-01-13 13:00:31 +00:00
content: "\f001";
}
2022-08-05 09:25:53 +00:00
i.icon.network.wired::before {
2022-01-13 13:00:31 +00:00
content: "\f6ff";
}
2022-08-05 09:25:53 +00:00
i.icon.neuter::before {
2022-01-13 13:00:31 +00:00
content: "\f22c";
}
2022-08-05 09:25:53 +00:00
i.icon.newspaper::before {
2022-01-13 13:00:31 +00:00
content: "\f1ea";
}
2022-08-05 09:25:53 +00:00
i.icon.not.equal::before {
2022-01-13 13:00:31 +00:00
content: "\f53e";
}
2022-08-05 09:25:53 +00:00
i.icon.notes.medical::before {
2022-01-13 13:00:31 +00:00
content: "\f481";
}
2022-08-05 09:25:53 +00:00
i.icon.object.group::before {
2022-01-13 13:00:31 +00:00
content: "\f247";
}
2022-08-05 09:25:53 +00:00
i.icon.object.ungroup::before {
2022-01-13 13:00:31 +00:00
content: "\f248";
}
2022-08-05 09:25:53 +00:00
i.icon.oil.can::before {
2022-01-13 13:00:31 +00:00
content: "\f613";
}
2022-08-05 09:25:53 +00:00
i.icon.om::before {
2022-01-13 13:00:31 +00:00
content: "\f679";
}
2022-08-05 09:25:53 +00:00
i.icon.otter::before {
2022-01-13 13:00:31 +00:00
content: "\f700";
}
2022-08-05 09:25:53 +00:00
i.icon.outdent::before {
2022-01-13 13:00:31 +00:00
content: "\f03b";
}
2022-08-05 09:25:53 +00:00
i.icon.pager::before {
2022-01-13 13:00:31 +00:00
content: "\f815";
}
2022-08-05 09:25:53 +00:00
i.icon.paint.brush::before {
2022-01-13 13:00:31 +00:00
content: "\f1fc";
}
2022-08-05 09:25:53 +00:00
i.icon.paint.roller::before {
2022-01-13 13:00:31 +00:00
content: "\f5aa";
}
2022-08-05 09:25:53 +00:00
i.icon.palette::before {
2022-01-13 13:00:31 +00:00
content: "\f53f";
}
2022-08-05 09:25:53 +00:00
i.icon.pallet::before {
2022-01-13 13:00:31 +00:00
content: "\f482";
}
2022-08-05 09:25:53 +00:00
i.icon.paper.plane::before {
2022-01-13 13:00:31 +00:00
content: "\f1d8";
}
2022-08-05 09:25:53 +00:00
i.icon.paperclip::before {
2022-01-13 13:00:31 +00:00
content: "\f0c6";
}
2022-08-05 09:25:53 +00:00
i.icon.parachute.box::before {
2022-01-13 13:00:31 +00:00
content: "\f4cd";
}
2022-08-05 09:25:53 +00:00
i.icon.paragraph::before {
2022-01-13 13:00:31 +00:00
content: "\f1dd";
}
2022-08-05 09:25:53 +00:00
i.icon.parking::before {
2022-01-13 13:00:31 +00:00
content: "\f540";
}
2022-08-05 09:25:53 +00:00
i.icon.passport::before {
2022-01-13 13:00:31 +00:00
content: "\f5ab";
}
2022-08-05 09:25:53 +00:00
i.icon.pastafarianism::before {
2022-01-13 13:00:31 +00:00
content: "\f67b";
}
2022-08-05 09:25:53 +00:00
i.icon.paste::before {
2022-01-13 13:00:31 +00:00
content: "\f0ea";
}
2022-08-05 09:25:53 +00:00
i.icon.pause::before {
2022-01-13 13:00:31 +00:00
content: "\f04c";
}
2022-08-05 09:25:53 +00:00
i.icon.pause.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f28b";
}
2022-08-05 09:25:53 +00:00
i.icon.paw::before {
2022-01-13 13:00:31 +00:00
content: "\f1b0";
}
2022-08-05 09:25:53 +00:00
i.icon.peace::before {
2022-01-13 13:00:31 +00:00
content: "\f67c";
}
2022-08-05 09:25:53 +00:00
i.icon.pen::before {
2022-01-13 13:00:31 +00:00
content: "\f304";
}
2022-08-05 09:25:53 +00:00
i.icon.pen.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f305";
}
2022-08-05 09:25:53 +00:00
i.icon.pen.fancy::before {
2022-01-13 13:00:31 +00:00
content: "\f5ac";
}
2022-08-05 09:25:53 +00:00
i.icon.pen.nib::before {
2022-01-13 13:00:31 +00:00
content: "\f5ad";
}
2022-08-05 09:25:53 +00:00
i.icon.pen.square::before {
2022-01-13 13:00:31 +00:00
content: "\f14b";
}
2022-08-05 09:25:53 +00:00
i.icon.pencil.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f303";
}
2022-08-05 09:25:53 +00:00
i.icon.pencil.ruler::before {
2022-01-13 13:00:31 +00:00
content: "\f5ae";
}
2022-08-05 09:25:53 +00:00
i.icon.people.arrows::before {
content: "\e068";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.people.carry::before {
2022-01-13 13:00:31 +00:00
content: "\f4ce";
}
2022-08-05 09:25:53 +00:00
i.icon.pepper.hot::before {
2022-01-13 13:00:31 +00:00
content: "\f816";
}
2022-08-05 09:25:53 +00:00
i.icon.percent::before {
2022-01-13 13:00:31 +00:00
content: "\f295";
}
2022-08-05 09:25:53 +00:00
i.icon.percentage::before {
2022-01-13 13:00:31 +00:00
content: "\f541";
}
2022-08-05 09:25:53 +00:00
i.icon.person.booth::before {
2022-01-13 13:00:31 +00:00
content: "\f756";
}
2022-08-05 09:25:53 +00:00
i.icon.phone::before {
2022-01-13 13:00:31 +00:00
content: "\f095";
}
2022-08-05 09:25:53 +00:00
i.icon.phone.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f879";
}
2022-08-05 09:25:53 +00:00
i.icon.phone.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f3dd";
}
2022-08-05 09:25:53 +00:00
i.icon.phone.square::before {
2022-01-13 13:00:31 +00:00
content: "\f098";
}
2022-08-05 09:25:53 +00:00
i.icon.phone.square.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f87b";
}
2022-08-05 09:25:53 +00:00
i.icon.phone.volume::before {
2022-01-13 13:00:31 +00:00
content: "\f2a0";
}
2022-08-05 09:25:53 +00:00
i.icon.photo.video::before {
2022-01-13 13:00:31 +00:00
content: "\f87c";
}
2022-08-05 09:25:53 +00:00
i.icon.piggy.bank::before {
2022-01-13 13:00:31 +00:00
content: "\f4d3";
}
2022-08-05 09:25:53 +00:00
i.icon.pills::before {
2022-01-13 13:00:31 +00:00
content: "\f484";
}
2022-08-05 09:25:53 +00:00
i.icon.pizza.slice::before {
2022-01-13 13:00:31 +00:00
content: "\f818";
}
2022-08-05 09:25:53 +00:00
i.icon.place.of.worship::before {
2022-01-13 13:00:31 +00:00
content: "\f67f";
}
2022-08-05 09:25:53 +00:00
i.icon.plane::before {
2022-01-13 13:00:31 +00:00
content: "\f072";
}
2022-08-05 09:25:53 +00:00
i.icon.plane.arrival::before {
2022-01-13 13:00:31 +00:00
content: "\f5af";
}
2022-08-05 09:25:53 +00:00
i.icon.plane.departure::before {
2022-01-13 13:00:31 +00:00
content: "\f5b0";
}
2022-08-05 09:25:53 +00:00
i.icon.plane.slash::before {
content: "\e069";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.play::before {
2022-01-13 13:00:31 +00:00
content: "\f04b";
}
2022-08-05 09:25:53 +00:00
i.icon.play.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f144";
}
2022-08-05 09:25:53 +00:00
i.icon.plug::before {
2022-01-13 13:00:31 +00:00
content: "\f1e6";
}
2022-08-05 09:25:53 +00:00
i.icon.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f067";
}
2022-08-05 09:25:53 +00:00
i.icon.plus.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f055";
}
2022-08-05 09:25:53 +00:00
i.icon.plus.square::before {
2022-01-13 13:00:31 +00:00
content: "\f0fe";
}
2022-08-05 09:25:53 +00:00
i.icon.podcast::before {
2022-01-13 13:00:31 +00:00
content: "\f2ce";
}
2022-08-05 09:25:53 +00:00
i.icon.poll::before {
2022-01-13 13:00:31 +00:00
content: "\f681";
}
2022-08-05 09:25:53 +00:00
i.icon.poll.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f682";
}
2022-08-05 09:25:53 +00:00
i.icon.poo::before {
2022-01-13 13:00:31 +00:00
content: "\f2fe";
}
2022-08-05 09:25:53 +00:00
i.icon.poo.storm::before {
2022-01-13 13:00:31 +00:00
content: "\f75a";
}
2022-08-05 09:25:53 +00:00
i.icon.poop::before {
2022-01-13 13:00:31 +00:00
content: "\f619";
}
2022-08-05 09:25:53 +00:00
i.icon.portrait::before {
2022-01-13 13:00:31 +00:00
content: "\f3e0";
}
2022-08-05 09:25:53 +00:00
i.icon.pound.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f154";
}
2022-08-05 09:25:53 +00:00
i.icon.power.off::before {
2022-01-13 13:00:31 +00:00
content: "\f011";
}
2022-08-05 09:25:53 +00:00
i.icon.pray::before {
2022-01-13 13:00:31 +00:00
content: "\f683";
}
2022-08-05 09:25:53 +00:00
i.icon.praying.hands::before {
2022-01-13 13:00:31 +00:00
content: "\f684";
}
2022-08-05 09:25:53 +00:00
i.icon.prescription::before {
2022-01-13 13:00:31 +00:00
content: "\f5b1";
}
2022-08-05 09:25:53 +00:00
i.icon.prescription.bottle::before {
2022-01-13 13:00:31 +00:00
content: "\f485";
}
2022-08-05 09:25:53 +00:00
i.icon.prescription.bottle.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f486";
}
2022-08-05 09:25:53 +00:00
i.icon.print::before {
2022-01-13 13:00:31 +00:00
content: "\f02f";
}
2022-08-05 09:25:53 +00:00
i.icon.procedures::before {
2022-01-13 13:00:31 +00:00
content: "\f487";
}
2022-08-05 09:25:53 +00:00
i.icon.project.diagram::before {
2022-01-13 13:00:31 +00:00
content: "\f542";
}
2022-08-05 09:25:53 +00:00
i.icon.pump.medical::before {
content: "\e06a";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.pump.soap::before {
content: "\e06b";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.puzzle.piece::before {
2022-01-13 13:00:31 +00:00
content: "\f12e";
}
2022-08-05 09:25:53 +00:00
i.icon.qrcode::before {
2022-01-13 13:00:31 +00:00
content: "\f029";
}
2022-08-05 09:25:53 +00:00
i.icon.question::before {
2022-01-13 13:00:31 +00:00
content: "\f128";
}
2022-08-05 09:25:53 +00:00
i.icon.question.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f059";
}
2022-08-05 09:25:53 +00:00
i.icon.quidditch::before {
2022-01-13 13:00:31 +00:00
content: "\f458";
}
2022-08-05 09:25:53 +00:00
i.icon.quote.left::before {
2022-01-13 13:00:31 +00:00
content: "\f10d";
}
2022-08-05 09:25:53 +00:00
i.icon.quote.right::before {
2022-01-13 13:00:31 +00:00
content: "\f10e";
}
2022-08-05 09:25:53 +00:00
i.icon.quran::before {
2022-01-13 13:00:31 +00:00
content: "\f687";
}
2022-08-05 09:25:53 +00:00
i.icon.radiation::before {
2022-01-13 13:00:31 +00:00
content: "\f7b9";
}
2022-08-05 09:25:53 +00:00
i.icon.radiation.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f7ba";
}
2022-08-05 09:25:53 +00:00
i.icon.rainbow::before {
2022-01-13 13:00:31 +00:00
content: "\f75b";
}
2022-08-05 09:25:53 +00:00
i.icon.random::before {
2022-01-13 13:00:31 +00:00
content: "\f074";
}
2022-08-05 09:25:53 +00:00
i.icon.receipt::before {
2022-01-13 13:00:31 +00:00
content: "\f543";
}
2022-08-05 09:25:53 +00:00
i.icon.record.vinyl::before {
2022-01-13 13:00:31 +00:00
content: "\f8d9";
}
2022-08-05 09:25:53 +00:00
i.icon.recycle::before {
2022-01-13 13:00:31 +00:00
content: "\f1b8";
}
2022-08-05 09:25:53 +00:00
i.icon.redo::before {
2022-01-13 13:00:31 +00:00
content: "\f01e";
}
2022-08-05 09:25:53 +00:00
i.icon.redo.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f2f9";
}
2022-08-05 09:25:53 +00:00
i.icon.registered::before {
2022-01-13 13:00:31 +00:00
content: "\f25d";
}
2022-08-05 09:25:53 +00:00
i.icon.remove.format::before {
2022-01-13 13:00:31 +00:00
content: "\f87d";
}
2022-08-05 09:25:53 +00:00
i.icon.reply::before {
2022-01-13 13:00:31 +00:00
content: "\f3e5";
}
2022-08-05 09:25:53 +00:00
i.icon.reply.all::before {
2022-01-13 13:00:31 +00:00
content: "\f122";
}
2022-08-05 09:25:53 +00:00
i.icon.republican::before {
2022-01-13 13:00:31 +00:00
content: "\f75e";
}
2022-08-05 09:25:53 +00:00
i.icon.restroom::before {
2022-01-13 13:00:31 +00:00
content: "\f7bd";
}
2022-08-05 09:25:53 +00:00
i.icon.retweet::before {
2022-01-13 13:00:31 +00:00
content: "\f079";
}
2022-08-05 09:25:53 +00:00
i.icon.ribbon::before {
2022-01-13 13:00:31 +00:00
content: "\f4d6";
}
2022-08-05 09:25:53 +00:00
i.icon.ring::before {
2022-01-13 13:00:31 +00:00
content: "\f70b";
}
2022-08-05 09:25:53 +00:00
i.icon.road::before {
2022-01-13 13:00:31 +00:00
content: "\f018";
}
2022-08-05 09:25:53 +00:00
i.icon.robot::before {
2022-01-13 13:00:31 +00:00
content: "\f544";
}
2022-08-05 09:25:53 +00:00
i.icon.rocket::before {
2022-01-13 13:00:31 +00:00
content: "\f135";
}
2022-08-05 09:25:53 +00:00
i.icon.route::before {
2022-01-13 13:00:31 +00:00
content: "\f4d7";
}
2022-08-05 09:25:53 +00:00
i.icon.rss::before {
2022-01-13 13:00:31 +00:00
content: "\f09e";
}
2022-08-05 09:25:53 +00:00
i.icon.rss.square::before {
2022-01-13 13:00:31 +00:00
content: "\f143";
}
2022-08-05 09:25:53 +00:00
i.icon.ruble.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f158";
}
2022-08-05 09:25:53 +00:00
i.icon.ruler::before {
2022-01-13 13:00:31 +00:00
content: "\f545";
}
2022-08-05 09:25:53 +00:00
i.icon.ruler.combined::before {
2022-01-13 13:00:31 +00:00
content: "\f546";
}
2022-08-05 09:25:53 +00:00
i.icon.ruler.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f547";
}
2022-08-05 09:25:53 +00:00
i.icon.ruler.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f548";
}
2022-08-05 09:25:53 +00:00
i.icon.running::before {
2022-01-13 13:00:31 +00:00
content: "\f70c";
}
2022-08-05 09:25:53 +00:00
i.icon.rupee.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f156";
}
2022-08-05 09:25:53 +00:00
i.icon.sad.cry::before {
2022-01-13 13:00:31 +00:00
content: "\f5b3";
}
2022-08-05 09:25:53 +00:00
i.icon.sad.tear::before {
2022-01-13 13:00:31 +00:00
content: "\f5b4";
}
2022-08-05 09:25:53 +00:00
i.icon.satellite::before {
2022-01-13 13:00:31 +00:00
content: "\f7bf";
}
2022-08-05 09:25:53 +00:00
i.icon.satellite.dish::before {
2022-01-13 13:00:31 +00:00
content: "\f7c0";
}
2022-08-05 09:25:53 +00:00
i.icon.save::before {
2022-01-13 13:00:31 +00:00
content: "\f0c7";
}
2022-08-05 09:25:53 +00:00
i.icon.school::before {
2022-01-13 13:00:31 +00:00
content: "\f549";
}
2022-08-05 09:25:53 +00:00
i.icon.screwdriver::before {
2022-01-13 13:00:31 +00:00
content: "\f54a";
}
2022-08-05 09:25:53 +00:00
i.icon.scroll::before {
2022-01-13 13:00:31 +00:00
content: "\f70e";
}
2022-08-05 09:25:53 +00:00
i.icon.sd.card::before {
2022-01-13 13:00:31 +00:00
content: "\f7c2";
}
2022-08-05 09:25:53 +00:00
i.icon.search::before {
2022-01-13 13:00:31 +00:00
content: "\f002";
}
2022-08-05 09:25:53 +00:00
i.icon.search.dollar::before {
2022-01-13 13:00:31 +00:00
content: "\f688";
}
2022-08-05 09:25:53 +00:00
i.icon.search.location::before {
2022-01-13 13:00:31 +00:00
content: "\f689";
}
2022-08-05 09:25:53 +00:00
i.icon.search.minus::before {
2022-01-13 13:00:31 +00:00
content: "\f010";
}
2022-08-05 09:25:53 +00:00
i.icon.search.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f00e";
}
2022-08-05 09:25:53 +00:00
i.icon.seedling::before {
2022-01-13 13:00:31 +00:00
content: "\f4d8";
}
2022-08-05 09:25:53 +00:00
i.icon.server::before {
2022-01-13 13:00:31 +00:00
content: "\f233";
}
2022-08-05 09:25:53 +00:00
i.icon.shapes::before {
2022-01-13 13:00:31 +00:00
content: "\f61f";
}
2022-08-05 09:25:53 +00:00
i.icon.share::before {
2022-01-13 13:00:31 +00:00
content: "\f064";
}
2022-08-05 09:25:53 +00:00
i.icon.share.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f1e0";
}
2022-08-05 09:25:53 +00:00
i.icon.share.alternate.square::before {
2022-01-13 13:00:31 +00:00
content: "\f1e1";
}
2022-08-05 09:25:53 +00:00
i.icon.share.square::before {
2022-01-13 13:00:31 +00:00
content: "\f14d";
}
2022-08-05 09:25:53 +00:00
i.icon.shekel.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f20b";
}
2022-08-05 09:25:53 +00:00
i.icon.shield.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3ed";
}
2022-08-05 09:25:53 +00:00
i.icon.shield.virus::before {
content: "\e06c";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.ship::before {
2022-01-13 13:00:31 +00:00
content: "\f21a";
}
2022-08-05 09:25:53 +00:00
i.icon.shipping.fast::before {
2022-01-13 13:00:31 +00:00
content: "\f48b";
}
2022-08-05 09:25:53 +00:00
i.icon.shoe.prints::before {
2022-01-13 13:00:31 +00:00
content: "\f54b";
}
2022-08-05 09:25:53 +00:00
i.icon.shopping.bag::before {
2022-01-13 13:00:31 +00:00
content: "\f290";
}
2022-08-05 09:25:53 +00:00
i.icon.shopping.basket::before {
2022-01-13 13:00:31 +00:00
content: "\f291";
}
2022-08-05 09:25:53 +00:00
i.icon.shopping.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f07a";
}
2022-08-05 09:25:53 +00:00
i.icon.shower::before {
2022-01-13 13:00:31 +00:00
content: "\f2cc";
}
2022-08-05 09:25:53 +00:00
i.icon.shuttle.van::before {
2022-01-13 13:00:31 +00:00
content: "\f5b6";
}
2022-08-05 09:25:53 +00:00
i.icon.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f4d9";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.in.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f2f6";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.language::before {
2022-01-13 13:00:31 +00:00
content: "\f2a7";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.out.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f2f5";
}
2022-08-05 09:25:53 +00:00
i.icon.signal::before {
2022-01-13 13:00:31 +00:00
content: "\f012";
}
2022-08-05 09:25:53 +00:00
i.icon.signature::before {
2022-01-13 13:00:31 +00:00
content: "\f5b7";
}
2022-08-05 09:25:53 +00:00
i.icon.sim.card::before {
2022-01-13 13:00:31 +00:00
content: "\f7c4";
}
2022-08-05 09:25:53 +00:00
i.icon.sink::before {
content: "\e06d";
}
i.icon.sitemap::before {
2022-01-13 13:00:31 +00:00
content: "\f0e8";
}
2022-08-05 09:25:53 +00:00
i.icon.skating::before {
2022-01-13 13:00:31 +00:00
content: "\f7c5";
}
2022-08-05 09:25:53 +00:00
i.icon.skiing::before {
2022-01-13 13:00:31 +00:00
content: "\f7c9";
}
2022-08-05 09:25:53 +00:00
i.icon.skiing.nordic::before {
2022-01-13 13:00:31 +00:00
content: "\f7ca";
}
2022-08-05 09:25:53 +00:00
i.icon.skull::before {
2022-01-13 13:00:31 +00:00
content: "\f54c";
}
2022-08-05 09:25:53 +00:00
i.icon.skull.crossbones::before {
2022-01-13 13:00:31 +00:00
content: "\f714";
}
2022-08-05 09:25:53 +00:00
i.icon.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f715";
}
2022-08-05 09:25:53 +00:00
i.icon.sleigh::before {
2022-01-13 13:00:31 +00:00
content: "\f7cc";
}
2022-08-05 09:25:53 +00:00
i.icon.sliders.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f1de";
}
2022-08-05 09:25:53 +00:00
i.icon.smile::before {
2022-01-13 13:00:31 +00:00
content: "\f118";
}
2022-08-05 09:25:53 +00:00
i.icon.smile.beam::before {
2022-01-13 13:00:31 +00:00
content: "\f5b8";
}
2022-08-05 09:25:53 +00:00
i.icon.smile.wink::before {
2022-01-13 13:00:31 +00:00
content: "\f4da";
}
2022-08-05 09:25:53 +00:00
i.icon.smog::before {
2022-01-13 13:00:31 +00:00
content: "\f75f";
}
2022-08-05 09:25:53 +00:00
i.icon.smoking::before {
2022-01-13 13:00:31 +00:00
content: "\f48d";
}
2022-08-05 09:25:53 +00:00
i.icon.smoking.ban::before {
2022-01-13 13:00:31 +00:00
content: "\f54d";
}
2022-08-05 09:25:53 +00:00
i.icon.sms::before {
2022-01-13 13:00:31 +00:00
content: "\f7cd";
}
2022-08-05 09:25:53 +00:00
i.icon.snowboarding::before {
2022-01-13 13:00:31 +00:00
content: "\f7ce";
}
2022-08-05 09:25:53 +00:00
i.icon.snowflake::before {
2022-01-13 13:00:31 +00:00
content: "\f2dc";
}
2022-08-05 09:25:53 +00:00
i.icon.snowman::before {
2022-01-13 13:00:31 +00:00
content: "\f7d0";
}
2022-08-05 09:25:53 +00:00
i.icon.snowplow::before {
2022-01-13 13:00:31 +00:00
content: "\f7d2";
}
2022-08-05 09:25:53 +00:00
i.icon.soap::before {
content: "\e06e";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.socks::before {
2022-01-13 13:00:31 +00:00
content: "\f696";
}
2022-08-05 09:25:53 +00:00
i.icon.solar.panel::before {
2022-01-13 13:00:31 +00:00
content: "\f5ba";
}
2022-08-05 09:25:53 +00:00
i.icon.sort::before {
2022-01-13 13:00:31 +00:00
content: "\f0dc";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.alphabet.down::before {
2022-01-13 13:00:31 +00:00
content: "\f15d";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.alphabet.down.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f881";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.alphabet.up::before {
2022-01-13 13:00:31 +00:00
content: "\f15e";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.alphabet.up.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f882";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.amount.down::before {
2022-01-13 13:00:31 +00:00
content: "\f160";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.amount.down.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f884";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.amount.up::before {
2022-01-13 13:00:31 +00:00
content: "\f161";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.amount.up.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f885";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.down::before {
2022-01-13 13:00:31 +00:00
content: "\f0dd";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.numeric.down::before {
2022-01-13 13:00:31 +00:00
content: "\f162";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.numeric.down.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f886";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.numeric.up::before {
2022-01-13 13:00:31 +00:00
content: "\f163";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.numeric.up.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f887";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.up::before {
2022-01-13 13:00:31 +00:00
content: "\f0de";
}
2022-08-05 09:25:53 +00:00
i.icon.spa::before {
2022-01-13 13:00:31 +00:00
content: "\f5bb";
}
2022-08-05 09:25:53 +00:00
i.icon.space.shuttle::before {
2022-01-13 13:00:31 +00:00
content: "\f197";
}
2022-08-05 09:25:53 +00:00
i.icon.spell.check::before {
2022-01-13 13:00:31 +00:00
content: "\f891";
}
2022-08-05 09:25:53 +00:00
i.icon.spider::before {
2022-01-13 13:00:31 +00:00
content: "\f717";
}
2022-08-05 09:25:53 +00:00
i.icon.spinner::before {
2022-01-13 13:00:31 +00:00
content: "\f110";
}
2022-08-05 09:25:53 +00:00
i.icon.splotch::before {
2022-01-13 13:00:31 +00:00
content: "\f5bc";
}
2022-08-05 09:25:53 +00:00
i.icon.spray.can::before {
2022-01-13 13:00:31 +00:00
content: "\f5bd";
}
2022-08-05 09:25:53 +00:00
i.icon.square::before {
2022-01-13 13:00:31 +00:00
content: "\f0c8";
}
2022-08-05 09:25:53 +00:00
i.icon.square.full::before {
2022-01-13 13:00:31 +00:00
content: "\f45c";
}
2022-08-05 09:25:53 +00:00
i.icon.square.root.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f698";
}
2022-08-05 09:25:53 +00:00
i.icon.stamp::before {
2022-01-13 13:00:31 +00:00
content: "\f5bf";
}
2022-08-05 09:25:53 +00:00
i.icon.star::before {
2022-01-13 13:00:31 +00:00
content: "\f005";
}
2022-08-05 09:25:53 +00:00
i.icon.star.and.crescent::before {
2022-01-13 13:00:31 +00:00
content: "\f699";
}
2022-08-05 09:25:53 +00:00
i.icon.star.half::before {
2022-01-13 13:00:31 +00:00
content: "\f089";
}
2022-08-05 09:25:53 +00:00
i.icon.star.half.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f5c0";
}
2022-08-05 09:25:53 +00:00
i.icon.star.of.david::before {
2022-01-13 13:00:31 +00:00
content: "\f69a";
}
2022-08-05 09:25:53 +00:00
i.icon.star.of.life::before {
2022-01-13 13:00:31 +00:00
content: "\f621";
}
2022-08-05 09:25:53 +00:00
i.icon.step.backward::before {
2022-01-13 13:00:31 +00:00
content: "\f048";
}
2022-08-05 09:25:53 +00:00
i.icon.step.forward::before {
2022-01-13 13:00:31 +00:00
content: "\f051";
}
2022-08-05 09:25:53 +00:00
i.icon.stethoscope::before {
2022-01-13 13:00:31 +00:00
content: "\f0f1";
}
2022-08-05 09:25:53 +00:00
i.icon.sticky.note::before {
2022-01-13 13:00:31 +00:00
content: "\f249";
}
2022-08-05 09:25:53 +00:00
i.icon.stop::before {
2022-01-13 13:00:31 +00:00
content: "\f04d";
}
2022-08-05 09:25:53 +00:00
i.icon.stop.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f28d";
}
2022-08-05 09:25:53 +00:00
i.icon.stopwatch::before {
2022-01-13 13:00:31 +00:00
content: "\f2f2";
}
2022-08-05 09:25:53 +00:00
i.icon.stopwatch.twenty::before {
content: "\e06f";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.store::before {
2022-01-13 13:00:31 +00:00
content: "\f54e";
}
2022-08-05 09:25:53 +00:00
i.icon.store.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f54f";
}
2022-08-05 09:25:53 +00:00
i.icon.store.alternate.slash::before {
content: "\e070";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.store.slash::before {
content: "\e071";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.stream::before {
2022-01-13 13:00:31 +00:00
content: "\f550";
}
2022-08-05 09:25:53 +00:00
i.icon.street.view::before {
2022-01-13 13:00:31 +00:00
content: "\f21d";
}
2022-08-05 09:25:53 +00:00
i.icon.strikethrough::before {
2022-01-13 13:00:31 +00:00
content: "\f0cc";
}
2022-08-05 09:25:53 +00:00
i.icon.stroopwafel::before {
2022-01-13 13:00:31 +00:00
content: "\f551";
}
2022-08-05 09:25:53 +00:00
i.icon.subscript::before {
2022-01-13 13:00:31 +00:00
content: "\f12c";
}
2022-08-05 09:25:53 +00:00
i.icon.subway::before {
2022-01-13 13:00:31 +00:00
content: "\f239";
}
2022-08-05 09:25:53 +00:00
i.icon.suitcase::before {
2022-01-13 13:00:31 +00:00
content: "\f0f2";
}
2022-08-05 09:25:53 +00:00
i.icon.suitcase.rolling::before {
2022-01-13 13:00:31 +00:00
content: "\f5c1";
}
2022-08-05 09:25:53 +00:00
i.icon.sun::before {
2022-01-13 13:00:31 +00:00
content: "\f185";
}
2022-08-05 09:25:53 +00:00
i.icon.superscript::before {
2022-01-13 13:00:31 +00:00
content: "\f12b";
}
2022-08-05 09:25:53 +00:00
i.icon.surprise::before {
2022-01-13 13:00:31 +00:00
content: "\f5c2";
}
2022-08-05 09:25:53 +00:00
i.icon.swatchbook::before {
2022-01-13 13:00:31 +00:00
content: "\f5c3";
}
2022-08-05 09:25:53 +00:00
i.icon.swimmer::before {
2022-01-13 13:00:31 +00:00
content: "\f5c4";
}
2022-08-05 09:25:53 +00:00
i.icon.swimming.pool::before {
2022-01-13 13:00:31 +00:00
content: "\f5c5";
}
2022-08-05 09:25:53 +00:00
i.icon.synagogue::before {
2022-01-13 13:00:31 +00:00
content: "\f69b";
}
2022-08-05 09:25:53 +00:00
i.icon.sync::before {
2022-01-13 13:00:31 +00:00
content: "\f021";
}
2022-08-05 09:25:53 +00:00
i.icon.sync.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f2f1";
}
2022-08-05 09:25:53 +00:00
i.icon.syringe::before {
2022-01-13 13:00:31 +00:00
content: "\f48e";
}
2022-08-05 09:25:53 +00:00
i.icon.table::before {
2022-01-13 13:00:31 +00:00
content: "\f0ce";
}
2022-08-05 09:25:53 +00:00
i.icon.table.tennis::before {
2022-01-13 13:00:31 +00:00
content: "\f45d";
}
2022-08-05 09:25:53 +00:00
i.icon.tablet::before {
2022-01-13 13:00:31 +00:00
content: "\f10a";
}
2022-08-05 09:25:53 +00:00
i.icon.tablet.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3fa";
}
2022-08-05 09:25:53 +00:00
i.icon.tablets::before {
2022-01-13 13:00:31 +00:00
content: "\f490";
}
2022-08-05 09:25:53 +00:00
i.icon.tachometer.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3fd";
}
2022-08-05 09:25:53 +00:00
i.icon.tag::before {
2022-01-13 13:00:31 +00:00
content: "\f02b";
}
2022-08-05 09:25:53 +00:00
i.icon.tags::before {
2022-01-13 13:00:31 +00:00
content: "\f02c";
}
2022-08-05 09:25:53 +00:00
i.icon.tape::before {
2022-01-13 13:00:31 +00:00
content: "\f4db";
}
2022-08-05 09:25:53 +00:00
i.icon.tasks::before {
2022-01-13 13:00:31 +00:00
content: "\f0ae";
}
2022-08-05 09:25:53 +00:00
i.icon.taxi::before {
2022-01-13 13:00:31 +00:00
content: "\f1ba";
}
2022-08-05 09:25:53 +00:00
i.icon.teeth::before {
2022-01-13 13:00:31 +00:00
content: "\f62e";
}
2022-08-05 09:25:53 +00:00
i.icon.teeth.open::before {
2022-01-13 13:00:31 +00:00
content: "\f62f";
}
2022-08-05 09:25:53 +00:00
i.icon.temperature.high::before {
2022-01-13 13:00:31 +00:00
content: "\f769";
}
2022-08-05 09:25:53 +00:00
i.icon.temperature.low::before {
2022-01-13 13:00:31 +00:00
content: "\f76b";
}
2022-08-05 09:25:53 +00:00
i.icon.tenge::before {
2022-01-13 13:00:31 +00:00
content: "\f7d7";
}
2022-08-05 09:25:53 +00:00
i.icon.terminal::before {
2022-01-13 13:00:31 +00:00
content: "\f120";
}
2022-08-05 09:25:53 +00:00
i.icon.text.height::before {
2022-01-13 13:00:31 +00:00
content: "\f034";
}
2022-08-05 09:25:53 +00:00
i.icon.text.width::before {
2022-01-13 13:00:31 +00:00
content: "\f035";
}
2022-08-05 09:25:53 +00:00
i.icon.th::before {
2022-01-13 13:00:31 +00:00
content: "\f00a";
}
2022-08-05 09:25:53 +00:00
i.icon.th.large::before {
2022-01-13 13:00:31 +00:00
content: "\f009";
}
2022-08-05 09:25:53 +00:00
i.icon.th.list::before {
2022-01-13 13:00:31 +00:00
content: "\f00b";
}
2022-08-05 09:25:53 +00:00
i.icon.theater.masks::before {
2022-01-13 13:00:31 +00:00
content: "\f630";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer::before {
2022-01-13 13:00:31 +00:00
content: "\f491";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer.empty::before {
2022-01-13 13:00:31 +00:00
content: "\f2cb";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer.full::before {
2022-01-13 13:00:31 +00:00
content: "\f2c7";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer.half::before {
2022-01-13 13:00:31 +00:00
content: "\f2c9";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer.quarter::before {
2022-01-13 13:00:31 +00:00
content: "\f2ca";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer.three.quarters::before {
2022-01-13 13:00:31 +00:00
content: "\f2c8";
}
2022-08-05 09:25:53 +00:00
i.icon.thumbs.down::before {
2022-01-13 13:00:31 +00:00
content: "\f165";
}
2022-08-05 09:25:53 +00:00
i.icon.thumbs.up::before {
2022-01-13 13:00:31 +00:00
content: "\f164";
}
2022-08-05 09:25:53 +00:00
i.icon.thumbtack::before {
2022-01-13 13:00:31 +00:00
content: "\f08d";
}
2022-08-05 09:25:53 +00:00
i.icon.ticket.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3ff";
}
2022-08-05 09:25:53 +00:00
i.icon.times::before {
2022-01-13 13:00:31 +00:00
content: "\f00d";
}
2022-08-05 09:25:53 +00:00
i.icon.times.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f057";
}
2022-08-05 09:25:53 +00:00
i.icon.tint::before {
2022-01-13 13:00:31 +00:00
content: "\f043";
}
2022-08-05 09:25:53 +00:00
i.icon.tint.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f5c7";
}
2022-08-05 09:25:53 +00:00
i.icon.tired::before {
2022-01-13 13:00:31 +00:00
content: "\f5c8";
}
2022-08-05 09:25:53 +00:00
i.icon.toggle.off::before {
2022-01-13 13:00:31 +00:00
content: "\f204";
}
2022-08-05 09:25:53 +00:00
i.icon.toggle.on::before {
2022-01-13 13:00:31 +00:00
content: "\f205";
}
2022-08-05 09:25:53 +00:00
i.icon.toilet::before {
2022-01-13 13:00:31 +00:00
content: "\f7d8";
}
2022-08-05 09:25:53 +00:00
i.icon.toilet.paper::before {
2022-01-13 13:00:31 +00:00
content: "\f71e";
}
2022-08-05 09:25:53 +00:00
i.icon.toilet.paper.slash::before {
content: "\e072";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.toolbox::before {
2022-01-13 13:00:31 +00:00
content: "\f552";
}
2022-08-05 09:25:53 +00:00
i.icon.tools::before {
2022-01-13 13:00:31 +00:00
content: "\f7d9";
}
2022-08-05 09:25:53 +00:00
i.icon.tooth::before {
2022-01-13 13:00:31 +00:00
content: "\f5c9";
}
2022-08-05 09:25:53 +00:00
i.icon.torah::before {
2022-01-13 13:00:31 +00:00
content: "\f6a0";
}
2022-08-05 09:25:53 +00:00
i.icon.torii.gate::before {
2022-01-13 13:00:31 +00:00
content: "\f6a1";
}
2022-08-05 09:25:53 +00:00
i.icon.tractor::before {
2022-01-13 13:00:31 +00:00
content: "\f722";
}
2022-08-05 09:25:53 +00:00
i.icon.trademark::before {
2022-01-13 13:00:31 +00:00
content: "\f25c";
}
2022-08-05 09:25:53 +00:00
i.icon.traffic.light::before {
2022-01-13 13:00:31 +00:00
content: "\f637";
}
2022-08-05 09:25:53 +00:00
i.icon.trailer::before {
content: "\e041";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.train::before {
2022-01-13 13:00:31 +00:00
content: "\f238";
}
2022-08-05 09:25:53 +00:00
i.icon.tram::before {
2022-01-13 13:00:31 +00:00
content: "\f7da";
}
2022-08-05 09:25:53 +00:00
i.icon.transgender::before {
2022-01-13 13:00:31 +00:00
content: "\f224";
}
2022-08-05 09:25:53 +00:00
i.icon.transgender.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f225";
}
2022-08-05 09:25:53 +00:00
i.icon.trash::before {
2022-01-13 13:00:31 +00:00
content: "\f1f8";
}
2022-08-05 09:25:53 +00:00
i.icon.trash.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f2ed";
}
2022-08-05 09:25:53 +00:00
i.icon.trash.restore::before {
2022-01-13 13:00:31 +00:00
content: "\f829";
}
2022-08-05 09:25:53 +00:00
i.icon.trash.restore.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f82a";
}
2022-08-05 09:25:53 +00:00
i.icon.tree::before {
2022-01-13 13:00:31 +00:00
content: "\f1bb";
}
2022-08-05 09:25:53 +00:00
i.icon.trophy::before {
2022-01-13 13:00:31 +00:00
content: "\f091";
}
2022-08-05 09:25:53 +00:00
i.icon.truck::before {
2022-01-13 13:00:31 +00:00
content: "\f0d1";
}
2022-08-05 09:25:53 +00:00
i.icon.truck.monster::before {
2022-01-13 13:00:31 +00:00
content: "\f63b";
}
2022-08-05 09:25:53 +00:00
i.icon.truck.moving::before {
2022-01-13 13:00:31 +00:00
content: "\f4df";
}
2022-08-05 09:25:53 +00:00
i.icon.truck.packing::before {
2022-01-13 13:00:31 +00:00
content: "\f4de";
}
2022-08-05 09:25:53 +00:00
i.icon.truck.pickup::before {
2022-01-13 13:00:31 +00:00
content: "\f63c";
}
2022-08-05 09:25:53 +00:00
i.icon.tshirt::before {
2022-01-13 13:00:31 +00:00
content: "\f553";
}
2022-08-05 09:25:53 +00:00
i.icon.tty::before {
2022-01-13 13:00:31 +00:00
content: "\f1e4";
}
2022-08-05 09:25:53 +00:00
i.icon.tv::before {
2022-01-13 13:00:31 +00:00
content: "\f26c";
}
2022-08-05 09:25:53 +00:00
i.icon.umbrella::before {
2022-01-13 13:00:31 +00:00
content: "\f0e9";
}
2022-08-05 09:25:53 +00:00
i.icon.umbrella.beach::before {
2022-01-13 13:00:31 +00:00
content: "\f5ca";
}
2022-08-05 09:25:53 +00:00
i.icon.underline::before {
2022-01-13 13:00:31 +00:00
content: "\f0cd";
}
2022-08-05 09:25:53 +00:00
i.icon.undo::before {
2022-01-13 13:00:31 +00:00
content: "\f0e2";
}
2022-08-05 09:25:53 +00:00
i.icon.undo.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f2ea";
}
2022-08-05 09:25:53 +00:00
i.icon.universal.access::before {
2022-01-13 13:00:31 +00:00
content: "\f29a";
}
2022-08-05 09:25:53 +00:00
i.icon.university::before {
2022-01-13 13:00:31 +00:00
content: "\f19c";
}
2022-08-05 09:25:53 +00:00
i.icon.unlink::before {
2022-01-13 13:00:31 +00:00
content: "\f127";
}
2022-08-05 09:25:53 +00:00
i.icon.unlock::before {
2022-01-13 13:00:31 +00:00
content: "\f09c";
}
2022-08-05 09:25:53 +00:00
i.icon.unlock.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f13e";
}
2022-08-05 09:25:53 +00:00
i.icon.upload::before {
2022-01-13 13:00:31 +00:00
content: "\f093";
}
2022-08-05 09:25:53 +00:00
i.icon.user::before {
2022-01-13 13:00:31 +00:00
content: "\f007";
}
2022-08-05 09:25:53 +00:00
i.icon.user.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f406";
}
2022-08-05 09:25:53 +00:00
i.icon.user.alternate.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f4fa";
}
2022-08-05 09:25:53 +00:00
i.icon.user.astronaut::before {
2022-01-13 13:00:31 +00:00
content: "\f4fb";
}
2022-08-05 09:25:53 +00:00
i.icon.user.check::before {
2022-01-13 13:00:31 +00:00
content: "\f4fc";
}
2022-08-05 09:25:53 +00:00
i.icon.user.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f2bd";
}
2022-08-05 09:25:53 +00:00
i.icon.user.clock::before {
2022-01-13 13:00:31 +00:00
content: "\f4fd";
}
2022-08-05 09:25:53 +00:00
i.icon.user.cog::before {
2022-01-13 13:00:31 +00:00
content: "\f4fe";
}
2022-08-05 09:25:53 +00:00
i.icon.user.edit::before {
2022-01-13 13:00:31 +00:00
content: "\f4ff";
}
2022-08-05 09:25:53 +00:00
i.icon.user.friends::before {
2022-01-13 13:00:31 +00:00
content: "\f500";
}
2022-08-05 09:25:53 +00:00
i.icon.user.graduate::before {
2022-01-13 13:00:31 +00:00
content: "\f501";
}
2022-08-05 09:25:53 +00:00
i.icon.user.injured::before {
2022-01-13 13:00:31 +00:00
content: "\f728";
}
2022-08-05 09:25:53 +00:00
i.icon.user.lock::before {
2022-01-13 13:00:31 +00:00
content: "\f502";
}
2022-08-05 09:25:53 +00:00
i.icon.user.md::before {
2022-01-13 13:00:31 +00:00
content: "\f0f0";
}
2022-08-05 09:25:53 +00:00
i.icon.user.minus::before {
2022-01-13 13:00:31 +00:00
content: "\f503";
}
2022-08-05 09:25:53 +00:00
i.icon.user.ninja::before {
2022-01-13 13:00:31 +00:00
content: "\f504";
}
2022-08-05 09:25:53 +00:00
i.icon.user.nurse::before {
2022-01-13 13:00:31 +00:00
content: "\f82f";
}
2022-08-05 09:25:53 +00:00
i.icon.user.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f234";
}
2022-08-05 09:25:53 +00:00
i.icon.user.secret::before {
2022-01-13 13:00:31 +00:00
content: "\f21b";
}
2022-08-05 09:25:53 +00:00
i.icon.user.shield::before {
2022-01-13 13:00:31 +00:00
content: "\f505";
}
2022-08-05 09:25:53 +00:00
i.icon.user.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f506";
}
2022-08-05 09:25:53 +00:00
i.icon.user.tag::before {
2022-01-13 13:00:31 +00:00
content: "\f507";
}
2022-08-05 09:25:53 +00:00
i.icon.user.tie::before {
2022-01-13 13:00:31 +00:00
content: "\f508";
}
2022-08-05 09:25:53 +00:00
i.icon.user.times::before {
2022-01-13 13:00:31 +00:00
content: "\f235";
}
2022-08-05 09:25:53 +00:00
i.icon.users::before {
2022-01-13 13:00:31 +00:00
content: "\f0c0";
}
2022-08-05 09:25:53 +00:00
i.icon.users.cog::before {
2022-01-13 13:00:31 +00:00
content: "\f509";
}
2022-08-05 09:25:53 +00:00
i.icon.users.slash::before {
content: "\e073";
}
i.icon.utensil.spoon::before {
2022-01-13 13:00:31 +00:00
content: "\f2e5";
}
2022-08-05 09:25:53 +00:00
i.icon.utensils::before {
2022-01-13 13:00:31 +00:00
content: "\f2e7";
}
2022-08-05 09:25:53 +00:00
i.icon.vector.square::before {
2022-01-13 13:00:31 +00:00
content: "\f5cb";
}
2022-08-05 09:25:53 +00:00
i.icon.venus::before {
2022-01-13 13:00:31 +00:00
content: "\f221";
}
2022-08-05 09:25:53 +00:00
i.icon.venus.double::before {
2022-01-13 13:00:31 +00:00
content: "\f226";
}
2022-08-05 09:25:53 +00:00
i.icon.venus.mars::before {
2022-01-13 13:00:31 +00:00
content: "\f228";
}
2022-08-05 09:25:53 +00:00
i.icon.vest::before {
content: "\e085";
}
i.icon.vest.patches::before {
content: "\e086";
}
i.icon.vial::before {
2022-01-13 13:00:31 +00:00
content: "\f492";
}
2022-08-05 09:25:53 +00:00
i.icon.vials::before {
2022-01-13 13:00:31 +00:00
content: "\f493";
}
2022-08-05 09:25:53 +00:00
i.icon.video::before {
2022-01-13 13:00:31 +00:00
content: "\f03d";
}
2022-08-05 09:25:53 +00:00
i.icon.video.slash::before {
2022-01-13 13:00:31 +00:00
content: "\f4e2";
}
2022-08-05 09:25:53 +00:00
i.icon.vihara::before {
2022-01-13 13:00:31 +00:00
content: "\f6a7";
}
2022-08-05 09:25:53 +00:00
i.icon.virus::before {
content: "\e074";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.virus.slash::before {
content: "\e075";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.viruses::before {
content: "\e076";
2022-01-13 13:00:31 +00:00
}
2022-08-05 09:25:53 +00:00
i.icon.voicemail::before {
2022-01-13 13:00:31 +00:00
content: "\f897";
}
2022-08-05 09:25:53 +00:00
i.icon.volleyball.ball::before {
2022-01-13 13:00:31 +00:00
content: "\f45f";
}
2022-08-05 09:25:53 +00:00
i.icon.volume.down::before {
2022-01-13 13:00:31 +00:00
content: "\f027";
}
2022-08-05 09:25:53 +00:00
i.icon.volume.mute::before {
2022-01-13 13:00:31 +00:00
content: "\f6a9";
}
2022-08-05 09:25:53 +00:00
i.icon.volume.off::before {
2022-01-13 13:00:31 +00:00
content: "\f026";
}
2022-08-05 09:25:53 +00:00
i.icon.volume.up::before {
2022-01-13 13:00:31 +00:00
content: "\f028";
}
2022-08-05 09:25:53 +00:00
i.icon.vote.yea::before {
2022-01-13 13:00:31 +00:00
content: "\f772";
}
2022-08-05 09:25:53 +00:00
i.icon.vr.cardboard::before {
2022-01-13 13:00:31 +00:00
content: "\f729";
}
2022-08-05 09:25:53 +00:00
i.icon.walking::before {
2022-01-13 13:00:31 +00:00
content: "\f554";
}
2022-08-05 09:25:53 +00:00
i.icon.wallet::before {
2022-01-13 13:00:31 +00:00
content: "\f555";
}
2022-08-05 09:25:53 +00:00
i.icon.warehouse::before {
2022-01-13 13:00:31 +00:00
content: "\f494";
}
2022-08-05 09:25:53 +00:00
i.icon.water::before {
2022-01-13 13:00:31 +00:00
content: "\f773";
}
2022-08-05 09:25:53 +00:00
i.icon.wave.square::before {
2022-01-13 13:00:31 +00:00
content: "\f83e";
}
2022-08-05 09:25:53 +00:00
i.icon.weight::before {
2022-01-13 13:00:31 +00:00
content: "\f496";
}
2022-08-05 09:25:53 +00:00
i.icon.weight.hanging::before {
2022-01-13 13:00:31 +00:00
content: "\f5cd";
}
2022-08-05 09:25:53 +00:00
i.icon.wheelchair::before {
2022-01-13 13:00:31 +00:00
content: "\f193";
}
2022-08-05 09:25:53 +00:00
i.icon.wifi::before {
2022-01-13 13:00:31 +00:00
content: "\f1eb";
}
2022-08-05 09:25:53 +00:00
i.icon.wind::before {
2022-01-13 13:00:31 +00:00
content: "\f72e";
}
2022-08-05 09:25:53 +00:00
i.icon.window.close::before {
2022-01-13 13:00:31 +00:00
content: "\f410";
}
2022-08-05 09:25:53 +00:00
i.icon.window.maximize::before {
2022-01-13 13:00:31 +00:00
content: "\f2d0";
}
2022-08-05 09:25:53 +00:00
i.icon.window.minimize::before {
2022-01-13 13:00:31 +00:00
content: "\f2d1";
}
2022-08-05 09:25:53 +00:00
i.icon.window.restore::before {
2022-01-13 13:00:31 +00:00
content: "\f2d2";
}
2022-08-05 09:25:53 +00:00
i.icon.wine.bottle::before {
2022-01-13 13:00:31 +00:00
content: "\f72f";
}
2022-08-05 09:25:53 +00:00
i.icon.wine.glass::before {
2022-01-13 13:00:31 +00:00
content: "\f4e3";
}
2022-08-05 09:25:53 +00:00
i.icon.wine.glass.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f5ce";
}
2022-08-05 09:25:53 +00:00
i.icon.won.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f159";
}
2022-08-05 09:25:53 +00:00
i.icon.wrench::before {
2022-01-13 13:00:31 +00:00
content: "\f0ad";
}
2022-08-05 09:25:53 +00:00
i.icon.x.ray::before {
2022-01-13 13:00:31 +00:00
content: "\f497";
}
2022-08-05 09:25:53 +00:00
i.icon.yen.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f157";
}
2022-08-05 09:25:53 +00:00
i.icon.yin.yang::before {
2022-01-13 13:00:31 +00:00
content: "\f6ad";
}
/* Aliases */
2022-08-05 09:25:53 +00:00
i.icon.add::before {
2022-01-13 13:00:31 +00:00
content: "\f067";
}
2022-08-05 09:25:53 +00:00
i.icon.add.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f055";
}
2022-08-05 09:25:53 +00:00
i.icon.add.square::before {
2022-01-13 13:00:31 +00:00
content: "\f0fe";
}
2022-08-05 09:25:53 +00:00
i.icon.add.to.calendar::before {
2022-01-13 13:00:31 +00:00
content: "\f271";
}
2022-08-05 09:25:53 +00:00
i.icon.add.to.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f217";
}
2022-08-05 09:25:53 +00:00
i.icon.add.user::before {
2022-01-13 13:00:31 +00:00
content: "\f234";
}
2022-08-05 09:25:53 +00:00
i.icon.alarm::before {
2022-01-13 13:00:31 +00:00
content: "\f0f3";
}
2022-08-05 09:25:53 +00:00
i.icon.alarm.mute::before {
2022-01-13 13:00:31 +00:00
content: "\f1f6";
}
2022-08-05 09:25:53 +00:00
i.icon.ald::before {
2022-01-13 13:00:31 +00:00
content: "\f2a2";
}
2022-08-05 09:25:53 +00:00
i.icon.als::before {
2022-01-13 13:00:31 +00:00
content: "\f2a2";
}
2022-08-05 09:25:53 +00:00
i.icon.announcement::before {
2022-01-13 13:00:31 +00:00
content: "\f0a1";
}
2022-08-05 09:25:53 +00:00
i.icon.area.chart::before {
2022-01-13 13:00:31 +00:00
content: "\f1fe";
}
2022-08-05 09:25:53 +00:00
i.icon.area.graph::before {
2022-01-13 13:00:31 +00:00
content: "\f1fe";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.down.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f218";
}
2022-08-05 09:25:53 +00:00
i.icon.asexual::before {
2022-01-13 13:00:31 +00:00
content: "\f22d";
}
2022-08-05 09:25:53 +00:00
i.icon.asl::before {
2022-01-13 13:00:31 +00:00
content: "\f2a3";
}
2022-08-05 09:25:53 +00:00
i.icon.asl.interpreting::before {
2022-01-13 13:00:31 +00:00
content: "\f2a3";
}
2022-08-05 09:25:53 +00:00
i.icon.assistive.listening.devices::before {
2022-01-13 13:00:31 +00:00
content: "\f2a2";
}
2022-08-05 09:25:53 +00:00
i.icon.attach::before {
2022-01-13 13:00:31 +00:00
content: "\f0c6";
}
2022-08-05 09:25:53 +00:00
i.icon.attention::before {
2022-01-13 13:00:31 +00:00
content: "\f06a";
}
2022-08-05 09:25:53 +00:00
i.icon.balance::before {
2022-01-13 13:00:31 +00:00
content: "\f24e";
}
2022-08-05 09:25:53 +00:00
i.icon.bar::before {
2022-01-13 13:00:31 +00:00
content: "\f0fc";
}
2022-08-05 09:25:53 +00:00
i.icon.bathtub::before {
2022-01-13 13:00:31 +00:00
content: "\f2cd";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.four::before {
2022-01-13 13:00:31 +00:00
content: "\f240";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.high::before {
2022-01-13 13:00:31 +00:00
content: "\f241";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.low::before {
2022-01-13 13:00:31 +00:00
content: "\f243";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.medium::before {
2022-01-13 13:00:31 +00:00
content: "\f242";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.one::before {
2022-01-13 13:00:31 +00:00
content: "\f243";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.three::before {
2022-01-13 13:00:31 +00:00
content: "\f241";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.two::before {
2022-01-13 13:00:31 +00:00
content: "\f242";
}
2022-08-05 09:25:53 +00:00
i.icon.battery.zero::before {
2022-01-13 13:00:31 +00:00
content: "\f244";
}
2022-08-05 09:25:53 +00:00
i.icon.birthday::before {
2022-01-13 13:00:31 +00:00
content: "\f1fd";
}
2022-08-05 09:25:53 +00:00
i.icon.block.layout::before {
2022-01-13 13:00:31 +00:00
content: "\f009";
}
2022-08-05 09:25:53 +00:00
i.icon.broken.chain::before {
2022-01-13 13:00:31 +00:00
content: "\f127";
}
2022-08-05 09:25:53 +00:00
i.icon.browser::before {
2022-01-13 13:00:31 +00:00
content: "\f022";
}
2022-08-05 09:25:53 +00:00
i.icon.call::before {
2022-01-13 13:00:31 +00:00
content: "\f095";
}
2022-08-05 09:25:53 +00:00
i.icon.call.square::before {
2022-01-13 13:00:31 +00:00
content: "\f098";
}
2022-08-05 09:25:53 +00:00
i.icon.cancel::before {
2022-01-13 13:00:31 +00:00
content: "\f00d";
}
2022-08-05 09:25:53 +00:00
i.icon.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f07a";
}
2022-08-05 09:25:53 +00:00
i.icon.cc::before {
2022-01-13 13:00:31 +00:00
content: "\f20a";
}
2022-08-05 09:25:53 +00:00
i.icon.chain::before {
2022-01-13 13:00:31 +00:00
content: "\f0c1";
}
2022-08-05 09:25:53 +00:00
i.icon.chat::before {
2022-01-13 13:00:31 +00:00
content: "\f075";
}
2022-08-05 09:25:53 +00:00
i.icon.checked.calendar::before {
2022-01-13 13:00:31 +00:00
content: "\f274";
}
2022-08-05 09:25:53 +00:00
i.icon.checkmark::before {
2022-01-13 13:00:31 +00:00
content: "\f00c";
}
2022-08-05 09:25:53 +00:00
i.icon.checkmark.box::before {
2022-01-13 13:00:31 +00:00
content: "\f14a";
}
2022-08-05 09:25:53 +00:00
i.icon.chess.rock::before {
2022-01-13 13:00:31 +00:00
content: "\f447";
}
2022-08-05 09:25:53 +00:00
i.icon.circle.notched::before {
2022-01-13 13:00:31 +00:00
content: "\f1ce";
}
2022-08-05 09:25:53 +00:00
i.icon.circle.thin::before {
2022-01-13 13:00:31 +00:00
content: "\f111";
}
2022-08-05 09:25:53 +00:00
i.icon.close::before {
2022-01-13 13:00:31 +00:00
content: "\f00d";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.download::before {
2022-01-13 13:00:31 +00:00
content: "\f381";
}
2022-08-05 09:25:53 +00:00
i.icon.cloud.upload::before {
2022-01-13 13:00:31 +00:00
content: "\f382";
}
2022-08-05 09:25:53 +00:00
i.icon.cny::before {
2022-01-13 13:00:31 +00:00
content: "\f157";
}
2022-08-05 09:25:53 +00:00
i.icon.cocktail::before {
2022-01-13 13:00:31 +00:00
content: "\f000";
}
2022-08-05 09:25:53 +00:00
i.icon.commenting::before {
2022-01-13 13:00:31 +00:00
content: "\f27a";
}
2022-08-05 09:25:53 +00:00
i.icon.compose::before {
2022-01-13 13:00:31 +00:00
content: "\f303";
}
2022-08-05 09:25:53 +00:00
i.icon.computer::before {
2022-01-13 13:00:31 +00:00
content: "\f108";
}
2022-08-05 09:25:53 +00:00
i.icon.configure::before {
2022-01-13 13:00:31 +00:00
content: "\f0ad";
}
2022-08-05 09:25:53 +00:00
i.icon.content::before {
2022-01-13 13:00:31 +00:00
content: "\f0c9";
}
2022-08-05 09:25:53 +00:00
i.icon.conversation::before {
2022-01-13 13:00:31 +00:00
content: "\f086";
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.alternative::before {
2022-01-13 13:00:31 +00:00
content: "\f09d";
}
2022-08-05 09:25:53 +00:00
i.icon.currency::before {
2022-01-13 13:00:31 +00:00
content: "\f3d1";
}
2022-08-05 09:25:53 +00:00
i.icon.dashboard::before {
2022-01-13 13:00:31 +00:00
content: "\f3fd";
}
2022-08-05 09:25:53 +00:00
i.icon.deafness::before {
2022-01-13 13:00:31 +00:00
content: "\f2a4";
}
2022-08-05 09:25:53 +00:00
i.icon.delete::before {
2022-01-13 13:00:31 +00:00
content: "\f00d";
}
2022-08-05 09:25:53 +00:00
i.icon.delete.calendar::before {
2022-01-13 13:00:31 +00:00
content: "\f273";
}
2022-08-05 09:25:53 +00:00
i.icon.detective::before {
2022-01-13 13:00:31 +00:00
content: "\f21b";
}
2022-08-05 09:25:53 +00:00
i.icon.diamond::before {
2022-01-13 13:00:31 +00:00
content: "\f3a5";
}
2022-08-05 09:25:53 +00:00
i.icon.discussions::before {
2022-01-13 13:00:31 +00:00
content: "\f086";
}
2022-08-05 09:25:53 +00:00
i.icon.disk::before {
2022-01-13 13:00:31 +00:00
content: "\f0a0";
}
2022-08-05 09:25:53 +00:00
i.icon.doctor::before {
2022-01-13 13:00:31 +00:00
content: "\f0f0";
}
2022-08-05 09:25:53 +00:00
i.icon.dollar::before {
2022-01-13 13:00:31 +00:00
content: "\f155";
}
2022-08-05 09:25:53 +00:00
i.icon.dont::before {
2022-01-13 13:00:31 +00:00
content: "\f05e";
}
2022-08-05 09:25:53 +00:00
i.icon.drivers.license::before {
2022-01-13 13:00:31 +00:00
content: "\f2c2";
}
2022-08-05 09:25:53 +00:00
i.icon.dropdown::before {
2022-01-13 13:00:31 +00:00
content: "\f0d7";
}
2022-08-05 09:25:53 +00:00
i.icon.emergency::before {
2022-01-13 13:00:31 +00:00
content: "\f0f9";
}
2022-08-05 09:25:53 +00:00
i.icon.erase::before {
2022-01-13 13:00:31 +00:00
content: "\f12d";
}
2022-08-05 09:25:53 +00:00
i.icon.eur::before {
2022-01-13 13:00:31 +00:00
content: "\f153";
}
2022-08-05 09:25:53 +00:00
i.icon.euro::before {
2022-01-13 13:00:31 +00:00
content: "\f153";
}
2022-08-05 09:25:53 +00:00
i.icon.exchange::before {
2022-01-13 13:00:31 +00:00
content: "\f362";
}
2022-08-05 09:25:53 +00:00
i.icon.external::before {
2022-01-13 13:00:31 +00:00
content: "\f35d";
}
2022-08-05 09:25:53 +00:00
i.icon.external.share::before {
2022-01-13 13:00:31 +00:00
content: "\f14d";
}
2022-08-05 09:25:53 +00:00
i.icon.external.square::before {
2022-01-13 13:00:31 +00:00
content: "\f360";
}
2022-08-05 09:25:53 +00:00
i.icon.eyedropper::before {
2022-01-13 13:00:31 +00:00
content: "\f1fb";
}
2022-08-05 09:25:53 +00:00
i.icon.factory::before {
2022-01-13 13:00:31 +00:00
content: "\f275";
}
2022-08-05 09:25:53 +00:00
i.icon.favorite::before {
2022-01-13 13:00:31 +00:00
content: "\f005";
}
2022-08-05 09:25:53 +00:00
i.icon.feed::before {
2022-01-13 13:00:31 +00:00
content: "\f09e";
}
2022-08-05 09:25:53 +00:00
i.icon.female.homosexual::before {
2022-01-13 13:00:31 +00:00
content: "\f226";
}
2022-08-05 09:25:53 +00:00
i.icon.file.text::before {
2022-01-13 13:00:31 +00:00
content: "\f15c";
}
2022-08-05 09:25:53 +00:00
i.icon.find::before {
2022-01-13 13:00:31 +00:00
content: "\f1e5";
}
2022-08-05 09:25:53 +00:00
i.icon.first.aid::before {
2022-01-13 13:00:31 +00:00
content: "\f0fa";
}
2022-08-05 09:25:53 +00:00
i.icon.food::before {
2022-01-13 13:00:31 +00:00
content: "\f2e7";
}
2022-08-05 09:25:53 +00:00
i.icon.fork::before {
2022-01-13 13:00:31 +00:00
content: "\f126";
}
2022-08-05 09:25:53 +00:00
i.icon.game::before {
2022-01-13 13:00:31 +00:00
content: "\f11b";
}
2022-08-05 09:25:53 +00:00
i.icon.gay::before {
2022-01-13 13:00:31 +00:00
content: "\f227";
}
2022-08-05 09:25:53 +00:00
i.icon.gbp::before {
2022-01-13 13:00:31 +00:00
content: "\f154";
}
2022-08-05 09:25:53 +00:00
i.icon.grab::before {
2022-01-13 13:00:31 +00:00
content: "\f255";
}
2022-08-05 09:25:53 +00:00
i.icon.graduation::before {
2022-01-13 13:00:31 +00:00
content: "\f19d";
}
2022-08-05 09:25:53 +00:00
i.icon.grid.layout::before {
2022-01-13 13:00:31 +00:00
content: "\f00a";
}
2022-08-05 09:25:53 +00:00
i.icon.group::before {
2022-01-13 13:00:31 +00:00
content: "\f0c0";
}
2022-08-05 09:25:53 +00:00
i.icon.h::before {
2022-01-13 13:00:31 +00:00
content: "\f0fd";
}
2022-08-05 09:25:53 +00:00
i.icon.hamburger::before {
2022-01-13 13:00:31 +00:00
content: "\f0c9";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.victory::before {
2022-01-13 13:00:31 +00:00
content: "\f25b";
}
2022-08-05 09:25:53 +00:00
i.icon.handicap::before {
2022-01-13 13:00:31 +00:00
content: "\f193";
}
2022-08-05 09:25:53 +00:00
i.icon.hard.of.hearing::before {
2022-01-13 13:00:31 +00:00
content: "\f2a4";
}
2022-08-05 09:25:53 +00:00
i.icon.header::before {
2022-01-13 13:00:31 +00:00
content: "\f1dc";
}
2022-08-05 09:25:53 +00:00
i.icon.heart.empty::before {
2022-01-13 13:00:31 +00:00
content: "\f004";
}
2022-08-05 09:25:53 +00:00
i.icon.help::before {
2022-01-13 13:00:31 +00:00
content: "\f128";
}
2022-08-05 09:25:53 +00:00
i.icon.help.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f059";
}
2022-08-05 09:25:53 +00:00
i.icon.heterosexual::before {
2022-01-13 13:00:31 +00:00
content: "\f228";
}
2022-08-05 09:25:53 +00:00
i.icon.hide::before {
2022-01-13 13:00:31 +00:00
content: "\f070";
}
2022-08-05 09:25:53 +00:00
i.icon.hotel::before {
2022-01-13 13:00:31 +00:00
content: "\f236";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.four::before {
2022-01-13 13:00:31 +00:00
content: "\f254";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.full::before {
2022-01-13 13:00:31 +00:00
content: "\f254";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.one::before {
2022-01-13 13:00:31 +00:00
content: "\f251";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.three::before {
2022-01-13 13:00:31 +00:00
content: "\f253";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.two::before {
2022-01-13 13:00:31 +00:00
content: "\f252";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.zero::before {
2022-01-13 13:00:31 +00:00
content: "\f253";
}
2022-08-05 09:25:53 +00:00
i.icon.idea::before {
2022-01-13 13:00:31 +00:00
content: "\f0eb";
}
2022-08-05 09:25:53 +00:00
i.icon.ils::before {
2022-01-13 13:00:31 +00:00
content: "\f20b";
}
2022-08-05 09:25:53 +00:00
i.icon.in.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f218";
}
2022-08-05 09:25:53 +00:00
i.icon.inr::before {
2022-01-13 13:00:31 +00:00
content: "\f156";
}
2022-08-05 09:25:53 +00:00
i.icon.intergender::before {
2022-01-13 13:00:31 +00:00
content: "\f224";
}
2022-08-05 09:25:53 +00:00
i.icon.intersex::before {
2022-01-13 13:00:31 +00:00
content: "\f224";
}
2022-08-05 09:25:53 +00:00
i.icon.jpy::before {
2022-01-13 13:00:31 +00:00
content: "\f157";
}
2022-08-05 09:25:53 +00:00
i.icon.krw::before {
2022-01-13 13:00:31 +00:00
content: "\f159";
}
2022-08-05 09:25:53 +00:00
i.icon.lab::before {
2022-01-13 13:00:31 +00:00
content: "\f0c3";
}
2022-08-05 09:25:53 +00:00
i.icon.law::before {
2022-01-13 13:00:31 +00:00
content: "\f24e";
}
2022-08-05 09:25:53 +00:00
i.icon.legal::before {
2022-01-13 13:00:31 +00:00
content: "\f0e3";
}
2022-08-05 09:25:53 +00:00
i.icon.lesbian::before {
2022-01-13 13:00:31 +00:00
content: "\f226";
}
2022-08-05 09:25:53 +00:00
i.icon.level.down::before {
2022-01-13 13:00:31 +00:00
content: "\f3be";
}
2022-08-05 09:25:53 +00:00
i.icon.level.up::before {
2022-01-13 13:00:31 +00:00
content: "\f3bf";
}
2022-08-05 09:25:53 +00:00
i.icon.lightning::before {
2022-01-13 13:00:31 +00:00
content: "\f0e7";
}
2022-08-05 09:25:53 +00:00
i.icon.like::before {
2022-01-13 13:00:31 +00:00
content: "\f004";
}
2022-08-05 09:25:53 +00:00
i.icon.linegraph::before {
2022-01-13 13:00:31 +00:00
content: "\f201";
}
2022-08-05 09:25:53 +00:00
i.icon.linkify::before {
2022-01-13 13:00:31 +00:00
content: "\f0c1";
}
2022-08-05 09:25:53 +00:00
i.icon.lira::before {
2022-01-13 13:00:31 +00:00
content: "\f195";
}
2022-08-05 09:25:53 +00:00
i.icon.list.layout::before {
2022-01-13 13:00:31 +00:00
content: "\f00b";
}
2022-08-05 09:25:53 +00:00
i.icon.log.out::before {
2022-01-13 13:00:31 +00:00
content: "\f2f5";
}
2022-08-05 09:25:53 +00:00
i.icon.magnify::before {
2022-01-13 13:00:31 +00:00
content: "\f00e";
}
2022-08-05 09:25:53 +00:00
i.icon.mail::before {
2022-01-13 13:00:31 +00:00
content: "\f0e0";
}
2022-08-05 09:25:53 +00:00
i.icon.mail.forward::before {
2022-01-13 13:00:31 +00:00
content: "\f064";
}
2022-08-05 09:25:53 +00:00
i.icon.mail.square::before {
2022-01-13 13:00:31 +00:00
content: "\f199";
}
2022-08-05 09:25:53 +00:00
i.icon.male.homosexual::before {
2022-01-13 13:00:31 +00:00
content: "\f227";
}
2022-08-05 09:25:53 +00:00
i.icon.man::before {
2022-01-13 13:00:31 +00:00
content: "\f222";
}
2022-08-05 09:25:53 +00:00
i.icon.marker::before {
2022-01-13 13:00:31 +00:00
content: "\f041";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f229";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f22b";
}
2022-08-05 09:25:53 +00:00
i.icon.mars.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f22a";
}
2022-08-05 09:25:53 +00:00
i.icon.meanpath::before {
2022-01-13 13:00:31 +00:00
content: "\f0c8";
}
2022-08-05 09:25:53 +00:00
i.icon.military::before {
2022-01-13 13:00:31 +00:00
content: "\f0fb";
}
2022-08-05 09:25:53 +00:00
i.icon.money::before {
2022-01-13 13:00:31 +00:00
content: "\f3d1";
}
2022-08-05 09:25:53 +00:00
i.icon.move::before {
2022-01-13 13:00:31 +00:00
content: "\f0b2";
}
2022-08-05 09:25:53 +00:00
i.icon.mute::before {
2022-01-13 13:00:31 +00:00
content: "\f131";
}
2022-08-05 09:25:53 +00:00
i.icon.non.binary.transgender::before {
2022-01-13 13:00:31 +00:00
content: "\f223";
}
2022-08-05 09:25:53 +00:00
i.icon.numbered.list::before {
2022-01-13 13:00:31 +00:00
content: "\f0cb";
}
2022-08-05 09:25:53 +00:00
i.icon.options::before {
2022-01-13 13:00:31 +00:00
content: "\f1de";
}
2022-08-05 09:25:53 +00:00
i.icon.ordered.list::before {
2022-01-13 13:00:31 +00:00
content: "\f0cb";
}
2022-08-05 09:25:53 +00:00
i.icon.other.gender::before {
2022-01-13 13:00:31 +00:00
content: "\f229";
}
2022-08-05 09:25:53 +00:00
i.icon.other.gender.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f22b";
}
2022-08-05 09:25:53 +00:00
i.icon.other.gender.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f22a";
}
2022-08-05 09:25:53 +00:00
i.icon.payment::before {
2022-01-13 13:00:31 +00:00
content: "\f09d";
}
2022-08-05 09:25:53 +00:00
i.icon.pencil::before {
2022-01-13 13:00:31 +00:00
content: "\f303";
}
2022-08-05 09:25:53 +00:00
i.icon.pencil.square::before {
2022-01-13 13:00:31 +00:00
content: "\f14b";
}
2022-08-05 09:25:53 +00:00
i.icon.photo::before {
2022-01-13 13:00:31 +00:00
content: "\f030";
}
2022-08-05 09:25:53 +00:00
i.icon.picture::before {
2022-01-13 13:00:31 +00:00
content: "\f03e";
}
2022-08-05 09:25:53 +00:00
i.icon.pie.chart::before {
2022-01-13 13:00:31 +00:00
content: "\f200";
}
2022-08-05 09:25:53 +00:00
i.icon.pie.graph::before {
2022-01-13 13:00:31 +00:00
content: "\f200";
}
2022-08-05 09:25:53 +00:00
i.icon.pin::before {
2022-01-13 13:00:31 +00:00
content: "\f08d";
}
2022-08-05 09:25:53 +00:00
i.icon.plus.cart::before {
2022-01-13 13:00:31 +00:00
content: "\f217";
}
2022-08-05 09:25:53 +00:00
i.icon.point::before {
2022-01-13 13:00:31 +00:00
content: "\f041";
}
2022-08-05 09:25:53 +00:00
i.icon.pointing.down::before {
2022-01-13 13:00:31 +00:00
content: "\f0a7";
}
2022-08-05 09:25:53 +00:00
i.icon.pointing.left::before {
2022-01-13 13:00:31 +00:00
content: "\f0a5";
}
2022-08-05 09:25:53 +00:00
i.icon.pointing.right::before {
2022-01-13 13:00:31 +00:00
content: "\f0a4";
}
2022-08-05 09:25:53 +00:00
i.icon.pointing.up::before {
2022-01-13 13:00:31 +00:00
content: "\f0a6";
}
2022-08-05 09:25:53 +00:00
i.icon.pound::before {
2022-01-13 13:00:31 +00:00
content: "\f154";
}
2022-08-05 09:25:53 +00:00
i.icon.power::before {
2022-01-13 13:00:31 +00:00
content: "\f011";
}
2022-08-05 09:25:53 +00:00
i.icon.power.cord::before {
2022-01-13 13:00:31 +00:00
content: "\f1e6";
}
2022-08-05 09:25:53 +00:00
i.icon.privacy::before {
2022-01-13 13:00:31 +00:00
content: "\f084";
}
2022-08-05 09:25:53 +00:00
i.icon.protect::before {
2022-01-13 13:00:31 +00:00
content: "\f023";
}
2022-08-05 09:25:53 +00:00
i.icon.puzzle::before {
2022-01-13 13:00:31 +00:00
content: "\f12e";
}
2022-08-05 09:25:53 +00:00
i.icon.r.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f25d";
}
2022-08-05 09:25:53 +00:00
i.icon.radio::before {
2022-01-13 13:00:31 +00:00
content: "\f192";
}
2022-08-05 09:25:53 +00:00
i.icon.rain::before {
2022-01-13 13:00:31 +00:00
content: "\f0e9";
}
2022-08-05 09:25:53 +00:00
i.icon.record::before {
2022-01-13 13:00:31 +00:00
content: "\f03d";
}
2022-08-05 09:25:53 +00:00
i.icon.refresh::before {
2022-01-13 13:00:31 +00:00
content: "\f021";
}
2022-08-05 09:25:53 +00:00
i.icon.remove::before {
2022-01-13 13:00:31 +00:00
content: "\f00d";
}
2022-08-05 09:25:53 +00:00
i.icon.remove.bookmark::before {
2022-01-13 13:00:31 +00:00
content: "\f02e";
}
2022-08-05 09:25:53 +00:00
i.icon.remove.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f057";
}
2022-08-05 09:25:53 +00:00
i.icon.remove.from.calendar::before {
2022-01-13 13:00:31 +00:00
content: "\f272";
}
2022-08-05 09:25:53 +00:00
i.icon.remove.user::before {
2022-01-13 13:00:31 +00:00
content: "\f235";
}
2022-08-05 09:25:53 +00:00
i.icon.repeat::before {
2022-01-13 13:00:31 +00:00
content: "\f01e";
}
2022-08-05 09:25:53 +00:00
i.icon.resize.horizontal::before {
2022-01-13 13:00:31 +00:00
content: "\f337";
}
2022-08-05 09:25:53 +00:00
i.icon.resize.vertical::before {
2022-01-13 13:00:31 +00:00
content: "\f338";
}
2022-08-05 09:25:53 +00:00
i.icon.rmb::before {
2022-01-13 13:00:31 +00:00
content: "\f157";
}
2022-08-05 09:25:53 +00:00
i.icon.rouble::before {
2022-01-13 13:00:31 +00:00
content: "\f158";
}
2022-08-05 09:25:53 +00:00
i.icon.rub::before {
2022-01-13 13:00:31 +00:00
content: "\f158";
}
2022-08-05 09:25:53 +00:00
i.icon.ruble::before {
2022-01-13 13:00:31 +00:00
content: "\f158";
}
2022-08-05 09:25:53 +00:00
i.icon.rupee::before {
2022-01-13 13:00:31 +00:00
content: "\f156";
}
2022-08-05 09:25:53 +00:00
i.icon.s15::before {
2022-01-13 13:00:31 +00:00
content: "\f2cd";
}
2022-08-05 09:25:53 +00:00
i.icon.selected.radio::before {
2022-01-13 13:00:31 +00:00
content: "\f192";
}
2022-08-05 09:25:53 +00:00
i.icon.send::before {
2022-01-13 13:00:31 +00:00
content: "\f1d8";
}
2022-08-05 09:25:53 +00:00
i.icon.setting::before {
2022-01-13 13:00:31 +00:00
content: "\f013";
}
2022-08-05 09:25:53 +00:00
i.icon.settings::before {
2022-01-13 13:00:31 +00:00
content: "\f085";
}
2022-08-05 09:25:53 +00:00
i.icon.shekel::before {
2022-01-13 13:00:31 +00:00
content: "\f20b";
}
2022-08-05 09:25:53 +00:00
i.icon.sheqel::before {
2022-01-13 13:00:31 +00:00
content: "\f20b";
}
2022-08-05 09:25:53 +00:00
i.icon.shield::before {
2022-01-13 13:00:31 +00:00
content: "\f3ed";
}
2022-08-05 09:25:53 +00:00
i.icon.shipping::before {
2022-01-13 13:00:31 +00:00
content: "\f0d1";
}
2022-08-05 09:25:53 +00:00
i.icon.shop::before {
2022-01-13 13:00:31 +00:00
content: "\f07a";
}
2022-08-05 09:25:53 +00:00
i.icon.shuffle::before {
2022-01-13 13:00:31 +00:00
content: "\f074";
}
2022-08-05 09:25:53 +00:00
i.icon.shutdown::before {
2022-01-13 13:00:31 +00:00
content: "\f011";
}
2022-08-05 09:25:53 +00:00
i.icon.sidebar::before {
2022-01-13 13:00:31 +00:00
content: "\f0c9";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.in::before {
2022-01-13 13:00:31 +00:00
content: "\f2f6";
}
2022-08-05 09:25:53 +00:00
i.icon.sign.out::before {
2022-01-13 13:00:31 +00:00
content: "\f2f5";
}
2022-08-05 09:25:53 +00:00
i.icon.signing::before {
2022-01-13 13:00:31 +00:00
content: "\f2a7";
}
2022-08-05 09:25:53 +00:00
i.icon.signup::before {
2022-01-13 13:00:31 +00:00
content: "\f044";
}
2022-08-05 09:25:53 +00:00
i.icon.sliders::before {
2022-01-13 13:00:31 +00:00
content: "\f1de";
}
2022-08-05 09:25:53 +00:00
i.icon.soccer::before {
2022-01-13 13:00:31 +00:00
content: "\f1e3";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.alphabet.ascending::before {
2022-01-13 13:00:31 +00:00
content: "\f15d";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.alphabet.descending::before {
2022-01-13 13:00:31 +00:00
content: "\f15e";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.ascending::before {
2022-01-13 13:00:31 +00:00
content: "\f0de";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.content.ascending::before {
2022-01-13 13:00:31 +00:00
content: "\f160";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.content.descending::before {
2022-01-13 13:00:31 +00:00
content: "\f161";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.descending::before {
2022-01-13 13:00:31 +00:00
content: "\f0dd";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.numeric.ascending::before {
2022-01-13 13:00:31 +00:00
content: "\f162";
}
2022-08-05 09:25:53 +00:00
i.icon.sort.numeric.descending::before {
2022-01-13 13:00:31 +00:00
content: "\f163";
}
2022-08-05 09:25:53 +00:00
i.icon.sound::before {
2022-01-13 13:00:31 +00:00
content: "\f025";
}
2022-08-05 09:25:53 +00:00
i.icon.spoon::before {
2022-01-13 13:00:31 +00:00
content: "\f2e5";
}
2022-08-05 09:25:53 +00:00
i.icon.spy::before {
2022-01-13 13:00:31 +00:00
content: "\f21b";
}
2022-08-05 09:25:53 +00:00
i.icon.star.empty::before {
2022-01-13 13:00:31 +00:00
content: "\f005";
}
2022-08-05 09:25:53 +00:00
i.icon.star.half.empty::before {
2022-01-13 13:00:31 +00:00
content: "\f089";
}
2022-08-05 09:25:53 +00:00
i.icon.star.half.full::before {
2022-01-13 13:00:31 +00:00
content: "\f089";
}
2022-08-05 09:25:53 +00:00
i.icon.student::before {
2022-01-13 13:00:31 +00:00
content: "\f19d";
}
2022-08-05 09:25:53 +00:00
i.icon.talk::before {
2022-01-13 13:00:31 +00:00
content: "\f27a";
}
2022-08-05 09:25:53 +00:00
i.icon.target::before {
2022-01-13 13:00:31 +00:00
content: "\f140";
}
2022-08-05 09:25:53 +00:00
i.icon.teletype::before {
2022-01-13 13:00:31 +00:00
content: "\f1e4";
}
2022-08-05 09:25:53 +00:00
i.icon.television::before {
2022-01-13 13:00:31 +00:00
content: "\f26c";
}
2022-08-05 09:25:53 +00:00
i.icon.text.cursor::before {
2022-01-13 13:00:31 +00:00
content: "\f246";
}
2022-08-05 09:25:53 +00:00
i.icon.text.telephone::before {
2022-01-13 13:00:31 +00:00
content: "\f1e4";
}
2022-08-05 09:25:53 +00:00
i.icon.theme::before {
2022-01-13 13:00:31 +00:00
content: "\f043";
}
2022-08-05 09:25:53 +00:00
i.icon.thermometer::before {
2022-01-13 13:00:31 +00:00
content: "\f2c7";
}
2022-08-05 09:25:53 +00:00
i.icon.thumb.tack::before {
2022-01-13 13:00:31 +00:00
content: "\f08d";
}
2022-08-05 09:25:53 +00:00
i.icon.ticket::before {
2022-01-13 13:00:31 +00:00
content: "\f3ff";
}
2022-08-05 09:25:53 +00:00
i.icon.time::before {
2022-01-13 13:00:31 +00:00
content: "\f017";
}
2022-08-05 09:25:53 +00:00
i.icon.times.rectangle::before {
2022-01-13 13:00:31 +00:00
content: "\f410";
}
2022-08-05 09:25:53 +00:00
i.icon.tm::before {
2022-01-13 13:00:31 +00:00
content: "\f25c";
}
2022-08-05 09:25:53 +00:00
i.icon.toggle.down::before {
2022-01-13 13:00:31 +00:00
content: "\f150";
}
2022-08-05 09:25:53 +00:00
i.icon.toggle.left::before {
2022-01-13 13:00:31 +00:00
content: "\f191";
}
2022-08-05 09:25:53 +00:00
i.icon.toggle.right::before {
2022-01-13 13:00:31 +00:00
content: "\f152";
}
2022-08-05 09:25:53 +00:00
i.icon.toggle.up::before {
2022-01-13 13:00:31 +00:00
content: "\f151";
}
2022-08-05 09:25:53 +00:00
i.icon.translate::before {
2022-01-13 13:00:31 +00:00
content: "\f1ab";
}
2022-08-05 09:25:53 +00:00
i.icon.travel::before {
2022-01-13 13:00:31 +00:00
content: "\f0b1";
}
2022-08-05 09:25:53 +00:00
i.icon.treatment::before {
2022-01-13 13:00:31 +00:00
content: "\f0f1";
}
2022-08-05 09:25:53 +00:00
i.icon.triangle.down::before {
2022-01-13 13:00:31 +00:00
content: "\f0d7";
}
2022-08-05 09:25:53 +00:00
i.icon.triangle.left::before {
2022-01-13 13:00:31 +00:00
content: "\f0d9";
}
2022-08-05 09:25:53 +00:00
i.icon.triangle.right::before {
2022-01-13 13:00:31 +00:00
content: "\f0da";
}
2022-08-05 09:25:53 +00:00
i.icon.triangle.up::before {
2022-01-13 13:00:31 +00:00
content: "\f0d8";
}
2022-08-05 09:25:53 +00:00
i.icon.try::before {
2022-01-13 13:00:31 +00:00
content: "\f195";
}
2022-08-05 09:25:53 +00:00
i.icon.unhide::before {
2022-01-13 13:00:31 +00:00
content: "\f06e";
}
2022-08-05 09:25:53 +00:00
i.icon.unlinkify::before {
2022-01-13 13:00:31 +00:00
content: "\f127";
}
2022-08-05 09:25:53 +00:00
i.icon.unmute::before {
2022-01-13 13:00:31 +00:00
content: "\f130";
}
2022-08-05 09:25:53 +00:00
i.icon.unordered.list::before {
2022-01-13 13:00:31 +00:00
content: "\f0ca";
}
2022-08-05 09:25:53 +00:00
i.icon.usd::before {
2022-01-13 13:00:31 +00:00
content: "\f155";
}
2022-08-05 09:25:53 +00:00
i.icon.user.cancel::before {
2022-01-13 13:00:31 +00:00
content: "\f235";
}
2022-08-05 09:25:53 +00:00
i.icon.user.close::before {
2022-01-13 13:00:31 +00:00
content: "\f235";
}
2022-08-05 09:25:53 +00:00
i.icon.user.delete::before {
2022-01-13 13:00:31 +00:00
content: "\f235";
}
2022-08-05 09:25:53 +00:00
i.icon.user.doctor::before {
2022-01-13 13:00:31 +00:00
content: "\f0f0";
}
2022-08-05 09:25:53 +00:00
i.icon.user.x::before {
2022-01-13 13:00:31 +00:00
content: "\f235";
}
2022-08-05 09:25:53 +00:00
i.icon.vcard::before {
2022-01-13 13:00:31 +00:00
content: "\f2bb";
}
2022-08-05 09:25:53 +00:00
i.icon.video.camera::before {
2022-01-13 13:00:31 +00:00
content: "\f03d";
}
2022-08-05 09:25:53 +00:00
i.icon.video.play::before {
2022-01-13 13:00:31 +00:00
content: "\f144";
}
2022-08-05 09:25:53 +00:00
i.icon.volume.control.phone::before {
2022-01-13 13:00:31 +00:00
content: "\f2a0";
}
2022-08-05 09:25:53 +00:00
i.icon.wait::before {
2022-01-13 13:00:31 +00:00
content: "\f017";
}
2022-08-05 09:25:53 +00:00
i.icon.warning::before {
2022-01-13 13:00:31 +00:00
content: "\f12a";
}
2022-08-05 09:25:53 +00:00
i.icon.warning.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f06a";
}
2022-08-05 09:25:53 +00:00
i.icon.warning.sign::before {
2022-01-13 13:00:31 +00:00
content: "\f071";
}
2022-08-05 09:25:53 +00:00
i.icon.wi.fi::before {
2022-01-13 13:00:31 +00:00
content: "\f1eb";
}
2022-08-05 09:25:53 +00:00
i.icon.winner::before {
2022-01-13 13:00:31 +00:00
content: "\f091";
}
2022-08-05 09:25:53 +00:00
i.icon.wizard::before {
2022-01-13 13:00:31 +00:00
content: "\f0d0";
}
2022-08-05 09:25:53 +00:00
i.icon.woman::before {
2022-01-13 13:00:31 +00:00
content: "\f221";
}
2022-08-05 09:25:53 +00:00
i.icon.won::before {
2022-01-13 13:00:31 +00:00
content: "\f159";
}
2022-08-05 09:25:53 +00:00
i.icon.world::before {
2022-01-13 13:00:31 +00:00
content: "\f0ac";
}
2022-08-05 09:25:53 +00:00
i.icon.write::before {
2022-01-13 13:00:31 +00:00
content: "\f303";
}
2022-08-05 09:25:53 +00:00
i.icon.write.square::before {
2022-01-13 13:00:31 +00:00
content: "\f14b";
}
2022-08-05 09:25:53 +00:00
i.icon.x::before {
2022-01-13 13:00:31 +00:00
content: "\f00d";
}
2022-08-05 09:25:53 +00:00
i.icon.yen::before {
2022-01-13 13:00:31 +00:00
content: "\f157";
}
2022-08-05 09:25:53 +00:00
i.icon.zip::before {
2022-01-13 13:00:31 +00:00
content: "\f187";
}
2022-08-05 09:25:53 +00:00
i.icon.zoom::before {
2022-01-13 13:00:31 +00:00
content: "\f00e";
}
2022-08-05 09:25:53 +00:00
i.icon.zoom.in::before {
2022-01-13 13:00:31 +00:00
content: "\f00e";
}
2022-08-05 09:25:53 +00:00
i.icon.zoom.out::before {
2022-01-13 13:00:31 +00:00
content: "\f010";
}
/*******************************
2022-10-03 13:12:57 +00:00
Outline Icons
*******************************/
2022-01-13 13:00:31 +00:00
i.icon.outline {
font-family: 'outline-icons';
}
/* Icons */
2022-08-05 09:25:53 +00:00
i.icon.address.book.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2b9";
}
2022-08-05 09:25:53 +00:00
i.icon.address.card.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2bb";
}
2022-08-05 09:25:53 +00:00
i.icon.angry.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f556";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.down.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f358";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.left.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f359";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.right.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f35a";
}
2022-08-05 09:25:53 +00:00
i.icon.arrow.alternate.circle.up.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f35b";
}
2022-08-05 09:25:53 +00:00
i.icon.bell.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0f3";
}
2022-08-05 09:25:53 +00:00
i.icon.bell.slash.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1f6";
}
2022-08-05 09:25:53 +00:00
i.icon.bookmark.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f02e";
}
2022-08-05 09:25:53 +00:00
i.icon.building.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1ad";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f073";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.check.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f274";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.minus.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f272";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f133";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.plus.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f271";
}
2022-08-05 09:25:53 +00:00
i.icon.calendar.times.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f273";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.down.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f150";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.left.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f191";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.right.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f152";
}
2022-08-05 09:25:53 +00:00
i.icon.caret.square.up.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f151";
}
2022-08-05 09:25:53 +00:00
i.icon.chart.bar.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f080";
}
2022-08-05 09:25:53 +00:00
i.icon.check.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f058";
}
2022-08-05 09:25:53 +00:00
i.icon.check.square.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f14a";
}
2022-08-05 09:25:53 +00:00
i.icon.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f111";
}
2022-08-05 09:25:53 +00:00
i.icon.clipboard.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f328";
}
2022-08-05 09:25:53 +00:00
i.icon.clock.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f017";
}
2022-08-05 09:25:53 +00:00
i.icon.clone.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f24d";
}
2022-08-05 09:25:53 +00:00
i.icon.closed.captioning.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f20a";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f27a";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.dots.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f4ad";
}
2022-08-05 09:25:53 +00:00
i.icon.comment.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f075";
}
2022-08-05 09:25:53 +00:00
i.icon.comments.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f086";
}
2022-08-05 09:25:53 +00:00
i.icon.compass.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f14e";
}
2022-08-05 09:25:53 +00:00
i.icon.copy.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0c5";
}
2022-08-05 09:25:53 +00:00
i.icon.copyright.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1f9";
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f09d";
}
2022-08-05 09:25:53 +00:00
i.icon.dizzy.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f567";
}
2022-08-05 09:25:53 +00:00
i.icon.dot.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f192";
}
2022-08-05 09:25:53 +00:00
i.icon.edit.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f044";
}
2022-08-05 09:25:53 +00:00
i.icon.envelope.open.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2b6";
}
2022-08-05 09:25:53 +00:00
i.icon.envelope.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0e0";
}
2022-08-05 09:25:53 +00:00
i.icon.eye.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f06e";
}
2022-08-05 09:25:53 +00:00
i.icon.eye.slash.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f070";
}
2022-08-05 09:25:53 +00:00
i.icon.file.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f15c";
}
2022-08-05 09:25:53 +00:00
i.icon.file.archive.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c6";
}
2022-08-05 09:25:53 +00:00
i.icon.file.audio.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c7";
}
2022-08-05 09:25:53 +00:00
i.icon.file.code.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c9";
}
2022-08-05 09:25:53 +00:00
i.icon.file.excel.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c3";
}
2022-08-05 09:25:53 +00:00
i.icon.file.image.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c5";
}
2022-08-05 09:25:53 +00:00
i.icon.file.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f15b";
}
2022-08-05 09:25:53 +00:00
i.icon.file.pdf.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c1";
}
2022-08-05 09:25:53 +00:00
i.icon.file.powerpoint.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c4";
}
2022-08-05 09:25:53 +00:00
i.icon.file.video.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c8";
}
2022-08-05 09:25:53 +00:00
i.icon.file.word.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1c2";
}
2022-08-05 09:25:53 +00:00
i.icon.flag.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f024";
}
2022-08-05 09:25:53 +00:00
i.icon.flushed.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f579";
}
2022-08-05 09:25:53 +00:00
i.icon.folder.open.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f07c";
}
2022-08-05 09:25:53 +00:00
i.icon.folder.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f07b";
}
2022-08-05 09:25:53 +00:00
i.icon.frown.open.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f57a";
}
2022-08-05 09:25:53 +00:00
i.icon.frown.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f119";
}
2022-08-05 09:25:53 +00:00
i.icon.futbol.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1e3";
}
2022-08-05 09:25:53 +00:00
i.icon.gem.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f3a5";
}
2022-08-05 09:25:53 +00:00
i.icon.grimace.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f57f";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f581";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.beam.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f582";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.beam.sweat.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f583";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.hearts.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f584";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f580";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.squint.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f585";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.squint.tears.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f586";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.stars.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f587";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tears.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f588";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tongue.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f589";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tongue.squint.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f58a";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.tongue.wink.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f58b";
}
2022-08-05 09:25:53 +00:00
i.icon.grin.wink.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f58c";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.lizard.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f258";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.paper.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f256";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.peace.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f25b";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.down.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0a7";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.left.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0a5";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.right.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0a4";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.point.up.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0a6";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.pointer.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f25a";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.rock.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f255";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.scissors.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f257";
}
2022-08-05 09:25:53 +00:00
i.icon.hand.spock.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f259";
}
2022-08-05 09:25:53 +00:00
i.icon.handshake.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2b5";
}
2022-08-05 09:25:53 +00:00
i.icon.hdd.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0a0";
}
2022-08-05 09:25:53 +00:00
i.icon.heart.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f004";
}
2022-08-05 09:25:53 +00:00
i.icon.hospital.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0f8";
}
2022-08-05 09:25:53 +00:00
i.icon.hourglass.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f254";
}
2022-08-05 09:25:53 +00:00
i.icon.id.badge.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2c1";
}
2022-08-05 09:25:53 +00:00
i.icon.id.card.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2c2";
}
2022-08-05 09:25:53 +00:00
i.icon.image.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f03e";
}
2022-08-05 09:25:53 +00:00
i.icon.images.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f302";
}
2022-08-05 09:25:53 +00:00
i.icon.keyboard.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f11c";
}
2022-08-05 09:25:53 +00:00
i.icon.kiss.beam.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f597";
}
2022-08-05 09:25:53 +00:00
i.icon.kiss.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f596";
}
2022-08-05 09:25:53 +00:00
i.icon.kiss.wink.heart.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f598";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.beam.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f59a";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f599";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.squint.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f59b";
}
2022-08-05 09:25:53 +00:00
i.icon.laugh.wink.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f59c";
}
2022-08-05 09:25:53 +00:00
i.icon.lemon.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f094";
}
2022-08-05 09:25:53 +00:00
i.icon.life.ring.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1cd";
}
2022-08-05 09:25:53 +00:00
i.icon.lightbulb.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0eb";
}
2022-08-05 09:25:53 +00:00
i.icon.list.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f022";
}
2022-08-05 09:25:53 +00:00
i.icon.map.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f279";
}
2022-08-05 09:25:53 +00:00
i.icon.meh.blank.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5a4";
}
2022-08-05 09:25:53 +00:00
i.icon.meh.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f11a";
}
2022-08-05 09:25:53 +00:00
i.icon.meh.rolling.eyes.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5a5";
}
2022-08-05 09:25:53 +00:00
i.icon.minus.square.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f146";
}
2022-08-05 09:25:53 +00:00
i.icon.money.bill.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f3d1";
}
2022-08-05 09:25:53 +00:00
i.icon.moon.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f186";
}
2022-08-05 09:25:53 +00:00
i.icon.newspaper.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1ea";
}
2022-08-05 09:25:53 +00:00
i.icon.object.group.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f247";
}
2022-08-05 09:25:53 +00:00
i.icon.object.ungroup.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f248";
}
2022-08-05 09:25:53 +00:00
i.icon.paper.plane.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f1d8";
}
2022-08-05 09:25:53 +00:00
i.icon.pause.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f28b";
}
2022-08-05 09:25:53 +00:00
i.icon.play.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f144";
}
2022-08-05 09:25:53 +00:00
i.icon.plus.square.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0fe";
}
2022-08-05 09:25:53 +00:00
i.icon.question.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f059";
}
2022-08-05 09:25:53 +00:00
i.icon.registered.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f25d";
}
2022-08-05 09:25:53 +00:00
i.icon.sad.cry.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5b3";
}
2022-08-05 09:25:53 +00:00
i.icon.sad.tear.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5b4";
}
2022-08-05 09:25:53 +00:00
i.icon.save.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0c7";
}
2022-08-05 09:25:53 +00:00
i.icon.share.square.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f14d";
}
2022-08-05 09:25:53 +00:00
i.icon.smile.beam.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5b8";
}
2022-08-05 09:25:53 +00:00
i.icon.smile.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f118";
}
2022-08-05 09:25:53 +00:00
i.icon.smile.wink.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f4da";
}
2022-08-05 09:25:53 +00:00
i.icon.snowflake.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2dc";
}
2022-08-05 09:25:53 +00:00
i.icon.square.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f0c8";
}
2022-08-05 09:25:53 +00:00
i.icon.star.half.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f089";
}
2022-08-05 09:25:53 +00:00
i.icon.star.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f005";
}
2022-08-05 09:25:53 +00:00
i.icon.sticky.note.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f249";
}
2022-08-05 09:25:53 +00:00
i.icon.stop.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f28d";
}
2022-08-05 09:25:53 +00:00
i.icon.sun.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f185";
}
2022-08-05 09:25:53 +00:00
i.icon.surprise.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5c2";
}
2022-08-05 09:25:53 +00:00
i.icon.thumbs.down.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f165";
}
2022-08-05 09:25:53 +00:00
i.icon.thumbs.up.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f164";
}
2022-08-05 09:25:53 +00:00
i.icon.times.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f057";
}
2022-08-05 09:25:53 +00:00
i.icon.tired.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f5c8";
}
2022-08-05 09:25:53 +00:00
i.icon.trash.alternate.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2ed";
}
2022-08-05 09:25:53 +00:00
i.icon.user.circle.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2bd";
}
2022-08-05 09:25:53 +00:00
i.icon.user.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f007";
}
2022-08-05 09:25:53 +00:00
i.icon.window.close.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f410";
}
2022-08-05 09:25:53 +00:00
i.icon.window.maximize.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2d0";
}
2022-08-05 09:25:53 +00:00
i.icon.window.minimize.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2d1";
}
2022-08-05 09:25:53 +00:00
i.icon.window.restore.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f2d2";
}
2022-10-03 13:12:57 +00:00
/* Aliases */
2022-01-13 13:00:31 +00:00
/*******************************
2022-10-03 13:12:57 +00:00
Thin Icons
*******************************/
2022-01-13 13:00:31 +00:00
2022-10-03 13:12:57 +00:00
/* Icons */
i.icon.thin {
font-family: 'thin-icons';
2022-01-13 13:00:31 +00:00
}
2022-10-03 13:12:57 +00:00
/* Aliases */
/*******************************
Brand Icons
*******************************/
2022-01-13 13:00:31 +00:00
/* Icons */
2022-08-05 09:25:53 +00:00
i.icon.\35 00px::before {
2022-01-13 13:00:31 +00:00
content: "\f26e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.accessible::before {
2022-01-13 13:00:31 +00:00
content: "\f368";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.accusoft::before {
2022-01-13 13:00:31 +00:00
content: "\f369";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.acquisitions.incorporated::before {
2022-01-13 13:00:31 +00:00
content: "\f6af";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.adn::before {
2022-01-13 13:00:31 +00:00
content: "\f170";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.adversal::before {
2022-01-13 13:00:31 +00:00
content: "\f36a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.affiliatetheme::before {
2022-01-13 13:00:31 +00:00
content: "\f36b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.airbnb::before {
2022-01-13 13:00:31 +00:00
content: "\f834";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.algolia::before {
2022-01-13 13:00:31 +00:00
content: "\f36c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.alipay::before {
2022-01-13 13:00:31 +00:00
content: "\f642";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.amazon::before {
2022-01-13 13:00:31 +00:00
content: "\f270";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.amazon.pay::before {
2022-01-13 13:00:31 +00:00
content: "\f42c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.amilia::before {
2022-01-13 13:00:31 +00:00
content: "\f36d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.android::before {
2022-01-13 13:00:31 +00:00
content: "\f17b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.angellist::before {
2022-01-13 13:00:31 +00:00
content: "\f209";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.angrycreative::before {
2022-01-13 13:00:31 +00:00
content: "\f36e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.angular::before {
2022-01-13 13:00:31 +00:00
content: "\f420";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.app.store::before {
2022-01-13 13:00:31 +00:00
content: "\f36f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.app.store.ios::before {
2022-01-13 13:00:31 +00:00
content: "\f370";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.apper::before {
2022-01-13 13:00:31 +00:00
content: "\f371";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.apple::before {
2022-01-13 13:00:31 +00:00
content: "\f179";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.apple.pay::before {
2022-01-13 13:00:31 +00:00
content: "\f415";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.artstation::before {
2022-01-13 13:00:31 +00:00
content: "\f77a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.asymmetrik::before {
2022-01-13 13:00:31 +00:00
content: "\f372";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.atlassian::before {
2022-01-13 13:00:31 +00:00
content: "\f77b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.audible::before {
2022-01-13 13:00:31 +00:00
content: "\f373";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.autoprefixer::before {
2022-01-13 13:00:31 +00:00
content: "\f41c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.avianex::before {
2022-01-13 13:00:31 +00:00
content: "\f374";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.aviato::before {
2022-01-13 13:00:31 +00:00
content: "\f421";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.aws::before {
2022-01-13 13:00:31 +00:00
content: "\f375";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bandcamp::before {
2022-01-13 13:00:31 +00:00
content: "\f2d5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.battle.net::before {
2022-01-13 13:00:31 +00:00
content: "\f835";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.behance::before {
2022-01-13 13:00:31 +00:00
content: "\f1b4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.behance.square::before {
2022-01-13 13:00:31 +00:00
content: "\f1b5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bimobject::before {
2022-01-13 13:00:31 +00:00
content: "\f378";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bitbucket::before {
2022-01-13 13:00:31 +00:00
content: "\f171";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bitcoin::before {
2022-01-13 13:00:31 +00:00
content: "\f379";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bity::before {
2022-01-13 13:00:31 +00:00
content: "\f37a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.black.tie::before {
2022-01-13 13:00:31 +00:00
content: "\f27e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.blackberry::before {
2022-01-13 13:00:31 +00:00
content: "\f37b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.blogger::before {
2022-01-13 13:00:31 +00:00
content: "\f37c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.blogger.b::before {
2022-01-13 13:00:31 +00:00
content: "\f37d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bluetooth::before {
2022-01-13 13:00:31 +00:00
content: "\f293";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bluetooth.b::before {
2022-01-13 13:00:31 +00:00
content: "\f294";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bootstrap::before {
2022-01-13 13:00:31 +00:00
content: "\f836";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.btc::before {
2022-01-13 13:00:31 +00:00
content: "\f15a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.buffer::before {
2022-01-13 13:00:31 +00:00
content: "\f837";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.buromobelexperte::before {
2022-01-13 13:00:31 +00:00
content: "\f37f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.buy.n.large::before {
2022-01-13 13:00:31 +00:00
content: "\f8a6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.buysellads::before {
2022-01-13 13:00:31 +00:00
content: "\f20d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.canadian.maple.leaf::before {
2022-01-13 13:00:31 +00:00
content: "\f785";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.amazon.pay::before {
2022-01-13 13:00:31 +00:00
content: "\f42d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.amex::before {
2022-01-13 13:00:31 +00:00
content: "\f1f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.apple.pay::before {
2022-01-13 13:00:31 +00:00
content: "\f416";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.diners.club::before {
2022-01-13 13:00:31 +00:00
content: "\f24c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.discover::before {
2022-01-13 13:00:31 +00:00
content: "\f1f2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.jcb::before {
2022-01-13 13:00:31 +00:00
content: "\f24b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.mastercard::before {
2022-01-13 13:00:31 +00:00
content: "\f1f1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.paypal::before {
2022-01-13 13:00:31 +00:00
content: "\f1f4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.stripe::before {
2022-01-13 13:00:31 +00:00
content: "\f1f5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cc.visa::before {
2022-01-13 13:00:31 +00:00
content: "\f1f0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.centercode::before {
2022-01-13 13:00:31 +00:00
content: "\f380";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.centos::before {
2022-01-13 13:00:31 +00:00
content: "\f789";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.chrome::before {
2022-01-13 13:00:31 +00:00
content: "\f268";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.chromecast::before {
2022-01-13 13:00:31 +00:00
content: "\f838";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cloudflare::before {
content: "\e07d";
font-family: 'brand-icons';
}
i.icon.cloudscale::before {
2022-01-13 13:00:31 +00:00
content: "\f383";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cloudsmith::before {
2022-01-13 13:00:31 +00:00
content: "\f384";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cloudversify::before {
2022-01-13 13:00:31 +00:00
content: "\f385";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.codepen::before {
2022-01-13 13:00:31 +00:00
content: "\f1cb";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.codiepie::before {
2022-01-13 13:00:31 +00:00
content: "\f284";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.confluence::before {
2022-01-13 13:00:31 +00:00
content: "\f78d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.connectdevelop::before {
2022-01-13 13:00:31 +00:00
content: "\f20e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.contao::before {
2022-01-13 13:00:31 +00:00
content: "\f26d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cotton.bureau::before {
2022-01-13 13:00:31 +00:00
content: "\f89e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cpanel::before {
2022-01-13 13:00:31 +00:00
content: "\f388";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons::before {
2022-01-13 13:00:31 +00:00
content: "\f25e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.by::before {
2022-01-13 13:00:31 +00:00
content: "\f4e7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.nc::before {
2022-01-13 13:00:31 +00:00
content: "\f4e8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.nc.eu::before {
2022-01-13 13:00:31 +00:00
content: "\f4e9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.nc.jp::before {
2022-01-13 13:00:31 +00:00
content: "\f4ea";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.nd::before {
2022-01-13 13:00:31 +00:00
content: "\f4eb";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.pd::before {
2022-01-13 13:00:31 +00:00
content: "\f4ec";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.pd.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f4ed";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.remix::before {
2022-01-13 13:00:31 +00:00
content: "\f4ee";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.sa::before {
2022-01-13 13:00:31 +00:00
content: "\f4ef";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.sampling::before {
2022-01-13 13:00:31 +00:00
content: "\f4f0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.sampling.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f4f1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.share::before {
2022-01-13 13:00:31 +00:00
content: "\f4f2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.creative.commons.zero::before {
2022-01-13 13:00:31 +00:00
content: "\f4f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.critical.role::before {
2022-01-13 13:00:31 +00:00
content: "\f6c9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.css3::before {
2022-01-13 13:00:31 +00:00
content: "\f13c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.css3.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f38b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.cuttlefish::before {
2022-01-13 13:00:31 +00:00
content: "\f38c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.d.and.d::before {
2022-01-13 13:00:31 +00:00
content: "\f38d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.d.and.d.beyond::before {
2022-01-13 13:00:31 +00:00
content: "\f6ca";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dailymotion::before {
content: "\e052";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dashcube::before {
2022-01-13 13:00:31 +00:00
content: "\f210";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.deezer::before {
content: "\e077";
font-family: 'brand-icons';
}
i.icon.delicious::before {
2022-01-13 13:00:31 +00:00
content: "\f1a5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.deploydog::before {
2022-01-13 13:00:31 +00:00
content: "\f38e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.deskpro::before {
2022-01-13 13:00:31 +00:00
content: "\f38f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dev::before {
2022-01-13 13:00:31 +00:00
content: "\f6cc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.deviantart::before {
2022-01-13 13:00:31 +00:00
content: "\f1bd";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dhl::before {
2022-01-13 13:00:31 +00:00
content: "\f790";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.diaspora::before {
2022-01-13 13:00:31 +00:00
content: "\f791";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.digg::before {
2022-01-13 13:00:31 +00:00
content: "\f1a6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.digital.ocean::before {
2022-01-13 13:00:31 +00:00
content: "\f391";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.discord::before {
2022-01-13 13:00:31 +00:00
content: "\f392";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.discourse::before {
2022-01-13 13:00:31 +00:00
content: "\f393";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dochub::before {
2022-01-13 13:00:31 +00:00
content: "\f394";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.docker::before {
2022-01-13 13:00:31 +00:00
content: "\f395";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.draft2digital::before {
2022-01-13 13:00:31 +00:00
content: "\f396";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dribbble::before {
2022-01-13 13:00:31 +00:00
content: "\f17d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dribbble.square::before {
2022-01-13 13:00:31 +00:00
content: "\f397";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dropbox::before {
2022-01-13 13:00:31 +00:00
content: "\f16b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.drupal::before {
2022-01-13 13:00:31 +00:00
content: "\f1a9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dyalog::before {
2022-01-13 13:00:31 +00:00
content: "\f399";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.earlybirds::before {
2022-01-13 13:00:31 +00:00
content: "\f39a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ebay::before {
2022-01-13 13:00:31 +00:00
content: "\f4f4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.edge::before {
2022-01-13 13:00:31 +00:00
content: "\f282";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.edge.legacy::before {
content: "\e078";
font-family: 'brand-icons';
}
i.icon.elementor::before {
2022-01-13 13:00:31 +00:00
content: "\f430";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ello::before {
2022-01-13 13:00:31 +00:00
content: "\f5f1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ember::before {
2022-01-13 13:00:31 +00:00
content: "\f423";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.empire::before {
2022-01-13 13:00:31 +00:00
content: "\f1d1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.envira::before {
2022-01-13 13:00:31 +00:00
content: "\f299";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.erlang::before {
2022-01-13 13:00:31 +00:00
content: "\f39d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ethereum::before {
2022-01-13 13:00:31 +00:00
content: "\f42e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.etsy::before {
2022-01-13 13:00:31 +00:00
content: "\f2d7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.evernote::before {
2022-01-13 13:00:31 +00:00
content: "\f839";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.expeditedssl::before {
2022-01-13 13:00:31 +00:00
content: "\f23e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.facebook::before {
2022-01-13 13:00:31 +00:00
content: "\f09a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.facebook.f::before {
2022-01-13 13:00:31 +00:00
content: "\f39e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.facebook.messenger::before {
2022-01-13 13:00:31 +00:00
content: "\f39f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.facebook.square::before {
2022-01-13 13:00:31 +00:00
content: "\f082";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fantasy.flight.games::before {
2022-01-13 13:00:31 +00:00
content: "\f6dc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fedex::before {
2022-01-13 13:00:31 +00:00
content: "\f797";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fedora::before {
2022-01-13 13:00:31 +00:00
content: "\f798";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.figma::before {
2022-01-13 13:00:31 +00:00
content: "\f799";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.firefox::before {
2022-01-13 13:00:31 +00:00
content: "\f269";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.firefox.browser::before {
content: "\e007";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.first.order::before {
2022-01-13 13:00:31 +00:00
content: "\f2b0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.first.order.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f50a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.firstdraft::before {
2022-01-13 13:00:31 +00:00
content: "\f3a1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.flickr::before {
2022-01-13 13:00:31 +00:00
content: "\f16e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.flipboard::before {
2022-01-13 13:00:31 +00:00
content: "\f44d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fly::before {
2022-01-13 13:00:31 +00:00
content: "\f417";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.font.awesome::before {
2022-01-13 13:00:31 +00:00
content: "\f2b4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.font.awesome.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f35c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.font.awesome.flag::before {
2022-01-13 13:00:31 +00:00
content: "\f425";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fonticons::before {
2022-01-13 13:00:31 +00:00
content: "\f280";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fonticons.fi::before {
2022-01-13 13:00:31 +00:00
content: "\f3a2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fort.awesome::before {
2022-01-13 13:00:31 +00:00
content: "\f286";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fort.awesome.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f3a3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.forumbee::before {
2022-01-13 13:00:31 +00:00
content: "\f211";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.foursquare::before {
2022-01-13 13:00:31 +00:00
content: "\f180";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.free.code.camp::before {
2022-01-13 13:00:31 +00:00
content: "\f2c5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.freebsd::before {
2022-01-13 13:00:31 +00:00
content: "\f3a4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fulcrum::before {
2022-01-13 13:00:31 +00:00
content: "\f50b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.galactic.republic::before {
2022-01-13 13:00:31 +00:00
content: "\f50c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.galactic.senate::before {
2022-01-13 13:00:31 +00:00
content: "\f50d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.get.pocket::before {
2022-01-13 13:00:31 +00:00
content: "\f265";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gg::before {
2022-01-13 13:00:31 +00:00
content: "\f260";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gg.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f261";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.git::before {
2022-01-13 13:00:31 +00:00
content: "\f1d3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.git.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f841";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.git.square::before {
2022-01-13 13:00:31 +00:00
content: "\f1d2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.github::before {
2022-01-13 13:00:31 +00:00
content: "\f09b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.github.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f113";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.github.square::before {
2022-01-13 13:00:31 +00:00
content: "\f092";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gitkraken::before {
2022-01-13 13:00:31 +00:00
content: "\f3a6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gitlab::before {
2022-01-13 13:00:31 +00:00
content: "\f296";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gitter::before {
2022-01-13 13:00:31 +00:00
content: "\f426";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.glide::before {
2022-01-13 13:00:31 +00:00
content: "\f2a5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.glide.g::before {
2022-01-13 13:00:31 +00:00
content: "\f2a6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gofore::before {
2022-01-13 13:00:31 +00:00
content: "\f3a7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.goodreads::before {
2022-01-13 13:00:31 +00:00
content: "\f3a8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.goodreads.g::before {
2022-01-13 13:00:31 +00:00
content: "\f3a9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google::before {
2022-01-13 13:00:31 +00:00
content: "\f1a0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.drive::before {
2022-01-13 13:00:31 +00:00
content: "\f3aa";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.pay::before {
content: "\e079";
font-family: 'brand-icons';
}
i.icon.google.play::before {
2022-01-13 13:00:31 +00:00
content: "\f3ab";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.plus::before {
2022-01-13 13:00:31 +00:00
content: "\f2b3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.plus.g::before {
2022-01-13 13:00:31 +00:00
content: "\f0d5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.plus.square::before {
2022-01-13 13:00:31 +00:00
content: "\f0d4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.wallet::before {
2022-01-13 13:00:31 +00:00
content: "\f1ee";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gratipay::before {
2022-01-13 13:00:31 +00:00
content: "\f184";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.grav::before {
2022-01-13 13:00:31 +00:00
content: "\f2d6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gripfire::before {
2022-01-13 13:00:31 +00:00
content: "\f3ac";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.grunt::before {
2022-01-13 13:00:31 +00:00
content: "\f3ad";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.guilded::before {
content: "\e07e";
font-family: 'brand-icons';
}
i.icon.gulp::before {
2022-01-13 13:00:31 +00:00
content: "\f3ae";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hacker.news::before {
2022-01-13 13:00:31 +00:00
content: "\f1d4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hacker.news.square::before {
2022-01-13 13:00:31 +00:00
content: "\f3af";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hackerrank::before {
2022-01-13 13:00:31 +00:00
content: "\f5f7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hips::before {
2022-01-13 13:00:31 +00:00
content: "\f452";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hire.a.helper::before {
2022-01-13 13:00:31 +00:00
content: "\f3b0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hive::before {
content: "\e07f";
font-family: 'brand-icons';
}
i.icon.hooli::before {
2022-01-13 13:00:31 +00:00
content: "\f427";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hornbill::before {
2022-01-13 13:00:31 +00:00
content: "\f592";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hotjar::before {
2022-01-13 13:00:31 +00:00
content: "\f3b1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.houzz::before {
2022-01-13 13:00:31 +00:00
content: "\f27c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.html5::before {
2022-01-13 13:00:31 +00:00
content: "\f13b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.hubspot::before {
2022-01-13 13:00:31 +00:00
content: "\f3b2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ideal::before {
content: "\e013";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.imdb::before {
2022-01-13 13:00:31 +00:00
content: "\f2d8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.innosoft::before {
content: "\e080";
font-family: 'brand-icons';
}
i.icon.instagram::before {
2022-01-13 13:00:31 +00:00
content: "\f16d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.instagram.square::before {
content: "\e055";
font-family: 'brand-icons';
}
i.icon.instalod::before {
content: "\e081";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.intercom::before {
2022-01-13 13:00:31 +00:00
content: "\f7af";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.internet.explorer::before {
2022-01-13 13:00:31 +00:00
content: "\f26b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.invision::before {
2022-01-13 13:00:31 +00:00
content: "\f7b0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ioxhost::before {
2022-01-13 13:00:31 +00:00
content: "\f208";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.itch.io::before {
2022-01-13 13:00:31 +00:00
content: "\f83a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.itunes::before {
2022-01-13 13:00:31 +00:00
content: "\f3b4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.itunes.note::before {
2022-01-13 13:00:31 +00:00
content: "\f3b5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.java::before {
2022-01-13 13:00:31 +00:00
content: "\f4e4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.jedi.order::before {
2022-01-13 13:00:31 +00:00
content: "\f50e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.jenkins::before {
2022-01-13 13:00:31 +00:00
content: "\f3b6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.jira::before {
2022-01-13 13:00:31 +00:00
content: "\f7b1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.joget::before {
2022-01-13 13:00:31 +00:00
content: "\f3b7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.joomla::before {
2022-01-13 13:00:31 +00:00
content: "\f1aa";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.js::before {
2022-01-13 13:00:31 +00:00
content: "\f3b8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.js.square::before {
2022-01-13 13:00:31 +00:00
content: "\f3b9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.jsfiddle::before {
2022-01-13 13:00:31 +00:00
content: "\f1cc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.kaggle::before {
2022-01-13 13:00:31 +00:00
content: "\f5fa";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.keybase::before {
2022-01-13 13:00:31 +00:00
content: "\f4f5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.keycdn::before {
2022-01-13 13:00:31 +00:00
content: "\f3ba";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.kickstarter::before {
2022-01-13 13:00:31 +00:00
content: "\f3bb";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.kickstarter.k::before {
2022-01-13 13:00:31 +00:00
content: "\f3bc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.korvue::before {
2022-01-13 13:00:31 +00:00
content: "\f42f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.laravel::before {
2022-01-13 13:00:31 +00:00
content: "\f3bd";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.lastfm::before {
2022-01-13 13:00:31 +00:00
content: "\f202";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.lastfm.square::before {
2022-01-13 13:00:31 +00:00
content: "\f203";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.leanpub::before {
2022-01-13 13:00:31 +00:00
content: "\f212";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.lesscss::before {
2022-01-13 13:00:31 +00:00
content: "\f41d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.linechat::before {
2022-01-13 13:00:31 +00:00
content: "\f3c0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.linkedin::before {
2022-01-13 13:00:31 +00:00
content: "\f08c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.linkedin.in::before {
2022-01-13 13:00:31 +00:00
content: "\f0e1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.linode::before {
2022-01-13 13:00:31 +00:00
content: "\f2b8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.linux::before {
2022-01-13 13:00:31 +00:00
content: "\f17c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.lyft::before {
2022-01-13 13:00:31 +00:00
content: "\f3c3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.magento::before {
2022-01-13 13:00:31 +00:00
content: "\f3c4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mailchimp::before {
2022-01-13 13:00:31 +00:00
content: "\f59e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mandalorian::before {
2022-01-13 13:00:31 +00:00
content: "\f50f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.markdown::before {
2022-01-13 13:00:31 +00:00
content: "\f60f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mastodon::before {
2022-01-13 13:00:31 +00:00
content: "\f4f6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.maxcdn::before {
2022-01-13 13:00:31 +00:00
content: "\f136";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mdb::before {
2022-01-13 13:00:31 +00:00
content: "\f8ca";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.medapps::before {
2022-01-13 13:00:31 +00:00
content: "\f3c6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.medium::before {
2022-01-13 13:00:31 +00:00
content: "\f23a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.medium.m::before {
2022-01-13 13:00:31 +00:00
content: "\f3c7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.medrt::before {
2022-01-13 13:00:31 +00:00
content: "\f3c8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.meetup::before {
2022-01-13 13:00:31 +00:00
content: "\f2e0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.megaport::before {
2022-01-13 13:00:31 +00:00
content: "\f5a3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mendeley::before {
2022-01-13 13:00:31 +00:00
content: "\f7b3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.microblog::before {
content: "\e01a";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.microsoft::before {
2022-01-13 13:00:31 +00:00
content: "\f3ca";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mix::before {
2022-01-13 13:00:31 +00:00
content: "\f3cb";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mixcloud::before {
2022-01-13 13:00:31 +00:00
content: "\f289";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mixer::before {
content: "\e056";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mizuni::before {
2022-01-13 13:00:31 +00:00
content: "\f3cc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.modx::before {
2022-01-13 13:00:31 +00:00
content: "\f285";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.monero::before {
2022-01-13 13:00:31 +00:00
content: "\f3d0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.napster::before {
2022-01-13 13:00:31 +00:00
content: "\f3d2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.neos::before {
2022-01-13 13:00:31 +00:00
content: "\f612";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.nimblr::before {
2022-01-13 13:00:31 +00:00
content: "\f5a8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.node::before {
2022-01-13 13:00:31 +00:00
content: "\f419";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.node.js::before {
2022-01-13 13:00:31 +00:00
content: "\f3d3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.npm::before {
2022-01-13 13:00:31 +00:00
content: "\f3d4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ns8::before {
2022-01-13 13:00:31 +00:00
content: "\f3d5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.nutritionix::before {
2022-01-13 13:00:31 +00:00
content: "\f3d6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.octopus.deploy::before {
content: "\e082";
font-family: 'brand-icons';
}
i.icon.odnoklassniki::before {
2022-01-13 13:00:31 +00:00
content: "\f263";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.odnoklassniki.square::before {
2022-01-13 13:00:31 +00:00
content: "\f264";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.old.republic::before {
2022-01-13 13:00:31 +00:00
content: "\f510";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.opencart::before {
2022-01-13 13:00:31 +00:00
content: "\f23d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.openid::before {
2022-01-13 13:00:31 +00:00
content: "\f19b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.opera::before {
2022-01-13 13:00:31 +00:00
content: "\f26a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.optin.monster::before {
2022-01-13 13:00:31 +00:00
content: "\f23c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.orcid::before {
2022-01-13 13:00:31 +00:00
content: "\f8d2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.osi::before {
2022-01-13 13:00:31 +00:00
content: "\f41a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.page4::before {
2022-01-13 13:00:31 +00:00
content: "\f3d7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pagelines::before {
2022-01-13 13:00:31 +00:00
content: "\f18c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.palfed::before {
2022-01-13 13:00:31 +00:00
content: "\f3d8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.patreon::before {
2022-01-13 13:00:31 +00:00
content: "\f3d9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.paypal::before {
2022-01-13 13:00:31 +00:00
content: "\f1ed";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.penny.arcade::before {
2022-01-13 13:00:31 +00:00
content: "\f704";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.perbyte::before {
content: "\e083";
font-family: 'brand-icons';
}
i.icon.periscope::before {
2022-01-13 13:00:31 +00:00
content: "\f3da";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.phabricator::before {
2022-01-13 13:00:31 +00:00
content: "\f3db";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.phoenix.framework::before {
2022-01-13 13:00:31 +00:00
content: "\f3dc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.phoenix.squadron::before {
2022-01-13 13:00:31 +00:00
content: "\f511";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.php::before {
2022-01-13 13:00:31 +00:00
content: "\f457";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pied.piper::before {
2022-01-13 13:00:31 +00:00
content: "\f2ae";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pied.piper.alternate::before {
2022-01-13 13:00:31 +00:00
content: "\f1a8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pied.piper.hat::before {
2022-01-13 13:00:31 +00:00
content: "\f4e5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pied.piper.pp::before {
2022-01-13 13:00:31 +00:00
content: "\f1a7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pied.piper.square::before {
content: "\e01e";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pinterest::before {
2022-01-13 13:00:31 +00:00
content: "\f0d2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pinterest.p::before {
2022-01-13 13:00:31 +00:00
content: "\f231";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pinterest.square::before {
2022-01-13 13:00:31 +00:00
content: "\f0d3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.playstation::before {
2022-01-13 13:00:31 +00:00
content: "\f3df";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.product.hunt::before {
2022-01-13 13:00:31 +00:00
content: "\f288";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pushed::before {
2022-01-13 13:00:31 +00:00
content: "\f3e1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.python::before {
2022-01-13 13:00:31 +00:00
content: "\f3e2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.qq::before {
2022-01-13 13:00:31 +00:00
content: "\f1d6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.quinscape::before {
2022-01-13 13:00:31 +00:00
content: "\f459";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.quora::before {
2022-01-13 13:00:31 +00:00
content: "\f2c4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.r.project::before {
2022-01-13 13:00:31 +00:00
content: "\f4f7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.raspberry.pi::before {
2022-01-13 13:00:31 +00:00
content: "\f7bb";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ravelry::before {
2022-01-13 13:00:31 +00:00
content: "\f2d9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.react::before {
2022-01-13 13:00:31 +00:00
content: "\f41b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.reacteurope::before {
2022-01-13 13:00:31 +00:00
content: "\f75d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.readme::before {
2022-01-13 13:00:31 +00:00
content: "\f4d5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.rebel::before {
2022-01-13 13:00:31 +00:00
content: "\f1d0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.reddit::before {
2022-01-13 13:00:31 +00:00
content: "\f1a1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.reddit.alien::before {
2022-01-13 13:00:31 +00:00
content: "\f281";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.reddit.square::before {
2022-01-13 13:00:31 +00:00
content: "\f1a2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.redhat::before {
2022-01-13 13:00:31 +00:00
content: "\f7bc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.redriver::before {
2022-01-13 13:00:31 +00:00
content: "\f3e3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.redyeti::before {
2022-01-13 13:00:31 +00:00
content: "\f69d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.renren::before {
2022-01-13 13:00:31 +00:00
content: "\f18b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.replyd::before {
2022-01-13 13:00:31 +00:00
content: "\f3e6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.researchgate::before {
2022-01-13 13:00:31 +00:00
content: "\f4f8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.resolving::before {
2022-01-13 13:00:31 +00:00
content: "\f3e7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.rev::before {
2022-01-13 13:00:31 +00:00
content: "\f5b2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.rocketchat::before {
2022-01-13 13:00:31 +00:00
content: "\f3e8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.rockrms::before {
2022-01-13 13:00:31 +00:00
content: "\f3e9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.rust::before {
content: "\e07a";
font-family: 'brand-icons';
}
i.icon.safari::before {
2022-01-13 13:00:31 +00:00
content: "\f267";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.salesforce::before {
2022-01-13 13:00:31 +00:00
content: "\f83b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sass::before {
2022-01-13 13:00:31 +00:00
content: "\f41e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.schlix::before {
2022-01-13 13:00:31 +00:00
content: "\f3ea";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.scribd::before {
2022-01-13 13:00:31 +00:00
content: "\f28a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.searchengin::before {
2022-01-13 13:00:31 +00:00
content: "\f3eb";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sellcast::before {
2022-01-13 13:00:31 +00:00
content: "\f2da";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sellsy::before {
2022-01-13 13:00:31 +00:00
content: "\f213";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.servicestack::before {
2022-01-13 13:00:31 +00:00
content: "\f3ec";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.shirtsinbulk::before {
2022-01-13 13:00:31 +00:00
content: "\f214";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.shopify::before {
content: "\e057";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.shopware::before {
2022-01-13 13:00:31 +00:00
content: "\f5b5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.simplybuilt::before {
2022-01-13 13:00:31 +00:00
content: "\f215";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sistrix::before {
2022-01-13 13:00:31 +00:00
content: "\f3ee";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sith::before {
2022-01-13 13:00:31 +00:00
content: "\f512";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sketch::before {
2022-01-13 13:00:31 +00:00
content: "\f7c6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.skyatlas::before {
2022-01-13 13:00:31 +00:00
content: "\f216";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.skype::before {
2022-01-13 13:00:31 +00:00
content: "\f17e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.slack::before {
2022-01-13 13:00:31 +00:00
content: "\f198";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.slack.hash::before {
2022-01-13 13:00:31 +00:00
content: "\f3ef";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.slideshare::before {
2022-01-13 13:00:31 +00:00
content: "\f1e7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.snapchat::before {
2022-01-13 13:00:31 +00:00
content: "\f2ab";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.snapchat.ghost::before {
2022-01-13 13:00:31 +00:00
content: "\f2ac";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.snapchat.square::before {
2022-01-13 13:00:31 +00:00
content: "\f2ad";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.soundcloud::before {
2022-01-13 13:00:31 +00:00
content: "\f1be";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sourcetree::before {
2022-01-13 13:00:31 +00:00
content: "\f7d3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.speakap::before {
2022-01-13 13:00:31 +00:00
content: "\f3f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.speaker.deck::before {
2022-01-13 13:00:31 +00:00
content: "\f83c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.spotify::before {
2022-01-13 13:00:31 +00:00
content: "\f1bc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.squarespace::before {
2022-01-13 13:00:31 +00:00
content: "\f5be";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stack.exchange::before {
2022-01-13 13:00:31 +00:00
content: "\f18d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stack.overflow::before {
2022-01-13 13:00:31 +00:00
content: "\f16c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stackpath::before {
2022-01-13 13:00:31 +00:00
content: "\f842";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.staylinked::before {
2022-01-13 13:00:31 +00:00
content: "\f3f5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.steam::before {
2022-01-13 13:00:31 +00:00
content: "\f1b6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.steam.square::before {
2022-01-13 13:00:31 +00:00
content: "\f1b7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.steam.symbol::before {
2022-01-13 13:00:31 +00:00
content: "\f3f6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.sticker.mule::before {
2022-01-13 13:00:31 +00:00
content: "\f3f7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.strava::before {
2022-01-13 13:00:31 +00:00
content: "\f428";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stripe::before {
2022-01-13 13:00:31 +00:00
content: "\f429";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stripe.s::before {
2022-01-13 13:00:31 +00:00
content: "\f42a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.studiovinari::before {
2022-01-13 13:00:31 +00:00
content: "\f3f8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stumbleupon::before {
2022-01-13 13:00:31 +00:00
content: "\f1a4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stumbleupon.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f1a3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.superpowers::before {
2022-01-13 13:00:31 +00:00
content: "\f2dd";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.supple::before {
2022-01-13 13:00:31 +00:00
content: "\f3f9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.suse::before {
2022-01-13 13:00:31 +00:00
content: "\f7d6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.swift::before {
2022-01-13 13:00:31 +00:00
content: "\f8e1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.symfony::before {
2022-01-13 13:00:31 +00:00
content: "\f83d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.teamspeak::before {
2022-01-13 13:00:31 +00:00
content: "\f4f9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.telegram::before {
2022-01-13 13:00:31 +00:00
content: "\f2c6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.telegram.plane::before {
2022-01-13 13:00:31 +00:00
content: "\f3fe";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.tencent.weibo::before {
2022-01-13 13:00:31 +00:00
content: "\f1d5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.themeco::before {
2022-01-13 13:00:31 +00:00
content: "\f5c6";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.themeisle::before {
2022-01-13 13:00:31 +00:00
content: "\f2b2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.think.peaks::before {
2022-01-13 13:00:31 +00:00
content: "\f731";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.tiktok::before {
content: "\e07b";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.trade.federation::before {
content: "\f513";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.trello::before {
content: "\f181";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.tumblr::before {
2022-01-13 13:00:31 +00:00
content: "\f173";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.tumblr.square::before {
2022-01-13 13:00:31 +00:00
content: "\f174";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.twitch::before {
2022-01-13 13:00:31 +00:00
content: "\f1e8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.twitter::before {
2022-01-13 13:00:31 +00:00
content: "\f099";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.twitter.square::before {
2022-01-13 13:00:31 +00:00
content: "\f081";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.typo3::before {
2022-01-13 13:00:31 +00:00
content: "\f42b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.uber::before {
2022-01-13 13:00:31 +00:00
content: "\f402";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ubuntu::before {
2022-01-13 13:00:31 +00:00
content: "\f7df";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.uikit::before {
2022-01-13 13:00:31 +00:00
content: "\f403";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.umbraco::before {
2022-01-13 13:00:31 +00:00
content: "\f8e8";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.uncharted::before {
content: "\e084";
font-family: 'brand-icons';
}
i.icon.uniregistry::before {
2022-01-13 13:00:31 +00:00
content: "\f404";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.unity::before {
content: "\e049";
2022-01-13 13:00:31 +00:00
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.unsplash::before {
content: "\e07c";
font-family: 'brand-icons';
}
i.icon.untappd::before {
2022-01-13 13:00:31 +00:00
content: "\f405";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ups::before {
2022-01-13 13:00:31 +00:00
content: "\f7e0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.usb::before {
2022-01-13 13:00:31 +00:00
content: "\f287";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.usps::before {
2022-01-13 13:00:31 +00:00
content: "\f7e1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ussunnah::before {
2022-01-13 13:00:31 +00:00
content: "\f407";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vaadin::before {
2022-01-13 13:00:31 +00:00
content: "\f408";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.viacoin::before {
2022-01-13 13:00:31 +00:00
content: "\f237";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.viadeo::before {
2022-01-13 13:00:31 +00:00
content: "\f2a9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.viadeo.square::before {
2022-01-13 13:00:31 +00:00
content: "\f2aa";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.viber::before {
2022-01-13 13:00:31 +00:00
content: "\f409";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vimeo::before {
2022-01-13 13:00:31 +00:00
content: "\f40a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vimeo.square::before {
2022-01-13 13:00:31 +00:00
content: "\f194";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vimeo.v::before {
2022-01-13 13:00:31 +00:00
content: "\f27d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vine::before {
2022-01-13 13:00:31 +00:00
content: "\f1ca";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vk::before {
2022-01-13 13:00:31 +00:00
content: "\f189";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vnv::before {
2022-01-13 13:00:31 +00:00
content: "\f40b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.vuejs::before {
2022-01-13 13:00:31 +00:00
content: "\f41f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.watchman.monitoring::before {
content: "\e087";
font-family: 'brand-icons';
}
i.icon.waze::before {
2022-01-13 13:00:31 +00:00
content: "\f83f";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.weebly::before {
2022-01-13 13:00:31 +00:00
content: "\f5cc";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.weibo::before {
2022-01-13 13:00:31 +00:00
content: "\f18a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.weixin::before {
2022-01-13 13:00:31 +00:00
content: "\f1d7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.whatsapp::before {
2022-01-13 13:00:31 +00:00
content: "\f232";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.whatsapp.square::before {
2022-01-13 13:00:31 +00:00
content: "\f40c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.whmcs::before {
2022-01-13 13:00:31 +00:00
content: "\f40d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wikipedia.w::before {
2022-01-13 13:00:31 +00:00
content: "\f266";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.windows::before {
2022-01-13 13:00:31 +00:00
content: "\f17a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wix::before {
2022-01-13 13:00:31 +00:00
content: "\f5cf";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wizards.of.the.coast::before {
2022-01-13 13:00:31 +00:00
content: "\f730";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wodu::before {
content: "\e088";
font-family: 'brand-icons';
}
i.icon.wolf.pack.battalion::before {
2022-01-13 13:00:31 +00:00
content: "\f514";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wordpress::before {
2022-01-13 13:00:31 +00:00
content: "\f19a";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wordpress.simple::before {
2022-01-13 13:00:31 +00:00
content: "\f411";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wpbeginner::before {
2022-01-13 13:00:31 +00:00
content: "\f297";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wpexplorer::before {
2022-01-13 13:00:31 +00:00
content: "\f2de";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wpforms::before {
2022-01-13 13:00:31 +00:00
content: "\f298";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wpressr::before {
2022-01-13 13:00:31 +00:00
content: "\f3e4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.xbox::before {
2022-01-13 13:00:31 +00:00
content: "\f412";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.xing::before {
2022-01-13 13:00:31 +00:00
content: "\f168";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.xing.square::before {
2022-01-13 13:00:31 +00:00
content: "\f169";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.y.combinator::before {
2022-01-13 13:00:31 +00:00
content: "\f23b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yahoo::before {
2022-01-13 13:00:31 +00:00
content: "\f19e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yammer::before {
2022-01-13 13:00:31 +00:00
content: "\f840";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yandex::before {
2022-01-13 13:00:31 +00:00
content: "\f413";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yandex.international::before {
2022-01-13 13:00:31 +00:00
content: "\f414";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yarn::before {
2022-01-13 13:00:31 +00:00
content: "\f7e3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yelp::before {
2022-01-13 13:00:31 +00:00
content: "\f1e9";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yoast::before {
2022-01-13 13:00:31 +00:00
content: "\f2b1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.youtube::before {
2022-01-13 13:00:31 +00:00
content: "\f167";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.youtube.square::before {
2022-01-13 13:00:31 +00:00
content: "\f431";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.zhihu::before {
2022-01-13 13:00:31 +00:00
content: "\f63f";
font-family: 'brand-icons';
}
/* Aliases */
2022-08-05 09:25:53 +00:00
i.icon.american.express::before {
2022-01-13 13:00:31 +00:00
content: "\f1f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.american.express.card::before {
2022-01-13 13:00:31 +00:00
content: "\f1f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.amex::before {
2022-01-13 13:00:31 +00:00
content: "\f1f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bitbucket.square::before {
2022-01-13 13:00:31 +00:00
content: "\f171";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.bluetooth.alternative::before {
2022-01-13 13:00:31 +00:00
content: "\f294";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.amazon.pay::before {
2022-01-13 13:00:31 +00:00
content: "\f42d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.american.express::before {
2022-01-13 13:00:31 +00:00
content: "\f1f3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.diners.club::before {
2022-01-13 13:00:31 +00:00
content: "\f24c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.discover::before {
2022-01-13 13:00:31 +00:00
content: "\f1f2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.jcb::before {
2022-01-13 13:00:31 +00:00
content: "\f24b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.mastercard::before {
2022-01-13 13:00:31 +00:00
content: "\f1f1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.paypal::before {
2022-01-13 13:00:31 +00:00
content: "\f1f4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.stripe::before {
2022-01-13 13:00:31 +00:00
content: "\f1f5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.credit.card.visa::before {
2022-01-13 13:00:31 +00:00
content: "\f1f0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.diners.club::before {
2022-01-13 13:00:31 +00:00
content: "\f24c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.diners.club.card::before {
2022-01-13 13:00:31 +00:00
content: "\f24c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.discover::before {
2022-01-13 13:00:31 +00:00
content: "\f1f2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.discover.card::before {
2022-01-13 13:00:31 +00:00
content: "\f1f2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.disk.outline::before {
2022-01-13 13:00:31 +00:00
content: "\f369";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.dribble::before {
2022-01-13 13:00:31 +00:00
content: "\f17d";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.eercast::before {
2022-01-13 13:00:31 +00:00
content: "\f2da";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.envira.gallery::before {
2022-01-13 13:00:31 +00:00
content: "\f299";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.fa::before {
2022-01-13 13:00:31 +00:00
content: "\f2b4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.facebook.official::before {
2022-01-13 13:00:31 +00:00
content: "\f082";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.five.hundred.pixels::before {
2022-01-13 13:00:31 +00:00
content: "\f26e";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.gittip::before {
2022-01-13 13:00:31 +00:00
content: "\f184";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.plus.circle::before {
2022-01-13 13:00:31 +00:00
content: "\f2b3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.google.plus.official::before {
2022-01-13 13:00:31 +00:00
content: "\f2b3";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.japan.credit.bureau::before {
2022-01-13 13:00:31 +00:00
content: "\f24b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.japan.credit.bureau.card::before {
2022-01-13 13:00:31 +00:00
content: "\f24b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.jcb::before {
2022-01-13 13:00:31 +00:00
content: "\f24b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.linkedin.square::before {
2022-01-13 13:00:31 +00:00
content: "\f08c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mastercard::before {
2022-01-13 13:00:31 +00:00
content: "\f1f1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.mastercard.card::before {
2022-01-13 13:00:31 +00:00
content: "\f1f1";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.microsoft.edge::before {
2022-01-13 13:00:31 +00:00
content: "\f282";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ms.edge::before {
2022-01-13 13:00:31 +00:00
content: "\f282";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.new.pied.piper::before {
2022-01-13 13:00:31 +00:00
content: "\f2ae";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.optinmonster::before {
2022-01-13 13:00:31 +00:00
content: "\f23c";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.paypal.card::before {
2022-01-13 13:00:31 +00:00
content: "\f1f4";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pied.piper.hat::before {
2022-01-13 13:00:31 +00:00
content: "\f2ae";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.pocket::before {
2022-01-13 13:00:31 +00:00
content: "\f265";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.stripe.card::before {
2022-01-13 13:00:31 +00:00
content: "\f1f5";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.theme.isle::before {
2022-01-13 13:00:31 +00:00
content: "\f2b2";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.visa::before {
2022-01-13 13:00:31 +00:00
content: "\f1f0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.visa.card::before {
2022-01-13 13:00:31 +00:00
content: "\f1f0";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wechat::before {
2022-01-13 13:00:31 +00:00
content: "\f1d7";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wikipedia::before {
2022-01-13 13:00:31 +00:00
content: "\f266";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wordpress.beginner::before {
2022-01-13 13:00:31 +00:00
content: "\f297";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.wordpress.forms::before {
2022-01-13 13:00:31 +00:00
content: "\f298";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.yc::before {
2022-01-13 13:00:31 +00:00
content: "\f23b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.ycombinator::before {
2022-01-13 13:00:31 +00:00
content: "\f23b";
font-family: 'brand-icons';
}
2022-08-05 09:25:53 +00:00
i.icon.youtube.play::before {
2022-01-13 13:00:31 +00:00
content: "\f167";
font-family: 'brand-icons';
}
2022-10-03 13:12:57 +00:00
/*******************************
Theme Overrides
*******************************/
2022-01-13 13:00:31 +00:00
/*******************************
Site Overrides
*******************************/