@font-face
{
    font-family: 'ankaa';
    font-weight: normal;
    font-style: normal;
    src:
    url('../fonts/ankaa.woff2') format('woff2'),
    url('../fonts/ankaa.woff') format('woff'),
    url('../fonts/ankaa.svg?#ankaa') format('svg');
}
.ankaa
{
    font-family: 'ankaa' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    color:#007BFF;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak-as: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

.ankaa-ul
{
    margin-left: 2em;
    padding-left: 0;

    list-style: none;
}
.ankaa-ul > li
{
    position: relative;
}
.ankaa-ul .ankaa
{
    font-size: inherit;
    line-height: inherit;

    position: absolute;
    left: -2em;

    width: 2em;

    text-align: center;
}

.ankaa-red{
    color: #007BFF;
}

@-webkit-keyframes spin
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100%
    {
        -webkit-transform: rotate(359deg);
                transform: rotate(359deg);
    }
}
@keyframes spin
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100%
    {
        -webkit-transform: rotate(359deg);
                transform: rotate(359deg);
    }
}
@-webkit-keyframes burst
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    90%
    {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);

        opacity: 0;
    }
}
@keyframes burst
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    90%
    {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);

        opacity: 0;
    }
}
@-webkit-keyframes flashing
{
    0%
    {
        opacity: 1;
    }
    45%
    {
        opacity: 0;
    }
    90%
    {
        opacity: 1;
    }
}
@keyframes flashing
{
    0%
    {
        opacity: 1;
    }
    45%
    {
        opacity: 0;
    }
    90%
    {
        opacity: 1;
    }
}
@-webkit-keyframes fade-left
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateX(-20px);
                transform: translateX(-20px);

        opacity: 0;
    }
}
@keyframes fade-left
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateX(-20px);
                transform: translateX(-20px);

        opacity: 0;
    }
}
@-webkit-keyframes fade-right
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateX(20px);
                transform: translateX(20px);

        opacity: 0;
    }
}
@keyframes fade-right
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateX(20px);
                transform: translateX(20px);

        opacity: 0;
    }
}
@-webkit-keyframes fade-up
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);

        opacity: 0;
    }
}
@keyframes fade-up
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);

        opacity: 0;
    }
}
@-webkit-keyframes fade-down
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);

        opacity: 0;
    }
}
@keyframes fade-down
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    75%
    {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);

        opacity: 0;
    }
}
@-webkit-keyframes tada
{
    from
    {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
    }

    10%,
    20%
    {
        -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
                transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    }

    30%,
    50%,
    70%,
    90%
    {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
                transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    }

    40%,
    60%,
    80%
    {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
                transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
    }

    to
    {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
    }
}

@keyframes tada
{
    from
    {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
    }

    10%,
    20%
    {
        -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
                transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    }

    30%,
    50%,
    70%,
    90%
    {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
                transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    }

    40%,
    60%,
    80%
    {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
                transform: rotate3d(0, 0, 1, -10deg);
    }

    to
    {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
    }
}
.ankaa-spin
{
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
}
.ankaa-spin-hover:hover
{
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
}

.ankaa-tada
{
    -webkit-animation: tada 1.5s ease infinite;
            animation: tada 1.5s ease infinite;
}
.ankaa-tada-hover:hover
{
    -webkit-animation: tada 1.5s ease infinite;
            animation: tada 1.5s ease infinite;
}

.ankaa-flashing
{
    -webkit-animation: flashing 1.5s infinite linear;
            animation: flashing 1.5s infinite linear;
}
.ankaa-flashing-hover:hover
{
    -webkit-animation: flashing 1.5s infinite linear;
            animation: flashing 1.5s infinite linear;
}

.ankaa-burst
{
    -webkit-animation: burst 1.5s infinite linear;
            animation: burst 1.5s infinite linear;
}
.ankaa-burst-hover:hover
{
    -webkit-animation: burst 1.5s infinite linear;
            animation: burst 1.5s infinite linear;
}
.ankaa-fade-up
{
    -webkit-animation: fade-up 1.5s infinite linear;
            animation: fade-up 1.5s infinite linear;
}
.ankaa-fade-up-hover:hover
{
    -webkit-animation: fade-up 1.5s infinite linear;
            animation: fade-up 1.5s infinite linear;
}
.ankaa-fade-down
{
    -webkit-animation: fade-down 1.5s infinite linear;
            animation: fade-down 1.5s infinite linear;
}
.ankaa-fade-down-hover:hover
{
    -webkit-animation: fade-down 1.5s infinite linear;
            animation: fade-down 1.5s infinite linear;
}
.ankaa-fade-left
{
    -webkit-animation: fade-left 1.5s infinite linear;
            animation: fade-left 1.5s infinite linear;
}
.ankaa-fade-left-hover:hover
{
    -webkit-animation: fade-left 1.5s infinite linear;
            animation: fade-left 1.5s infinite linear;
}
.ankaa-fade-right
{
    -webkit-animation: fade-right 1.5s infinite linear;
            animation: fade-right 1.5s infinite linear;
}
.ankaa-fade-right-hover:hover
{
    -webkit-animation: fade-right 1.5s infinite linear;
            animation: fade-right 1.5s infinite linear;
}
.ankaa-xs
{
    font-size: 1rem!important;

}
.ankaa-sm
{
    font-size: 1.55rem!important;
  
}
.ankaa-md
{
    font-size: 2.25rem!important;
  
}
.ankaa-lg
{
    font-size: 3.0rem!important;
 
}

.ankaa-mg
{
    font-size: 4.0rem!important;
 
}

.ankaa-xl
{
    font-size: 8.0rem!important;

}

.ankaa-svg-auto
{
    width: auto;
}

.ankaa-svg-2
{
    width: 2%;
}
.ankaa-svg-8
{
    width: 8%;
}
.ankaa-svg-10
{
    width: 10%;
}
.ankaa-svg-15
{
    width: 15%;
}
.ankaa-svg-40
{
    width: 40%;
}

.ankaa-svg-100
{
    width: 100%;
}

.ankaa-fw
{
    font-size: 1.2857142857em;
    line-height: .8em;

    width: 1.2857142857em;
    height: .8em;
    margin-top: -.2em!important;

    vertical-align: middle;
}
.ankaa-pull-left
{
    float: left;

    margin-right: .3em!important;
}
.ankaa-pull-right
{
    float: right;

    margin-left: .3em!important;
}
.ankaa-rotate-90
{
    transform: rotate(90deg);

}
.ankaa-rotate-180
{
    transform: rotate(180deg);

}
.ankaa-rotate-270
{
    transform: rotate(270deg);

}
.ankaa-flip-horizontal
{
    transform: scaleX(-1);
;
}
.ankaa-flip-vertical
{
    transform: scaleY(-1);

}
.ankaa-border
{
    padding: .25em;

    border: .07em solid rgba(0,0,0,.1);
    border-radius: .25em;
}
.ankaa-border-circle
{
    padding: .25em;

    border: .07em solid rgba(0,0,0,.1);
    border-radius: 50%;
}

.ankaa_logo:before {
  content: "\FC04";
}

.ankaa_logo_cosmos:before {
  content: "\FC00";
}

.ankaa_logo_chaos:before {
  content: "\FC03";
}

.ankaa_logo_chromos:before {
  content: "\FC02";
}

.ankaa_logo_presence:before {
  content: "\FC01";
}

.ankaa_cube3d:before {
 content: "\FC1C";
}

.ankaa_cube3dvr:before {
content: "\FC1D";
}

.ankaa_utilisateurs_vr:before {
  content: "\FC1B";
}

.ankaa_cadenas_ferme:before {
  content: "\FC19";
}

.ankaa_cadenas_ouvert:before {
  content: "\FC1A";
}

.ankaa_contrat:before {
  content: "\FC17";
}

.ankaa_chaine_casse:before {
  content: "\FC16";
}

.ankaa_serveur_cloud:before {
  content: "\FC15";
}

.ankaa_code_ouvert:before {
  content: "\FC14";
}

.ankaa_recherche_candidat:before {
  content: "\FC13";
}

.ankaa_maison_cloud:before {
  content: "\FC12";
}

.ankaa_finance:before {
  content: "\FC11";
}

.ankaa_logiciel:before {
  content: "\FC10";
}
.ankaa_loupe:before {
  content: "\FC0F";
}
.ankaa_loupe_main:before {
  content: "\FC0E";
}
.ankaa_loupe_stat:before {
  content: "\FC0D";
}
.ankaa_partenaires_support:before {
  content: "\FC08";
}
.ankaa_serveur:before {
  content: "\FC0A";
}
.ankaa_serveur_config:before {
  content: "\FC09";
}
.ankaa_partenaires:before {
  content: "\FC0B";
}
.ankaa_utilisateur:before {
  content: "\FC05";
}
.ankaa_createur:before {
content: "\FC06";
}

.ankaa_texture:before {
content: "\FC07";
}

.ankaa_normal:before {
content: "\FC0C";
}

.ankaa_assemblage:before {
content: "\FC18";
}

.ankaa_123::before { content: "\f67f"; }
.ankaa_alarm-fill::before { content: "\f101"; }
.ankaa_alarm::before { content: "\f102"; }
.ankaa_align-bottom::before { content: "\f103"; }
.ankaa_align-center::before { content: "\f104"; }
.ankaa_align-end::before { content: "\f105"; }
.ankaa_align-middle::before { content: "\f106"; }
.ankaa_align-start::before { content: "\f107"; }
.ankaa_align-top::before { content: "\f108"; }
.ankaa_alt::before { content: "\f109"; }
.ankaa_app-indicator::before { content: "\f10a"; }
.ankaa_app::before { content: "\f10b"; }
.ankaa_archive-fill::before { content: "\f10c"; }
.ankaa_archive::before { content: "\f10d"; }
.ankaa_arrow-90deg-down::before { content: "\f10e"; }
.ankaa_arrow-90deg-left::before { content: "\f10f"; }
.ankaa_arrow-90deg-right::before { content: "\f110"; }
.ankaa_arrow-90deg-up::before { content: "\f111"; }
.ankaa_arrow-bar-down::before { content: "\f112"; }
.ankaa_arrow-bar-left::before { content: "\f113"; }
.ankaa_arrow-bar-right::before { content: "\f114"; }
.ankaa_arrow-bar-up::before { content: "\f115"; }
.ankaa_arrow-clockwise::before { content: "\f116"; }
.ankaa_arrow-counterclockwise::before { content: "\f117"; }
.ankaa_arrow-down-circle-fill::before { content: "\f118"; }
.ankaa_arrow-down-circle::before { content: "\f119"; }
.ankaa_arrow-down-left-circle-fill::before { content: "\f11a"; }
.ankaa_arrow-down-left-circle::before { content: "\f11b"; }
.ankaa_arrow-down-left-square-fill::before { content: "\f11c"; }
.ankaa_arrow-down-left-square::before { content: "\f11d"; }
.ankaa_arrow-down-left::before { content: "\f11e"; }
.ankaa_arrow-down-right-circle-fill::before { content: "\f11f"; }
.ankaa_arrow-down-right-circle::before { content: "\f120"; }
.ankaa_arrow-down-right-square-fill::before { content: "\f121"; }
.ankaa_arrow-down-right-square::before { content: "\f122"; }
.ankaa_arrow-down-right::before { content: "\f123"; }
.ankaa_arrow-down-short::before { content: "\f124"; }
.ankaa_arrow-down-square-fill::before { content: "\f125"; }
.ankaa_arrow-down-square::before { content: "\f126"; }
.ankaa_arrow-down-up::before { content: "\f127"; }
.ankaa_arrow-down::before { content: "\f128"; }
.ankaa_arrow-left-circle-fill::before { content: "\f129"; }
.ankaa_arrow-left-circle::before { content: "\f12a"; }
.ankaa_arrow-left-right::before { content: "\f12b"; }
.ankaa_arrow-left-short::before { content: "\f12c"; }
.ankaa_arrow-left-square-fill::before { content: "\f12d"; }
.ankaa_arrow-left-square::before { content: "\f12e"; }
.ankaa_arrow-left::before { content: "\f12f"; }
.ankaa_arrow-repeat::before { content: "\f130"; }
.ankaa_arrow-return-left::before { content: "\f131"; }
.ankaa_arrow-return-right::before { content: "\f132"; }
.ankaa_arrow-right-circle-fill::before { content: "\f133"; }
.ankaa_arrow-right-circle::before { content: "\f134"; }
.ankaa_arrow-right-short::before { content: "\f135"; }
.ankaa_arrow-right-square-fill::before { content: "\f136"; }
.ankaa_arrow-right-square::before { content: "\f137"; }
.ankaa_arrow-right::before { content: "\f138"; }
.ankaa_arrow-up-circle-fill::before { content: "\f139"; }
.ankaa_arrow-up-circle::before { content: "\f13a"; }
.ankaa_arrow-up-left-circle-fill::before { content: "\f13b"; }
.ankaa_arrow-up-left-circle::before { content: "\f13c"; }
.ankaa_arrow-up-left-square-fill::before { content: "\f13d"; }
.ankaa_arrow-up-left-square::before { content: "\f13e"; }
.ankaa_arrow-up-left::before { content: "\f13f"; }
.ankaa_arrow-up-right-circle-fill::before { content: "\f140"; }
.ankaa_arrow-up-right-circle::before { content: "\f141"; }
.ankaa_arrow-up-right-square-fill::before { content: "\f142"; }
.ankaa_arrow-up-right-square::before { content: "\f143"; }
.ankaa_arrow-up-right::before { content: "\f144"; }
.ankaa_arrow-up-short::before { content: "\f145"; }
.ankaa_arrow-up-square-fill::before { content: "\f146"; }
.ankaa_arrow-up-square::before { content: "\f147"; }
.ankaa_arrow-up::before { content: "\f148"; }
.ankaa_arrows-angle-contract::before { content: "\f149"; }
.ankaa_arrows-angle-expand::before { content: "\f14a"; }
.ankaa_arrows-collapse::before { content: "\f14b"; }
.ankaa_arrows-expand::before { content: "\f14c"; }
.ankaa_arrows-fullscreen::before { content: "\f14d"; }
.ankaa_arrows-move::before { content: "\f14e"; }
.ankaa_aspect-ratio-fill::before { content: "\f14f"; }
.ankaa_aspect-ratio::before { content: "\f150"; }
.ankaa_asterisk::before { content: "\f151"; }
.ankaa_at::before { content: "\f152"; }
.ankaa_award-fill::before { content: "\f153"; }
.ankaa_award::before { content: "\f154"; }
.ankaa_back::before { content: "\f155"; }
.ankaa_backspace-fill::before { content: "\f156"; }
.ankaa_backspace-reverse-fill::before { content: "\f157"; }
.ankaa_backspace-reverse::before { content: "\f158"; }
.ankaa_backspace::before { content: "\f159"; }
.ankaa_badge-3d-fill::before { content: "\f15a"; }
.ankaa_badge-3d::before { content: "\f15b"; }
.ankaa_badge-4k-fill::before { content: "\f15c"; }
.ankaa_badge-4k::before { content: "\f15d"; }
.ankaa_badge-8k-fill::before { content: "\f15e"; }
.ankaa_badge-8k::before { content: "\f15f"; }
.ankaa_badge-ad-fill::before { content: "\f160"; }
.ankaa_badge-ad::before { content: "\f161"; }
.ankaa_badge-ar-fill::before { content: "\f162"; }
.ankaa_badge-ar::before { content: "\f163"; }
.ankaa_badge-cc-fill::before { content: "\f164"; }
.ankaa_badge-cc::before { content: "\f165"; }
.ankaa_badge-hd-fill::before { content: "\f166"; }
.ankaa_badge-hd::before { content: "\f167"; }
.ankaa_badge-tm-fill::before { content: "\f168"; }
.ankaa_badge-tm::before { content: "\f169"; }
.ankaa_badge-vo-fill::before { content: "\f16a"; }
.ankaa_badge-vo::before { content: "\f16b"; }
.ankaa_badge-vr-fill::before { content: "\f16c"; }
.ankaa_badge-vr::before { content: "\f16d"; }
.ankaa_badge-wc-fill::before { content: "\f16e"; }
.ankaa_badge-wc::before { content: "\f16f"; }
.ankaa_bag-check-fill::before { content: "\f170"; }
.ankaa_bag-check::before { content: "\f171"; }
.ankaa_bag-dash-fill::before { content: "\f172"; }
.ankaa_bag-dash::before { content: "\f173"; }
.ankaa_bag-fill::before { content: "\f174"; }
.ankaa_bag-plus-fill::before { content: "\f175"; }
.ankaa_bag-plus::before { content: "\f176"; }
.ankaa_bag-x-fill::before { content: "\f177"; }
.ankaa_bag-x::before { content: "\f178"; }
.ankaa_bag::before { content: "\f179"; }
.ankaa_bar-chart-fill::before { content: "\f17a"; }
.ankaa_bar-chart-line-fill::before { content: "\f17b"; }
.ankaa_bar-chart-line::before { content: "\f17c"; }
.ankaa_bar-chart-steps::before { content: "\f17d"; }
.ankaa_bar-chart::before { content: "\f17e"; }
.ankaa_basket-fill::before { content: "\f17f"; }
.ankaa_basket::before { content: "\f180"; }
.ankaa_basket2-fill::before { content: "\f181"; }
.ankaa_basket2::before { content: "\f182"; }
.ankaa_basket3-fill::before { content: "\f183"; }
.ankaa_basket3::before { content: "\f184"; }
.ankaa_battery-charging::before { content: "\f185"; }
.ankaa_battery-full::before { content: "\f186"; }
.ankaa_battery-half::before { content: "\f187"; }
.ankaa_battery::before { content: "\f188"; }
.ankaa_bell-fill::before { content: "\f189"; }
.ankaa_bell::before { content: "\f18a"; }
.ankaa_bezier::before { content: "\f18b"; }
.ankaa_bezier2::before { content: "\f18c"; }
.ankaa_bicycle::before { content: "\f18d"; }
.ankaa_binoculars-fill::before { content: "\f18e"; }
.ankaa_binoculars::before { content: "\f18f"; }
.ankaa_blockquote-left::before { content: "\f190"; }
.ankaa_blockquote-right::before { content: "\f191"; }
.ankaa_book-fill::before { content: "\f192"; }
.ankaa_book-half::before { content: "\f193"; }
.ankaa_book::before { content: "\f194"; }
.ankaa_bookmark-check-fill::before { content: "\f195"; }
.ankaa_bookmark-check::before { content: "\f196"; }
.ankaa_bookmark-dash-fill::before { content: "\f197"; }
.ankaa_bookmark-dash::before { content: "\f198"; }
.ankaa_bookmark-fill::before { content: "\f199"; }
.ankaa_bookmark-heart-fill::before { content: "\f19a"; }
.ankaa_bookmark-heart::before { content: "\f19b"; }
.ankaa_bookmark-plus-fill::before { content: "\f19c"; }
.ankaa_bookmark-plus::before { content: "\f19d"; }
.ankaa_bookmark-star-fill::before { content: "\f19e"; }
.ankaa_bookmark-star::before { content: "\f19f"; }
.ankaa_bookmark-x-fill::before { content: "\f1a0"; }
.ankaa_bookmark-x::before { content: "\f1a1"; }
.ankaa_bookmark::before { content: "\f1a2"; }
.ankaa_bookmarks-fill::before { content: "\f1a3"; }
.ankaa_bookmarks::before { content: "\f1a4"; }
.ankaa_bookshelf::before { content: "\f1a5"; }
.ankaa_bootstrap-fill::before { content: "\f1a6"; }
.ankaa_bootstrap-reboot::before { content: "\f1a7"; }
.ankaa_bootstrap::before { content: "\f1a8"; }
.ankaa_border-all::before { content: "\f1a9"; }
.ankaa_border-bottom::before { content: "\f1aa"; }
.ankaa_border-center::before { content: "\f1ab"; }
.ankaa_border-inner::before { content: "\f1ac"; }
.ankaa_border-left::before { content: "\f1ad"; }
.ankaa_border-middle::before { content: "\f1ae"; }
.ankaa_border-outer::before { content: "\f1af"; }
.ankaa_border-right::before { content: "\f1b0"; }
.ankaa_border-style::before { content: "\f1b1"; }
.ankaa_border-top::before { content: "\f1b2"; }
.ankaa_border-width::before { content: "\f1b3"; }
.ankaa_border::before { content: "\f1b4"; }
.ankaa_bounding-box-circles::before { content: "\f1b5"; }
.ankaa_bounding-box::before { content: "\f1b6"; }
.ankaa_box-arrow-down-left::before { content: "\f1b7"; }
.ankaa_box-arrow-down-right::before { content: "\f1b8"; }
.ankaa_box-arrow-down::before { content: "\f1b9"; }
.ankaa_box-arrow-in-down-left::before { content: "\f1ba"; }
.ankaa_box-arrow-in-down-right::before { content: "\f1bb"; }
.ankaa_box-arrow-in-down::before { content: "\f1bc"; }
.ankaa_box-arrow-in-left::before { content: "\f1bd"; }
.ankaa_box-arrow-in-right::before { content: "\f1be"; }
.ankaa_box-arrow-in-up-left::before { content: "\f1bf"; }
.ankaa_box-arrow-in-up-right::before { content: "\f1c0"; }
.ankaa_box-arrow-in-up::before { content: "\f1c1"; }
.ankaa_box-arrow-left::before { content: "\f1c2"; }
.ankaa_box-arrow-right::before { content: "\f1c3"; }
.ankaa_box-arrow-up-left::before { content: "\f1c4"; }
.ankaa_box-arrow-up-right::before { content: "\f1c5"; }
.ankaa_box-arrow-up::before { content: "\f1c6"; }
.ankaa_box-seam::before { content: "\f1c7"; }
.ankaa_box::before { content: "\f1c8"; }
.ankaa_braces::before { content: "\f1c9"; }
.ankaa_bricks::before { content: "\f1ca"; }
.ankaa_briefcase-fill::before { content: "\f1cb"; }
.ankaa_briefcase::before { content: "\f1cc"; }
.ankaa_brightness-alt-high-fill::before { content: "\f1cd"; }
.ankaa_brightness-alt-high::before { content: "\f1ce"; }
.ankaa_brightness-alt-low-fill::before { content: "\f1cf"; }
.ankaa_brightness-alt-low::before { content: "\f1d0"; }
.ankaa_brightness-high-fill::before { content: "\f1d1"; }
.ankaa_brightness-high::before { content: "\f1d2"; }
.ankaa_brightness-low-fill::before { content: "\f1d3"; }
.ankaa_brightness-low::before { content: "\f1d4"; }
.ankaa_broadcast-pin::before { content: "\f1d5"; }
.ankaa_broadcast::before { content: "\f1d6"; }
.ankaa_brush-fill::before { content: "\f1d7"; }
.ankaa_brush::before { content: "\f1d8"; }
.ankaa_bucket-fill::before { content: "\f1d9"; }
.ankaa_bucket::before { content: "\f1da"; }
.ankaa_bug-fill::before { content: "\f1db"; }
.ankaa_bug::before { content: "\f1dc"; }
.ankaa_building::before { content: "\f1dd"; }
.ankaa_bullseye::before { content: "\f1de"; }
.ankaa_calculator-fill::before { content: "\f1df"; }
.ankaa_calculator::before { content: "\f1e0"; }
.ankaa_calendar-check-fill::before { content: "\f1e1"; }
.ankaa_calendar-check::before { content: "\f1e2"; }
.ankaa_calendar-date-fill::before { content: "\f1e3"; }
.ankaa_calendar-date::before { content: "\f1e4"; }
.ankaa_calendar-day-fill::before { content: "\f1e5"; }
.ankaa_calendar-day::before { content: "\f1e6"; }
.ankaa_calendar-event-fill::before { content: "\f1e7"; }
.ankaa_calendar-event::before { content: "\f1e8"; }
.ankaa_calendar-fill::before { content: "\f1e9"; }
.ankaa_calendar-minus-fill::before { content: "\f1ea"; }
.ankaa_calendar-minus::before { content: "\f1eb"; }
.ankaa_calendar-month-fill::before { content: "\f1ec"; }
.ankaa_calendar-month::before { content: "\f1ed"; }
.ankaa_calendar-plus-fill::before { content: "\f1ee"; }
.ankaa_calendar-plus::before { content: "\f1ef"; }
.ankaa_calendar-range-fill::before { content: "\f1f0"; }
.ankaa_calendar-range::before { content: "\f1f1"; }
.ankaa_calendar-week-fill::before { content: "\f1f2"; }
.ankaa_calendar-week::before { content: "\f1f3"; }
.ankaa_calendar-x-fill::before { content: "\f1f4"; }
.ankaa_calendar-x::before { content: "\f1f5"; }
.ankaa_calendar::before { content: "\f1f6"; }
.ankaa_calendar2-check-fill::before { content: "\f1f7"; }
.ankaa_calendar2-check::before { content: "\f1f8"; }
.ankaa_calendar2-date-fill::before { content: "\f1f9"; }
.ankaa_calendar2-date::before { content: "\f1fa"; }
.ankaa_calendar2-day-fill::before { content: "\f1fb"; }
.ankaa_calendar2-day::before { content: "\f1fc"; }
.ankaa_calendar2-event-fill::before { content: "\f1fd"; }
.ankaa_calendar2-event::before { content: "\f1fe"; }
.ankaa_calendar2-fill::before { content: "\f1ff"; }
.ankaa_calendar2-minus-fill::before { content: "\f200"; }
.ankaa_calendar2-minus::before { content: "\f201"; }
.ankaa_calendar2-month-fill::before { content: "\f202"; }
.ankaa_calendar2-month::before { content: "\f203"; }
.ankaa_calendar2-plus-fill::before { content: "\f204"; }
.ankaa_calendar2-plus::before { content: "\f205"; }
.ankaa_calendar2-range-fill::before { content: "\f206"; }
.ankaa_calendar2-range::before { content: "\f207"; }
.ankaa_calendar2-week-fill::before { content: "\f208"; }
.ankaa_calendar2-week::before { content: "\f209"; }
.ankaa_calendar2-x-fill::before { content: "\f20a"; }
.ankaa_calendar2-x::before { content: "\f20b"; }
.ankaa_calendar2::before { content: "\f20c"; }
.ankaa_calendar3-event-fill::before { content: "\f20d"; }
.ankaa_calendar3-event::before { content: "\f20e"; }
.ankaa_calendar3-fill::before { content: "\f20f"; }
.ankaa_calendar3-range-fill::before { content: "\f210"; }
.ankaa_calendar3-range::before { content: "\f211"; }
.ankaa_calendar3-week-fill::before { content: "\f212"; }
.ankaa_calendar3-week::before { content: "\f213"; }
.ankaa_calendar3::before { content: "\f214"; }
.ankaa_calendar4-event::before { content: "\f215"; }
.ankaa_calendar4-range::before { content: "\f216"; }
.ankaa_calendar4-week::before { content: "\f217"; }
.ankaa_calendar4::before { content: "\f218"; }
.ankaa_camera-fill::before { content: "\f219"; }
.ankaa_camera-reels-fill::before { content: "\f21a"; }
.ankaa_camera-reels::before { content: "\f21b"; }
.ankaa_camera-video-fill::before { content: "\f21c"; }
.ankaa_camera-video-off-fill::before { content: "\f21d"; }
.ankaa_camera-video-off::before { content: "\f21e"; }
.ankaa_camera-video::before { content: "\f21f"; }
.ankaa_camera::before { content: "\f220"; }
.ankaa_camera2::before { content: "\f221"; }
.ankaa_capslock-fill::before { content: "\f222"; }
.ankaa_capslock::before { content: "\f223"; }
.ankaa_card-checklist::before { content: "\f224"; }
.ankaa_card-heading::before { content: "\f225"; }
.ankaa_card-image::before { content: "\f226"; }
.ankaa_card-list::before { content: "\f227"; }
.ankaa_card-text::before { content: "\f228"; }
.ankaa_caret-down-fill::before { content: "\f229"; }
.ankaa_caret-down-square-fill::before { content: "\f22a"; }
.ankaa_caret-down-square::before { content: "\f22b"; }
.ankaa_caret-down::before { content: "\f22c"; }
.ankaa_caret-left-fill::before { content: "\f22d"; }
.ankaa_caret-left-square-fill::before { content: "\f22e"; }
.ankaa_caret-left-square::before { content: "\f22f"; }
.ankaa_caret-left::before { content: "\f230"; }
.ankaa_caret-right-fill::before { content: "\f231"; }
.ankaa_caret-right-square-fill::before { content: "\f232"; }
.ankaa_caret-right-square::before { content: "\f233"; }
.ankaa_caret-right::before { content: "\f234"; }
.ankaa_caret-up-fill::before { content: "\f235"; }
.ankaa_caret-up-square-fill::before { content: "\f236"; }
.ankaa_caret-up-square::before { content: "\f237"; }
.ankaa_caret-up::before { content: "\f238"; }
.ankaa_cart-check-fill::before { content: "\f239"; }
.ankaa_cart-check::before { content: "\f23a"; }
.ankaa_cart-dash-fill::before { content: "\f23b"; }
.ankaa_cart-dash::before { content: "\f23c"; }
.ankaa_cart-fill::before { content: "\f23d"; }
.ankaa_cart-plus-fill::before { content: "\f23e"; }
.ankaa_cart-plus::before { content: "\f23f"; }
.ankaa_cart-x-fill::before { content: "\f240"; }
.ankaa_cart-x::before { content: "\f241"; }
.ankaa_cart::before { content: "\f242"; }
.ankaa_cart2::before { content: "\f243"; }
.ankaa_cart3::before { content: "\f244"; }
.ankaa_cart4::before { content: "\f245"; }
.ankaa_cash-stack::before { content: "\f246"; }
.ankaa_cash::before { content: "\f247"; }
.ankaa_cast::before { content: "\f248"; }
.ankaa_chat-dots-fill::before { content: "\f249"; }
.ankaa_chat-dots::before { content: "\f24a"; }
.ankaa_chat-fill::before { content: "\f24b"; }
.ankaa_chat-left-dots-fill::before { content: "\f24c"; }
.ankaa_chat-left-dots::before { content: "\f24d"; }
.ankaa_chat-left-fill::before { content: "\f24e"; }
.ankaa_chat-left-quote-fill::before { content: "\f24f"; }
.ankaa_chat-left-quote::before { content: "\f250"; }
.ankaa_chat-left-text-fill::before { content: "\f251"; }
.ankaa_chat-left-text::before { content: "\f252"; }
.ankaa_chat-left::before { content: "\f253"; }
.ankaa_chat-quote-fill::before { content: "\f254"; }
.ankaa_chat-quote::before { content: "\f255"; }
.ankaa_chat-right-dots-fill::before { content: "\f256"; }
.ankaa_chat-right-dots::before { content: "\f257"; }
.ankaa_chat-right-fill::before { content: "\f258"; }
.ankaa_chat-right-quote-fill::before { content: "\f259"; }
.ankaa_chat-right-quote::before { content: "\f25a"; }
.ankaa_chat-right-text-fill::before { content: "\f25b"; }
.ankaa_chat-right-text::before { content: "\f25c"; }
.ankaa_chat-right::before { content: "\f25d"; }
.ankaa_chat-square-dots-fill::before { content: "\f25e"; }
.ankaa_chat-square-dots::before { content: "\f25f"; }
.ankaa_chat-square-fill::before { content: "\f260"; }
.ankaa_chat-square-quote-fill::before { content: "\f261"; }
.ankaa_chat-square-quote::before { content: "\f262"; }
.ankaa_chat-square-text-fill::before { content: "\f263"; }
.ankaa_chat-square-text::before { content: "\f264"; }
.ankaa_chat-square::before { content: "\f265"; }
.ankaa_chat-text-fill::before { content: "\f266"; }
.ankaa_chat-text::before { content: "\f267"; }
.ankaa_chat::before { content: "\f268"; }
.ankaa_check-all::before { content: "\f269"; }
.ankaa_check-circle-fill::before { content: "\f26a"; }
.ankaa_check-circle::before { content: "\f26b"; }
.ankaa_check-square-fill::before { content: "\f26c"; }
.ankaa_check-square::before { content: "\f26d"; }
.ankaa_check::before { content: "\f26e"; }
.ankaa_check2-all::before { content: "\f26f"; }
.ankaa_check2-circle::before { content: "\f270"; }
.ankaa_check2-square::before { content: "\f271"; }
.ankaa_check2::before { content: "\f272"; }
.ankaa_chevron-bar-contract::before { content: "\f273"; }
.ankaa_chevron-bar-down::before { content: "\f274"; }
.ankaa_chevron-bar-expand::before { content: "\f275"; }
.ankaa_chevron-bar-left::before { content: "\f276"; }
.ankaa_chevron-bar-right::before { content: "\f277"; }
.ankaa_chevron-bar-up::before { content: "\f278"; }
.ankaa_chevron-compact-down::before { content: "\f279"; }
.ankaa_chevron-compact-left::before { content: "\f27a"; }
.ankaa_chevron-compact-right::before { content: "\f27b"; }
.ankaa_chevron-compact-up::before { content: "\f27c"; }
.ankaa_chevron-contract::before { content: "\f27d"; }
.ankaa_chevron-double-down::before { content: "\f27e"; }
.ankaa_chevron-double-left::before { content: "\f27f"; }
.ankaa_chevron-double-right::before { content: "\f280"; }
.ankaa_chevron-double-up::before { content: "\f281"; }
.ankaa_chevron-down::before { content: "\f282"; }
.ankaa_chevron-expand::before { content: "\f283"; }
.ankaa_chevron-left::before { content: "\f284"; }
.ankaa_chevron-right::before { content: "\f285"; }
.ankaa_chevron-up::before { content: "\f286"; }
.ankaa_circle-fill::before { content: "\f287"; }
.ankaa_circle-half::before { content: "\f288"; }
.ankaa_circle-square::before { content: "\f289"; }
.ankaa_circle::before { content: "\f28a"; }
.ankaa_clipboard-check::before { content: "\f28b"; }
.ankaa_clipboard-data::before { content: "\f28c"; }
.ankaa_clipboard-minus::before { content: "\f28d"; }
.ankaa_clipboard-plus::before { content: "\f28e"; }
.ankaa_clipboard-x::before { content: "\f28f"; }
.ankaa_clipboard::before { content: "\f290"; }
.ankaa_clock-fill::before { content: "\f291"; }
.ankaa_clock-history::before { content: "\f292"; }
.ankaa_clock::before { content: "\f293"; }
.ankaa_cloud-arrow-down-fill::before { content: "\f294"; }
.ankaa_cloud-arrow-down::before { content: "\f295"; }
.ankaa_cloud-arrow-up-fill::before { content: "\f296"; }
.ankaa_cloud-arrow-up::before { content: "\f297"; }
.ankaa_cloud-check-fill::before { content: "\f298"; }
.ankaa_cloud-check::before { content: "\f299"; }
.ankaa_cloud-download-fill::before { content: "\f29a"; }
.ankaa_cloud-download::before { content: "\f29b"; }
.ankaa_cloud-drizzle-fill::before { content: "\f29c"; }
.ankaa_cloud-drizzle::before { content: "\f29d"; }
.ankaa_cloud-fill::before { content: "\f29e"; }
.ankaa_cloud-fog-fill::before { content: "\f29f"; }
.ankaa_cloud-fog::before { content: "\f2a0"; }
.ankaa_cloud-fog2-fill::before { content: "\f2a1"; }
.ankaa_cloud-fog2::before { content: "\f2a2"; }
.ankaa_cloud-hail-fill::before { content: "\f2a3"; }
.ankaa_cloud-hail::before { content: "\f2a4"; }
.ankaa_cloud-haze-1::before { content: "\f2a5"; }
.ankaa_cloud-haze-fill::before { content: "\f2a6"; }
.ankaa_cloud-haze::before { content: "\f2a7"; }
.ankaa_cloud-haze2-fill::before { content: "\f2a8"; }
.ankaa_cloud-lightning-fill::before { content: "\f2a9"; }
.ankaa_cloud-lightning-rain-fill::before { content: "\f2aa"; }
.ankaa_cloud-lightning-rain::before { content: "\f2ab"; }
.ankaa_cloud-lightning::before { content: "\f2ac"; }
.ankaa_cloud-minus-fill::before { content: "\f2ad"; }
.ankaa_cloud-minus::before { content: "\f2ae"; }
.ankaa_cloud-moon-fill::before { content: "\f2af"; }
.ankaa_cloud-moon::before { content: "\f2b0"; }
.ankaa_cloud-plus-fill::before { content: "\f2b1"; }
.ankaa_cloud-plus::before { content: "\f2b2"; }
.ankaa_cloud-rain-fill::before { content: "\f2b3"; }
.ankaa_cloud-rain-heavy-fill::before { content: "\f2b4"; }
.ankaa_cloud-rain-heavy::before { content: "\f2b5"; }
.ankaa_cloud-rain::before { content: "\f2b6"; }
.ankaa_cloud-slash-fill::before { content: "\f2b7"; }
.ankaa_cloud-slash::before { content: "\f2b8"; }
.ankaa_cloud-sleet-fill::before { content: "\f2b9"; }
.ankaa_cloud-sleet::before { content: "\f2ba"; }
.ankaa_cloud-snow-fill::before { content: "\f2bb"; }
.ankaa_cloud-snow::before { content: "\f2bc"; }
.ankaa_cloud-sun-fill::before { content: "\f2bd"; }
.ankaa_cloud-sun::before { content: "\f2be"; }
.ankaa_cloud-upload-fill::before { content: "\f2bf"; }
.ankaa_cloud-upload::before { content: "\f2c0"; }
.ankaa_cloud::before { content: "\f2c1"; }
.ankaa_clouds-fill::before { content: "\f2c2"; }
.ankaa_clouds::before { content: "\f2c3"; }
.ankaa_cloudy-fill::before { content: "\f2c4"; }
.ankaa_cloudy::before { content: "\f2c5"; }
.ankaa_code-slash::before { content: "\f2c6"; }
.ankaa_code-square::before { content: "\f2c7"; }
.ankaa_code::before { content: "\f2c8"; }
.ankaa_collection-fill::before { content: "\f2c9"; }
.ankaa_collection-play-fill::before { content: "\f2ca"; }
.ankaa_collection-play::before { content: "\f2cb"; }
.ankaa_collection::before { content: "\f2cc"; }
.ankaa_columns-gap::before { content: "\f2cd"; }
.ankaa_columns::before { content: "\f2ce"; }
.ankaa_command::before { content: "\f2cf"; }
.ankaa_compass-fill::before { content: "\f2d0"; }
.ankaa_compass::before { content: "\f2d1"; }
.ankaa_cone-striped::before { content: "\f2d2"; }
.ankaa_cone::before { content: "\f2d3"; }
.ankaa_controller::before { content: "\f2d4"; }
.ankaa_cpu-fill::before { content: "\f2d5"; }
.ankaa_cpu::before { content: "\f2d6"; }
.ankaa_credit-card-2-back-fill::before { content: "\f2d7"; }
.ankaa_credit-card-2-back::before { content: "\f2d8"; }
.ankaa_credit-card-2-front-fill::before { content: "\f2d9"; }
.ankaa_credit-card-2-front::before { content: "\f2da"; }
.ankaa_credit-card-fill::before { content: "\f2db"; }
.ankaa_credit-card::before { content: "\f2dc"; }
.ankaa_crop::before { content: "\f2dd"; }
.ankaa_cup-fill::before { content: "\f2de"; }
.ankaa_cup-straw::before { content: "\f2df"; }
.ankaa_cup::before { content: "\f2e0"; }
.ankaa_cursor-fill::before { content: "\f2e1"; }
.ankaa_cursor-text::before { content: "\f2e2"; }
.ankaa_cursor::before { content: "\f2e3"; }
.ankaa_dash-circle-dotted::before { content: "\f2e4"; }
.ankaa_dash-circle-fill::before { content: "\f2e5"; }
.ankaa_dash-circle::before { content: "\f2e6"; }
.ankaa_dash-square-dotted::before { content: "\f2e7"; }
.ankaa_dash-square-fill::before { content: "\f2e8"; }
.ankaa_dash-square::before { content: "\f2e9"; }
.ankaa_dash::before { content: "\f2ea"; }
.ankaa_diagram-2-fill::before { content: "\f2eb"; }
.ankaa_diagram-2::before { content: "\f2ec"; }
.ankaa_diagram-3-fill::before { content: "\f2ed"; }
.ankaa_diagram-3::before { content: "\f2ee"; }
.ankaa_diamond-fill::before { content: "\f2ef"; }
.ankaa_diamond-half::before { content: "\f2f0"; }
.ankaa_diamond::before { content: "\f2f1"; }
.ankaa_dice-1-fill::before { content: "\f2f2"; }
.ankaa_dice-1::before { content: "\f2f3"; }
.ankaa_dice-2-fill::before { content: "\f2f4"; }
.ankaa_dice-2::before { content: "\f2f5"; }
.ankaa_dice-3-fill::before { content: "\f2f6"; }
.ankaa_dice-3::before { content: "\f2f7"; }
.ankaa_dice-4-fill::before { content: "\f2f8"; }
.ankaa_dice-4::before { content: "\f2f9"; }
.ankaa_dice-5-fill::before { content: "\f2fa"; }
.ankaa_dice-5::before { content: "\f2fb"; }
.ankaa_dice-6-fill::before { content: "\f2fc"; }
.ankaa_dice-6::before { content: "\f2fd"; }
.ankaa_disc-fill::before { content: "\f2fe"; }
.ankaa_disc::before { content: "\f2ff"; }
.ankaa_discord::before { content: "\f300"; }
.ankaa_display-fill::before { content: "\f301"; }
.ankaa_display::before { content: "\f302"; }
.ankaa_distribute-horizontal::before { content: "\f303"; }
.ankaa_distribute-vertical::before { content: "\f304"; }
.ankaa_door-closed-fill::before { content: "\f305"; }
.ankaa_door-closed::before { content: "\f306"; }
.ankaa_door-open-fill::before { content: "\f307"; }
.ankaa_door-open::before { content: "\f308"; }
.ankaa_dot::before { content: "\f309"; }
.ankaa_download::before { content: "\f30a"; }
.ankaa_droplet-fill::before { content: "\f30b"; }
.ankaa_droplet-half::before { content: "\f30c"; }
.ankaa_droplet::before { content: "\f30d"; }
.ankaa_earbuds::before { content: "\f30e"; }
.ankaa_easel-fill::before { content: "\f30f"; }
.ankaa_easel::before { content: "\f310"; }
.ankaa_egg-fill::before { content: "\f311"; }
.ankaa_egg-fried::before { content: "\f312"; }
.ankaa_egg::before { content: "\f313"; }
.ankaa_eject-fill::before { content: "\f314"; }
.ankaa_eject::before { content: "\f315"; }
.ankaa_emoji-angry-fill::before { content: "\f316"; }
.ankaa_emoji-angry::before { content: "\f317"; }
.ankaa_emoji-dizzy-fill::before { content: "\f318"; }
.ankaa_emoji-dizzy::before { content: "\f319"; }
.ankaa_emoji-expressionless-fill::before { content: "\f31a"; }
.ankaa_emoji-expressionless::before { content: "\f31b"; }
.ankaa_emoji-frown-fill::before { content: "\f31c"; }
.ankaa_emoji-frown::before { content: "\f31d"; }
.ankaa_emoji-heart-eyes-fill::before { content: "\f31e"; }
.ankaa_emoji-heart-eyes::before { content: "\f31f"; }
.ankaa_emoji-laughing-fill::before { content: "\f320"; }
.ankaa_emoji-laughing::before { content: "\f321"; }
.ankaa_emoji-neutral-fill::before { content: "\f322"; }
.ankaa_emoji-neutral::before { content: "\f323"; }
.ankaa_emoji-smile-fill::before { content: "\f324"; }
.ankaa_emoji-smile-upside-down-fill::before { content: "\f325"; }
.ankaa_emoji-smile-upside-down::before { content: "\f326"; }
.ankaa_emoji-smile::before { content: "\f327"; }
.ankaa_emoji-sunglasses-fill::before { content: "\f328"; }
.ankaa_emoji-sunglasses::before { content: "\f329"; }
.ankaa_emoji-wink-fill::before { content: "\f32a"; }
.ankaa_emoji-wink::before { content: "\f32b"; }
.ankaa_envelope-fill::before { content: "\f32c"; }
.ankaa_envelope-open-fill::before { content: "\f32d"; }
.ankaa_envelope-open::before { content: "\f32e"; }
.ankaa_envelope::before { content: "\f32f"; }
.ankaa_eraser-fill::before { content: "\f330"; }
.ankaa_eraser::before { content: "\f331"; }
.ankaa_exclamation-circle-fill::before { content: "\f332"; }
.ankaa_exclamation-circle::before { content: "\f333"; }
.ankaa_exclamation-diamond-fill::before { content: "\f334"; }
.ankaa_exclamation-diamond::before { content: "\f335"; }
.ankaa_exclamation-octagon-fill::before { content: "\f336"; }
.ankaa_exclamation-octagon::before { content: "\f337"; }
.ankaa_exclamation-square-fill::before { content: "\f338"; }
.ankaa_exclamation-square::before { content: "\f339"; }
.ankaa_exclamation-triangle-fill::before { content: "\f33a"; }
.ankaa_exclamation-triangle::before { content: "\f33b"; }
.ankaa_exclamation::before { content: "\f33c"; }
.ankaa_exclude::before { content: "\f33d"; }
.ankaa_eye-fill::before { content: "\f33e"; }
.ankaa_eye-slash-fill::before { content: "\f33f"; }
.ankaa_eye-slash::before { content: "\f340"; }
.ankaa_eye::before { content: "\f341"; }
.ankaa_eyedropper::before { content: "\f342"; }
.ankaa_eyeglasses::before { content: "\f343"; }
.ankaa_facebook::before { content: "\f344"; }
.ankaa_file-arrow-down-fill::before { content: "\f345"; }
.ankaa_file-arrow-down::before { content: "\f346"; }
.ankaa_file-arrow-up-fill::before { content: "\f347"; }
.ankaa_file-arrow-up::before { content: "\f348"; }
.ankaa_file-bar-graph-fill::before { content: "\f349"; }
.ankaa_file-bar-graph::before { content: "\f34a"; }
.ankaa_file-binary-fill::before { content: "\f34b"; }
.ankaa_file-binary::before { content: "\f34c"; }
.ankaa_file-break-fill::before { content: "\f34d"; }
.ankaa_file-break::before { content: "\f34e"; }
.ankaa_file-check-fill::before { content: "\f34f"; }
.ankaa_file-check::before { content: "\f350"; }
.ankaa_file-code-fill::before { content: "\f351"; }
.ankaa_file-code::before { content: "\f352"; }
.ankaa_file-diff-fill::before { content: "\f353"; }
.ankaa_file-diff::before { content: "\f354"; }
.ankaa_file-earmark-arrow-down-fill::before { content: "\f355"; }
.ankaa_file-earmark-arrow-down::before { content: "\f356"; }
.ankaa_file-earmark-arrow-up-fill::before { content: "\f357"; }
.ankaa_file-earmark-arrow-up::before { content: "\f358"; }
.ankaa_file-earmark-bar-graph-fill::before { content: "\f359"; }
.ankaa_file-earmark-bar-graph::before { content: "\f35a"; }
.ankaa_file-earmark-binary-fill::before { content: "\f35b"; }
.ankaa_file-earmark-binary::before { content: "\f35c"; }
.ankaa_file-earmark-break-fill::before { content: "\f35d"; }
.ankaa_file-earmark-break::before { content: "\f35e"; }
.ankaa_file-earmark-check-fill::before { content: "\f35f"; }
.ankaa_file-earmark-check::before { content: "\f360"; }
.ankaa_file-earmark-code-fill::before { content: "\f361"; }
.ankaa_file-earmark-code::before { content: "\f362"; }
.ankaa_file-earmark-diff-fill::before { content: "\f363"; }
.ankaa_file-earmark-diff::before { content: "\f364"; }
.ankaa_file-earmark-easel-fill::before { content: "\f365"; }
.ankaa_file-earmark-easel::before { content: "\f366"; }
.ankaa_file-earmark-excel-fill::before { content: "\f367"; }
.ankaa_file-earmark-excel::before { content: "\f368"; }
.ankaa_file-earmark-fill::before { content: "\f369"; }
.ankaa_file-earmark-font-fill::before { content: "\f36a"; }
.ankaa_file-earmark-font::before { content: "\f36b"; }
.ankaa_file-earmark-image-fill::before { content: "\f36c"; }
.ankaa_file-earmark-image::before { content: "\f36d"; }
.ankaa_file-earmark-lock-fill::before { content: "\f36e"; }
.ankaa_file-earmark-lock::before { content: "\f36f"; }
.ankaa_file-earmark-lock2-fill::before { content: "\f370"; }
.ankaa_file-earmark-lock2::before { content: "\f371"; }
.ankaa_file-earmark-medical-fill::before { content: "\f372"; }
.ankaa_file-earmark-medical::before { content: "\f373"; }
.ankaa_file-earmark-minus-fill::before { content: "\f374"; }
.ankaa_file-earmark-minus::before { content: "\f375"; }
.ankaa_file-earmark-music-fill::before { content: "\f376"; }
.ankaa_file-earmark-music::before { content: "\f377"; }
.ankaa_file-earmark-person-fill::before { content: "\f378"; }
.ankaa_file-earmark-person::before { content: "\f379"; }
.ankaa_file-earmark-play-fill::before { content: "\f37a"; }
.ankaa_file-earmark-play::before { content: "\f37b"; }
.ankaa_file-earmark-plus-fill::before { content: "\f37c"; }
.ankaa_file-earmark-plus::before { content: "\f37d"; }
.ankaa_file-earmark-post-fill::before { content: "\f37e"; }
.ankaa_file-earmark-post::before { content: "\f37f"; }
.ankaa_file-earmark-ppt-fill::before { content: "\f380"; }
.ankaa_file-earmark-ppt::before { content: "\f381"; }
.ankaa_file-earmark-richtext-fill::before { content: "\f382"; }
.ankaa_file-earmark-richtext::before { content: "\f383"; }
.ankaa_file-earmark-ruled-fill::before { content: "\f384"; }
.ankaa_file-earmark-ruled::before { content: "\f385"; }
.ankaa_file-earmark-slides-fill::before { content: "\f386"; }
.ankaa_file-earmark-slides::before { content: "\f387"; }
.ankaa_file-earmark-spreadsheet-fill::before { content: "\f388"; }
.ankaa_file-earmark-spreadsheet::before { content: "\f389"; }
.ankaa_file-earmark-text-fill::before { content: "\f38a"; }
.ankaa_file-earmark-text::before { content: "\f38b"; }
.ankaa_file-earmark-word-fill::before { content: "\f38c"; }
.ankaa_file-earmark-word::before { content: "\f38d"; }
.ankaa_file-earmark-x-fill::before { content: "\f38e"; }
.ankaa_file-earmark-x::before { content: "\f38f"; }
.ankaa_file-earmark-zip-fill::before { content: "\f390"; }
.ankaa_file-earmark-zip::before { content: "\f391"; }
.ankaa_file-earmark::before { content: "\f392"; }
.ankaa_file-easel-fill::before { content: "\f393"; }
.ankaa_file-easel::before { content: "\f394"; }
.ankaa_file-excel-fill::before { content: "\f395"; }
.ankaa_file-excel::before { content: "\f396"; }
.ankaa_file-fill::before { content: "\f397"; }
.ankaa_file-font-fill::before { content: "\f398"; }
.ankaa_file-font::before { content: "\f399"; }
.ankaa_file-image-fill::before { content: "\f39a"; }
.ankaa_file-image::before { content: "\f39b"; }
.ankaa_file-lock-fill::before { content: "\f39c"; }
.ankaa_file-lock::before { content: "\f39d"; }
.ankaa_file-lock2-fill::before { content: "\f39e"; }
.ankaa_file-lock2::before { content: "\f39f"; }
.ankaa_file-medical-fill::before { content: "\f3a0"; }
.ankaa_file-medical::before { content: "\f3a1"; }
.ankaa_file-minus-fill::before { content: "\f3a2"; }
.ankaa_file-minus::before { content: "\f3a3"; }
.ankaa_file-music-fill::before { content: "\f3a4"; }
.ankaa_file-music::before { content: "\f3a5"; }
.ankaa_file-person-fill::before { content: "\f3a6"; }
.ankaa_file-person::before { content: "\f3a7"; }
.ankaa_file-play-fill::before { content: "\f3a8"; }
.ankaa_file-play::before { content: "\f3a9"; }
.ankaa_file-plus-fill::before { content: "\f3aa"; }
.ankaa_file-plus::before { content: "\f3ab"; }
.ankaa_file-post-fill::before { content: "\f3ac"; }
.ankaa_file-post::before { content: "\f3ad"; }
.ankaa_file-ppt-fill::before { content: "\f3ae"; }
.ankaa_file-ppt::before { content: "\f3af"; }
.ankaa_file-richtext-fill::before { content: "\f3b0"; }
.ankaa_file-richtext::before { content: "\f3b1"; }
.ankaa_file-ruled-fill::before { content: "\f3b2"; }
.ankaa_file-ruled::before { content: "\f3b3"; }
.ankaa_file-slides-fill::before { content: "\f3b4"; }
.ankaa_file-slides::before { content: "\f3b5"; }
.ankaa_file-spreadsheet-fill::before { content: "\f3b6"; }
.ankaa_file-spreadsheet::before { content: "\f3b7"; }
.ankaa_file-text-fill::before { content: "\f3b8"; }
.ankaa_file-text::before { content: "\f3b9"; }
.ankaa_file-word-fill::before { content: "\f3ba"; }
.ankaa_file-word::before { content: "\f3bb"; }
.ankaa_file-x-fill::before { content: "\f3bc"; }
.ankaa_file-x::before { content: "\f3bd"; }
.ankaa_file-zip-fill::before { content: "\f3be"; }
.ankaa_file-zip::before { content: "\f3bf"; }
.ankaa_file::before { content: "\f3c0"; }
.ankaa_files-alt::before { content: "\f3c1"; }
.ankaa_files::before { content: "\f3c2"; }
.ankaa_film::before { content: "\f3c3"; }
.ankaa_filter-circle-fill::before { content: "\f3c4"; }
.ankaa_filter-circle::before { content: "\f3c5"; }
.ankaa_filter-left::before { content: "\f3c6"; }
.ankaa_filter-right::before { content: "\f3c7"; }
.ankaa_filter-square-fill::before { content: "\f3c8"; }
.ankaa_filter-square::before { content: "\f3c9"; }
.ankaa_filter::before { content: "\f3ca"; }
.ankaa_flag-fill::before { content: "\f3cb"; }
.ankaa_flag::before { content: "\f3cc"; }
.ankaa_flower1::before { content: "\f3cd"; }
.ankaa_flower2::before { content: "\f3ce"; }
.ankaa_flower3::before { content: "\f3cf"; }
.ankaa_folder-check::before { content: "\f3d0"; }
.ankaa_folder-fill::before { content: "\f3d1"; }
.ankaa_folder-minus::before { content: "\f3d2"; }
.ankaa_folder-plus::before { content: "\f3d3"; }
.ankaa_folder-symlink-fill::before { content: "\f3d4"; }
.ankaa_folder-symlink::before { content: "\f3d5"; }
.ankaa_folder-x::before { content: "\f3d6"; }
.ankaa_folder::before { content: "\f3d7"; }
.ankaa_folder2-open::before { content: "\f3d8"; }
.ankaa_folder2::before { content: "\f3d9"; }
.ankaa_fonts::before { content: "\f3da"; }
.ankaa_forward-fill::before { content: "\f3db"; }
.ankaa_forward::before { content: "\f3dc"; }
.ankaa_front::before { content: "\f3dd"; }
.ankaa_fullscreen-exit::before { content: "\f3de"; }
.ankaa_fullscreen::before { content: "\f3df"; }
.ankaa_funnel-fill::before { content: "\f3e0"; }
.ankaa_funnel::before { content: "\f3e1"; }
.ankaa_gear-fill::before { content: "\f3e2"; }
.ankaa_gear-wide-connected::before { content: "\f3e3"; }
.ankaa_gear-wide::before { content: "\f3e4"; }
.ankaa_gear::before { content: "\f3e5"; }
.ankaa_gem::before { content: "\f3e6"; }
.ankaa_geo-alt-fill::before { content: "\f3e7"; }
.ankaa_geo-alt::before { content: "\f3e8"; }
.ankaa_geo-fill::before { content: "\f3e9"; }
.ankaa_geo::before { content: "\f3ea"; }
.ankaa_gift-fill::before { content: "\f3eb"; }
.ankaa_gift::before { content: "\f3ec"; }
.ankaa_github::before { content: "\f3ed"; }
.ankaa_globe::before { content: "\f3ee"; }
.ankaa_globe2::before { content: "\f3ef"; }
.ankaa_google::before { content: "\f3f0"; }
.ankaa_graph-down::before { content: "\f3f1"; }
.ankaa_graph-up::before { content: "\f3f2"; }
.ankaa_grid-1x2-fill::before { content: "\f3f3"; }
.ankaa_grid-1x2::before { content: "\f3f4"; }
.ankaa_grid-3x2-gap-fill::before { content: "\f3f5"; }
.ankaa_grid-3x2-gap::before { content: "\f3f6"; }
.ankaa_grid-3x2::before { content: "\f3f7"; }
.ankaa_grid-3x3-gap-fill::before { content: "\f3f8"; }
.ankaa_grid-3x3-gap::before { content: "\f3f9"; }
.ankaa_grid-3x3::before { content: "\f3fa"; }
.ankaa_grid-fill::before { content: "\f3fb"; }
.ankaa_grid::before { content: "\f3fc"; }
.ankaa_grip-horizontal::before { content: "\f3fd"; }
.ankaa_grip-vertical::before { content: "\f3fe"; }
.ankaa_hammer::before { content: "\f3ff"; }
.ankaa_hand-index-fill::before { content: "\f400"; }
.ankaa_hand-index-thumb-fill::before { content: "\f401"; }
.ankaa_hand-index-thumb::before { content: "\f402"; }
.ankaa_hand-index::before { content: "\f403"; }
.ankaa_hand-thumbs-down-fill::before { content: "\f404"; }
.ankaa_hand-thumbs-down::before { content: "\f405"; }
.ankaa_hand-thumbs-up-fill::before { content: "\f406"; }
.ankaa_hand-thumbs-up::before { content: "\f407"; }
.ankaa_handbag-fill::before { content: "\f408"; }
.ankaa_handbag::before { content: "\f409"; }
.ankaa_hash::before { content: "\f40a"; }
.ankaa_hdd-fill::before { content: "\f40b"; }
.ankaa_hdd-network-fill::before { content: "\f40c"; }
.ankaa_hdd-network::before { content: "\f40d"; }
.ankaa_hdd-rack-fill::before { content: "\f40e"; }
.ankaa_hdd-rack::before { content: "\f40f"; }
.ankaa_hdd-stack-fill::before { content: "\f410"; }
.ankaa_hdd-stack::before { content: "\f411"; }
.ankaa_hdd::before { content: "\f412"; }
.ankaa_headphones::before { content: "\f413"; }
.ankaa_headset::before { content: "\f414"; }
.ankaa_heart-fill::before { content: "\f415"; }
.ankaa_heart-half::before { content: "\f416"; }
.ankaa_heart::before { content: "\f417"; }
.ankaa_heptagon-fill::before { content: "\f418"; }
.ankaa_heptagon-half::before { content: "\f419"; }
.ankaa_heptagon::before { content: "\f41a"; }
.ankaa_hexagon-fill::before { content: "\f41b"; }
.ankaa_hexagon-half::before { content: "\f41c"; }
.ankaa_hexagon::before { content: "\f41d"; }
.ankaa_hourglass-bottom::before { content: "\f41e"; }
.ankaa_hourglass-split::before { content: "\f41f"; }
.ankaa_hourglass-top::before { content: "\f420"; }
.ankaa_hourglass::before { content: "\f421"; }
.ankaa_house-door-fill::before { content: "\f422"; }
.ankaa_house-door::before { content: "\f423"; }
.ankaa_house-fill::before { content: "\f424"; }
.ankaa_house::before { content: "\f425"; }
.ankaa_hr::before { content: "\f426"; }
.ankaa_hurricane::before { content: "\f427"; }
.ankaa_image-alt::before { content: "\f428"; }
.ankaa_image-fill::before { content: "\f429"; }
.ankaa_image::before { content: "\f42a"; }
.ankaa_images::before { content: "\f42b"; }
.ankaa_inbox-fill::before { content: "\f42c"; }
.ankaa_inbox::before { content: "\f42d"; }
.ankaa_inboxes-fill::before { content: "\f42e"; }
.ankaa_inboxes::before { content: "\f42f"; }
.ankaa_info-circle-fill::before { content: "\f430"; }
.ankaa_info-circle::before { content: "\f431"; }
.ankaa_info-square-fill::before { content: "\f432"; }
.ankaa_info-square::before { content: "\f433"; }
.ankaa_info::before { content: "\f434"; }
.ankaa_input-cursor-text::before { content: "\f435"; }
.ankaa_input-cursor::before { content: "\f436"; }
.ankaa_instagram::before { content: "\f437"; }
.ankaa_intersect::before { content: "\f438"; }
.ankaa_journal-album::before { content: "\f439"; }
.ankaa_journal-arrow-down::before { content: "\f43a"; }
.ankaa_journal-arrow-up::before { content: "\f43b"; }
.ankaa_journal-bookmark-fill::before { content: "\f43c"; }
.ankaa_journal-bookmark::before { content: "\f43d"; }
.ankaa_journal-check::before { content: "\f43e"; }
.ankaa_journal-code::before { content: "\f43f"; }
.ankaa_journal-medical::before { content: "\f440"; }
.ankaa_journal-minus::before { content: "\f441"; }
.ankaa_journal-plus::before { content: "\f442"; }
.ankaa_journal-richtext::before { content: "\f443"; }
.ankaa_journal-text::before { content: "\f444"; }
.ankaa_journal-x::before { content: "\f445"; }
.ankaa_journal::before { content: "\f446"; }
.ankaa_journals::before { content: "\f447"; }
.ankaa_joystick::before { content: "\f448"; }
.ankaa_justify-left::before { content: "\f449"; }
.ankaa_justify-right::before { content: "\f44a"; }
.ankaa_justify::before { content: "\f44b"; }
.ankaa_kanban-fill::before { content: "\f44c"; }
.ankaa_kanban::before { content: "\f44d"; }
.ankaa_key-fill::before { content: "\f44e"; }
.ankaa_key::before { content: "\f44f"; }
.ankaa_keyboard-fill::before { content: "\f450"; }
.ankaa_keyboard::before { content: "\f451"; }
.ankaa_ladder::before { content: "\f452"; }
.ankaa_lamp-fill::before { content: "\f453"; }
.ankaa_lamp::before { content: "\f454"; }
.ankaa_laptop-fill::before { content: "\f455"; }
.ankaa_laptop::before { content: "\f456"; }
.ankaa_layer-backward::before { content: "\f457"; }
.ankaa_layer-forward::before { content: "\f458"; }
.ankaa_layers-fill::before { content: "\f459"; }
.ankaa_layers-half::before { content: "\f45a"; }
.ankaa_layers::before { content: "\f45b"; }
.ankaa_layout-sidebar-inset-reverse::before { content: "\f45c"; }
.ankaa_layout-sidebar-inset::before { content: "\f45d"; }
.ankaa_layout-sidebar-reverse::before { content: "\f45e"; }
.ankaa_layout-sidebar::before { content: "\f45f"; }
.ankaa_layout-split::before { content: "\f460"; }
.ankaa_layout-text-sidebar-reverse::before { content: "\f461"; }
.ankaa_layout-text-sidebar::before { content: "\f462"; }
.ankaa_layout-text-window-reverse::before { content: "\f463"; }
.ankaa_layout-text-window::before { content: "\f464"; }
.ankaa_layout-three-columns::before { content: "\f465"; }
.ankaa_layout-wtf::before { content: "\f466"; }
.ankaa_life-preserver::before { content: "\f467"; }
.ankaa_lightbulb-fill::before { content: "\f468"; }
.ankaa_lightbulb-off-fill::before { content: "\f469"; }
.ankaa_lightbulb-off::before { content: "\f46a"; }
.ankaa_lightbulb::before { content: "\f46b"; }
.ankaa_lightning-charge-fill::before { content: "\f46c"; }
.ankaa_lightning-charge::before { content: "\f46d"; }
.ankaa_lightning-fill::before { content: "\f46e"; }
.ankaa_lightning::before { content: "\f46f"; }
.ankaa_link-45deg::before { content: "\f470"; }
.ankaa_link::before { content: "\f471"; }
.ankaa_linkedin::before { content: "\f472"; }
.ankaa_list-check::before { content: "\f473"; }
.ankaa_list-nested::before { content: "\f474"; }
.ankaa_list-ol::before { content: "\f475"; }
.ankaa_list-stars::before { content: "\f476"; }
.ankaa_list-task::before { content: "\f477"; }
.ankaa_list-ul::before { content: "\f478"; }
.ankaa_list::before { content: "\f479"; }
.ankaa_lock-fill::before { content: "\f47a"; }
.ankaa_lock::before { content: "\f47b"; }
.ankaa_mailbox::before { content: "\f47c"; }
.ankaa_mailbox2::before { content: "\f47d"; }
.ankaa_map-fill::before { content: "\f47e"; }
.ankaa_map::before { content: "\f47f"; }
.ankaa_markdown-fill::before { content: "\f480"; }
.ankaa_markdown::before { content: "\f481"; }
.ankaa_mask::before { content: "\f482"; }
.ankaa_megaphone-fill::before { content: "\f483"; }
.ankaa_megaphone::before { content: "\f484"; }
.ankaa_menu-app-fill::before { content: "\f485"; }
.ankaa_menu-app::before { content: "\f486"; }
.ankaa_menu-button-fill::before { content: "\f487"; }
.ankaa_menu-button-wide-fill::before { content: "\f488"; }
.ankaa_menu-button-wide::before { content: "\f489"; }
.ankaa_menu-button::before { content: "\f48a"; }
.ankaa_menu-down::before { content: "\f48b"; }
.ankaa_menu-up::before { content: "\f48c"; }
.ankaa_mic-fill::before { content: "\f48d"; }
.ankaa_mic-mute-fill::before { content: "\f48e"; }
.ankaa_mic-mute::before { content: "\f48f"; }
.ankaa_mic::before { content: "\f490"; }
.ankaa_minecart-loaded::before { content: "\f491"; }
.ankaa_minecart::before { content: "\f492"; }
.ankaa_moisture::before { content: "\f493"; }
.ankaa_moon-fill::before { content: "\f494"; }
.ankaa_moon-stars-fill::before { content: "\f495"; }
.ankaa_moon-stars::before { content: "\f496"; }
.ankaa_moon::before { content: "\f497"; }
.ankaa_mouse-fill::before { content: "\f498"; }
.ankaa_mouse::before { content: "\f499"; }
.ankaa_mouse2-fill::before { content: "\f49a"; }
.ankaa_mouse2::before { content: "\f49b"; }
.ankaa_mouse3-fill::before { content: "\f49c"; }
.ankaa_mouse3::before { content: "\f49d"; }
.ankaa_music-note-beamed::before { content: "\f49e"; }
.ankaa_music-note-list::before { content: "\f49f"; }
.ankaa_music-note::before { content: "\f4a0"; }
.ankaa_music-player-fill::before { content: "\f4a1"; }
.ankaa_music-player::before { content: "\f4a2"; }
.ankaa_newspaper::before { content: "\f4a3"; }
.ankaa_node-minus-fill::before { content: "\f4a4"; }
.ankaa_node-minus::before { content: "\f4a5"; }
.ankaa_node-plus-fill::before { content: "\f4a6"; }
.ankaa_node-plus::before { content: "\f4a7"; }
.ankaa_nut-fill::before { content: "\f4a8"; }
.ankaa_nut::before { content: "\f4a9"; }
.ankaa_octagon-fill::before { content: "\f4aa"; }
.ankaa_octagon-half::before { content: "\f4ab"; }
.ankaa_octagon::before { content: "\f4ac"; }
.ankaa_option::before { content: "\f4ad"; }
.ankaa_outlet::before { content: "\f4ae"; }
.ankaa_paint-bucket::before { content: "\f4af"; }
.ankaa_palette-fill::before { content: "\f4b0"; }
.ankaa_palette::before { content: "\f4b1"; }
.ankaa_palette2::before { content: "\f4b2"; }
.ankaa_paperclip::before { content: "\f4b3"; }
.ankaa_paragraph::before { content: "\f4b4"; }
.ankaa_patch-check-fill::before { content: "\f4b5"; }
.ankaa_patch-check::before { content: "\f4b6"; }
.ankaa_patch-exclamation-fill::before { content: "\f4b7"; }
.ankaa_patch-exclamation::before { content: "\f4b8"; }
.ankaa_patch-minus-fill::before { content: "\f4b9"; }
.ankaa_patch-minus::before { content: "\f4ba"; }
.ankaa_patch-plus-fill::before { content: "\f4bb"; }
.ankaa_patch-plus::before { content: "\f4bc"; }
.ankaa_patch-question-fill::before { content: "\f4bd"; }
.ankaa_patch-question::before { content: "\f4be"; }
.ankaa_pause-btn-fill::before { content: "\f4bf"; }
.ankaa_pause-btn::before { content: "\f4c0"; }
.ankaa_pause-circle-fill::before { content: "\f4c1"; }
.ankaa_pause-circle::before { content: "\f4c2"; }
.ankaa_pause-fill::before { content: "\f4c3"; }
.ankaa_pause::before { content: "\f4c4"; }
.ankaa_peace-fill::before { content: "\f4c5"; }
.ankaa_peace::before { content: "\f4c6"; }
.ankaa_pen-fill::before { content: "\f4c7"; }
.ankaa_pen::before { content: "\f4c8"; }
.ankaa_pencil-fill::before { content: "\f4c9"; }
.ankaa_pencil-square::before { content: "\f4ca"; }
.ankaa_pencil::before { content: "\f4cb"; }
.ankaa_pentagon-fill::before { content: "\f4cc"; }
.ankaa_pentagon-half::before { content: "\f4cd"; }
.ankaa_pentagon::before { content: "\f4ce"; }
.ankaa_people-fill::before { content: "\f4cf"; }
.ankaa_people::before { content: "\f4d0"; }
.ankaa_percent::before { content: "\f4d1"; }
.ankaa_person-badge-fill::before { content: "\f4d2"; }
.ankaa_person-badge::before { content: "\f4d3"; }
.ankaa_person-bounding-box::before { content: "\f4d4"; }
.ankaa_person-check-fill::before { content: "\f4d5"; }
.ankaa_person-check::before { content: "\f4d6"; }
.ankaa_person-circle::before { content: "\f4d7"; }
.ankaa_person-dash-fill::before { content: "\f4d8"; }
.ankaa_person-dash::before { content: "\f4d9"; }
.ankaa_person-fill::before { content: "\f4da"; }
.ankaa_person-lines-fill::before { content: "\f4db"; }
.ankaa_person-plus-fill::before { content: "\f4dc"; }
.ankaa_person-plus::before { content: "\f4dd"; }
.ankaa_person-square::before { content: "\f4de"; }
.ankaa_person-x-fill::before { content: "\f4df"; }
.ankaa_person-x::before { content: "\f4e0"; }
.ankaa_person::before { content: "\f4e1"; }
.ankaa_phone-fill::before { content: "\f4e2"; }
.ankaa_phone-landscape-fill::before { content: "\f4e3"; }
.ankaa_phone-landscape::before { content: "\f4e4"; }
.ankaa_phone-vibrate-fill::before { content: "\f4e5"; }
.ankaa_phone-vibrate::before { content: "\f4e6"; }
.ankaa_phone::before { content: "\f4e7"; }
.ankaa_pie-chart-fill::before { content: "\f4e8"; }
.ankaa_pie-chart::before { content: "\f4e9"; }
.ankaa_pin-angle-fill::before { content: "\f4ea"; }
.ankaa_pin-angle::before { content: "\f4eb"; }
.ankaa_pin-fill::before { content: "\f4ec"; }
.ankaa_pin::before { content: "\f4ed"; }
.ankaa_pip-fill::before { content: "\f4ee"; }
.ankaa_pip::before { content: "\f4ef"; }
.ankaa_play-btn-fill::before { content: "\f4f0"; }
.ankaa_play-btn::before { content: "\f4f1"; }
.ankaa_play-circle-fill::before { content: "\f4f2"; }
.ankaa_play-circle::before { content: "\f4f3"; }
.ankaa_play-fill::before { content: "\f4f4"; }
.ankaa_play::before { content: "\f4f5"; }
.ankaa_plug-fill::before { content: "\f4f6"; }
.ankaa_plug::before { content: "\f4f7"; }
.ankaa_plus-circle-dotted::before { content: "\f4f8"; }
.ankaa_plus-circle-fill::before { content: "\f4f9"; }
.ankaa_plus-circle::before { content: "\f4fa"; }
.ankaa_plus-square-dotted::before { content: "\f4fb"; }
.ankaa_plus-square-fill::before { content: "\f4fc"; }
.ankaa_plus-square::before { content: "\f4fd"; }
.ankaa_plus::before { content: "\f4fe"; }
.ankaa_power::before { content: "\f4ff"; }
.ankaa_printer-fill::before { content: "\f500"; }
.ankaa_printer::before { content: "\f501"; }
.ankaa_puzzle-fill::before { content: "\f502"; }
.ankaa_puzzle::before { content: "\f503"; }
.ankaa_question-circle-fill::before { content: "\f504"; }
.ankaa_question-circle::before { content: "\f505"; }
.ankaa_question-diamond-fill::before { content: "\f506"; }
.ankaa_question-diamond::before { content: "\f507"; }
.ankaa_question-octagon-fill::before { content: "\f508"; }
.ankaa_question-octagon::before { content: "\f509"; }
.ankaa_question-square-fill::before { content: "\f50a"; }
.ankaa_question-square::before { content: "\f50b"; }
.ankaa_question::before { content: "\f50c"; }
.ankaa_rainbow::before { content: "\f50d"; }
.ankaa_receipt-cutoff::before { content: "\f50e"; }
.ankaa_receipt::before { content: "\f50f"; }
.ankaa_reception-0::before { content: "\f510"; }
.ankaa_reception-1::before { content: "\f511"; }
.ankaa_reception-2::before { content: "\f512"; }
.ankaa_reception-3::before { content: "\f513"; }
.ankaa_reception-4::before { content: "\f514"; }
.ankaa_record-btn-fill::before { content: "\f515"; }
.ankaa_record-btn::before { content: "\f516"; }
.ankaa_record-circle-fill::before { content: "\f517"; }
.ankaa_record-circle::before { content: "\f518"; }
.ankaa_record-fill::before { content: "\f519"; }
.ankaa_record::before { content: "\f51a"; }
.ankaa_record2-fill::before { content: "\f51b"; }
.ankaa_record2::before { content: "\f51c"; }
.ankaa_reply-all-fill::before { content: "\f51d"; }
.ankaa_reply-all::before { content: "\f51e"; }
.ankaa_reply-fill::before { content: "\f51f"; }
.ankaa_reply::before { content: "\f520"; }
.ankaa_rss-fill::before { content: "\f521"; }
.ankaa_rss::before { content: "\f522"; }
.ankaa_rulers::before { content: "\f523"; }
.ankaa_save-fill::before { content: "\f524"; }
.ankaa_save::before { content: "\f525"; }
.ankaa_save2-fill::before { content: "\f526"; }
.ankaa_save2::before { content: "\f527"; }
.ankaa_scissors::before { content: "\f528"; }
.ankaa_screwdriver::before { content: "\f529"; }
.ankaa_search::before { content: "\f52a"; }
.ankaa_segmented-nav::before { content: "\f52b"; }
.ankaa_server::before { content: "\f52c"; }
.ankaa_share-fill::before { content: "\f52d"; }
.ankaa_share::before { content: "\f52e"; }
.ankaa_shield-check::before { content: "\f52f"; }
.ankaa_shield-exclamation::before { content: "\f530"; }
.ankaa_shield-fill-check::before { content: "\f531"; }
.ankaa_shield-fill-exclamation::before { content: "\f532"; }
.ankaa_shield-fill-minus::before { content: "\f533"; }
.ankaa_shield-fill-plus::before { content: "\f534"; }
.ankaa_shield-fill-x::before { content: "\f535"; }
.ankaa_shield-fill::before { content: "\f536"; }
.ankaa_shield-lock-fill::before { content: "\f537"; }
.ankaa_shield-lock::before { content: "\f538"; }
.ankaa_shield-minus::before { content: "\f539"; }
.ankaa_shield-plus::before { content: "\f53a"; }
.ankaa_shield-shaded::before { content: "\f53b"; }
.ankaa_shield-slash-fill::before { content: "\f53c"; }
.ankaa_shield-slash::before { content: "\f53d"; }
.ankaa_shield-x::before { content: "\f53e"; }
.ankaa_shield::before { content: "\f53f"; }
.ankaa_shift-fill::before { content: "\f540"; }
.ankaa_shift::before { content: "\f541"; }
.ankaa_shop-window::before { content: "\f542"; }
.ankaa_shop::before { content: "\f543"; }
.ankaa_shuffle::before { content: "\f544"; }
.ankaa_signpost-2-fill::before { content: "\f545"; }
.ankaa_signpost-2::before { content: "\f546"; }
.ankaa_signpost-fill::before { content: "\f547"; }
.ankaa_signpost-split-fill::before { content: "\f548"; }
.ankaa_signpost-split::before { content: "\f549"; }
.ankaa_signpost::before { content: "\f54a"; }
.ankaa_sim-fill::before { content: "\f54b"; }
.ankaa_sim::before { content: "\f54c"; }
.ankaa_skip-backward-btn-fill::before { content: "\f54d"; }
.ankaa_skip-backward-btn::before { content: "\f54e"; }
.ankaa_skip-backward-circle-fill::before { content: "\f54f"; }
.ankaa_skip-backward-circle::before { content: "\f550"; }
.ankaa_skip-backward-fill::before { content: "\f551"; }
.ankaa_skip-backward::before { content: "\f552"; }
.ankaa_skip-end-btn-fill::before { content: "\f553"; }
.ankaa_skip-end-btn::before { content: "\f554"; }
.ankaa_skip-end-circle-fill::before { content: "\f555"; }
.ankaa_skip-end-circle::before { content: "\f556"; }
.ankaa_skip-end-fill::before { content: "\f557"; }
.ankaa_skip-end::before { content: "\f558"; }
.ankaa_skip-forward-btn-fill::before { content: "\f559"; }
.ankaa_skip-forward-btn::before { content: "\f55a"; }
.ankaa_skip-forward-circle-fill::before { content: "\f55b"; }
.ankaa_skip-forward-circle::before { content: "\f55c"; }
.ankaa_skip-forward-fill::before { content: "\f55d"; }
.ankaa_skip-forward::before { content: "\f55e"; }
.ankaa_skip-start-btn-fill::before { content: "\f55f"; }
.ankaa_skip-start-btn::before { content: "\f560"; }
.ankaa_skip-start-circle-fill::before { content: "\f561"; }
.ankaa_skip-start-circle::before { content: "\f562"; }
.ankaa_skip-start-fill::before { content: "\f563"; }
.ankaa_skip-start::before { content: "\f564"; }
.ankaa_slack::before { content: "\f565"; }
.ankaa_slash-circle-fill::before { content: "\f566"; }
.ankaa_slash-circle::before { content: "\f567"; }
.ankaa_slash-square-fill::before { content: "\f568"; }
.ankaa_slash-square::before { content: "\f569"; }
.ankaa_slash::before { content: "\f56a"; }
.ankaa_sliders::before { content: "\f56b"; }
.ankaa_smartwatch::before { content: "\f56c"; }
.ankaa_snow::before { content: "\f56d"; }
.ankaa_snow2::before { content: "\f56e"; }
.ankaa_snow3::before { content: "\f56f"; }
.ankaa_sort-alpha-down-alt::before { content: "\f570"; }
.ankaa_sort-alpha-down::before { content: "\f571"; }
.ankaa_sort-alpha-up-alt::before { content: "\f572"; }
.ankaa_sort-alpha-up::before { content: "\f573"; }
.ankaa_sort-down-alt::before { content: "\f574"; }
.ankaa_sort-down::before { content: "\f575"; }
.ankaa_sort-numeric-down-alt::before { content: "\f576"; }
.ankaa_sort-numeric-down::before { content: "\f577"; }
.ankaa_sort-numeric-up-alt::before { content: "\f578"; }
.ankaa_sort-numeric-up::before { content: "\f579"; }
.ankaa_sort-up-alt::before { content: "\f57a"; }
.ankaa_sort-up::before { content: "\f57b"; }
.ankaa_soundwave::before { content: "\f57c"; }
.ankaa_speaker-fill::before { content: "\f57d"; }
.ankaa_speaker::before { content: "\f57e"; }
.ankaa_speedometer::before { content: "\f57f"; }
.ankaa_speedometer2::before { content: "\f580"; }
.ankaa_spellcheck::before { content: "\f581"; }
.ankaa_square-fill::before { content: "\f582"; }
.ankaa_square-half::before { content: "\f583"; }
.ankaa_square::before { content: "\f584"; }
.ankaa_stack::before { content: "\f585"; }
.ankaa_star-fill::before { content: "\f586"; }
.ankaa_star-half::before { content: "\f587"; }
.ankaa_star::before { content: "\f588"; }
.ankaa_stars::before { content: "\f589"; }
.ankaa_stickies-fill::before { content: "\f58a"; }
.ankaa_stickies::before { content: "\f58b"; }
.ankaa_sticky-fill::before { content: "\f58c"; }
.ankaa_sticky::before { content: "\f58d"; }
.ankaa_stop-btn-fill::before { content: "\f58e"; }
.ankaa_stop-btn::before { content: "\f58f"; }
.ankaa_stop-circle-fill::before { content: "\f590"; }
.ankaa_stop-circle::before { content: "\f591"; }
.ankaa_stop-fill::before { content: "\f592"; }
.ankaa_stop::before { content: "\f593"; }
.ankaa_stoplights-fill::before { content: "\f594"; }
.ankaa_stoplights::before { content: "\f595"; }
.ankaa_stopwatch-fill::before { content: "\f596"; }
.ankaa_stopwatch::before { content: "\f597"; }
.ankaa_subtract::before { content: "\f598"; }
.ankaa_suit-club-fill::before { content: "\f599"; }
.ankaa_suit-club::before { content: "\f59a"; }
.ankaa_suit-diamond-fill::before { content: "\f59b"; }
.ankaa_suit-diamond::before { content: "\f59c"; }
.ankaa_suit-heart-fill::before { content: "\f59d"; }
.ankaa_suit-heart::before { content: "\f59e"; }
.ankaa_suit-spade-fill::before { content: "\f59f"; }
.ankaa_suit-spade::before { content: "\f5a0"; }
.ankaa_sun-fill::before { content: "\f5a1"; }
.ankaa_sun::before { content: "\f5a2"; }
.ankaa_sunglasses::before { content: "\f5a3"; }
.ankaa_sunrise-fill::before { content: "\f5a4"; }
.ankaa_sunrise::before { content: "\f5a5"; }
.ankaa_sunset-fill::before { content: "\f5a6"; }
.ankaa_sunset::before { content: "\f5a7"; }
.ankaa_symmetry-horizontal::before { content: "\f5a8"; }
.ankaa_symmetry-vertical::before { content: "\f5a9"; }
.ankaa_table::before { content: "\f5aa"; }
.ankaa_tablet-fill::before { content: "\f5ab"; }
.ankaa_tablet-landscape-fill::before { content: "\f5ac"; }
.ankaa_tablet-landscape::before { content: "\f5ad"; }
.ankaa_tablet::before { content: "\f5ae"; }
.ankaa_tag-fill::before { content: "\f5af"; }
.ankaa_tag::before { content: "\f5b0"; }
.ankaa_tags-fill::before { content: "\f5b1"; }
.ankaa_tags::before { content: "\f5b2"; }
.ankaa_telegram::before { content: "\f5b3"; }
.ankaa_telephone-fill::before { content: "\f5b4"; }
.ankaa_telephone-forward-fill::before { content: "\f5b5"; }
.ankaa_telephone-forward::before { content: "\f5b6"; }
.ankaa_telephone-inbound-fill::before { content: "\f5b7"; }
.ankaa_telephone-inbound::before { content: "\f5b8"; }
.ankaa_telephone-minus-fill::before { content: "\f5b9"; }
.ankaa_telephone-minus::before { content: "\f5ba"; }
.ankaa_telephone-outbound-fill::before { content: "\f5bb"; }
.ankaa_telephone-outbound::before { content: "\f5bc"; }
.ankaa_telephone-plus-fill::before { content: "\f5bd"; }
.ankaa_telephone-plus::before { content: "\f5be"; }
.ankaa_telephone-x-fill::before { content: "\f5bf"; }
.ankaa_telephone-x::before { content: "\f5c0"; }
.ankaa_telephone::before { content: "\f5c1"; }
.ankaa_terminal-fill::before { content: "\f5c2"; }
.ankaa_terminal::before { content: "\f5c3"; }
.ankaa_text-center::before { content: "\f5c4"; }
.ankaa_text-indent-left::before { content: "\f5c5"; }
.ankaa_text-indent-right::before { content: "\f5c6"; }
.ankaa_text-left::before { content: "\f5c7"; }
.ankaa_text-paragraph::before { content: "\f5c8"; }
.ankaa_text-right::before { content: "\f5c9"; }
.ankaa_textarea-resize::before { content: "\f5ca"; }
.ankaa_textarea-t::before { content: "\f5cb"; }
.ankaa_textarea::before { content: "\f5cc"; }
.ankaa_thermometer-half::before { content: "\f5cd"; }
.ankaa_thermometer-high::before { content: "\f5ce"; }
.ankaa_thermometer-low::before { content: "\f5cf"; }
.ankaa_thermometer-snow::before { content: "\f5d0"; }
.ankaa_thermometer-sun::before { content: "\f5d1"; }
.ankaa_thermometer::before { content: "\f5d2"; }
.ankaa_three-dots-vertical::before { content: "\f5d3"; }
.ankaa_three-dots::before { content: "\f5d4"; }
.ankaa_toggle-off::before { content: "\f5d5"; }
.ankaa_toggle-on::before { content: "\f5d6"; }
.ankaa_toggle2-off::before { content: "\f5d7"; }
.ankaa_toggle2-on::before { content: "\f5d8"; }
.ankaa_toggles::before { content: "\f5d9"; }
.ankaa_toggles2::before { content: "\f5da"; }
.ankaa_tools::before { content: "\f5db"; }
.ankaa_tornado::before { content: "\f5dc"; }
.ankaa_trash-fill::before { content: "\f5dd"; }
.ankaa_trash::before { content: "\f5de"; }
.ankaa_trash2-fill::before { content: "\f5df"; }
.ankaa_trash2::before { content: "\f5e0"; }
.ankaa_tree-fill::before { content: "\f5e1"; }
.ankaa_tree::before { content: "\f5e2"; }
.ankaa_triangle-fill::before { content: "\f5e3"; }
.ankaa_triangle-half::before { content: "\f5e4"; }
.ankaa_triangle::before { content: "\f5e5"; }
.ankaa_trophy-fill::before { content: "\f5e6"; }
.ankaa_trophy::before { content: "\f5e7"; }
.ankaa_tropical-storm::before { content: "\f5e8"; }
.ankaa_truck-flatbed::before { content: "\f5e9"; }
.ankaa_truck::before { content: "\f5ea"; }
.ankaa_tsunami::before { content: "\f5eb"; }
.ankaa_tv-fill::before { content: "\f5ec"; }
.ankaa_tv::before { content: "\f5ed"; }
.ankaa_twitch::before { content: "\f5ee"; }
.ankaa_twitter::before { content: "\f5ef"; }
.ankaa_type-bold::before { content: "\f5f0"; }
.ankaa_type-h1::before { content: "\f5f1"; }
.ankaa_type-h2::before { content: "\f5f2"; }
.ankaa_type-h3::before { content: "\f5f3"; }
.ankaa_type-italic::before { content: "\f5f4"; }
.ankaa_type-strikethrough::before { content: "\f5f5"; }
.ankaa_type-underline::before { content: "\f5f6"; }
.ankaa_type::before { content: "\f5f7"; }
.ankaa_ui-checks-grid::before { content: "\f5f8"; }
.ankaa_ui-checks::before { content: "\f5f9"; }
.ankaa_ui-radios-grid::before { content: "\f5fa"; }
.ankaa_ui-radios::before { content: "\f5fb"; }
.ankaa_umbrella-fill::before { content: "\f5fc"; }
.ankaa_umbrella::before { content: "\f5fd"; }
.ankaa_union::before { content: "\f5fe"; }
.ankaa_unlock-fill::before { content: "\f5ff"; }
.ankaa_unlock::before { content: "\f600"; }
.ankaa_upc-scan::before { content: "\f601"; }
.ankaa_upc::before { content: "\f602"; }
.ankaa_upload::before { content: "\f603"; }
.ankaa_vector-pen::before { content: "\f604"; }
.ankaa_view-list::before { content: "\f605"; }
.ankaa_view-stacked::before { content: "\f606"; }
.ankaa_vinyl-fill::before { content: "\f607"; }
.ankaa_vinyl::before { content: "\f608"; }
.ankaa_voicemail::before { content: "\f609"; }
.ankaa_volume-down-fill::before { content: "\f60a"; }
.ankaa_volume-down::before { content: "\f60b"; }
.ankaa_volume-mute-fill::before { content: "\f60c"; }
.ankaa_volume-mute::before { content: "\f60d"; }
.ankaa_volume-off-fill::before { content: "\f60e"; }
.ankaa_volume-off::before { content: "\f60f"; }
.ankaa_volume-up-fill::before { content: "\f610"; }
.ankaa_volume-up::before { content: "\f611"; }
.ankaa_vr::before { content: "\f612"; }
.ankaa_wallet-fill::before { content: "\f613"; }
.ankaa_wallet::before { content: "\f614"; }
.ankaa_wallet2::before { content: "\f615"; }
.ankaa_watch::before { content: "\f616"; }
.ankaa_water::before { content: "\f617"; }
.ankaa_whatsapp::before { content: "\f618"; }
.ankaa_wifi-1::before { content: "\f619"; }
.ankaa_wifi-2::before { content: "\f61a"; }
.ankaa_wifi-off::before { content: "\f61b"; }
.ankaa_wifi::before { content: "\f61c"; }
.ankaa_wind::before { content: "\f61d"; }
.ankaa_window-dock::before { content: "\f61e"; }
.ankaa_window-sidebar::before { content: "\f61f"; }
.ankaa_window::before { content: "\f620"; }
.ankaa_wrench::before { content: "\f621"; }
.ankaa_x-circle-fill::before { content: "\f622"; }
.ankaa_x-circle::before { content: "\f623"; }
.ankaa_x-diamond-fill::before { content: "\f624"; }
.ankaa_x-diamond::before { content: "\f625"; }
.ankaa_x-octagon-fill::before { content: "\f626"; }
.ankaa_x-octagon::before { content: "\f627"; }
.ankaa_x-square-fill::before { content: "\f628"; }
.ankaa_x-square::before { content: "\f629"; }
.ankaa_x::before { content: "\f62a"; }
.ankaa_youtube::before { content: "\f62b"; }
.ankaa_zoom-in::before { content: "\f62c"; }
.ankaa_zoom-out::before { content: "\f62d"; }
.ankaa_bank::before { content: "\f62e"; }
.ankaa_bank2::before { content: "\f62f"; }
.ankaa_bell-slash-fill::before { content: "\f630"; }
.ankaa_bell-slash::before { content: "\f631"; }
.ankaa_cash-coin::before { content: "\f632"; }
.ankaa_check-lg::before { content: "\f633"; }
.ankaa_coin::before { content: "\f634"; }
.ankaa_currency-bitcoin::before { content: "\f635"; }
.ankaa_currency-dollar::before { content: "\f636"; }
.ankaa_currency-euro::before { content: "\f637"; }
.ankaa_currency-exchange::before { content: "\f638"; }
.ankaa_currency-pound::before { content: "\f639"; }
.ankaa_currency-yen::before { content: "\f63a"; }
.ankaa_dash-lg::before { content: "\f63b"; }
.ankaa_exclamation-lg::before { content: "\f63c"; }
.ankaa_file-earmark-pdf-fill::before { content: "\f63d"; }
.ankaa_file-earmark-pdf::before { content: "\f63e"; }
.ankaa_file-pdf-fill::before { content: "\f63f"; }
.ankaa_file-pdf::before { content: "\f640"; }
.ankaa_gender-ambiguous::before { content: "\f641"; }
.ankaa_gender-female::before { content: "\f642"; }
.ankaa_gender-male::before { content: "\f643"; }
.ankaa_gender-trans::before { content: "\f644"; }
.ankaa_headset-vr::before { content: "\f645"; }
.ankaa_info-lg::before { content: "\f646"; }
.ankaa_mastodon::before { content: "\f647"; }
.ankaa_messenger::before { content: "\f648"; }
.ankaa_piggy-bank-fill::before { content: "\f649"; }
.ankaa_piggy-bank::before { content: "\f64a"; }
.ankaa_pin-map-fill::before { content: "\f64b"; }
.ankaa_pin-map::before { content: "\f64c"; }
.ankaa_plus-lg::before { content: "\f64d"; }
.ankaa_question-lg::before { content: "\f64e"; }
.ankaa_recycle::before { content: "\f64f"; }
.ankaa_reddit::before { content: "\f650"; }
.ankaa_safe-fill::before { content: "\f651"; }
.ankaa_safe2-fill::before { content: "\f652"; }
.ankaa_safe2::before { content: "\f653"; }
.ankaa_sd-card-fill::before { content: "\f654"; }
.ankaa_sd-card::before { content: "\f655"; }
.ankaa_skype::before { content: "\f656"; }
.ankaa_slash-lg::before { content: "\f657"; }
.ankaa_translate::before { content: "\f658"; }
.ankaa_x-lg::before { content: "\f659"; }
.ankaa_safe::before { content: "\f65a"; }
.ankaa_apple::before { content: "\f65b"; }
.ankaa_microsoft::before { content: "\f65d"; }
.ankaa_windows::before { content: "\f65e"; }
.ankaa_behance::before { content: "\f65c"; }
.ankaa_dribbble::before { content: "\f65f"; }
.ankaa_line::before { content: "\f660"; }
.ankaa_medium::before { content: "\f661"; }
.ankaa_paypal::before { content: "\f662"; }
.ankaa_pinterest::before { content: "\f663"; }
.ankaa_signal::before { content: "\f664"; }
.ankaa_snapchat::before { content: "\f665"; }
.ankaa_spotify::before { content: "\f666"; }
.ankaa_stack-overflow::before { content: "\f667"; }
.ankaa_strava::before { content: "\f668"; }
.ankaa_wordpress::before { content: "\f669"; }
.ankaa_vimeo::before { content: "\f66a"; }
.ankaa_activity::before { content: "\f66b"; }
.ankaa_easel2-fill::before { content: "\f66c"; }
.ankaa_easel2::before { content: "\f66d"; }
.ankaa_easel3-fill::before { content: "\f66e"; }
.ankaa_easel3::before { content: "\f66f"; }
.ankaa_fan::before { content: "\f670"; }
.ankaa_fingerprint::before { content: "\f671"; }
.ankaa_graph-down-arrow::before { content: "\f672"; }
.ankaa_graph-up-arrow::before { content: "\f673"; }
.ankaa_hypnotize::before { content: "\f674"; }
.ankaa_magic::before { content: "\f675"; }
.ankaa_person-rolodex::before { content: "\f676"; }
.ankaa_person-video::before { content: "\f677"; }
.ankaa_person-video2::before { content: "\f678"; }
.ankaa_person-video3::before { content: "\f679"; }
.ankaa_person-workspace::before { content: "\f67a"; }
.ankaa_radioactive::before { content: "\f67b"; }
.ankaa_webcam-fill::before { content: "\f67c"; }
.ankaa_webcam::before { content: "\f67d"; }
.ankaa_yin-yang::before { content: "\f67e"; }
.ankaa_bandaid-fill::before { content: "\f680"; }
.ankaa_bandaid::before { content: "\f681"; }
.ankaa_bluetooth::before { content: "\f682"; }
.ankaa_body-text::before { content: "\f683"; }
.ankaa_boombox::before { content: "\f684"; }
.ankaa_boxes::before { content: "\f685"; }
.ankaa_dpad-fill::before { content: "\f686"; }
.ankaa_dpad::before { content: "\f687"; }
.ankaa_ear-fill::before { content: "\f688"; }
.ankaa_ear::before { content: "\f689"; }
.ankaa_envelope-check-1::before { content: "\f68a"; }
.ankaa_envelope-check-fill::before { content: "\f68b"; }
.ankaa_envelope-check::before { content: "\f68c"; }
.ankaa_envelope-dash-1::before { content: "\f68d"; }
.ankaa_envelope-dash-fill::before { content: "\f68e"; }
.ankaa_envelope-dash::before { content: "\f68f"; }
.ankaa_envelope-exclamation-1::before { content: "\f690"; }
.ankaa_envelope-exclamation-fill::before { content: "\f691"; }
.ankaa_envelope-exclamation::before { content: "\f692"; }
.ankaa_envelope-plus-fill::before { content: "\f693"; }
.ankaa_envelope-plus::before { content: "\f694"; }
.ankaa_envelope-slash-1::before { content: "\f695"; }
.ankaa_envelope-slash-fill::before { content: "\f696"; }
.ankaa_envelope-slash::before { content: "\f697"; }
.ankaa_envelope-x-1::before { content: "\f698"; }
.ankaa_envelope-x-fill::before { content: "\f699"; }
.ankaa_envelope-x::before { content: "\f69a"; }
.ankaa_explicit-fill::before { content: "\f69b"; }
.ankaa_explicit::before { content: "\f69c"; }
.ankaa_git::before { content: "\f69d"; }
.ankaa_infinity::before { content: "\f69e"; }
.ankaa_list-columns-reverse::before { content: "\f69f"; }
.ankaa_list-columns::before { content: "\f6a0"; }
.ankaa_meta::before { content: "\f6a1"; }
.ankaa_mortorboard-fill::before { content: "\f6a2"; }
.ankaa_mortorboard::before { content: "\f6a3"; }
.ankaa_nintendo-switch::before { content: "\f6a4"; }
.ankaa_pc-display-horizontal::before { content: "\f6a5"; }
.ankaa_pc-display::before { content: "\f6a6"; }
.ankaa_pc-horizontal::before { content: "\f6a7"; }
.ankaa_pc::before { content: "\f6a8"; }
.ankaa_playstation::before { content: "\f6a9"; }
.ankaa_plus-slash-minus::before { content: "\f6aa"; }
.ankaa_projector-fill::before { content: "\f6ab"; }
.ankaa_projector::before { content: "\f6ac"; }
.ankaa_qr-code-scan::before { content: "\f6ad"; }
.ankaa_qr-code::before { content: "\f6ae"; }
.ankaa_quora::before { content: "\f6af"; }
.ankaa_quote::before { content: "\f6b0"; }
.ankaa_robot::before { content: "\f6b1"; }
.ankaa_send-check-fill::before { content: "\f6b2"; }
.ankaa_send-check::before { content: "\f6b3"; }
.ankaa_send-dash-fill::before { content: "\f6b4"; }
.ankaa_send-dash::before { content: "\f6b5"; }
.ankaa_send-exclamation-1::before { content: "\f6b6"; }
.ankaa_send-exclamation-fill::before { content: "\f6b7"; }
.ankaa_send-exclamation::before { content: "\f6b8"; }
.ankaa_send-fill::before { content: "\f6b9"; }
.ankaa_send-plus-fill::before { content: "\f6ba"; }
.ankaa_send-plus::before { content: "\f6bb"; }
.ankaa_send-slash-fill::before { content: "\f6bc"; }
.ankaa_send-slash::before { content: "\f6bd"; }
.ankaa_send-x-fill::before { content: "\f6be"; }
.ankaa_send-x::before { content: "\f6bf"; }
.ankaa_send::before { content: "\f6c0"; }
.ankaa_steam::before { content: "\f6c1"; }
.ankaa_terminal-dash-1::before { content: "\f6c2"; }
.ankaa_terminal-dash::before { content: "\f6c3"; }
.ankaa_terminal-plus::before { content: "\f6c4"; }
.ankaa_terminal-split::before { content: "\f6c5"; }
.ankaa_ticket-detailed-fill::before { content: "\f6c6"; }
.ankaa_ticket-detailed::before { content: "\f6c7"; }
.ankaa_ticket-fill::before { content: "\f6c8"; }
.ankaa_ticket-perforated-fill::before { content: "\f6c9"; }
.ankaa_ticket-perforated::before { content: "\f6ca"; }
.ankaa_ticket::before { content: "\f6cb"; }
.ankaa_tiktok::before { content: "\f6cc"; }
.ankaa_window-dash::before { content: "\f6cd"; }
.ankaa_window-desktop::before { content: "\f6ce"; }
.ankaa_window-fullscreen::before { content: "\f6cf"; }
.ankaa_window-plus::before { content: "\f6d0"; }
.ankaa_window-split::before { content: "\f6d1"; }
.ankaa_window-stack::before { content: "\f6d2"; }
.ankaa_window-x::before { content: "\f6d3"; }
.ankaa_xbox::before { content: "\f6d4"; }
.ankaa_ethernet::before { content: "\f6d5"; }
.ankaa_hdmi-fill::before { content: "\f6d6"; }
.ankaa_hdmi::before { content: "\f6d7"; }
.ankaa_usb-c-fill::before { content: "\f6d8"; }
.ankaa_usb-c::before { content: "\f6d9"; }
.ankaa_usb-fill::before { content: "\f6da"; }
.ankaa_usb-plug-fill::before { content: "\f6db"; }
.ankaa_usb-plug::before { content: "\f6dc"; }
.ankaa_usb-symbol::before { content: "\f6dd"; }
.ankaa_usb::before { content: "\f6de"; }
.ankaa_boombox-fill::before { content: "\f6df"; }
.ankaa_displayport-1::before { content: "\f6e0"; }
.ankaa_displayport::before { content: "\f6e1"; }
.ankaa_gpu-card::before { content: "\f6e2"; }
.ankaa_memory::before { content: "\f6e3"; }
.ankaa_modem-fill::before { content: "\f6e4"; }
.ankaa_modem::before { content: "\f6e5"; }
.ankaa_motherboard-fill::before { content: "\f6e6"; }
.ankaa_motherboard::before { content: "\f6e7"; }
.ankaa_optical-audio-fill::before { content: "\f6e8"; }
.ankaa_optical-audio::before { content: "\f6e9"; }
.ankaa_pci-card::before { content: "\f6ea"; }
.ankaa_router-fill::before { content: "\f6eb"; }
.ankaa_router::before { content: "\f6ec"; }
.ankaa_ssd-fill::before { content: "\f6ed"; }
.ankaa_ssd::before { content: "\f6ee"; }
.ankaa_thunderbolt-fill::before { content: "\f6ef"; }
.ankaa_thunderbolt::before { content: "\f6f0"; }
.ankaa_usb-drive-fill::before { content: "\f6f1"; }
.ankaa_usb-drive::before { content: "\f6f2"; }
.ankaa_usb-micro-fill::before { content: "\f6f3"; }
.ankaa_usb-micro::before { content: "\f6f4"; }
.ankaa_usb-mini-fill::before { content: "\f6f5"; }
.ankaa_usb-mini::before { content: "\f6f6"; }
.ankaa_cloud-haze2::before { content: "\f6f7"; }
.ankaa_device-hdd-fill::before { content: "\f6f8"; }
.ankaa_device-hdd::before { content: "\f6f9"; }
.ankaa_device-ssd-fill::before { content: "\f6fa"; }
.ankaa_device-ssd::before { content: "\f6fb"; }
.ankaa_displayport-fill::before { content: "\f6fc"; }
.ankaa_mortarboard-fill::before { content: "\f6fd"; }
.ankaa_mortarboard::before { content: "\f6fe"; }
.ankaa_terminal-x::before { content: "\f6ff"; }
.ankaa_arrow-through-heart-fill::before { content: "\f700"; }
.ankaa_arrow-through-heart::before { content: "\f701"; }
.ankaa_badge-sd-fill::before { content: "\f702"; }
.ankaa_badge-sd::before { content: "\f703"; }
.ankaa_bag-heart-fill::before { content: "\f704"; }
.ankaa_bag-heart::before { content: "\f705"; }
.ankaa_balloon-fill::before { content: "\f706"; }
.ankaa_balloon-heart-fill::before { content: "\f707"; }
.ankaa_balloon-heart::before { content: "\f708"; }
.ankaa_balloon::before { content: "\f709"; }
.ankaa_box2-fill::before { content: "\f70a"; }
.ankaa_box2-heart-fill::before { content: "\f70b"; }
.ankaa_box2-heart::before { content: "\f70c"; }
.ankaa_box2::before { content: "\f70d"; }
.ankaa_braces-asterisk::before { content: "\f70e"; }
.ankaa_calendar-heart-fill::before { content: "\f70f"; }
.ankaa_calendar-heart::before { content: "\f710"; }
.ankaa_calendar2-heart-fill::before { content: "\f711"; }
.ankaa_calendar2-heart::before { content: "\f712"; }
.ankaa_chat-heart-fill::before { content: "\f713"; }
.ankaa_chat-heart::before { content: "\f714"; }
.ankaa_chat-left-heart-fill::before { content: "\f715"; }
.ankaa_chat-left-heart::before { content: "\f716"; }
.ankaa_chat-right-heart-fill::before { content: "\f717"; }
.ankaa_chat-right-heart::before { content: "\f718"; }
.ankaa_chat-square-heart-fill::before { content: "\f719"; }
.ankaa_chat-square-heart::before { content: "\f71a"; }
.ankaa_clipboard-check-fill::before { content: "\f71b"; }
.ankaa_clipboard-data-fill::before { content: "\f71c"; }
.ankaa_clipboard-fill::before { content: "\f71d"; }
.ankaa_clipboard-heart-fill::before { content: "\f71e"; }
.ankaa_clipboard-heart::before { content: "\f71f"; }
.ankaa_clipboard-minus-fill::before { content: "\f720"; }
.ankaa_clipboard-plus-fill::before { content: "\f721"; }
.ankaa_clipboard-pulse::before { content: "\f722"; }
.ankaa_clipboard-x-fill::before { content: "\f723"; }
.ankaa_clipboard2-check-fill::before { content: "\f724"; }
.ankaa_clipboard2-check::before { content: "\f725"; }
.ankaa_clipboard2-data-fill::before { content: "\f726"; }
.ankaa_clipboard2-data::before { content: "\f727"; }
.ankaa_clipboard2-fill::before { content: "\f728"; }
.ankaa_clipboard2-heart-fill::before { content: "\f729"; }
.ankaa_clipboard2-heart::before { content: "\f72a"; }
.ankaa_clipboard2-minus-fill::before { content: "\f72b"; }
.ankaa_clipboard2-minus::before { content: "\f72c"; }
.ankaa_clipboard2-plus-fill::before { content: "\f72d"; }
.ankaa_clipboard2-plus::before { content: "\f72e"; }
.ankaa_clipboard2-pulse-fill::before { content: "\f72f"; }
.ankaa_clipboard2-pulse::before { content: "\f730"; }
.ankaa_clipboard2-x-fill::before { content: "\f731"; }
.ankaa_clipboard2-x::before { content: "\f732"; }
.ankaa_clipboard2::before { content: "\f733"; }
.ankaa_emoji-kiss-fill::before { content: "\f734"; }
.ankaa_emoji-kiss::before { content: "\f735"; }
.ankaa_envelope-heart-fill::before { content: "\f736"; }
.ankaa_envelope-heart::before { content: "\f737"; }
.ankaa_envelope-open-heart-fill::before { content: "\f738"; }
.ankaa_envelope-open-heart::before { content: "\f739"; }
.ankaa_envelope-paper-fill::before { content: "\f73a"; }
.ankaa_envelope-paper-heart-fill::before { content: "\f73b"; }
.ankaa_envelope-paper-heart::before { content: "\f73c"; }
.ankaa_envelope-paper::before { content: "\f73d"; }
.ankaa_filetype-aac::before { content: "\f73e"; }
.ankaa_filetype-ai::before { content: "\f73f"; }
.ankaa_filetype-bmp::before { content: "\f740"; }
.ankaa_filetype-cs::before { content: "\f741"; }
.ankaa_filetype-css::before { content: "\f742"; }
.ankaa_filetype-csv::before { content: "\f743"; }
.ankaa_filetype-doc::before { content: "\f744"; }
.ankaa_filetype-docx::before { content: "\f745"; }
.ankaa_filetype-exe::before { content: "\f746"; }
.ankaa_filetype-gif::before { content: "\f747"; }
.ankaa_filetype-heic::before { content: "\f748"; }
.ankaa_filetype-html::before { content: "\f749"; }
.ankaa_filetype-java::before { content: "\f74a"; }
.ankaa_filetype-jpg::before { content: "\f74b"; }
.ankaa_filetype-js::before { content: "\f74c"; }
.ankaa_filetype-jsx::before { content: "\f74d"; }
.ankaa_filetype-key::before { content: "\f74e"; }
.ankaa_filetype-m4p::before { content: "\f74f"; }
.ankaa_filetype-md::before { content: "\f750"; }
.ankaa_filetype-mdx::before { content: "\f751"; }
.ankaa_filetype-mov::before { content: "\f752"; }
.ankaa_filetype-mp3::before { content: "\f753"; }
.ankaa_filetype-mp4::before { content: "\f754"; }
.ankaa_filetype-otf::before { content: "\f755"; }
.ankaa_filetype-pdf::before { content: "\f756"; }
.ankaa_filetype-php::before { content: "\f757"; }
.ankaa_filetype-png::before { content: "\f758"; }
.ankaa_filetype-ppt-1::before { content: "\f759"; }
.ankaa_filetype-ppt::before { content: "\f75a"; }
.ankaa_filetype-psd::before { content: "\f75b"; }
.ankaa_filetype-py::before { content: "\f75c"; }
.ankaa_filetype-raw::before { content: "\f75d"; }
.ankaa_filetype-rb::before { content: "\f75e"; }
.ankaa_filetype-sass::before { content: "\f75f"; }
.ankaa_filetype-scss::before { content: "\f760"; }
.ankaa_filetype-sh::before { content: "\f761"; }
.ankaa_filetype-svg::before { content: "\f762"; }
.ankaa_filetype-tiff::before { content: "\f763"; }
.ankaa_filetype-tsx::before { content: "\f764"; }
.ankaa_filetype-ttf::before { content: "\f765"; }
.ankaa_filetype-txt::before { content: "\f766"; }
.ankaa_filetype-wav::before { content: "\f767"; }
.ankaa_filetype-woff::before { content: "\f768"; }
.ankaa_filetype-xls-1::before { content: "\f769"; }
.ankaa_filetype-xls::before { content: "\f76a"; }
.ankaa_filetype-xml::before { content: "\f76b"; }
.ankaa_filetype-yml::before { content: "\f76c"; }
.ankaa_heart-arrow::before { content: "\f76d"; }
.ankaa_heart-pulse-fill::before { content: "\f76e"; }
.ankaa_heart-pulse::before { content: "\f76f"; }
.ankaa_heartbreak-fill::before { content: "\f770"; }
.ankaa_heartbreak::before { content: "\f771"; }
.ankaa_hearts::before { content: "\f772"; }
.ankaa_hospital-fill::before { content: "\f773"; }
.ankaa_hospital::before { content: "\f774"; }
.ankaa_house-heart-fill::before { content: "\f775"; }
.ankaa_house-heart::before { content: "\f776"; }
.ankaa_incognito::before { content: "\f777"; }
.ankaa_magnet-fill::before { content: "\f778"; }
.ankaa_magnet::before { content: "\f779"; }
.ankaa_person-heart::before { content: "\f77a"; }
.ankaa_person-hearts::before { content: "\f77b"; }
.ankaa_phone-flip::before { content: "\f77c"; }
.ankaa_plugin::before { content: "\f77d"; }
.ankaa_postage-fill::before { content: "\f77e"; }
.ankaa_postage-heart-fill::before { content: "\f77f"; }
.ankaa_postage-heart::before { content: "\f780"; }
.ankaa_postage::before { content: "\f781"; }
.ankaa_postcard-fill::before { content: "\f782"; }
.ankaa_postcard-heart-fill::before { content: "\f783"; }
.ankaa_postcard-heart::before { content: "\f784"; }
.ankaa_postcard::before { content: "\f785"; }
.ankaa_search-heart-fill::before { content: "\f786"; }
.ankaa_search-heart::before { content: "\f787"; }
.ankaa_sliders2-vertical::before { content: "\f788"; }
.ankaa_sliders2::before { content: "\f789"; }
.ankaa_trash3-fill::before { content: "\f78a"; }
.ankaa_trash3::before { content: "\f78b"; }
.ankaa_valentine::before { content: "\f78c"; }
.ankaa_valentine2::before { content: "\f78d"; }
.ankaa_wrench-adjustable-circle-fill::before { content: "\f78e"; }
.ankaa_wrench-adjustable-circle::before { content: "\f78f"; }
.ankaa_wrench-adjustable::before { content: "\f790"; }
.ankaa_filetype-json::before { content: "\f791"; }
.ankaa_filetype-pptx::before { content: "\f792"; }
.ankaa_filetype-xlsx::before { content: "\f793"; }
.ankaa_1-circle-1::before { content: "\f794"; }
.ankaa_1-circle-fill-1::before { content: "\f795"; }
.ankaa_1-circle-fill::before { content: "\f796"; }
.ankaa_1-circle::before { content: "\f797"; }
.ankaa_1-square-fill::before { content: "\f798"; }
.ankaa_1-square::before { content: "\f799"; }
.ankaa_2-circle-1::before { content: "\f79a"; }
.ankaa_2-circle-fill-1::before { content: "\f79b"; }
.ankaa_2-circle-fill::before { content: "\f79c"; }
.ankaa_2-circle::before { content: "\f79d"; }
.ankaa_2-square-fill::before { content: "\f79e"; }
.ankaa_2-square::before { content: "\f79f"; }
.ankaa_3-circle-1::before { content: "\f7a0"; }
.ankaa_3-circle-fill-1::before { content: "\f7a1"; }
.ankaa_3-circle-fill::before { content: "\f7a2"; }
.ankaa_3-circle::before { content: "\f7a3"; }
.ankaa_3-square-fill::before { content: "\f7a4"; }
.ankaa_3-square::before { content: "\f7a5"; }
.ankaa_4-circle-1::before { content: "\f7a6"; }
.ankaa_4-circle-fill-1::before { content: "\f7a7"; }
.ankaa_4-circle-fill::before { content: "\f7a8"; }
.ankaa_4-circle::before { content: "\f7a9"; }
.ankaa_4-square-fill::before { content: "\f7aa"; }
.ankaa_4-square::before { content: "\f7ab"; }
.ankaa_5-circle-1::before { content: "\f7ac"; }
.ankaa_5-circle-fill-1::before { content: "\f7ad"; }
.ankaa_5-circle-fill::before { content: "\f7ae"; }
.ankaa_5-circle::before { content: "\f7af"; }
.ankaa_5-square-fill::before { content: "\f7b0"; }
.ankaa_5-square::before { content: "\f7b1"; }
.ankaa_6-circle-1::before { content: "\f7b2"; }
.ankaa_6-circle-fill-1::before { content: "\f7b3"; }
.ankaa_6-circle-fill::before { content: "\f7b4"; }
.ankaa_6-circle::before { content: "\f7b5"; }
.ankaa_6-square-fill::before { content: "\f7b6"; }
.ankaa_6-square::before { content: "\f7b7"; }
.ankaa_7-circle-1::before { content: "\f7b8"; }
.ankaa_7-circle-fill-1::before { content: "\f7b9"; }
.ankaa_7-circle-fill::before { content: "\f7ba"; }
.ankaa_7-circle::before { content: "\f7bb"; }
.ankaa_7-square-fill::before { content: "\f7bc"; }
.ankaa_7-square::before { content: "\f7bd"; }
.ankaa_8-circle-1::before { content: "\f7be"; }
.ankaa_8-circle-fill-1::before { content: "\f7bf"; }
.ankaa_8-circle-fill::before { content: "\f7c0"; }
.ankaa_8-circle::before { content: "\f7c1"; }
.ankaa_8-square-fill::before { content: "\f7c2"; }
.ankaa_8-square::before { content: "\f7c3"; }
.ankaa_9-circle-1::before { content: "\f7c4"; }
.ankaa_9-circle-fill-1::before { content: "\f7c5"; }
.ankaa_9-circle-fill::before { content: "\f7c6"; }
.ankaa_9-circle::before { content: "\f7c7"; }
.ankaa_9-square-fill::before { content: "\f7c8"; }
.ankaa_9-square::before { content: "\f7c9"; }
.ankaa_airplane-engines-fill::before { content: "\f7ca"; }
.ankaa_airplane-engines::before { content: "\f7cb"; }
.ankaa_airplane-fill::before { content: "\f7cc"; }
.ankaa_airplane::before { content: "\f7cd"; }
.ankaa_alexa::before { content: "\f7ce"; }
.ankaa_alipay::before { content: "\f7cf"; }
.ankaa_android::before { content: "\f7d0"; }
.ankaa_android2::before { content: "\f7d1"; }
.ankaa_box-fill::before { content: "\f7d2"; }
.ankaa_box-seam-fill::before { content: "\f7d3"; }
.ankaa_browser-chrome::before { content: "\f7d4"; }
.ankaa_browser-edge::before { content: "\f7d5"; }
.ankaa_browser-firefox::before { content: "\f7d6"; }
.ankaa_browser-safari::before { content: "\f7d7"; }
.ankaa_c-circle-1::before { content: "\f7d8"; }
.ankaa_c-circle-fill-1::before { content: "\f7d9"; }
.ankaa_c-circle-fill::before { content: "\f7da"; }
.ankaa_c-circle::before { content: "\f7db"; }
.ankaa_c-square-fill::before { content: "\f7dc"; }
.ankaa_c-square::before { content: "\f7dd"; }
.ankaa_capsule-pill::before { content: "\f7de"; }
.ankaa_capsule::before { content: "\f7df"; }
.ankaa_car-front-fill::before { content: "\f7e0"; }
.ankaa_car-front::before { content: "\f7e1"; }
.ankaa_cassette-fill::before { content: "\f7e2"; }
.ankaa_cassette::before { content: "\f7e3"; }
.ankaa_cc-circle-1::before { content: "\f7e4"; }
.ankaa_cc-circle-fill-1::before { content: "\f7e5"; }
.ankaa_cc-circle-fill::before { content: "\f7e6"; }
.ankaa_cc-circle::before { content: "\f7e7"; }
.ankaa_cc-square-fill::before { content: "\f7e8"; }
.ankaa_cc-square::before { content: "\f7e9"; }
.ankaa_cup-hot-fill::before { content: "\f7ea"; }
.ankaa_cup-hot::before { content: "\f7eb"; }
.ankaa_currency-rupee::before { content: "\f7ec"; }
.ankaa_dropbox::before { content: "\f7ed"; }
.ankaa_escape::before { content: "\f7ee"; }
.ankaa_fast-forward-btn-fill::before { content: "\f7ef"; }
.ankaa_fast-forward-btn::before { content: "\f7f0"; }
.ankaa_fast-forward-circle-fill::before { content: "\f7f1"; }
.ankaa_fast-forward-circle::before { content: "\f7f2"; }
.ankaa_fast-forward-fill::before { content: "\f7f3"; }
.ankaa_fast-forward::before { content: "\f7f4"; }
.ankaa_filetype-sql::before { content: "\f7f5"; }
.ankaa_fire::before { content: "\f7f6"; }
.ankaa_google-play::before { content: "\f7f7"; }
.ankaa_h-circle-1::before { content: "\f7f8"; }
.ankaa_h-circle-fill-1::before { content: "\f7f9"; }
.ankaa_h-circle-fill::before { content: "\f7fa"; }
.ankaa_h-circle::before { content: "\f7fb"; }
.ankaa_h-square-fill::before { content: "\f7fc"; }
.ankaa_h-square::before { content: "\f7fd"; }
.ankaa_indent::before { content: "\f7fe"; }
.ankaa_lungs-fill::before { content: "\f7ff"; }
.ankaa_lungs::before { content: "\f800"; }
.ankaa_microsoft-teams::before { content: "\f801"; }
.ankaa_p-circle-1::before { content: "\f802"; }
.ankaa_p-circle-fill-1::before { content: "\f803"; }
.ankaa_p-circle-fill::before { content: "\f804"; }
.ankaa_p-circle::before { content: "\f805"; }
.ankaa_p-square-fill::before { content: "\f806"; }
.ankaa_p-square::before { content: "\f807"; }
.ankaa_pass-fill::before { content: "\f808"; }
.ankaa_pass::before { content: "\f809"; }
.ankaa_prescription::before { content: "\f80a"; }
.ankaa_prescription2::before { content: "\f80b"; }
.ankaa_r-circle-1::before { content: "\f80c"; }
.ankaa_r-circle-fill-1::before { content: "\f80d"; }
.ankaa_r-circle-fill::before { content: "\f80e"; }
.ankaa_r-circle::before { content: "\f80f"; }
.ankaa_r-square-fill::before { content: "\f810"; }
.ankaa_r-square::before { content: "\f811"; }
.ankaa_repeat-1::before { content: "\f812"; }
.ankaa_repeat::before { content: "\f813"; }
.ankaa_rewind-btn-fill::before { content: "\f814"; }
.ankaa_rewind-btn::before { content: "\f815"; }
.ankaa_rewind-circle-fill::before { content: "\f816"; }
.ankaa_rewind-circle::before { content: "\f817"; }
.ankaa_rewind-fill::before { content: "\f818"; }
.ankaa_rewind::before { content: "\f819"; }
.ankaa_train-freight-front-fill::before { content: "\f81a"; }
.ankaa_train-freight-front::before { content: "\f81b"; }
.ankaa_train-front-fill::before { content: "\f81c"; }
.ankaa_train-front::before { content: "\f81d"; }
.ankaa_train-lightrail-front-fill::before { content: "\f81e"; }
.ankaa_train-lightrail-front::before { content: "\f81f"; }
.ankaa_truck-front-fill::before { content: "\f820"; }
.ankaa_truck-front::before { content: "\f821"; }
.ankaa_ubuntu::before { content: "\f822"; }
.ankaa_unindent::before { content: "\f823"; }
.ankaa_unity::before { content: "\f824"; }
.ankaa_universal-access-circle::before { content: "\f825"; }
.ankaa_universal-access::before { content: "\f826"; }
.ankaa_virus::before { content: "\f827"; }
.ankaa_virus2::before { content: "\f828"; }
.ankaa_wechat::before { content: "\f829"; }
.ankaa_yelp::before { content: "\f82a"; }
.ankaa_sign-stop-fill::before { content: "\f82b"; }
.ankaa_sign-stop-lights-fill::before { content: "\f82c"; }
.ankaa_sign-stop-lights::before { content: "\f82d"; }
.ankaa_sign-stop::before { content: "\f82e"; }
.ankaa_sign-turn-left-fill::before { content: "\f82f"; }
.ankaa_sign-turn-left::before { content: "\f830"; }
.ankaa_sign-turn-right-fill::before { content: "\f831"; }
.ankaa_sign-turn-right::before { content: "\f832"; }
.ankaa_sign-turn-slight-left-fill::before { content: "\f833"; }
.ankaa_sign-turn-slight-left::before { content: "\f834"; }
.ankaa_sign-turn-slight-right-fill::before { content: "\f835"; }
.ankaa_sign-turn-slight-right::before { content: "\f836"; }
.ankaa_sign-yield-fill::before { content: "\f837"; }
.ankaa_sign-yield::before { content: "\f838"; }
.ankaa_ev-station-fill::before { content: "\f839"; }
.ankaa_ev-station::before { content: "\f83a"; }
.ankaa_fuel-pump-diesel-fill::before { content: "\f83b"; }
.ankaa_fuel-pump-diesel::before { content: "\f83c"; }
.ankaa_fuel-pump-fill::before { content: "\f83d"; }
.ankaa_fuel-pump::before { content: "\f83e"; }
.ankaa_0-circle-fill::before { content: "\f83f"; }
.ankaa_0-circle::before { content: "\f840"; }
.ankaa_0-square-fill::before { content: "\f841"; }
.ankaa_0-square::before { content: "\f842"; }
.ankaa_rocket-fill::before { content: "\f843"; }
.ankaa_rocket-takeoff-fill::before { content: "\f844"; }
.ankaa_rocket-takeoff::before { content: "\f845"; }
.ankaa_rocket::before { content: "\f846"; }
.ankaa_stripe::before { content: "\f847"; }
.ankaa_subscript::before { content: "\f848"; }
.ankaa_superscript::before { content: "\f849"; }
.ankaa_trello::before { content: "\f84a"; }
.ankaa_envelope-at-fill::before { content: "\f84b"; }
.ankaa_envelope-at::before { content: "\f84c"; }
.ankaa_regex::before { content: "\f84d"; }
.ankaa_text-wrap::before { content: "\f84e"; }
.ankaa_sign-dead-end-fill::before { content: "\f84f"; }
.ankaa_sign-dead-end::before { content: "\f850"; }
.ankaa_sign-do-not-enter-fill::before { content: "\f851"; }
.ankaa_sign-do-not-enter::before { content: "\f852"; }
.ankaa_sign-intersection-fill::before { content: "\f853"; }
.ankaa_sign-intersection-side-fill::before { content: "\f854"; }
.ankaa_sign-intersection-side::before { content: "\f855"; }
.ankaa_sign-intersection-t-fill::before { content: "\f856"; }
.ankaa_sign-intersection-t::before { content: "\f857"; }
.ankaa_sign-intersection-y-fill::before { content: "\f858"; }
.ankaa_sign-intersection-y::before { content: "\f859"; }
.ankaa_sign-intersection::before { content: "\f85a"; }
.ankaa_sign-merge-left-fill::before { content: "\f85b"; }
.ankaa_sign-merge-left::before { content: "\f85c"; }
.ankaa_sign-merge-right-fill::before { content: "\f85d"; }
.ankaa_sign-merge-right::before { content: "\f85e"; }
.ankaa_sign-no-left-turn-fill::before { content: "\f85f"; }
.ankaa_sign-no-left-turn::before { content: "\f860"; }
.ankaa_sign-no-parking-fill::before { content: "\f861"; }
.ankaa_sign-no-parking::before { content: "\f862"; }
.ankaa_sign-no-right-turn-fill::before { content: "\f863"; }
.ankaa_sign-no-right-turn::before { content: "\f864"; }
.ankaa_sign-railroad-fill::before { content: "\f865"; }
.ankaa_sign-railroad::before { content: "\f866"; }
.ankaa_building-add::before { content: "\f867"; }
.ankaa_building-check::before { content: "\f868"; }
.ankaa_building-dash::before { content: "\f869"; }
.ankaa_building-down::before { content: "\f86a"; }
.ankaa_building-exclamation::before { content: "\f86b"; }
.ankaa_building-fill-add::before { content: "\f86c"; }
.ankaa_building-fill-check::before { content: "\f86d"; }
.ankaa_building-fill-dash::before { content: "\f86e"; }
.ankaa_building-fill-down::before { content: "\f86f"; }
.ankaa_building-fill-exclamation::before { content: "\f870"; }
.ankaa_building-fill-gear::before { content: "\f871"; }
.ankaa_building-fill-lock::before { content: "\f872"; }
.ankaa_building-fill-slash::before { content: "\f873"; }
.ankaa_building-fill-up::before { content: "\f874"; }
.ankaa_building-fill-x::before { content: "\f875"; }
.ankaa_building-fill::before { content: "\f876"; }
.ankaa_building-gear::before { content: "\f877"; }
.ankaa_building-lock::before { content: "\f878"; }
.ankaa_building-slash::before { content: "\f879"; }
.ankaa_building-up::before { content: "\f87a"; }
.ankaa_building-x::before { content: "\f87b"; }
.ankaa_buildings-fill::before { content: "\f87c"; }
.ankaa_buildings::before { content: "\f87d"; }
.ankaa_bus-front-fill::before { content: "\f87e"; }
.ankaa_bus-front::before { content: "\f87f"; }
.ankaa_ev-front-fill::before { content: "\f880"; }
.ankaa_ev-front::before { content: "\f881"; }
.ankaa_globe-americas::before { content: "\f882"; }
.ankaa_globe-asia-australia::before { content: "\f883"; }
.ankaa_globe-central-south-asia::before { content: "\f884"; }
.ankaa_globe-europe-africa::before { content: "\f885"; }
.ankaa_house-add-fill::before { content: "\f886"; }
.ankaa_house-add::before { content: "\f887"; }
.ankaa_house-check-fill::before { content: "\f888"; }
.ankaa_house-check::before { content: "\f889"; }
.ankaa_house-dash-fill::before { content: "\f88a"; }
.ankaa_house-dash::before { content: "\f88b"; }
.ankaa_house-down-fill::before { content: "\f88c"; }
.ankaa_house-down::before { content: "\f88d"; }
.ankaa_house-exclamation-fill::before { content: "\f88e"; }
.ankaa_house-exclamation::before { content: "\f88f"; }
.ankaa_house-gear-fill::before { content: "\f890"; }
.ankaa_house-gear::before { content: "\f891"; }
.ankaa_house-lock-fill::before { content: "\f892"; }
.ankaa_house-lock::before { content: "\f893"; }
.ankaa_house-slash-fill::before { content: "\f894"; }
.ankaa_house-slash::before { content: "\f895"; }
.ankaa_house-up-fill::before { content: "\f896"; }
.ankaa_house-up::before { content: "\f897"; }
.ankaa_house-x-fill::before { content: "\f898"; }
.ankaa_house-x::before { content: "\f899"; }
.ankaa_person-add::before { content: "\f89a"; }
.ankaa_person-down::before { content: "\f89b"; }
.ankaa_person-exclamation::before { content: "\f89c"; }
.ankaa_person-fill-add::before { content: "\f89d"; }
.ankaa_person-fill-check::before { content: "\f89e"; }
.ankaa_person-fill-dash::before { content: "\f89f"; }
.ankaa_person-fill-down::before { content: "\f8a0"; }
.ankaa_person-fill-exclamation::before { content: "\f8a1"; }
.ankaa_person-fill-gear::before { content: "\f8a2"; }
.ankaa_person-fill-lock::before { content: "\f8a3"; }
.ankaa_person-fill-slash::before { content: "\f8a4"; }
.ankaa_person-fill-up::before { content: "\f8a5"; }
.ankaa_person-fill-x::before { content: "\f8a6"; }
.ankaa_person-gear::before { content: "\f8a7"; }
.ankaa_person-lock::before { content: "\f8a8"; }
.ankaa_person-slash::before { content: "\f8a9"; }
.ankaa_person-up::before { content: "\f8aa"; }
.ankaa_scooter::before { content: "\f8ab"; }
.ankaa_taxi-front-fill::before { content: "\f8ac"; }
.ankaa_taxi-front::before { content: "\f8ad"; }
.ankaa_amd::before { content: "\f8ae"; }
.ankaa_database-add::before { content: "\f8af"; }
.ankaa_database-check::before { content: "\f8b0"; }
.ankaa_database-dash::before { content: "\f8b1"; }
.ankaa_database-down::before { content: "\f8b2"; }
.ankaa_database-exclamation::before { content: "\f8b3"; }
.ankaa_database-fill-add::before { content: "\f8b4"; }
.ankaa_database-fill-check::before { content: "\f8b5"; }
.ankaa_database-fill-dash::before { content: "\f8b6"; }
.ankaa_database-fill-down::before { content: "\f8b7"; }
.ankaa_database-fill-exclamation::before { content: "\f8b8"; }
.ankaa_database-fill-gear::before { content: "\f8b9"; }
.ankaa_database-fill-lock::before { content: "\f8ba"; }
.ankaa_database-fill-slash::before { content: "\f8bb"; }
.ankaa_database-fill-up::before { content: "\f8bc"; }
.ankaa_database-fill-x::before { content: "\f8bd"; }
.ankaa_database-fill::before { content: "\f8be"; }
.ankaa_database-gear::before { content: "\f8bf"; }
.ankaa_database-lock::before { content: "\f8c0"; }
.ankaa_database-slash::before { content: "\f8c1"; }
.ankaa_database-up::before { content: "\f8c2"; }
.ankaa_database-x::before { content: "\f8c3"; }
.ankaa_database::before { content: "\f8c4"; }
.ankaa_houses-fill::before { content: "\f8c5"; }
.ankaa_houses::before { content: "\f8c6"; }
.ankaa_nvidia::before { content: "\f8c7"; }
.ankaa_person-vcard-fill::before { content: "\f8c8"; }
.ankaa_person-vcard::before { content: "\f8c9"; }
.ankaa_sina-weibo::before { content: "\f8ca"; }
.ankaa_tencent-qq::before { content: "\f8cb"; }
.ankaa_wikipedia::before { content: "\f8cc"; }
