@font-face {
    font-family: "boxicons";
    font-weight: normal;
    font-style: normal;
}

.bx {
    font-family: "boxicons" !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.bx-ul {
    margin-left: 2em;
    padding-left: 0;
    list-style: none
}

.bx-ul>li {
    position: relative
}

.bx-ul .bx {
    font-size: inherit;
    line-height: inherit;
    position: absolute;
    left: -2em;
    width: 2em;
    text-align: center
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

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

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

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

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

@-webkit-keyframes flashing {
    0% {
        opacity: 1
    }

    45% {
        opacity: 0
    }

    90% {
        opacity: 1
    }
}

@keyframes flashing {
    0% {
        opacity: 1
    }

    45% {
        opacity: 0
    }

    90% {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    10%,20% {
        -webkit-transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -10deg);
        transform: scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -10deg);
        transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -10deg)
    }

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

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

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

.bx-spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.bx-spin-hover:hover {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

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

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

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

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

.bx-burst {
    -webkit-animation: burst 1.5s infinite linear;
    animation: burst 1.5s infinite linear
}

.bx-burst-hover:hover {
    -webkit-animation: burst 1.5s infinite linear;
    animation: burst 1.5s infinite linear
}

.bx-fade-up {
    -webkit-animation: fade-up 1.5s infinite linear;
    animation: fade-up 1.5s infinite linear
}

.bx-fade-up-hover:hover {
    -webkit-animation: fade-up 1.5s infinite linear;
    animation: fade-up 1.5s infinite linear
}

.bx-fade-down {
    -webkit-animation: fade-down 1.5s infinite linear;
    animation: fade-down 1.5s infinite linear
}

.bx-fade-down-hover:hover {
    -webkit-animation: fade-down 1.5s infinite linear;
    animation: fade-down 1.5s infinite linear
}

.bx-fade-left {
    -webkit-animation: fade-left 1.5s infinite linear;
    animation: fade-left 1.5s infinite linear
}

.bx-fade-left-hover:hover {
    -webkit-animation: fade-left 1.5s infinite linear;
    animation: fade-left 1.5s infinite linear
}

.bx-fade-right {
    -webkit-animation: fade-right 1.5s infinite linear;
    animation: fade-right 1.5s infinite linear
}

.bx-fade-right-hover:hover {
    -webkit-animation: fade-right 1.5s infinite linear;
    animation: fade-right 1.5s infinite linear
}

.bx-xs {
    font-size: 1rem !important
}

.bx-sm {
    font-size: 1.55rem !important
}

.bx-md {
    font-size: 2.25rem !important
}

.bx-lg {
    font-size: 3rem !important
}

.bx-fw {
    font-size: 1.2857142857em;
    line-height: .8em;
    width: 1.2857142857em;
    height: .8em;
    margin-top: -0.2em !important;
    vertical-align: middle
}

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

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

.bx-rotate-90 {
    transform: rotate(90deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"
}

.bx-rotate-180 {
    transform: rotate(180deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"
}

.bx-rotate-270 {
    transform: rotate(270deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"
}

.bx-flip-horizontal {
    transform: scaleX(-1);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"
}

.bx-flip-vertical {
    transform: scaleY(-1);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.bx-border {
    padding: .25em;
    border: .07em solid rgba(0, 0, 0, 0.1);
    border-radius: .25em
}

.bx-border-circle {
    padding: .25em;
    border: .07em solid rgba(0, 0, 0, 0.1);
    border-radius: 50%
}

.bxs-balloon:before {
    content: "î­ "
}

.bxs-castle:before {
    content: "î­¹"
}

.bxs-coffee-bean:before {
    content: "î®’"
}

.bxs-objects-horizontal-center:before {
    content: "î®«"
}

.bxs-objects-horizontal-left:before {
    content: "î¯„"
}

.bxs-objects-horizontal-right:before {
    content: "î¯"
}

.bxs-objects-vertical-bottom:before {
    content: "î¯¶"
}

.bxs-objects-vertical-center:before {
    content: "î½€"
}

.bxs-objects-vertical-top:before {
    content: "î½"
}

.bxs-pear:before {
    content: "î½‚"
}

.bxs-shield-minus:before {
    content: "î½ƒ"
}

.bxs-shield-plus:before {
    content: "î½„"
}

.bxs-shower:before {
    content: "î½…"
}

.bxs-sushi:before {
    content: "î½†"
}

.bxs-universal-access:before {
    content: "î½‡"
}

.bx-child:before {
    content: "î½ˆ"
}

.bx-horizontal-left:before {
    content: "î½‰"
}

.bx-horizontal-right:before {
    content: "î½Š"
}

.bx-objects-horizontal-center:before {
    content: "î½‹"
}

.bx-objects-horizontal-left:before {
    content: "î½Œ"
}

.bx-objects-horizontal-right:before {
    content: "î½"
}

.bx-objects-vertical-bottom:before {
    content: "î½Ž"
}

.bx-objects-vertical-center:before {
    content: "î½"
}

.bx-objects-vertical-top:before {
    content: "î½"
}

.bx-rfid:before {
    content: "î½‘"
}

.bx-shield-minus:before {
    content: "î½’"
}

.bx-shield-plus:before {
    content: "î½“"
}

.bx-shower:before {
    content: "î½”"
}

.bx-sushi:before {
    content: "î½•"
}

.bx-universal-access:before {
    content: "î½–"
}

.bx-vertical-bottom:before {
    content: "î½—"
}

.bx-vertical-top:before {
    content: "î½˜"
}

.bxl-graphql:before {
    content: "î½™"
}

.bxl-typescript:before {
    content: "î½š"
}

.bxs-color:before {
    content: "î¼¹"
}

.bx-reflect-horizontal:before {
    content: "î¼º"
}

.bx-reflect-vertical:before {
    content: "î¼»"
}

.bx-color:before {
    content: "î¼¼"
}

.bxl-mongodb:before {
    content: "î¼½"
}

.bxl-postgresql:before {
    content: "î¼¾"
}

.bxl-deezer:before {
    content: "î¼¿"
}

.bxs-hard-hat:before {
    content: "î¼ª"
}

.bxs-home-alt-2:before {
    content: "î¼«"
}

.bxs-cheese:before {
    content: "î¼¬"
}

.bx-home-alt-2:before {
    content: "î¼­"
}

.bx-hard-hat:before {
    content: "î¼®"
}

.bx-cheese:before {
    content: "î¼¯"
}

.bx-cart-add:before {
    content: "î¼°"
}

.bx-cart-download:before {
    content: "î¼±"
}

.bx-no-signal:before {
    content: "î¼²"
}

.bx-signal-1:before {
    content: "î¼³"
}

.bx-signal-2:before {
    content: "î¼´"
}

.bx-signal-3:before {
    content: "î¼µ"
}

.bx-signal-4:before {
    content: "î¼¶"
}

.bx-signal-5:before {
    content: "î¼·"
}

.bxl-xing:before {
    content: "î¼¸"
}

.bxl-meta:before {
    content: "î¼§"
}

.bx-lemon:before {
    content: "î¼¨"
}

.bxs-lemon:before {
    content: "î¼©"
}

.bx-cricket-ball:before {
    content: "î¼Œ"
}

.bx-baguette:before {
    content: "î¼"
}

.bx-bowl-hot:before {
    content: "î¼Ž"
}

.bx-bowl-rice:before {
    content: "î¼"
}

.bx-cable-car:before {
    content: "î¼"
}

.bx-candles:before {
    content: "î¼‘"
}

.bx-circle-half:before {
    content: "î¼’"
}

.bx-circle-quarter:before {
    content: "î¼“"
}

.bx-circle-three-quarter:before {
    content: "î¼”"
}

.bx-cross:before {
    content: "î¼•"
}

.bx-fork:before {
    content: "î¼–"
}

.bx-knife:before {
    content: "î¼—"
}

.bx-money-withdraw:before {
    content: "î¼˜"
}

.bx-popsicle:before {
    content: "î¼™"
}

.bx-scatter-chart:before {
    content: "î¼š"
}

.bxs-baguette:before {
    content: "î¼›"
}

.bxs-bowl-hot:before {
    content: "î¼œ"
}

.bxs-bowl-rice:before {
    content: "î¼"
}

.bxs-cable-car:before {
    content: "î¼ž"
}

.bxs-circle-half:before {
    content: "î¼Ÿ"
}

.bxs-circle-quarter:before {
    content: "î¼ "
}

.bxs-circle-three-quarter:before {
    content: "î¼¡"
}

.bxs-cricket-ball:before {
    content: "î¼¢"
}

.bxs-invader:before {
    content: "î¼£"
}

.bx-male-female:before {
    content: "î¼¤"
}

.bxs-popsicle:before {
    content: "î¼¥"
}

.bxs-tree-alt:before {
    content: "î¼¦"
}

.bxl-venmo:before {
    content: "î¤€"
}

.bxl-upwork:before {
    content: "î¤"
}

.bxl-netlify:before {
    content: "î¤‚"
}

.bxl-java:before {
    content: "î¤ƒ"
}

.bxl-heroku:before {
    content: "î¤„"
}

.bxl-go-lang:before {
    content: "î¤…"
}

.bxl-gmail:before {
    content: "î¤†"
}

.bxl-flask:before {
    content: "î¤‡"
}

.bxl-99designs:before {
    content: "î¤ˆ"
}

.bxl-500px:before {
    content: "î¤‰"
}

.bxl-adobe:before {
    content: "î¤Š"
}

.bxl-airbnb:before {
    content: "î¤‹"
}

.bxl-algolia:before {
    content: "î¤Œ"
}

.bxl-amazon:before {
    content: "î¤"
}

.bxl-android:before {
    content: "î¤Ž"
}

.bxl-angular:before {
    content: "î¤"
}

.bxl-apple:before {
    content: "î¤"
}

.bxl-audible:before {
    content: "î¤‘"
}

.bxl-aws:before {
    content: "î¤’"
}

.bxl-baidu:before {
    content: "î¤“"
}

.bxl-behance:before {
    content: "î¤”"
}

.bxl-bing:before {
    content: "î¤•"
}

.bxl-bitcoin:before {
    content: "î¤–"
}

.bxl-blender:before {
    content: "î¤—"
}

.bxl-blogger:before {
    content: "î¤˜"
}

.bxl-bootstrap:before {
    content: "î¤™"
}

.bxl-chrome:before {
    content: "î¤š"
}

.bxl-codepen:before {
    content: "î¤›"
}

.bxl-c-plus-plus:before {
    content: "î¤œ"
}

.bxl-creative-commons:before {
    content: "î¤"
}

.bxl-css3:before {
    content: "î¤ž"
}

.bxl-dailymotion:before {
    content: "î¤Ÿ"
}

.bxl-deviantart:before {
    content: "î¤ "
}

.bxl-dev-to:before {
    content: "î¤¡"
}

.bxl-digg:before {
    content: "î¤¢"
}

.bxl-digitalocean:before {
    content: "î¤£"
}

.bxl-discord:before {
    content: "î¤¤"
}

.bxl-discord-alt:before {
    content: "î¤¥"
}

.bxl-discourse:before {
    content: "î¤¦"
}

.bxl-django:before {
    content: "î¤§"
}

.bxl-docker:before {
    content: "î¤¨"
}

.bxl-dribbble:before {
    content: "î¤©"
}

.bxl-dropbox:before {
    content: "î¤ª"
}

.bxl-drupal:before {
    content: "î¤«"
}

.bxl-ebay:before {
    content: "î¤¬"
}

.bxl-edge:before {
    content: "î¤­"
}

.bxl-etsy:before {
    content: "î¤®"
}

.bxl-facebook:before {
    content: "î¤¯"
}

.bxl-facebook-circle:before {
    content: "î¤°"
}

.bxl-facebook-square:before {
    content: "î¤±"
}

.bxl-figma:before {
    content: "î¤²"
}

.bxl-firebase:before {
    content: "î¤³"
}

.bxl-firefox:before {
    content: "î¤´"
}

.bxl-flickr:before {
    content: "î¤µ"
}

.bxl-flickr-square:before {
    content: "î¤¶"
}

.bxl-flutter:before {
    content: "î¤·"
}

.bxl-foursquare:before {
    content: "î¤¸"
}

.bxl-git:before {
    content: "î¤¹"
}

.bxl-github:before {
    content: "î¤º"
}

.bxl-gitlab:before {
    content: "î¤»"
}

.bxl-google:before {
    content: "î¤¼"
}

.bxl-google-cloud:before {
    content: "î¤½"
}

.bxl-google-plus:before {
    content: "î¤¾"
}

.bxl-google-plus-circle:before {
    content: "î¤¿"
}

.bxl-html5:before {
    content: "î¥€"
}

.bxl-imdb:before {
    content: "î¥"
}

.bxl-instagram:before {
    content: "î¥‚"
}

.bxl-instagram-alt:before {
    content: "î¥ƒ"
}

.bxl-internet-explorer:before {
    content: "î¥„"
}

.bxl-invision:before {
    content: "î¥…"
}

.bxl-javascript:before {
    content: "î¥†"
}

.bxl-joomla:before {
    content: "î¥‡"
}

.bxl-jquery:before {
    content: "î¥ˆ"
}

.bxl-jsfiddle:before {
    content: "î¥‰"
}

.bxl-kickstarter:before {
    content: "î¥Š"
}

.bxl-kubernetes:before {
    content: "î¥‹"
}

.bxl-less:before {
    content: "î¥Œ"
}

.bxl-linkedin:before {
    content: "î¥"
}

.bxl-linkedin-square:before {
    content: "î¥Ž"
}

.bxl-magento:before {
    content: "î¥"
}

.bxl-mailchimp:before {
    content: "î¥"
}

.bxl-markdown:before {
    content: "î¥‘"
}

.bxl-mastercard:before {
    content: "î¥’"
}

.bxl-mastodon:before {
    content: "î¥“"
}

.bxl-medium:before {
    content: "î¥”"
}

.bxl-medium-old:before {
    content: "î¥•"
}

.bxl-medium-square:before {
    content: "î¥–"
}

.bxl-messenger:before {
    content: "î¥—"
}

.bxl-microsoft:before {
    content: "î¥˜"
}

.bxl-microsoft-teams:before {
    content: "î¥™"
}

.bxl-nodejs:before {
    content: "î¥š"
}

.bxl-ok-ru:before {
    content: "î¥›"
}

.bxl-opera:before {
    content: "î¥œ"
}

.bxl-patreon:before {
    content: "î¥"
}

.bxl-paypal:before {
    content: "î¥ž"
}

.bxl-periscope:before {
    content: "î¥Ÿ"
}

.bxl-php:before {
    content: "î¥ "
}

.bxl-pinterest:before {
    content: "î¥¡"
}

.bxl-pinterest-alt:before {
    content: "î¥¢"
}

.bxl-play-store:before {
    content: "î¥£"
}

.bxl-pocket:before {
    content: "î¥¤"
}

.bxl-product-hunt:before {
    content: "î¥¥"
}

.bxl-python:before {
    content: "î¥¦"
}

.bxl-quora:before {
    content: "î¥§"
}

.bxl-react:before {
    content: "î¥¨"
}

.bxl-redbubble:before {
    content: "î¥©"
}

.bxl-reddit:before {
    content: "î¥ª"
}

.bxl-redux:before {
    content: "î¥«"
}

.bxl-sass:before {
    content: "î¥¬"
}

.bxl-shopify:before {
    content: "î¥­"
}

.bxl-sketch:before {
    content: "î¥®"
}

.bxl-skype:before {
    content: "î¥¯"
}

.bxl-slack:before {
    content: "î¥°"
}

.bxl-slack-old:before {
    content: "î¥±"
}

.bxl-snapchat:before {
    content: "î¥²"
}

.bxl-soundcloud:before {
    content: "î¥³"
}

.bxl-spotify:before {
    content: "î¥´"
}

.bxl-spring-boot:before {
    content: "î¥µ"
}

.bxl-squarespace:before {
    content: "î¥¶"
}

.bxl-stack-overflow:before {
    content: "î¥·"
}

.bxl-steam:before {
    content: "î¥¸"
}

.bxl-stripe:before {
    content: "î¥¹"
}

.bxl-tailwind-css:before {
    content: "î¥º"
}

.bxl-telegram:before {
    content: "î¥»"
}

.bxl-tiktok:before {
    content: "î¥¼"
}

.bxl-trello:before {
    content: "î¥½"
}

.bxl-trip-advisor:before {
    content: "î¥¾"
}

.bxl-tumblr:before {
    content: "î¥¿"
}

.bxl-tux:before {
    content: "î¦€"
}

.bxl-twitch:before {
    content: "î¦"
}

.bxl-twitter:before {
    content: "î¦‚"
}

.bxl-unity:before {
    content: "î¦ƒ"
}

.bxl-unsplash:before {
    content: "î¦„"
}

.bxl-vimeo:before {
    content: "î¦…"
}

.bxl-visa:before {
    content: "î¦†"
}

.bxl-visual-studio:before {
    content: "î¦‡"
}

.bxl-vk:before {
    content: "î¦ˆ"
}

.bxl-vuejs:before {
    content: "î¦‰"
}

.bxl-whatsapp:before {
    content: "î¦Š"
}

.bxl-whatsapp-square:before {
    content: "î¦‹"
}

.bxl-wikipedia:before {
    content: "î¦Œ"
}

.bxl-windows:before {
    content: "î¦"
}

.bxl-wix:before {
    content: "î¦Ž"
}

.bxl-wordpress:before {
    content: "î¦"
}

.bxl-yahoo:before {
    content: "î¦"
}

.bxl-yelp:before {
    content: "î¦‘"
}

.bxl-youtube:before {
    content: "î¦’"
}

.bxl-zoom:before {
    content: "î¦“"
}

.bx-collapse-alt:before {
    content: "î¦”"
}

.bx-collapse-horizontal:before {
    content: "î¦•"
}

.bx-collapse-vertical:before {
    content: "î¦–"
}

.bx-expand-horizontal:before {
    content: "î¦—"
}

.bx-expand-vertical:before {
    content: "î¦˜"
}

.bx-injection:before {
    content: "î¦™"
}

.bx-leaf:before {
    content: "î¦š"
}

.bx-math:before {
    content: "î¦›"
}

.bx-party:before {
    content: "î¦œ"
}

.bx-abacus:before {
    content: "î¦"
}

.bx-accessibility:before {
    content: "î¦ž"
}

.bx-add-to-queue:before {
    content: "î¦Ÿ"
}

.bx-adjust:before {
    content: "î¦ "
}

.bx-alarm:before {
    content: "î¦¡"
}

.bx-alarm-add:before {
    content: "î¦¢"
}

.bx-alarm-exclamation:before {
    content: "î¦£"
}

.bx-alarm-off:before {
    content: "î¦¤"
}

.bx-alarm-snooze:before {
    content: "î¦¥"
}

.bx-album:before {
    content: "î¦¦"
}

.bx-align-justify:before {
    content: "î¦§"
}

.bx-align-left:before {
    content: "î¦¨"
}

.bx-align-middle:before {
    content: "î¦©"
}

.bx-align-right:before {
    content: "î¦ª"
}

.bx-analyse:before {
    content: "î¦«"
}

.bx-anchor:before {
    content: "î¦¬"
}

.bx-angry:before {
    content: "î¦­"
}

.bx-aperture:before {
    content: "î¦®"
}

.bx-arch:before {
    content: "î¦¯"
}

.bx-archive:before {
    content: "î¦°"
}

.bx-archive-in:before {
    content: "î¦±"
}

.bx-archive-out:before {
    content: "î¦²"
}

.bx-area:before {
    content: "î¦³"
}

.bx-arrow-back:before {
    content: "î¦´"
}

.bx-arrow-from-bottom:before {
    content: "î¦µ"
}

.bx-arrow-from-left:before {
    content: "î¦¶"
}

.bx-arrow-from-right:before {
    content: "î¦·"
}

.bx-arrow-from-top:before {
    content: "î¦¸"
}

.bx-arrow-to-bottom:before {
    content: "î¦¹"
}

.bx-arrow-to-left:before {
    content: "î¦º"
}

.bx-arrow-to-right:before {
    content: "î¦»"
}

.bx-arrow-to-top:before {
    content: "î¦¼"
}

.bx-at:before {
    content: "î¦½"
}

.bx-atom:before {
    content: "î¦¾"
}

.bx-award:before {
    content: "î¦¿"
}

.bx-badge:before {
    content: "î§€"
}

.bx-badge-check:before {
    content: "î§"
}

.bx-ball:before {
    content: "î§‚"
}

.bx-band-aid:before {
    content: "î§ƒ"
}

.bx-bar-chart:before {
    content: "î§„"
}

.bx-bar-chart-alt:before {
    content: "î§…"
}

.bx-bar-chart-alt-2:before {
    content: "î§†"
}

.bx-bar-chart-square:before {
    content: "î§‡"
}

.bx-barcode:before {
    content: "î§ˆ"
}

.bx-barcode-reader:before {
    content: "î§‰"
}

.bx-baseball:before {
    content: "î§Š"
}

.bx-basket:before {
    content: "î§‹"
}

.bx-basketball:before {
    content: "î§Œ"
}

.bx-bath:before {
    content: "î§"
}

.bx-battery:before {
    content: "î§Ž"
}

.bx-bed:before {
    content: "î§"
}

.bx-been-here:before {
    content: "î§"
}

.bx-beer:before {
    content: "î§‘"
}

.bx-bell:before {
    content: "î§’"
}

.bx-bell-minus:before {
    content: "î§“"
}

.bx-bell-off:before {
    content: "î§”"
}

.bx-bell-plus:before {
    content: "î§•"
}

.bx-bible:before {
    content: "î§–"
}

.bx-bitcoin:before {
    content: "î§—"
}

.bx-blanket:before {
    content: "î§˜"
}

.bx-block:before {
    content: "î§™"
}

.bx-bluetooth:before {
    content: "î§š"
}

.bx-body:before {
    content: "î§›"
}

.bx-bold:before {
    content: "î§œ"
}

.bx-bolt-circle:before {
    content: "î§"
}

.bx-bomb:before {
    content: "î§ž"
}

.bx-bone:before {
    content: "î§Ÿ"
}

.bx-bong:before {
    content: "î§ "
}

.bx-book:before {
    content: "î§¡"
}

.bx-book-add:before {
    content: "î§¢"
}

.bx-book-alt:before {
    content: "î§£"
}

.bx-book-bookmark:before {
    content: "î§¤"
}

.bx-book-content:before {
    content: "î§¥"
}

.bx-book-heart:before {
    content: "î§¦"
}

.bx-bookmark:before {
    content: "î§§"
}

.bx-bookmark-alt:before {
    content: "î§¨"
}

.bx-bookmark-alt-minus:before {
    content: "î§©"
}

.bx-bookmark-alt-plus:before {
    content: "î§ª"
}

.bx-bookmark-heart:before {
    content: "î§«"
}

.bx-bookmark-minus:before {
    content: "î§¬"
}

.bx-bookmark-plus:before {
    content: "î§­"
}

.bx-bookmarks:before {
    content: "î§®"
}

.bx-book-open:before {
    content: "î§¯"
}

.bx-book-reader:before {
    content: "î§°"
}

.bx-border-all:before {
    content: "î§±"
}

.bx-border-bottom:before {
    content: "î§²"
}

.bx-border-inner:before {
    content: "î§³"
}

.bx-border-left:before {
    content: "î§´"
}

.bx-border-none:before {
    content: "î§µ"
}

.bx-border-outer:before {
    content: "î§¶"
}

.bx-border-radius:before {
    content: "î§·"
}

.bx-border-right:before {
    content: "î§¸"
}

.bx-border-top:before {
    content: "î§¹"
}

.bx-bot:before {
    content: "î§º"
}

.bx-bowling-ball:before {
    content: "î§»"
}

.bx-box:before {
    content: "î§¼"
}

.bx-bracket:before {
    content: "î§½"
}

.bx-braille:before {
    content: "î§¾"
}

.bx-brain:before {
    content: "î§¿"
}

.bx-briefcase:before {
    content: "î¨€"
}

.bx-briefcase-alt:before {
    content: "î¨"
}

.bx-briefcase-alt-2:before {
    content: "î¨‚"
}

.bx-brightness:before {
    content: "î¨ƒ"
}

.bx-brightness-half:before {
    content: "î¨„"
}

.bx-broadcast:before {
    content: "î¨…"
}

.bx-brush:before {
    content: "î¨†"
}

.bx-brush-alt:before {
    content: "î¨‡"
}

.bx-bug:before {
    content: "î¨ˆ"
}

.bx-bug-alt:before {
    content: "î¨‰"
}

.bx-building:before {
    content: "î¨Š"
}

.bx-building-house:before {
    content: "î¨‹"
}

.bx-buildings:before {
    content: "î¨Œ"
}

.bx-bulb:before {
    content: "î¨"
}

.bx-bullseye:before {
    content: "î¨Ž"
}

.bx-buoy:before {
    content: "î¨"
}

.bx-bus:before {
    content: "î¨"
}

.bx-bus-school:before {
    content: "î¨‘"
}

.bx-cabinet:before {
    content: "î¨’"
}

.bx-cake:before {
    content: "î¨“"
}

.bx-calculator:before {
    content: "î¨”"
}

.bx-calendar:before {
    content: "î¨•"
}

.bx-calendar-alt:before {
    content: "î¨–"
}

.bx-calendar-check:before {
    content: "î¨—"
}

.bx-calendar-edit:before {
    content: "î¨˜"
}

.bx-calendar-event:before {
    content: "î¨™"
}

.bx-calendar-exclamation:before {
    content: "î¨š"
}

.bx-calendar-heart:before {
    content: "î¨›"
}

.bx-calendar-minus:before {
    content: "î¨œ"
}

.bx-calendar-plus:before {
    content: "î¨"
}

.bx-calendar-star:before {
    content: "î¨ž"
}

.bx-calendar-week:before {
    content: "î¨Ÿ"
}

.bx-calendar-x:before {
    content: "î¨ "
}

.bx-camera:before {
    content: "î¨¡"
}

.bx-camera-home:before {
    content: "î¨¢"
}

.bx-camera-movie:before {
    content: "î¨£"
}

.bx-camera-off:before {
    content: "î¨¤"
}

.bx-capsule:before {
    content: "î¨¥"
}

.bx-captions:before {
    content: "î¨¦"
}

.bx-car:before {
    content: "î¨§"
}

.bx-card:before {
    content: "î¨¨"
}

.bx-caret-down:before {
    content: "î¨©"
}

.bx-caret-down-circle:before {
    content: "î¨ª"
}

.bx-caret-down-square:before {
    content: "î¨«"
}

.bx-caret-left:before {
    content: "î¨¬"
}

.bx-caret-left-circle:before {
    content: "î¨­"
}

.bx-caret-left-square:before {
    content: "î¨®"
}

.bx-caret-right:before {
    content: "î¨¯"
}

.bx-caret-right-circle:before {
    content: "î¨°"
}

.bx-caret-right-square:before {
    content: "î¨±"
}

.bx-caret-up:before {
    content: "î¨²"
}

.bx-caret-up-circle:before {
    content: "î¨³"
}

.bx-caret-up-square:before {
    content: "î¨´"
}

.bx-carousel:before {
    content: "î¨µ"
}

.bx-cart:before {
    content: "î¨¶"
}

.bx-cart-alt:before {
    content: "î¨·"
}

.bx-cast:before {
    content: "î¨¸"
}

.bx-category:before {
    content: "î¨¹"
}

.bx-category-alt:before {
    content: "î¨º"
}

.bx-cctv:before {
    content: "î¨»"
}

.bx-certification:before {
    content: "î¨¼"
}

.bx-chair:before {
    content: "î¨½"
}

.bx-chalkboard:before {
    content: "î¨¾"
}

.bx-chart:before {
    content: "î¨¿"
}

.bx-chat:before {
    content: "î©€"
}

.bx-check:before {
    content: "î©"
}

.bx-checkbox:before {
    content: "î©‚"
}

.bx-checkbox-checked:before {
    content: "î©ƒ"
}

.bx-checkbox-minus:before {
    content: "î©„"
}

.bx-checkbox-square:before {
    content: "î©…"
}

.bx-check-circle:before {
    content: "î©†"
}

.bx-check-double:before {
    content: "î©‡"
}

.bx-check-shield:before {
    content: "î©ˆ"
}

.bx-check-square:before {
    content: "î©‰"
}

.bx-chevron-down:before {
    content: "î©Š"
}

.bx-chevron-down-circle:before {
    content: "î©‹"
}

.bx-chevron-down-square:before {
    content: "î©Œ"
}

.bx-chevron-left:before {
    content: "î©"
}

.bx-chevron-left-circle:before {
    content: "î©Ž"
}

.bx-chevron-left-square:before {
    content: "î©"
}

.bx-chevron-right:before {
    content: "î©"
}

.bx-chevron-right-circle:before {
    content: "î©‘"
}

.bx-chevron-right-square:before {
    content: "î©’"
}

.bx-chevrons-down:before {
    content: "î©“"
}

.bx-chevrons-left:before {
    content: "î©”"
}

.bx-chevrons-right:before {
    content: "î©•"
}

.bx-chevrons-up:before {
    content: "î©–"
}

.bx-chevron-up:before {
    content: "î©—"
}

.bx-chevron-up-circle:before {
    content: "î©˜"
}

.bx-chevron-up-square:before {
    content: "î©™"
}

.bx-chip:before {
    content: "î©š"
}

.bx-church:before {
    content: "î©›"
}

.bx-circle:before {
    content: "î©œ"
}

.bx-clinic:before {
    content: "î©"
}

.bx-clipboard:before {
    content: "î©ž"
}

.bx-closet:before {
    content: "î©Ÿ"
}

.bx-cloud:before {
    content: "î© "
}

.bx-cloud-download:before {
    content: "î©¡"
}

.bx-cloud-drizzle:before {
    content: "î©¢"
}

.bx-cloud-lightning:before {
    content: "î©£"
}

.bx-cloud-light-rain:before {
    content: "î©¤"
}

.bx-cloud-rain:before {
    content: "î©¥"
}

.bx-cloud-snow:before {
    content: "î©¦"
}

.bx-cloud-upload:before {
    content: "î©§"
}

.bx-code:before {
    content: "î©¨"
}

.bx-code-alt:before {
    content: "î©©"
}

.bx-code-block:before {
    content: "î©ª"
}

.bx-code-curly:before {
    content: "î©«"
}

.bx-coffee:before {
    content: "î©¬"
}

.bx-coffee-togo:before {
    content: "î©­"
}

.bx-cog:before {
    content: "î©®"
}

.bx-coin:before {
    content: "î©¯"
}

.bx-coin-stack:before {
    content: "î©°"
}

.bx-collapse:before {
    content: "î©±"
}

.bx-collection:before {
    content: "î©²"
}

.bx-color-fill:before {
    content: "î©³"
}

.bx-columns:before {
    content: "î©´"
}

.bx-command:before {
    content: "î©µ"
}

.bx-comment:before {
    content: "î©¶"
}

.bx-comment-add:before {
    content: "î©·"
}

.bx-comment-check:before {
    content: "î©¸"
}

.bx-comment-detail:before {
    content: "î©¹"
}

.bx-comment-dots:before {
    content: "î©º"
}

.bx-comment-edit:before {
    content: "î©»"
}

.bx-comment-error:before {
    content: "î©¼"
}

.bx-comment-minus:before {
    content: "î©½"
}

.bx-comment-x:before {
    content: "î©¾"
}

.bx-compass:before {
    content: "î©¿"
}

.bx-confused:before {
    content: "îª€"
}

.bx-conversation:before {
    content: "îª"
}

.bx-cookie:before {
    content: "îª‚"
}

.bx-cool:before {
    content: "îªƒ"
}

.bx-copy:before {
    content: "îª„"
}

.bx-copy-alt:before {
    content: "îª…"
}

.bx-copyright:before {
    content: "îª†"
}

.bx-credit-card:before {
    content: "îª‡"
}

.bx-credit-card-alt:before {
    content: "îªˆ"
}

.bx-credit-card-front:before {
    content: "îª‰"
}

.bx-crop:before {
    content: "îªŠ"
}

.bx-crosshair:before {
    content: "îª‹"
}

.bx-crown:before {
    content: "îªŒ"
}

.bx-cube:before {
    content: "îª"
}

.bx-cube-alt:before {
    content: "îªŽ"
}

.bx-cuboid:before {
    content: "îª"
}

.bx-current-location:before {
    content: "îª"
}

.bx-customize:before {
    content: "îª‘"
}

.bx-cut:before {
    content: "îª’"
}

.bx-cycling:before {
    content: "îª“"
}

.bx-cylinder:before {
    content: "îª”"
}

.bx-data:before {
    content: "îª•"
}

.bx-desktop:before {
    content: "îª–"
}

.bx-detail:before {
    content: "îª—"
}

.bx-devices:before {
    content: "îª˜"
}

.bx-dialpad:before {
    content: "îª™"
}

.bx-dialpad-alt:before {
    content: "îªš"
}

.bx-diamond:before {
    content: "îª›"
}

.bx-dice-1:before {
    content: "îªœ"
}

.bx-dice-2:before {
    content: "îª"
}

.bx-dice-3:before {
    content: "îªž"
}

.bx-dice-4:before {
    content: "îªŸ"
}

.bx-dice-5:before {
    content: "îª "
}

.bx-dice-6:before {
    content: "îª¡"
}

.bx-directions:before {
    content: "îª¢"
}

.bx-disc:before {
    content: "îª£"
}

.bx-dish:before {
    content: "îª¤"
}

.bx-dislike:before {
    content: "îª¥"
}

.bx-dizzy:before {
    content: "îª¦"
}

.bx-dna:before {
    content: "îª§"
}

.bx-dock-bottom:before {
    content: "îª¨"
}

.bx-dock-left:before {
    content: "îª©"
}

.bx-dock-right:before {
    content: "îªª"
}

.bx-dock-top:before {
    content: "îª«"
}

.bx-dollar:before {
    content: "îª¬"
}

.bx-dollar-circle:before {
    content: "îª­"
}

.bx-donate-blood:before {
    content: "îª®"
}

.bx-donate-heart:before {
    content: "îª¯"
}

.bx-door-open:before {
    content: "îª°"
}

.bx-dots-horizontal:before {
    content: "îª±"
}

.bx-dots-horizontal-rounded:before {
    content: "îª²"
}

.bx-dots-vertical:before {
    content: "îª³"
}

.bx-dots-vertical-rounded:before {
    content: "îª´"
}

.bx-doughnut-chart:before {
    content: "îªµ"
}

.bx-down-arrow:before {
    content: "îª¶"
}

.bx-down-arrow-alt:before {
    content: "îª·"
}

.bx-down-arrow-circle:before {
    content: "îª¸"
}

.bx-download:before {
    content: "îª¹"
}

.bx-downvote:before {
    content: "îªº"
}

.bx-drink:before {
    content: "îª»"
}

.bx-droplet:before {
    content: "îª¼"
}

.bx-dumbbell:before {
    content: "îª½"
}

.bx-duplicate:before {
    content: "îª¾"
}

.bx-edit:before {
    content: "îª¿"
}

.bx-edit-alt:before {
    content: "î«€"
}

.bx-envelope:before {
    content: "î«"
}

.bx-envelope-open:before {
    content: "î«‚"
}

.bx-equalizer:before {
    content: "î«ƒ"
}

.bx-eraser:before {
    content: "î«„"
}

.bx-error:before {
    content: "î«…"
}

.bx-error-alt:before {
    content: "î«†"
}

.bx-error-circle:before {
    content: "î«‡"
}

.bx-euro:before {
    content: "î«ˆ"
}

.bx-exclude:before {
    content: "î«‰"
}

.bx-exit:before {
    content: "î«Š"
}

.bx-exit-fullscreen:before {
    content: "î«‹"
}

.bx-expand:before {
    content: "î«Œ"
}

.bx-expand-alt:before {
    content: "î«"
}

.bx-export:before {
    content: "î«Ž"
}

.bx-extension:before {
    content: "î«"
}

.bx-face:before {
    content: "î«"
}

.bx-fast-forward:before {
    content: "î«‘"
}

.bx-fast-forward-circle:before {
    content: "î«’"
}

.bx-female:before {
    content: "î«“"
}

.bx-female-sign:before {
    content: "î«”"
}

.bx-file:before {
    content: "î«•"
}

.bx-file-blank:before {
    content: "î«–"
}

.bx-file-find:before {
    content: "î«—"
}

.bx-film:before {
    content: "î«˜"
}

.bx-filter:before {
    content: "î«™"
}

.bx-filter-alt:before {
    content: "î«š"
}

.bx-fingerprint:before {
    content: "î«›"
}

.bx-first-aid:before {
    content: "î«œ"
}

.bx-first-page:before {
    content: "î«"
}

.bx-flag:before {
    content: "î«ž"
}

.bx-folder:before {
    content: "î«Ÿ"
}

.bx-folder-minus:before {
    content: "î« "
}

.bx-folder-open:before {
    content: "î«¡"
}

.bx-folder-plus:before {
    content: "î«¢"
}

.bx-font:before {
    content: "î«£"
}

.bx-font-color:before {
    content: "î«¤"
}

.bx-font-family:before {
    content: "î«¥"
}

.bx-font-size:before {
    content: "î«¦"
}

.bx-food-menu:before {
    content: "î«§"
}

.bx-food-tag:before {
    content: "î«¨"
}

.bx-football:before {
    content: "î«©"
}

.bx-fridge:before {
    content: "î«ª"
}

.bx-fullscreen:before {
    content: "î««"
}

.bx-game:before {
    content: "î«¬"
}

.bx-gas-pump:before {
    content: "î«­"
}

.bx-ghost:before {
    content: "î«®"
}

.bx-gift:before {
    content: "î«¯"
}

.bx-git-branch:before {
    content: "î«°"
}

.bx-git-commit:before {
    content: "î«±"
}

.bx-git-compare:before {
    content: "î«²"
}

.bx-git-merge:before {
    content: "î«³"
}

.bx-git-pull-request:before {
    content: "î«´"
}

.bx-git-repo-forked:before {
    content: "î«µ"
}

.bx-glasses:before {
    content: "î«¶"
}

.bx-glasses-alt:before {
    content: "î«·"
}

.bx-globe:before {
    content: "î«¸"
}

.bx-globe-alt:before {
    content: "î«¹"
}

.bx-grid:before {
    content: "î«º"
}

.bx-grid-alt:before {
    content: "î«»"
}

.bx-grid-horizontal:before {
    content: "î«¼"
}

.bx-grid-small:before {
    content: "î«½"
}

.bx-grid-vertical:before {
    content: "î«¾"
}

.bx-group:before {
    content: "î«¿"
}

.bx-handicap:before {
    content: "î¬€"
}

.bx-happy:before {
    content: "î¬"
}

.bx-happy-alt:before {
    content: "î¬‚"
}

.bx-happy-beaming:before {
    content: "î¬ƒ"
}

.bx-happy-heart-eyes:before {
    content: "î¬„"
}

.bx-hash:before {
    content: "î¬…"
}

.bx-hdd:before {
    content: "î¬†"
}

.bx-heading:before {
    content: "î¬‡"
}

.bx-headphone:before {
    content: "î¬ˆ"
}

.bx-health:before {
    content: "î¬‰"
}

.bx-heart:before {
    content: "î¬Š"
}

.bx-heart-circle:before {
    content: "î¬‹"
}

.bx-heart-square:before {
    content: "î¬Œ"
}

.bx-help-circle:before {
    content: "î¬"
}

.bx-hide:before {
    content: "î¬Ž"
}

.bx-highlight:before {
    content: "î¬"
}

.bx-history:before {
    content: "î¬"
}

.bx-hive:before {
    content: "î¬‘"
}

.bx-home:before {
    content: "î¬’"
}

.bx-home-alt:before {
    content: "î¬“"
}

.bx-home-circle:before {
    content: "î¬”"
}

.bx-home-heart:before {
    content: "î¬•"
}

.bx-home-smile:before {
    content: "î¬–"
}

.bx-horizontal-center:before {
    content: "î¬—"
}

.bx-hotel:before {
    content: "î¬˜"
}

.bx-hourglass:before {
    content: "î¬™"
}

.bx-id-card:before {
    content: "î¬š"
}

.bx-image:before {
    content: "î¬›"
}

.bx-image-add:before {
    content: "î¬œ"
}

.bx-image-alt:before {
    content: "î¬"
}

.bx-images:before {
    content: "î¬ž"
}

.bx-import:before {
    content: "î¬Ÿ"
}

.bx-infinite:before {
    content: "î¬ "
}

.bx-info-circle:before {
    content: "î¬¡"
}

.bx-info-square:before {
    content: "î¬¢"
}

.bx-intersect:before {
    content: "î¬£"
}

.bx-italic:before {
    content: "î¬¤"
}

.bx-joystick:before {
    content: "î¬¥"
}

.bx-joystick-alt:before {
    content: "î¬¦"
}

.bx-joystick-button:before {
    content: "î¬§"
}

.bx-key:before {
    content: "î¬¨"
}

.bx-label:before {
    content: "î¬©"
}

.bx-landscape:before {
    content: "î¬ª"
}

.bx-laptop:before {
    content: "î¬«"
}

.bx-last-page:before {
    content: "î¬¬"
}

.bx-laugh:before {
    content: "î¬­"
}

.bx-layer:before {
    content: "î¬®"
}

.bx-layer-minus:before {
    content: "î¬¯"
}

.bx-layer-plus:before {
    content: "î¬°"
}

.bx-layout:before {
    content: "î¬±"
}

.bx-left-arrow:before {
    content: "î¬²"
}

.bx-left-arrow-alt:before {
    content: "î¬³"
}

.bx-left-arrow-circle:before {
    content: "î¬´"
}

.bx-left-down-arrow-circle:before {
    content: "î¬µ"
}

.bx-left-indent:before {
    content: "î¬¶"
}

.bx-left-top-arrow-circle:before {
    content: "î¬·"
}

.bx-library:before {
    content: "î¬¸"
}

.bx-like:before {
    content: "î¬¹"
}

.bx-line-chart:before {
    content: "î¬º"
}

.bx-line-chart-down:before {
    content: "î¬»"
}

.bx-link:before {
    content: "î¬¼"
}

.bx-link-alt:before {
    content: "î¬½"
}

.bx-link-external:before {
    content: "î¬¾"
}

.bx-lira:before {
    content: "î¬¿"
}

.bx-list-check:before {
    content: "î­€"
}

.bx-list-minus:before {
    content: "î­"
}

.bx-list-ol:before {
    content: "î­‚"
}

.bx-list-plus:before {
    content: "î­ƒ"
}

.bx-list-ul:before {
    content: "î­„"
}

.bx-loader:before {
    content: "î­…"
}

.bx-loader-alt:before {
    content: "î­†"
}

.bx-loader-circle:before {
    content: "î­‡"
}

.bx-location-plus:before {
    content: "î­ˆ"
}

.bx-lock:before {
    content: "î­‰"
}

.bx-lock-alt:before {
    content: "î­Š"
}

.bx-lock-open:before {
    content: "î­‹"
}

.bx-lock-open-alt:before {
    content: "î­Œ"
}

.bx-log-in:before {
    content: "î­"
}

.bx-log-in-circle:before {
    content: "î­Ž"
}

.bx-log-out:before {
    content: "î­"
}

.bx-log-out-circle:before {
    content: "î­"
}

.bx-low-vision:before {
    content: "î­‘"
}

.bx-magnet:before {
    content: "î­’"
}

.bx-mail-send:before {
    content: "î­“"
}

.bx-male:before {
    content: "î­”"
}

.bx-male-sign:before {
    content: "î­•"
}

.bx-map:before {
    content: "î­–"
}

.bx-map-alt:before {
    content: "î­—"
}

.bx-map-pin:before {
    content: "î­˜"
}

.bx-mask:before {
    content: "î­™"
}

.bx-medal:before {
    content: "î­š"
}

.bx-meh:before {
    content: "î­›"
}

.bx-meh-alt:before {
    content: "î­œ"
}

.bx-meh-blank:before {
    content: "î­"
}

.bx-memory-card:before {
    content: "î­ž"
}

.bx-menu:before {
    content: "î­Ÿ"
}

.bx-menu-alt-left:before {
    content: "î½›"
}

.bx-menu-alt-right:before {
    content: "î­¡"
}

.bx-merge:before {
    content: "î­¢"
}

.bx-message:before {
    content: "î­£"
}

.bx-message-add:before {
    content: "î­¤"
}

.bx-message-alt:before {
    content: "î­¥"
}

.bx-message-alt-add:before {
    content: "î­¦"
}

.bx-message-alt-check:before {
    content: "î­§"
}

.bx-message-alt-detail:before {
    content: "î­¨"
}

.bx-message-alt-dots:before {
    content: "î­©"
}

.bx-message-alt-edit:before {
    content: "î­ª"
}

.bx-message-alt-error:before {
    content: "î­«"
}

.bx-message-alt-minus:before {
    content: "î­¬"
}

.bx-message-alt-x:before {
    content: "î­­"
}

.bx-message-check:before {
    content: "î­®"
}

.bx-message-detail:before {
    content: "î­¯"
}

.bx-message-dots:before {
    content: "î­°"
}

.bx-message-edit:before {
    content: "î­±"
}

.bx-message-error:before {
    content: "î­²"
}

.bx-message-minus:before {
    content: "î­³"
}

.bx-message-rounded:before {
    content: "î­´"
}

.bx-message-rounded-add:before {
    content: "î­µ"
}

.bx-message-rounded-check:before {
    content: "î­¶"
}

.bx-message-rounded-detail:before {
    content: "î­·"
}

.bx-message-rounded-dots:before {
    content: "î­¸"
}

.bx-message-rounded-edit:before {
    content: "î½œ"
}

.bx-message-rounded-error:before {
    content: "î­º"
}

.bx-message-rounded-minus:before {
    content: "î­»"
}

.bx-message-rounded-x:before {
    content: "î­¼"
}

.bx-message-square:before {
    content: "î­½"
}

.bx-message-square-add:before {
    content: "î­¾"
}

.bx-message-square-check:before {
    content: "î­¿"
}

.bx-message-square-detail:before {
    content: "î®€"
}

.bx-message-square-dots:before {
    content: "î®"
}

.bx-message-square-edit:before {
    content: "î®‚"
}

.bx-message-square-error:before {
    content: "î®ƒ"
}

.bx-message-square-minus:before {
    content: "î®„"
}

.bx-message-square-x:before {
    content: "î®…"
}

.bx-message-x:before {
    content: "î®†"
}

.bx-meteor:before {
    content: "î®‡"
}

.bx-microchip:before {
    content: "î®ˆ"
}

.bx-microphone:before {
    content: "î®‰"
}

.bx-microphone-off:before {
    content: "î®Š"
}

.bx-minus:before {
    content: "î®‹"
}

.bx-minus-back:before {
    content: "î®Œ"
}

.bx-minus-circle:before {
    content: "î®"
}

.bx-minus-front:before {
    content: "î®Ž"
}

.bx-mobile:before {
    content: "î®"
}

.bx-mobile-alt:before {
    content: "î®"
}

.bx-mobile-landscape:before {
    content: "î®‘"
}

.bx-mobile-vibration:before {
    content: "î½"
}

.bx-money:before {
    content: "î®“"
}

.bx-moon:before {
    content: "î®”"
}

.bx-mouse:before {
    content: "î®•"
}

.bx-mouse-alt:before {
    content: "î®–"
}

.bx-move:before {
    content: "î®—"
}

.bx-move-horizontal:before {
    content: "î®˜"
}

.bx-move-vertical:before {
    content: "î®™"
}

.bx-movie:before {
    content: "î®š"
}

.bx-movie-play:before {
    content: "î®›"
}

.bx-music:before {
    content: "î®œ"
}

.bx-navigation:before {
    content: "î®"
}

.bx-network-chart:before {
    content: "î®ž"
}

.bx-news:before {
    content: "î®Ÿ"
}

.bx-no-entry:before {
    content: "î® "
}

.bx-note:before {
    content: "î®¡"
}

.bx-notepad:before {
    content: "î®¢"
}

.bx-notification:before {
    content: "î®£"
}

.bx-notification-off:before {
    content: "î®¤"
}

.bx-outline:before {
    content: "î®¥"
}

.bx-package:before {
    content: "î®¦"
}

.bx-paint:before {
    content: "î®§"
}

.bx-paint-roll:before {
    content: "î®¨"
}

.bx-palette:before {
    content: "î®©"
}

.bx-paperclip:before {
    content: "î®ª"
}

.bx-paper-plane:before {
    content: "î½¡"
}

.bx-paragraph:before {
    content: "î®¬"
}

.bx-paste:before {
    content: "î®­"
}

.bx-pause:before {
    content: "î®®"
}

.bx-pause-circle:before {
    content: "î®¯"
}

.bx-pen:before {
    content: "î®°"
}

.bx-pencil:before {
    content: "î®±"
}

.bx-phone:before {
    content: "î®²"
}

.bx-phone-call:before {
    content: "î®³"
}

.bx-phone-incoming:before {
    content: "î®´"
}

.bx-phone-off:before {
    content: "î®µ"
}

.bx-phone-outgoing:before {
    content: "î®¶"
}

.bx-photo-album:before {
    content: "î®·"
}

.bx-pie-chart:before {
    content: "î®¸"
}

.bx-pie-chart-alt:before {
    content: "î®¹"
}

.bx-pie-chart-alt-2:before {
    content: "î®º"
}

.bx-pin:before {
    content: "î®»"
}

.bx-planet:before {
    content: "î®¼"
}

.bx-play:before {
    content: "î®½"
}

.bx-play-circle:before {
    content: "î®¾"
}

.bx-plug:before {
    content: "î®¿"
}

.bx-plus:before {
    content: "î¯€"
}

.bx-plus-circle:before {
    content: "î¯"
}

.bx-plus-medical:before {
    content: "î¯‚"
}

.bx-podcast:before {
    content: "î¯ƒ"
}

.bx-pointer:before {
    content: "î½ž"
}

.bx-poll:before {
    content: "î¯…"
}

.bx-polygon:before {
    content: "î¯†"
}

.bx-pound:before {
    content: "î¯‡"
}

.bx-power-off:before {
    content: "î¯ˆ"
}

.bx-printer:before {
    content: "î¯‰"
}

.bx-pulse:before {
    content: "î¯Š"
}

.bx-purchase-tag:before {
    content: "î¯‹"
}

.bx-purchase-tag-alt:before {
    content: "î¯Œ"
}

.bx-pyramid:before {
    content: "î¯"
}

.bx-qr:before {
    content: "î¯Ž"
}

.bx-qr-scan:before {
    content: "î¯"
}

.bx-question-mark:before {
    content: "î¯"
}

.bx-radar:before {
    content: "î¯‘"
}

.bx-radio:before {
    content: "î¯’"
}

.bx-radio-circle:before {
    content: "î¯“"
}

.bx-radio-circle-marked:before {
    content: "î¯”"
}

.bx-receipt:before {
    content: "î¯•"
}

.bx-rectangle:before {
    content: "î¯–"
}

.bx-recycle:before {
    content: "î¯—"
}

.bx-redo:before {
    content: "î¯˜"
}

.bx-refresh:before {
    content: "î¯™"
}

.bx-registered:before {
    content: "î¯š"
}

.bx-rename:before {
    content: "î¯›"
}

.bx-repeat:before {
    content: "î¯œ"
}

.bx-reply:before {
    content: "î½Ÿ"
}

.bx-reply-all:before {
    content: "î¯ž"
}

.bx-repost:before {
    content: "î¯Ÿ"
}

.bx-reset:before {
    content: "î¯ "
}

.bx-restaurant:before {
    content: "î¯¡"
}

.bx-revision:before {
    content: "î¯¢"
}

.bx-rewind:before {
    content: "î¯£"
}

.bx-rewind-circle:before {
    content: "î¯¤"
}

.bx-right-arrow:before {
    content: "î¯¥"
}

.bx-right-arrow-alt:before {
    content: "î¯¦"
}

.bx-right-arrow-circle:before {
    content: "î¯§"
}

.bx-right-down-arrow-circle:before {
    content: "î¯¨"
}

.bx-right-indent:before {
    content: "î¯©"
}

.bx-right-top-arrow-circle:before {
    content: "î¯ª"
}

.bx-rocket:before {
    content: "î¯«"
}

.bx-rotate-left:before {
    content: "î¯¬"
}

.bx-rotate-right:before {
    content: "î¯­"
}

.bx-rss:before {
    content: "î¯®"
}

.bx-ruble:before {
    content: "î¯¯"
}

.bx-ruler:before {
    content: "î¯°"
}

.bx-run:before {
    content: "î¯±"
}

.bx-rupee:before {
    content: "î¯²"
}

.bx-sad:before {
    content: "î¯³"
}

.bx-save:before {
    content: "î¯´"
}

.bx-scan:before {
    content: "î¯µ"
}

.bx-screenshot:before {
    content: "î½ "
}

.bx-search:before {
    content: "î¯·"
}

.bx-search-alt:before {
    content: "î¯¸"
}

.bx-search-alt-2:before {
    content: "î¯¹"
}

.bx-selection:before {
    content: "î¯º"
}

.bx-select-multiple:before {
    content: "î¯»"
}

.bx-send:before {
    content: "î¯¼"
}

.bx-server:before {
    content: "î¯½"
}

.bx-shape-circle:before {
    content: "î¯¾"
}

.bx-shape-polygon:before {
    content: "î¯¿"
}

.bx-shape-square:before {
    content: "î°€"
}

.bx-shape-triangle:before {
    content: "î°"
}

.bx-share:before {
    content: "î°‚"
}

.bx-share-alt:before {
    content: "î°ƒ"
}

.bx-shekel:before {
    content: "î°„"
}

.bx-shield:before {
    content: "î°…"
}

.bx-shield-alt:before {
    content: "î°†"
}

.bx-shield-alt-2:before {
    content: "î°‡"
}

.bx-shield-quarter:before {
    content: "î°ˆ"
}

.bx-shield-x:before {
    content: "î°‰"
}

.bx-shocked:before {
    content: "î°Š"
}

.bx-shopping-bag:before {
    content: "î°‹"
}

.bx-show:before {
    content: "î°Œ"
}

.bx-show-alt:before {
    content: "î°"
}

.bx-shuffle:before {
    content: "î°Ž"
}

.bx-sidebar:before {
    content: "î°"
}

.bx-sitemap:before {
    content: "î°"
}

.bx-skip-next:before {
    content: "î°‘"
}

.bx-skip-next-circle:before {
    content: "î°’"
}

.bx-skip-previous:before {
    content: "î°“"
}

.bx-skip-previous-circle:before {
    content: "î°”"
}

.bx-sleepy:before {
    content: "î°•"
}

.bx-slider:before {
    content: "î°–"
}

.bx-slider-alt:before {
    content: "î°—"
}

.bx-slideshow:before {
    content: "î°˜"
}

.bx-smile:before {
    content: "î°™"
}

.bx-sort:before {
    content: "î°š"
}

.bx-sort-alt-2:before {
    content: "î°›"
}

.bx-sort-a-z:before {
    content: "î°œ"
}

.bx-sort-down:before {
    content: "î°"
}

.bx-sort-up:before {
    content: "î°ž"
}

.bx-sort-z-a:before {
    content: "î°Ÿ"
}

.bx-spa:before {
    content: "î° "
}

.bx-space-bar:before {
    content: "î°¡"
}

.bx-speaker:before {
    content: "î°¢"
}

.bx-spray-can:before {
    content: "î°£"
}

.bx-spreadsheet:before {
    content: "î°¤"
}

.bx-square:before {
    content: "î°¥"
}

.bx-square-rounded:before {
    content: "î°¦"
}

.bx-star:before {
    content: "î°§"
}

.bx-station:before {
    content: "î°¨"
}

.bx-stats:before {
    content: "î°©"
}

.bx-sticker:before {
    content: "î°ª"
}

.bx-stop:before {
    content: "î°«"
}

.bx-stop-circle:before {
    content: "î°¬"
}

.bx-stopwatch:before {
    content: "î°­"
}

.bx-store:before {
    content: "î°®"
}

.bx-store-alt:before {
    content: "î°¯"
}

.bx-street-view:before {
    content: "î°°"
}

.bx-strikethrough:before {
    content: "î°±"
}

.bx-subdirectory-left:before {
    content: "î°²"
}

.bx-subdirectory-right:before {
    content: "î°³"
}

.bx-sun:before {
    content: "î°´"
}

.bx-support:before {
    content: "î°µ"
}

.bx-swim:before {
    content: "î°¶"
}

.bx-sync:before {
    content: "î°·"
}

.bx-tab:before {
    content: "î°¸"
}

.bx-table:before {
    content: "î°¹"
}

.bx-tachometer:before {
    content: "î°º"
}

.bx-tag:before {
    content: "î°»"
}

.bx-tag-alt:before {
    content: "î°¼"
}

.bx-target-lock:before {
    content: "î°½"
}

.bx-task:before {
    content: "î°¾"
}

.bx-task-x:before {
    content: "î°¿"
}

.bx-taxi:before {
    content: "î±€"
}

.bx-tennis-ball:before {
    content: "î±"
}

.bx-terminal:before {
    content: "î±‚"
}

.bx-test-tube:before {
    content: "î±ƒ"
}

.bx-text:before {
    content: "î±„"
}

.bx-time:before {
    content: "î±…"
}

.bx-time-five:before {
    content: "î±†"
}

.bx-timer:before {
    content: "î±‡"
}

.bx-tired:before {
    content: "î±ˆ"
}

.bx-toggle-left:before {
    content: "î±‰"
}

.bx-toggle-right:before {
    content: "î±Š"
}

.bx-tone:before {
    content: "î±‹"
}

.bx-traffic-cone:before {
    content: "î±Œ"
}

.bx-train:before {
    content: "î±"
}

.bx-transfer:before {
    content: "î±Ž"
}

.bx-transfer-alt:before {
    content: "î±"
}

.bx-trash:before {
    content: "î±"
}

.bx-trash-alt:before {
    content: "î±‘"
}

.bx-trending-down:before {
    content: "î±’"
}

.bx-trending-up:before {
    content: "î±“"
}

.bx-trim:before {
    content: "î±”"
}

.bx-trip:before {
    content: "î±•"
}

.bx-trophy:before {
    content: "î±–"
}

.bx-tv:before {
    content: "î±—"
}

.bx-underline:before {
    content: "î±˜"
}

.bx-undo:before {
    content: "î±™"
}

.bx-unite:before {
    content: "î±š"
}

.bx-unlink:before {
    content: "î±›"
}

.bx-up-arrow:before {
    content: "î±œ"
}

.bx-up-arrow-alt:before {
    content: "î±"
}

.bx-up-arrow-circle:before {
    content: "î±ž"
}

.bx-upload:before {
    content: "î±Ÿ"
}

.bx-upside-down:before {
    content: "î± "
}

.bx-upvote:before {
    content: "î±¡"
}

.bx-usb:before {
    content: "î±¢"
}

.bx-user:before {
    content: "î±£"
}

.bx-user-check:before {
    content: "î±¤"
}

.bx-user-circle:before {
    content: "î±¥"
}

.bx-user-minus:before {
    content: "î±¦"
}

.bx-user-pin:before {
    content: "î±§"
}

.bx-user-plus:before {
    content: "î±¨"
}

.bx-user-voice:before {
    content: "î±©"
}

.bx-user-x:before {
    content: "î±ª"
}

.bx-vector:before {
    content: "î±«"
}

.bx-vertical-center:before {
    content: "î±¬"
}

.bx-vial:before {
    content: "î±­"
}

.bx-video:before {
    content: "î±®"
}

.bx-video-off:before {
    content: "î±¯"
}

.bx-video-plus:before {
    content: "î±°"
}

.bx-video-recording:before {
    content: "î±±"
}

.bx-voicemail:before {
    content: "î±²"
}

.bx-volume:before {
    content: "î±³"
}

.bx-volume-full:before {
    content: "î±´"
}

.bx-volume-low:before {
    content: "î±µ"
}

.bx-volume-mute:before {
    content: "î±¶"
}

.bx-walk:before {
    content: "î±·"
}

.bx-wallet:before {
    content: "î±¸"
}

.bx-wallet-alt:before {
    content: "î±¹"
}

.bx-water:before {
    content: "î±º"
}

.bx-webcam:before {
    content: "î±»"
}

.bx-wifi:before {
    content: "î±¼"
}

.bx-wifi-0:before {
    content: "î±½"
}

.bx-wifi-1:before {
    content: "î±¾"
}

.bx-wifi-2:before {
    content: "î±¿"
}

.bx-wifi-off:before {
    content: "î²€"
}

.bx-wind:before {
    content: "î²"
}

.bx-window:before {
    content: "î²‚"
}

.bx-window-alt:before {
    content: "î²ƒ"
}

.bx-window-close:before {
    content: "î²„"
}

.bx-window-open:before {
    content: "î²…"
}

.bx-windows:before {
    content: "î²†"
}

.bx-wine:before {
    content: "î²‡"
}

.bx-wink-smile:before {
    content: "î²ˆ"
}

.bx-wink-tongue:before {
    content: "î²‰"
}

.bx-won:before {
    content: "î²Š"
}

.bx-world:before {
    content: "î²‹"
}

.bx-wrench:before {
    content: "î²Œ"
}

.bx-x:before {
    content: "î²"
}

.bx-x-circle:before {
    content: "î²Ž"
}

.bx-yen:before {
    content: "î²"
}

.bx-zoom-in:before {
    content: "î²"
}

.bx-zoom-out:before {
    content: "î²‘"
}

.bxs-party:before {
    content: "î²’"
}

.bxs-hot:before {
    content: "î²“"
}

.bxs-droplet:before {
    content: "î²”"
}

.bxs-cat:before {
    content: "î²•"
}

.bxs-dog:before {
    content: "î²–"
}

.bxs-injection:before {
    content: "î²—"
}

.bxs-leaf:before {
    content: "î²˜"
}

.bxs-add-to-queue:before {
    content: "î²™"
}

.bxs-adjust:before {
    content: "î²š"
}

.bxs-adjust-alt:before {
    content: "î²›"
}

.bxs-alarm:before {
    content: "î²œ"
}

.bxs-alarm-add:before {
    content: "î²"
}

.bxs-alarm-exclamation:before {
    content: "î²ž"
}

.bxs-alarm-off:before {
    content: "î²Ÿ"
}

.bxs-alarm-snooze:before {
    content: "î² "
}

.bxs-album:before {
    content: "î²¡"
}

.bxs-ambulance:before {
    content: "î²¢"
}

.bxs-analyse:before {
    content: "î²£"
}

.bxs-angry:before {
    content: "î²¤"
}

.bxs-arch:before {
    content: "î²¥"
}

.bxs-archive:before {
    content: "î²¦"
}

.bxs-archive-in:before {
    content: "î²§"
}

.bxs-archive-out:before {
    content: "î²¨"
}

.bxs-area:before {
    content: "î²©"
}

.bxs-arrow-from-bottom:before {
    content: "î²ª"
}

.bxs-arrow-from-left:before {
    content: "î²«"
}

.bxs-arrow-from-right:before {
    content: "î²¬"
}

.bxs-arrow-from-top:before {
    content: "î²­"
}

.bxs-arrow-to-bottom:before {
    content: "î²®"
}

.bxs-arrow-to-left:before {
    content: "î²¯"
}

.bxs-arrow-to-right:before {
    content: "î²°"
}

.bxs-arrow-to-top:before {
    content: "î²±"
}

.bxs-award:before {
    content: "î²²"
}

.bxs-baby-carriage:before {
    content: "î²³"
}

.bxs-backpack:before {
    content: "î²´"
}

.bxs-badge:before {
    content: "î²µ"
}

.bxs-badge-check:before {
    content: "î²¶"
}

.bxs-badge-dollar:before {
    content: "î²·"
}

.bxs-ball:before {
    content: "î²¸"
}

.bxs-band-aid:before {
    content: "î²¹"
}

.bxs-bank:before {
    content: "î²º"
}

.bxs-bar-chart-alt-2:before {
    content: "î²»"
}

.bxs-bar-chart-square:before {
    content: "î²¼"
}

.bxs-barcode:before {
    content: "î²½"
}

.bxs-baseball:before {
    content: "î²¾"
}

.bxs-basket:before {
    content: "î²¿"
}

.bxs-basketball:before {
    content: "î³€"
}

.bxs-bath:before {
    content: "î³"
}

.bxs-battery:before {
    content: "î³‚"
}

.bxs-battery-charging:before {
    content: "î³ƒ"
}

.bxs-battery-full:before {
    content: "î³„"
}

.bxs-battery-low:before {
    content: "î³…"
}

.bxs-bed:before {
    content: "î³†"
}

.bxs-been-here:before {
    content: "î³‡"
}

.bxs-beer:before {
    content: "î³ˆ"
}

.bxs-bell:before {
    content: "î³‰"
}

.bxs-bell-minus:before {
    content: "î³Š"
}

.bxs-bell-off:before {
    content: "î³‹"
}

.bxs-bell-plus:before {
    content: "î³Œ"
}

.bxs-bell-ring:before {
    content: "î³"
}

.bxs-bible:before {
    content: "î³Ž"
}

.bxs-binoculars:before {
    content: "î³"
}

.bxs-blanket:before {
    content: "î³"
}

.bxs-bolt:before {
    content: "î³‘"
}

.bxs-bolt-circle:before {
    content: "î³’"
}

.bxs-bomb:before {
    content: "î³“"
}

.bxs-bone:before {
    content: "î³”"
}

.bxs-bong:before {
    content: "î³•"
}

.bxs-book:before {
    content: "î³–"
}

.bxs-book-add:before {
    content: "î³—"
}

.bxs-book-alt:before {
    content: "î³˜"
}

.bxs-book-bookmark:before {
    content: "î³™"
}

.bxs-book-content:before {
    content: "î³š"
}

.bxs-book-heart:before {
    content: "î³›"
}

.bxs-bookmark:before {
    content: "î³œ"
}

.bxs-bookmark-alt:before {
    content: "î³"
}

.bxs-bookmark-alt-minus:before {
    content: "î³ž"
}

.bxs-bookmark-alt-plus:before {
    content: "î³Ÿ"
}

.bxs-bookmark-heart:before {
    content: "î³ "
}

.bxs-bookmark-minus:before {
    content: "î³¡"
}

.bxs-bookmark-plus:before {
    content: "î³¢"
}

.bxs-bookmarks:before {
    content: "î³£"
}

.bxs-bookmark-star:before {
    content: "î³¤"
}

.bxs-book-open:before {
    content: "î³¥"
}

.bxs-book-reader:before {
    content: "î³¦"
}

.bxs-bot:before {
    content: "î³§"
}

.bxs-bowling-ball:before {
    content: "î³¨"
}

.bxs-box:before {
    content: "î³©"
}

.bxs-brain:before {
    content: "î³ª"
}

.bxs-briefcase:before {
    content: "î³«"
}

.bxs-briefcase-alt:before {
    content: "î³¬"
}

.bxs-briefcase-alt-2:before {
    content: "î³­"
}

.bxs-brightness:before {
    content: "î³®"
}

.bxs-brightness-half:before {
    content: "î³¯"
}

.bxs-brush:before {
    content: "î³°"
}

.bxs-brush-alt:before {
    content: "î³±"
}

.bxs-bug:before {
    content: "î³²"
}

.bxs-bug-alt:before {
    content: "î³³"
}

.bxs-building:before {
    content: "î³´"
}

.bxs-building-house:before {
    content: "î³µ"
}

.bxs-buildings:before {
    content: "î³¶"
}

.bxs-bulb:before {
    content: "î³·"
}

.bxs-bullseye:before {
    content: "î³¸"
}

.bxs-buoy:before {
    content: "î³¹"
}

.bxs-bus:before {
    content: "î³º"
}

.bxs-business:before {
    content: "î³»"
}

.bxs-bus-school:before {
    content: "î³¼"
}

.bxs-cabinet:before {
    content: "î³½"
}

.bxs-cake:before {
    content: "î³¾"
}

.bxs-calculator:before {
    content: "î³¿"
}

.bxs-calendar:before {
    content: "î´€"
}

.bxs-calendar-alt:before {
    content: "î´"
}

.bxs-calendar-check:before {
    content: "î´‚"
}

.bxs-calendar-edit:before {
    content: "î´ƒ"
}

.bxs-calendar-event:before {
    content: "î´„"
}

.bxs-calendar-exclamation:before {
    content: "î´…"
}

.bxs-calendar-heart:before {
    content: "î´†"
}

.bxs-calendar-minus:before {
    content: "î´‡"
}

.bxs-calendar-plus:before {
    content: "î´ˆ"
}

.bxs-calendar-star:before {
    content: "î´‰"
}

.bxs-calendar-week:before {
    content: "î´Š"
}

.bxs-calendar-x:before {
    content: "î´‹"
}

.bxs-camera:before {
    content: "î´Œ"
}

.bxs-camera-home:before {
    content: "î´"
}

.bxs-camera-movie:before {
    content: "î´Ž"
}

.bxs-camera-off:before {
    content: "î´"
}

.bxs-camera-plus:before {
    content: "î´"
}

.bxs-capsule:before {
    content: "î´‘"
}

.bxs-captions:before {
    content: "î´’"
}

.bxs-car:before {
    content: "î´“"
}

.bxs-car-battery:before {
    content: "î´”"
}

.bxs-car-crash:before {
    content: "î´•"
}

.bxs-card:before {
    content: "î´–"
}

.bxs-caret-down-circle:before {
    content: "î´—"
}

.bxs-caret-down-square:before {
    content: "î´˜"
}

.bxs-caret-left-circle:before {
    content: "î´™"
}

.bxs-caret-left-square:before {
    content: "î´š"
}

.bxs-caret-right-circle:before {
    content: "î´›"
}

.bxs-caret-right-square:before {
    content: "î´œ"
}

.bxs-caret-up-circle:before {
    content: "î´"
}

.bxs-caret-up-square:before {
    content: "î´ž"
}

.bxs-car-garage:before {
    content: "î´Ÿ"
}

.bxs-car-mechanic:before {
    content: "î´ "
}

.bxs-carousel:before {
    content: "î´¡"
}

.bxs-cart:before {
    content: "î´¢"
}

.bxs-cart-add:before {
    content: "î´£"
}

.bxs-cart-alt:before {
    content: "î´¤"
}

.bxs-cart-download:before {
    content: "î´¥"
}

.bxs-car-wash:before {
    content: "î´¦"
}

.bxs-category:before {
    content: "î´§"
}

.bxs-category-alt:before {
    content: "î´¨"
}

.bxs-cctv:before {
    content: "î´©"
}

.bxs-certification:before {
    content: "î´ª"
}

.bxs-chalkboard:before {
    content: "î´«"
}

.bxs-chart:before {
    content: "î´¬"
}

.bxs-chat:before {
    content: "î´­"
}

.bxs-checkbox:before {
    content: "î´®"
}

.bxs-checkbox-checked:before {
    content: "î´¯"
}

.bxs-checkbox-minus:before {
    content: "î´°"
}

.bxs-check-circle:before {
    content: "î´±"
}

.bxs-check-shield:before {
    content: "î´²"
}

.bxs-check-square:before {
    content: "î´³"
}

.bxs-chess:before {
    content: "î´´"
}

.bxs-chevron-down:before {
    content: "î´µ"
}

.bxs-chevron-down-circle:before {
    content: "î´¶"
}

.bxs-chevron-down-square:before {
    content: "î´·"
}

.bxs-chevron-left:before {
    content: "î´¸"
}

.bxs-chevron-left-circle:before {
    content: "î´¹"
}

.bxs-chevron-left-square:before {
    content: "î´º"
}

.bxs-chevron-right:before {
    content: "î´»"
}

.bxs-chevron-right-circle:before {
    content: "î´¼"
}

.bxs-chevron-right-square:before {
    content: "î´½"
}

.bxs-chevrons-down:before {
    content: "î´¾"
}

.bxs-chevrons-left:before {
    content: "î´¿"
}

.bxs-chevrons-right:before {
    content: "îµ€"
}

.bxs-chevrons-up:before {
    content: "îµ"
}

.bxs-chevron-up:before {
    content: "îµ‚"
}

.bxs-chevron-up-circle:before {
    content: "îµƒ"
}

.bxs-chevron-up-square:before {
    content: "îµ„"
}

.bxs-chip:before {
    content: "îµ…"
}

.bxs-church:before {
    content: "îµ†"
}

.bxs-circle:before {
    content: "îµ‡"
}

.bxs-city:before {
    content: "îµˆ"
}

.bxs-clinic:before {
    content: "îµ‰"
}

.bxs-cloud:before {
    content: "îµŠ"
}

.bxs-cloud-download:before {
    content: "îµ‹"
}

.bxs-cloud-lightning:before {
    content: "îµŒ"
}

.bxs-cloud-rain:before {
    content: "îµ"
}

.bxs-cloud-upload:before {
    content: "îµŽ"
}

.bxs-coffee:before {
    content: "îµ"
}

.bxs-coffee-alt:before {
    content: "îµ"
}

.bxs-coffee-togo:before {
    content: "îµ‘"
}

.bxs-cog:before {
    content: "îµ’"
}

.bxs-coin:before {
    content: "îµ“"
}

.bxs-coin-stack:before {
    content: "îµ”"
}

.bxs-collection:before {
    content: "îµ•"
}

.bxs-color-fill:before {
    content: "îµ–"
}

.bxs-comment:before {
    content: "îµ—"
}

.bxs-comment-add:before {
    content: "îµ˜"
}

.bxs-comment-check:before {
    content: "îµ™"
}

.bxs-comment-detail:before {
    content: "îµš"
}

.bxs-comment-dots:before {
    content: "îµ›"
}

.bxs-comment-edit:before {
    content: "îµœ"
}

.bxs-comment-error:before {
    content: "îµ"
}

.bxs-comment-minus:before {
    content: "îµž"
}

.bxs-comment-x:before {
    content: "îµŸ"
}

.bxs-compass:before {
    content: "îµ "
}

.bxs-component:before {
    content: "îµ¡"
}

.bxs-confused:before {
    content: "îµ¢"
}

.bxs-contact:before {
    content: "îµ£"
}

.bxs-conversation:before {
    content: "îµ¤"
}

.bxs-cookie:before {
    content: "îµ¥"
}

.bxs-cool:before {
    content: "îµ¦"
}

.bxs-copy:before {
    content: "îµ§"
}

.bxs-copy-alt:before {
    content: "îµ¨"
}

.bxs-copyright:before {
    content: "îµ©"
}

.bxs-coupon:before {
    content: "îµª"
}

.bxs-credit-card:before {
    content: "îµ«"
}

.bxs-credit-card-alt:before {
    content: "îµ¬"
}

.bxs-credit-card-front:before {
    content: "îµ­"
}

.bxs-crop:before {
    content: "îµ®"
}

.bxs-crown:before {
    content: "îµ¯"
}

.bxs-cube:before {
    content: "îµ°"
}

.bxs-cube-alt:before {
    content: "îµ±"
}

.bxs-cuboid:before {
    content: "îµ²"
}

.bxs-customize:before {
    content: "îµ³"
}

.bxs-cylinder:before {
    content: "îµ´"
}

.bxs-dashboard:before {
    content: "îµµ"
}

.bxs-data:before {
    content: "îµ¶"
}

.bxs-detail:before {
    content: "îµ·"
}

.bxs-devices:before {
    content: "îµ¸"
}

.bxs-diamond:before {
    content: "îµ¹"
}

.bxs-dice-1:before {
    content: "îµº"
}

.bxs-dice-2:before {
    content: "îµ»"
}

.bxs-dice-3:before {
    content: "îµ¼"
}

.bxs-dice-4:before {
    content: "îµ½"
}

.bxs-dice-5:before {
    content: "îµ¾"
}

.bxs-dice-6:before {
    content: "îµ¿"
}

.bxs-direction-left:before {
    content: "î¶€"
}

.bxs-direction-right:before {
    content: "î¶"
}

.bxs-directions:before {
    content: "î¶‚"
}

.bxs-disc:before {
    content: "î¶ƒ"
}

.bxs-discount:before {
    content: "î¶„"
}

.bxs-dish:before {
    content: "î¶…"
}

.bxs-dislike:before {
    content: "î¶†"
}

.bxs-dizzy:before {
    content: "î¶‡"
}

.bxs-dock-bottom:before {
    content: "î¶ˆ"
}

.bxs-dock-left:before {
    content: "î¶‰"
}

.bxs-dock-right:before {
    content: "î¶Š"
}

.bxs-dock-top:before {
    content: "î¶‹"
}

.bxs-dollar-circle:before {
    content: "î¶Œ"
}

.bxs-donate-blood:before {
    content: "î¶"
}

.bxs-donate-heart:before {
    content: "î¶Ž"
}

.bxs-door-open:before {
    content: "î¶"
}

.bxs-doughnut-chart:before {
    content: "î¶"
}

.bxs-down-arrow:before {
    content: "î¶‘"
}

.bxs-down-arrow-alt:before {
    content: "î¶’"
}

.bxs-down-arrow-circle:before {
    content: "î¶“"
}

.bxs-down-arrow-square:before {
    content: "î¶”"
}

.bxs-download:before {
    content: "î¶•"
}

.bxs-downvote:before {
    content: "î¶–"
}

.bxs-drink:before {
    content: "î¶—"
}

.bxs-droplet-half:before {
    content: "î¶˜"
}

.bxs-dryer:before {
    content: "î¶™"
}

.bxs-duplicate:before {
    content: "î¶š"
}

.bxs-edit:before {
    content: "î¶›"
}

.bxs-edit-alt:before {
    content: "î¶œ"
}

.bxs-edit-location:before {
    content: "î¶"
}

.bxs-eject:before {
    content: "î¶ž"
}

.bxs-envelope:before {
    content: "î¶Ÿ"
}

.bxs-envelope-open:before {
    content: "î¶ "
}

.bxs-eraser:before {
    content: "î¶¡"
}

.bxs-error:before {
    content: "î¶¢"
}

.bxs-error-alt:before {
    content: "î¶£"
}

.bxs-error-circle:before {
    content: "î¶¤"
}

.bxs-ev-station:before {
    content: "î¶¥"
}

.bxs-exit:before {
    content: "î¶¦"
}

.bxs-extension:before {
    content: "î¶§"
}

.bxs-eyedropper:before {
    content: "î¶¨"
}

.bxs-face:before {
    content: "î¶©"
}

.bxs-face-mask:before {
    content: "î¶ª"
}

.bxs-factory:before {
    content: "î¶«"
}

.bxs-fast-forward-circle:before {
    content: "î¶¬"
}

.bxs-file:before {
    content: "î¶­"
}

.bxs-file-archive:before {
    content: "î¶®"
}

.bxs-file-blank:before {
    content: "î¶¯"
}

.bxs-file-css:before {
    content: "î¶°"
}

.bxs-file-doc:before {
    content: "î¶±"
}

.bxs-file-export:before {
    content: "î¶²"
}

.bxs-file-find:before {
    content: "î¶³"
}

.bxs-file-gif:before {
    content: "î¶´"
}

.bxs-file-html:before {
    content: "î¶µ"
}

.bxs-file-image:before {
    content: "î¶¶"
}

.bxs-file-import:before {
    content: "î¶·"
}

.bxs-file-jpg:before {
    content: "î¶¸"
}

.bxs-file-js:before {
    content: "î¶¹"
}

.bxs-file-json:before {
    content: "î¶º"
}

.bxs-file-md:before {
    content: "î¶»"
}

.bxs-file-pdf:before {
    content: "î¶¼"
}

.bxs-file-plus:before {
    content: "î¶½"
}

.bxs-file-png:before {
    content: "î¶¾"
}

.bxs-file-txt:before {
    content: "î¶¿"
}

.bxs-film:before {
    content: "î·€"
}

.bxs-filter-alt:before {
    content: "î·"
}

.bxs-first-aid:before {
    content: "î·‚"
}

.bxs-flag:before {
    content: "î·ƒ"
}

.bxs-flag-alt:before {
    content: "î·„"
}

.bxs-flag-checkered:before {
    content: "î·…"
}

.bxs-flame:before {
    content: "î·†"
}

.bxs-flask:before {
    content: "î·‡"
}

.bxs-florist:before {
    content: "î·ˆ"
}

.bxs-folder:before {
    content: "î·‰"
}

.bxs-folder-minus:before {
    content: "î·Š"
}

.bxs-folder-open:before {
    content: "î·‹"
}

.bxs-folder-plus:before {
    content: "î·Œ"
}

.bxs-food-menu:before {
    content: "î·"
}

.bxs-fridge:before {
    content: "î·Ž"
}

.bxs-game:before {
    content: "î·"
}

.bxs-gas-pump:before {
    content: "î·"
}

.bxs-ghost:before {
    content: "î·‘"
}

.bxs-gift:before {
    content: "î·’"
}

.bxs-graduation:before {
    content: "î·“"
}

.bxs-grid:before {
    content: "î·”"
}

.bxs-grid-alt:before {
    content: "î·•"
}

.bxs-group:before {
    content: "î·–"
}

.bxs-guitar-amp:before {
    content: "î·—"
}

.bxs-hand:before {
    content: "î·˜"
}

.bxs-hand-down:before {
    content: "î·™"
}

.bxs-hand-left:before {
    content: "î·š"
}

.bxs-hand-right:before {
    content: "î·›"
}

.bxs-hand-up:before {
    content: "î·œ"
}

.bxs-happy:before {
    content: "î·"
}

.bxs-happy-alt:before {
    content: "î·ž"
}

.bxs-happy-beaming:before {
    content: "î·Ÿ"
}

.bxs-happy-heart-eyes:before {
    content: "î· "
}

.bxs-hdd:before {
    content: "î·¡"
}

.bxs-heart:before {
    content: "î·¢"
}

.bxs-heart-circle:before {
    content: "î·£"
}

.bxs-heart-square:before {
    content: "î·¤"
}

.bxs-help-circle:before {
    content: "î·¥"
}

.bxs-hide:before {
    content: "î·¦"
}

.bxs-home:before {
    content: "î·§"
}

.bxs-home-circle:before {
    content: "î·¨"
}

.bxs-home-heart:before {
    content: "î·©"
}

.bxs-home-smile:before {
    content: "î·ª"
}

.bxs-hotel:before {
    content: "î·«"
}

.bxs-hourglass:before {
    content: "î·¬"
}

.bxs-hourglass-bottom:before {
    content: "î·­"
}

.bxs-hourglass-top:before {
    content: "î·®"
}

.bxs-id-card:before {
    content: "î·¯"
}

.bxs-image:before {
    content: "î·°"
}

.bxs-image-add:before {
    content: "î·±"
}

.bxs-image-alt:before {
    content: "î·²"
}

.bxs-inbox:before {
    content: "î·³"
}

.bxs-info-circle:before {
    content: "î·´"
}

.bxs-info-square:before {
    content: "î·µ"
}

.bxs-institution:before {
    content: "î·¶"
}

.bxs-joystick:before {
    content: "î··"
}

.bxs-joystick-alt:before {
    content: "î·¸"
}

.bxs-joystick-button:before {
    content: "î·¹"
}

.bxs-key:before {
    content: "î·º"
}

.bxs-keyboard:before {
    content: "î·»"
}

.bxs-label:before {
    content: "î·¼"
}

.bxs-landmark:before {
    content: "î·½"
}

.bxs-landscape:before {
    content: "î·¾"
}

.bxs-laugh:before {
    content: "î·¿"
}

.bxs-layer:before {
    content: "î¸€"
}

.bxs-layer-minus:before {
    content: "î¸"
}

.bxs-layer-plus:before {
    content: "î¸‚"
}

.bxs-layout:before {
    content: "î¸ƒ"
}

.bxs-left-arrow:before {
    content: "î¸„"
}

.bxs-left-arrow-alt:before {
    content: "î¸…"
}

.bxs-left-arrow-circle:before {
    content: "î¸†"
}

.bxs-left-arrow-square:before {
    content: "î¸‡"
}

.bxs-left-down-arrow-circle:before {
    content: "î¸ˆ"
}

.bxs-left-top-arrow-circle:before {
    content: "î¸‰"
}

.bxs-like:before {
    content: "î¸Š"
}

.bxs-location-plus:before {
    content: "î¸‹"
}

.bxs-lock:before {
    content: "î¸Œ"
}

.bxs-lock-alt:before {
    content: "î¸"
}

.bxs-lock-open:before {
    content: "î¸Ž"
}

.bxs-lock-open-alt:before {
    content: "î¸"
}

.bxs-log-in:before {
    content: "î¸"
}

.bxs-log-in-circle:before {
    content: "î¸‘"
}

.bxs-log-out:before {
    content: "î¸’"
}

.bxs-log-out-circle:before {
    content: "î¸“"
}

.bxs-low-vision:before {
    content: "î¸”"
}

.bxs-magic-wand:before {
    content: "î¸•"
}

.bxs-magnet:before {
    content: "î¸–"
}

.bxs-map:before {
    content: "î¸—"
}

.bxs-map-alt:before {
    content: "î¸˜"
}

.bxs-map-pin:before {
    content: "î¸™"
}

.bxs-mask:before {
    content: "î¸š"
}

.bxs-medal:before {
    content: "î¸›"
}

.bxs-megaphone:before {
    content: "î¸œ"
}

.bxs-meh:before {
    content: "î¸"
}

.bxs-meh-alt:before {
    content: "î¸ž"
}

.bxs-meh-blank:before {
    content: "î¸Ÿ"
}

.bxs-memory-card:before {
    content: "î¸ "
}

.bxs-message:before {
    content: "î¸¡"
}

.bxs-message-add:before {
    content: "î¸¢"
}

.bxs-message-alt:before {
    content: "î¸£"
}

.bxs-message-alt-add:before {
    content: "î¸¤"
}

.bxs-message-alt-check:before {
    content: "î¸¥"
}

.bxs-message-alt-detail:before {
    content: "î¸¦"
}

.bxs-message-alt-dots:before {
    content: "î¸§"
}

.bxs-message-alt-edit:before {
    content: "î¸¨"
}

.bxs-message-alt-error:before {
    content: "î¸©"
}

.bxs-message-alt-minus:before {
    content: "î¸ª"
}

.bxs-message-alt-x:before {
    content: "î¸«"
}

.bxs-message-check:before {
    content: "î¸¬"
}

.bxs-message-detail:before {
    content: "î¸­"
}

.bxs-message-dots:before {
    content: "î¸®"
}

.bxs-message-edit:before {
    content: "î¸¯"
}

.bxs-message-error:before {
    content: "î¸°"
}

.bxs-message-minus:before {
    content: "î¸±"
}

.bxs-message-rounded:before {
    content: "î¸²"
}

.bxs-message-rounded-add:before {
    content: "î¸³"
}

.bxs-message-rounded-check:before {
    content: "î¸´"
}

.bxs-message-rounded-detail:before {
    content: "î¸µ"
}

.bxs-message-rounded-dots:before {
    content: "î¸¶"
}

.bxs-message-rounded-edit:before {
    content: "î¸·"
}

.bxs-message-rounded-error:before {
    content: "î¸¸"
}

.bxs-message-rounded-minus:before {
    content: "î¸¹"
}

.bxs-message-rounded-x:before {
    content: "î¸º"
}

.bxs-message-square:before {
    content: "î¸»"
}

.bxs-message-square-add:before {
    content: "î¸¼"
}

.bxs-message-square-check:before {
    content: "î¸½"
}

.bxs-message-square-detail:before {
    content: "î¸¾"
}

.bxs-message-square-dots:before {
    content: "î¸¿"
}

.bxs-message-square-edit:before {
    content: "î¹€"
}

.bxs-message-square-error:before {
    content: "î¹"
}

.bxs-message-square-minus:before {
    content: "î¹‚"
}

.bxs-message-square-x:before {
    content: "î¹ƒ"
}

.bxs-message-x:before {
    content: "î¹„"
}

.bxs-meteor:before {
    content: "î¹…"
}

.bxs-microchip:before {
    content: "î¹†"
}

.bxs-microphone:before {
    content: "î¹‡"
}

.bxs-microphone-alt:before {
    content: "î¹ˆ"
}

.bxs-microphone-off:before {
    content: "î¹‰"
}

.bxs-minus-circle:before {
    content: "î¹Š"
}

.bxs-minus-square:before {
    content: "î¹‹"
}

.bxs-mobile:before {
    content: "î¹Œ"
}

.bxs-mobile-vibration:before {
    content: "î¹"
}

.bxs-moon:before {
    content: "î¹Ž"
}

.bxs-mouse:before {
    content: "î¹"
}

.bxs-mouse-alt:before {
    content: "î¹"
}

.bxs-movie:before {
    content: "î¹‘"
}

.bxs-movie-play:before {
    content: "î¹’"
}

.bxs-music:before {
    content: "î¹“"
}

.bxs-navigation:before {
    content: "î¹”"
}

.bxs-network-chart:before {
    content: "î¹•"
}

.bxs-news:before {
    content: "î¹–"
}

.bxs-no-entry:before {
    content: "î¹—"
}

.bxs-note:before {
    content: "î¹˜"
}

.bxs-notepad:before {
    content: "î¹™"
}

.bxs-notification:before {
    content: "î¹š"
}

.bxs-notification-off:before {
    content: "î¹›"
}

.bxs-offer:before {
    content: "î¹œ"
}

.bxs-package:before {
    content: "î¹"
}

.bxs-paint:before {
    content: "î¹ž"
}

.bxs-paint-roll:before {
    content: "î¹Ÿ"
}

.bxs-palette:before {
    content: "î¹ "
}

.bxs-paper-plane:before {
    content: "î¹¡"
}

.bxs-parking:before {
    content: "î¹¢"
}

.bxs-paste:before {
    content: "î¹£"
}

.bxs-pen:before {
    content: "î¹¤"
}

.bxs-pencil:before {
    content: "î¹¥"
}

.bxs-phone:before {
    content: "î¹¦"
}

.bxs-phone-call:before {
    content: "î¹§"
}

.bxs-phone-incoming:before {
    content: "î¹¨"
}

.bxs-phone-off:before {
    content: "î¹©"
}

.bxs-phone-outgoing:before {
    content: "î¹ª"
}

.bxs-photo-album:before {
    content: "î¹«"
}

.bxs-piano:before {
    content: "î¹¬"
}

.bxs-pie-chart:before {
    content: "î¹­"
}

.bxs-pie-chart-alt:before {
    content: "î¹®"
}

.bxs-pie-chart-alt-2:before {
    content: "î¹¯"
}

.bxs-pin:before {
    content: "î¹°"
}

.bxs-pizza:before {
    content: "î¹±"
}

.bxs-plane:before {
    content: "î¹²"
}

.bxs-plane-alt:before {
    content: "î¹³"
}

.bxs-plane-land:before {
    content: "î¹´"
}

.bxs-planet:before {
    content: "î¹µ"
}

.bxs-plane-take-off:before {
    content: "î¹¶"
}

.bxs-playlist:before {
    content: "î¹·"
}

.bxs-plug:before {
    content: "î¹¸"
}

.bxs-plus-circle:before {
    content: "î¹¹"
}

.bxs-plus-square:before {
    content: "î¹º"
}

.bxs-pointer:before {
    content: "î¹»"
}

.bxs-polygon:before {
    content: "î¹¼"
}

.bxs-printer:before {
    content: "î¹½"
}

.bxs-purchase-tag:before {
    content: "î¹¾"
}

.bxs-purchase-tag-alt:before {
    content: "î¹¿"
}

.bxs-pyramid:before {
    content: "îº€"
}

.bxs-quote-alt-left:before {
    content: "îº"
}

.bxs-quote-alt-right:before {
    content: "îº‚"
}

.bxs-quote-left:before {
    content: "îºƒ"
}

.bxs-quote-right:before {
    content: "îº„"
}

.bxs-quote-single-left:before {
    content: "îº…"
}

.bxs-quote-single-right:before {
    content: "îº†"
}

.bxs-radiation:before {
    content: "îº‡"
}

.bxs-radio:before {
    content: "îºˆ"
}

.bxs-receipt:before {
    content: "îº‰"
}

.bxs-rectangle:before {
    content: "îºŠ"
}

.bxs-registered:before {
    content: "îº‹"
}

.bxs-rename:before {
    content: "îºŒ"
}

.bxs-report:before {
    content: "îº"
}

.bxs-rewind-circle:before {
    content: "îºŽ"
}

.bxs-right-arrow:before {
    content: "îº"
}

.bxs-right-arrow-alt:before {
    content: "îº"
}

.bxs-right-arrow-circle:before {
    content: "îº‘"
}

.bxs-right-arrow-square:before {
    content: "îº’"
}

.bxs-right-down-arrow-circle:before {
    content: "îº“"
}

.bxs-right-top-arrow-circle:before {
    content: "îº”"
}

.bxs-rocket:before {
    content: "îº•"
}

.bxs-ruler:before {
    content: "îº–"
}

.bxs-sad:before {
    content: "îº—"
}

.bxs-save:before {
    content: "îº˜"
}

.bxs-school:before {
    content: "îº™"
}

.bxs-search:before {
    content: "îºš"
}

.bxs-search-alt-2:before {
    content: "îº›"
}

.bxs-select-multiple:before {
    content: "îºœ"
}

.bxs-send:before {
    content: "îº"
}

.bxs-server:before {
    content: "îºž"
}

.bxs-shapes:before {
    content: "îºŸ"
}

.bxs-share:before {
    content: "îº "
}

.bxs-share-alt:before {
    content: "îº¡"
}

.bxs-shield:before {
    content: "îº¢"
}

.bxs-shield-alt-2:before {
    content: "îº£"
}

.bxs-shield-x:before {
    content: "îº¤"
}

.bxs-ship:before {
    content: "îº¥"
}

.bxs-shocked:before {
    content: "îº¦"
}

.bxs-shopping-bag:before {
    content: "îº§"
}

.bxs-shopping-bag-alt:before {
    content: "îº¨"
}

.bxs-shopping-bags:before {
    content: "îº©"
}

.bxs-show:before {
    content: "îºª"
}

.bxs-skip-next-circle:before {
    content: "îº«"
}

.bxs-skip-previous-circle:before {
    content: "îº¬"
}

.bxs-skull:before {
    content: "îº­"
}

.bxs-sleepy:before {
    content: "îº®"
}

.bxs-slideshow:before {
    content: "îº¯"
}

.bxs-smile:before {
    content: "îº°"
}

.bxs-sort-alt:before {
    content: "îº±"
}

.bxs-spa:before {
    content: "îº²"
}

.bxs-speaker:before {
    content: "îº³"
}

.bxs-spray-can:before {
    content: "îº´"
}

.bxs-spreadsheet:before {
    content: "îºµ"
}

.bxs-square:before {
    content: "îº¶"
}

.bxs-square-rounded:before {
    content: "îº·"
}

.bxs-star:before {
    content: "îº¸"
}

.bxs-star-half:before {
    content: "îº¹"
}

.bxs-sticker:before {
    content: "îºº"
}

.bxs-stopwatch:before {
    content: "îº»"
}

.bxs-store:before {
    content: "îº¼"
}

.bxs-store-alt:before {
    content: "îº½"
}

.bxs-sun:before {
    content: "îº¾"
}

.bxs-tachometer:before {
    content: "îº¿"
}

.bxs-tag:before {
    content: "î»€"
}

.bxs-tag-alt:before {
    content: "î»"
}

.bxs-tag-x:before {
    content: "î»‚"
}

.bxs-taxi:before {
    content: "î»ƒ"
}

.bxs-tennis-ball:before {
    content: "î»„"
}

.bxs-terminal:before {
    content: "î»…"
}

.bxs-thermometer:before {
    content: "î»†"
}

.bxs-time:before {
    content: "î»‡"
}

.bxs-time-five:before {
    content: "î»ˆ"
}

.bxs-timer:before {
    content: "î»‰"
}

.bxs-tired:before {
    content: "î»Š"
}

.bxs-toggle-left:before {
    content: "î»‹"
}

.bxs-toggle-right:before {
    content: "î»Œ"
}

.bxs-tone:before {
    content: "î»"
}

.bxs-torch:before {
    content: "î»Ž"
}

.bxs-to-top:before {
    content: "î»"
}

.bxs-traffic:before {
    content: "î»"
}

.bxs-traffic-barrier:before {
    content: "î»‘"
}

.bxs-traffic-cone:before {
    content: "î»’"
}

.bxs-train:before {
    content: "î»“"
}

.bxs-trash:before {
    content: "î»”"
}

.bxs-trash-alt:before {
    content: "î»•"
}

.bxs-tree:before {
    content: "î»–"
}

.bxs-trophy:before {
    content: "î»—"
}

.bxs-truck:before {
    content: "î»˜"
}

.bxs-t-shirt:before {
    content: "î»™"
}

.bxs-tv:before {
    content: "î»š"
}

.bxs-up-arrow:before {
    content: "î»›"
}

.bxs-up-arrow-alt:before {
    content: "î»œ"
}

.bxs-up-arrow-circle:before {
    content: "î»"
}

.bxs-up-arrow-square:before {
    content: "î»ž"
}

.bxs-upside-down:before {
    content: "î»Ÿ"
}

.bxs-upvote:before {
    content: "î» "
}

.bxs-user:before {
    content: "î»¡"
}

.bxs-user-account:before {
    content: "î»¢"
}

.bxs-user-badge:before {
    content: "î»£"
}

.bxs-user-check:before {
    content: "î»¤"
}

.bxs-user-circle:before {
    content: "î»¥"
}

.bxs-user-detail:before {
    content: "î»¦"
}

.bxs-user-minus:before {
    content: "î»§"
}

.bxs-user-pin:before {
    content: "î»¨"
}

.bxs-user-plus:before {
    content: "î»©"
}

.bxs-user-rectangle:before {
    content: "î»ª"
}

.bxs-user-voice:before {
    content: "î»«"
}

.bxs-user-x:before {
    content: "î»¬"
}

.bxs-vector:before {
    content: "î»­"
}

.bxs-vial:before {
    content: "î»®"
}

.bxs-video:before {
    content: "î»¯"
}

.bxs-video-off:before {
    content: "î»°"
}

.bxs-video-plus:before {
    content: "î»±"
}

.bxs-video-recording:before {
    content: "î»²"
}

.bxs-videos:before {
    content: "î»³"
}

.bxs-virus:before {
    content: "î»´"
}

.bxs-virus-block:before {
    content: "î»µ"
}

.bxs-volume:before {
    content: "î»¶"
}

.bxs-volume-full:before {
    content: "î»·"
}

.bxs-volume-low:before {
    content: "î»¸"
}

.bxs-volume-mute:before {
    content: "î»¹"
}

.bxs-wallet:before {
    content: "î»º"
}

.bxs-wallet-alt:before {
    content: "î»»"
}

.bxs-washer:before {
    content: "î»¼"
}

.bxs-watch:before {
    content: "î»½"
}

.bxs-watch-alt:before {
    content: "î»¾"
}

.bxs-webcam:before {
    content: "î»¿"
}

.bxs-widget:before {
    content: "î¼€"
}

.bxs-window-alt:before {
    content: "î¼"
}

.bxs-wine:before {
    content: "î¼‚"
}

.bxs-wink-smile:before {
    content: "î¼ƒ"
}

.bxs-wink-tongue:before {
    content: "î¼„"
}

.bxs-wrench:before {
    content: "î¼…"
}

.bxs-x-circle:before {
    content: "î¼†"
}

.bxs-x-square:before {
    content: "î¼‡"
}

.bxs-yin-yang:before {
    content: "î¼ˆ"
}

.bxs-zap:before {
    content: "î¼‰"
}

.bxs-zoom-in:before {
    content: "î¼Š"
}

.bxs-zoom-out:before {
    content: "î¼‹"
}

.bx {
    vertical-align: middle;
    font-size: 1.15rem;
    line-height: 1
}

@font-face {
    font-family: "boxicons";
    font-weight: normal;
    font-style: normal;
}
