├── lib └── bootstrap │ └── css │ └── bootstrap.min.css ├── README.md ├── assets ├── Uo.png ├── vendor │ ├── glightbox │ │ └── css │ │ │ └── glightbox.min.css │ ├── swiper │ │ └── swiper-bundle.min.css │ ├── aos │ │ └── aos.css │ ├── boxicons │ │ └── css │ │ │ └── boxicons.min.css │ └── bootstrap-icon │ │ └── bootstrap-icons.css └── vanilla_tilt.js ├── replit.nix ├── js └── main.js ├── index.html └── style.css /lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Leave A Star 2 | 3 | Discord: https://diacord.gg/uoaio or Uo#0331 4 | -------------------------------------------------------------------------------- /assets/Uo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uo1428/Portfolio-Website/HEAD/assets/Uo.png -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- 1 | { pkgs }: { 2 | deps = [ 3 | pkgs.nodePackages.vscode-langservers-extracted 4 | pkgs.nodePackages.typescript-language-server 5 | ]; 6 | } -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | var Preloader = function () { 3 | $("html").addClass("preload"); 4 | $(window).on("load", function () { 5 | $("#loader").fadeOut("slow", function () { 6 | $("#preloader").delay(300).fadeOut("slow"); 7 | }); 8 | $("html").removeClass("preload"); 9 | }); 10 | }; 11 | var Animation = function () { 12 | var SEPARATION = 50, 13 | AMOUNTX = 60, 14 | AMOUNTY = 60; 15 | var camera, scene, renderer; 16 | var particles, 17 | particle, 18 | count = 0; 19 | var windowHalfX = window.innerWidth / 4; 20 | var windowHalfY = window.innerHeight / 4; 21 | var mouseX = -windowHalfX, 22 | mouseY = -windowHalfY; 23 | 24 | function init() { 25 | camera = new THREE.PerspectiveCamera( 26 | 65, 27 | window.innerWidth / window.innerHeight, 28 | 1, 29 | 1e5 30 | ); 31 | camera.position.z = 1000; 32 | 33 | scene = new THREE.Scene(); 34 | 35 | particles = new Array(); 36 | var PI2 = Math.PI * 2; 37 | var material = new THREE.SpriteCanvasMaterial({ 38 | color: 0xff0000, 39 | program: function (context) { 40 | context.beginPath(); 41 | context.arc(0, 0, 0.15, 0, PI2, true); 42 | context.fill(); 43 | }, 44 | }); 45 | var i = 0; 46 | for (var ix = 0; ix < AMOUNTX; ix++) { 47 | for (var iy = 0; iy < AMOUNTY; iy++) { 48 | particle = particles[i++] = new THREE.Sprite(material); 49 | particle.position.x = ix * SEPARATION - (AMOUNTX * SEPARATION) / 2; 50 | particle.position.z = iy * SEPARATION - (AMOUNTY * SEPARATION) / 2; 51 | scene.add(particle); 52 | } 53 | } 54 | renderer = new THREE.CanvasRenderer(); 55 | renderer.setPixelRatio(window.devicePixelRatio); 56 | renderer.setSize(window.innerWidth, window.innerHeight); 57 | 58 | $("#wave").prepend(renderer.domElement); 59 | $(document) 60 | .on("mousemove", function (event) { 61 | mouseX = event.clientX * 1.5 - windowHalfX; 62 | }) 63 | .trigger("mousemouve"); 64 | $(window).on("resize", function () { 65 | windowHalfX = window.innerWidth / 2; 66 | windowHalfY = window.innerHeight / 2; 67 | camera.aspect = window.innerWidth / window.innerHeight; 68 | camera.updateProjectionMatrix(); 69 | renderer.setSize(window.innerWidth, window.innerHeight); 70 | }); 71 | render(); 72 | } 73 | 74 | function render() { 75 | camera.position.x += (mouseX - camera.position.x) * 0.05; 76 | camera.position.y += (-mouseY - camera.position.y) * 0.03; 77 | camera.position.z = 750; 78 | camera.lookAt(scene.position); 79 | 80 | var i = 0; 81 | for (var ix = 0; ix < AMOUNTX; ix++) { 82 | for (var iy = 0; iy < AMOUNTY; iy++) { 83 | particle = particles[i++]; 84 | particle.position.y = 85 | Math.sin((ix + count) * 0.25) * 50 + 86 | Math.sin((iy + count) * 0.5) * 50; 87 | particle.scale.x = particle.scale.y = 88 | (Math.sin((ix + count) * 0.25) + 1) * 4 + 89 | (Math.sin((iy + count) * 0.5) + 1) * 4; 90 | } 91 | } 92 | renderer.render(scene, camera); 93 | count += 0.05; 94 | requestAnimationFrame(render); 95 | } 96 | return init(); 97 | }; 98 | var SmoothScroll = function () { 99 | $(".smoothscroll").on("click", function (e) { 100 | var $target = $(this.hash); 101 | e.preventDefault(); 102 | e.stopPropagation(); 103 | $("html, body").stop().animate( 104 | { 105 | scrollTop: $target.offset().top, 106 | }, 107 | 800, 108 | "swing" 109 | ); 110 | }); 111 | }; 112 | var AOSStart = function () { 113 | AOS.init({ 114 | offset: 100, 115 | duration: 500, 116 | easing: "ease-in-sine", 117 | delay: 250, 118 | once: true, 119 | disable: "mobile", 120 | }); 121 | }; 122 | 123 | (function () { 124 | Preloader(); 125 | Animation(); 126 | SmoothScroll(); 127 | AOSStart(); 128 | })(); 129 | })(jQuery); 130 | function play() { 131 | audio.play(); 132 | audio.loop = true; 133 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | Uo 28 | 33 | 34 | 35 | 36 | 40 | 41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 | 51 |
52 |

Uo

53 |
54 |
I'm Muslim & Like Coding!
55 |
56 |
57 |

Hey I'm Uo 👋 58 |
Basic Node.JS Programmer. 59 |
60 |
Currently focusing in about 1-3 projects. 61 |
So you will find me busy sometimes. 62 |
63 |

64 |
65 | 66 | 72 | 73 |
74 | 75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | src: url(assets/ProductSans.ttf); 3 | font-family: ProductSans; 4 | } 5 | /* social */ 6 | * { 7 | margin: 0; 8 | padding: 0; 9 | box-sizing: border-box; 10 | font-family: ProductSans; 11 | } 12 | html { 13 | font-size: 62.5%; 14 | } 15 | 16 | main { 17 | width: 100vw; 18 | display: grid; 19 | place-items: center; 20 | } 21 | 22 | main .mainCard { 23 | width: 40rem; 24 | height: 44rem; 25 | border-radius: 50px; 26 | background: #e0e0e0; 27 | box-shadow: 20px 20px 60px #000000, -20px -20px 60px #000000; 28 | 29 | } 30 | 31 | main .mainCard .header { 32 | width: 100%; 33 | height: 62%; 34 | display: flex; 35 | justify-content: center; 36 | align-items: center; 37 | flex-direction: column; 38 | margin-top: 8rem; 39 | } 40 | .logo { 41 | margin: 0 0 10px 0; 42 | } 43 | 44 | main .mainCard .header .logo { 45 | width: 15rem; 46 | height: 15rem; 47 | border-radius: 50%; 48 | /* background: #f3ce56; */ 49 | /* box-shadow: 20px 20px 60px #ffffff, -20px -20px 60px #ffffff; */ 50 | display: grid; 51 | place-items: center; 52 | transform-style: preserve-3d; 53 | } 54 | 55 | main .mainCard .header .logo img { 56 | border-radius: 50%; 57 | background-size: 100% 100%; 58 | width: 14rem; 59 | height: 14rem; 60 | transform: perspective(1000px); 61 | transform: translateZ(20px); 62 | } 63 | 64 | main .mainCard .header .name { 65 | font-size: 2rem; 66 | /* margin-top: 1.3rem; */ 67 | } 68 | 69 | main .mainCard .header .subtitle { 70 | font-size: 1.8rem; 71 | margin-top: 0.2rem; 72 | z-index: 99; 73 | } 74 | 75 | main .mainCard .header .social { 76 | margin-top: 0.2rem; 77 | } 78 | 79 | main .mainCard .header .social a { 80 | color: black; 81 | background: #e0e0e0; 82 | box-shadow: 20px 20px 60px #9c9c9c, -20px -20px 60px #bebebe; 83 | font-size: 3rem; 84 | padding: 0.6rem 1rem; 85 | border-radius: 1rem; 86 | margin: 0.5rem; 87 | transition: ease 0.2s; 88 | } 89 | 90 | main .mainCard .header .lower .social a:hover { 91 | transform: 0.5s; 92 | background-color: black; 93 | color: #e0e0e0; 94 | } 95 | 96 | 97 | main .mainCard .header .lower { 98 | width: 80%; 99 | display: flex; 100 | flex-direction: column; 101 | align-items: center; 102 | justify-content: center; 103 | border-radius: 50px; 104 | background: #ffffff; 105 | box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff; 106 | padding: 0.5rem 1.5rem; 107 | margin-top: 2rem; 108 | } 109 | 110 | main .mainCard .header .lower .text1 { 111 | margin-top: 2.4rem; 112 | text-align: center; 113 | font-size: 1.5rem; 114 | /* padding-left: 2.3rem; */ 115 | /* padding-right: 2.3rem; */ 116 | z-index: 100; 117 | } 118 | 119 | main .mainCard .header .lower .buttons { 120 | display: flex; 121 | flex-direction: column; 122 | text-align: center; 123 | margin-top: 2rem; 124 | width: 50%; 125 | margin-bottom: 1.5rem; 126 | } 127 | 128 | main .mainCard .header .lower .buttons a { 129 | color: black; 130 | text-decoration: none; 131 | font-size: 2rem; 132 | background-color: transparent; 133 | border: 2px solid #000; 134 | padding: 0.8rem 2rem; 135 | border-radius: 2rem; 136 | transition: ease 0.2s; 137 | } 138 | 139 | main .mainCard .header .buttons a:nth-child(2) { 140 | margin-top: 1rem; 141 | } 142 | 143 | main .mainCard .header .buttons a:hover { 144 | background-color: black; 145 | color: #e0e0e0; 146 | } 147 | 148 | /* RESPONSIVE CODE */ 149 | 150 | @media screen and (max-width: 520px) { 151 | main .mainCard { 152 | width: 35rem; 153 | height: 55rem; 154 | } 155 | main .mainCard .header .logo { 156 | width: 14rem; 157 | height: 14rem; 158 | } 159 | main .mainCard .header .logo img { 160 | width: 11rem; 161 | height: 11rem; 162 | } 163 | main .mainCard .header .name { 164 | font-size: 1.7rem; 165 | margin-top: 1.5rem; 166 | } 167 | 168 | main .mainCard .header .subtitle { 169 | font-size: 1.7rem; 170 | margin-top: 0.8rem; 171 | } 172 | main .mainCard .header .social a { 173 | font-size: 2.8rem; 174 | } 175 | main .mainCard .header .text1 { 176 | margin-top: 2.4rem; 177 | text-align: center; 178 | font-size: 1.5rem; 179 | padding-left: 2.3rem; 180 | padding-right: 2.3rem; 181 | } 182 | main .mainCard .header .buttons a { 183 | font-size: 2rem; 184 | } 185 | } 186 | 187 | @media screen and (max-width: 404px) { 188 | main .mainCard { 189 | width: 32rem; 190 | } 191 | main .mainCard .header .logo { 192 | width: 13rem; 193 | height: 13rem; 194 | } 195 | main .mainCard .header .logo img { 196 | width: 10rem; 197 | height: 10rem; 198 | } 199 | main .mainCard .header .name { 200 | font-size: 1.6rem; 201 | } 202 | main .mainCard .header .social a { 203 | font-size: 2.5rem; 204 | } 205 | main .mainCard .header .lower .text1 { 206 | margin-top: 2.4rem; 207 | font-size: 1.45rem; 208 | } 209 | main .mainCard .header .lower .buttons a { 210 | font-size: 1.9rem; 211 | } 212 | } 213 | 214 | /* @media screen and (max-width: 360px) { 215 | main .mainCard { 216 | width: 29rem; 217 | height: 55rem; 218 | } 219 | main .mainCard .header .logo { 220 | width: 14rem; 221 | height: 14rem; 222 | } 223 | main .mainCard .header .logo img { 224 | width: 11rem; 225 | height: 11rem; 226 | } 227 | main .mainCard .header .name { 228 | font-size: 1.5rem; 229 | margin-top: 1.3rem; 230 | } 231 | main .mainCard .header .subtitle { 232 | font-size: 1.6rem; 233 | margin-top: 0.8rem; 234 | } 235 | main .mainCard .header .social a { 236 | font-size: 2.8rem; 237 | } 238 | main .mainCard .header .text1 { 239 | margin-top: 2.3rem; 240 | text-align: center; 241 | font-size: 1.5rem; 242 | padding-left: 2.3rem; 243 | padding-right: 2.3rem; 244 | } 245 | main .mainCard .header .buttons a { 246 | font-size: 1.9rem; 247 | } 248 | } 249 | @media screen and (max-width: 348px) { 250 | main .mainCard { 251 | width: 28rem; 252 | height: 52rem; 253 | } 254 | main .mainCard .header .logo { 255 | width: 13rem; 256 | height: 13rem; 257 | } 258 | main .mainCard .header .logo img { 259 | width: 10rem; 260 | height: 10rem; 261 | } 262 | main .mainCard .header .name { 263 | font-size: 1.35rem; 264 | margin-top: 1.3rem; 265 | } 266 | main .mainCard .header .subtitle { 267 | font-size: 1.6rem; 268 | margin-top: 0.8rem; 269 | } 270 | main .mainCard .header .social a { 271 | font-size: 2.7rem; 272 | } 273 | main .mainCard .header .text1 { 274 | margin-top: 2.3rem; 275 | text-align: center; 276 | font-size: 1.45rem; 277 | padding-left: 2.3rem; 278 | padding-right: 2.3rem; 279 | } 280 | main .mainCard .header .buttons a { 281 | font-size: 1.7rem; 282 | } 283 | } 284 | @media screen and (max-width: 320px) { 285 | main .mainCard { 286 | width: 27rem; 287 | height: 51rem; 288 | } 289 | } */ 290 | 291 | .s-home { 292 | width: 100%; 293 | 294 | background-color: transparent; 295 | position: relative; 296 | display: table; 297 | } 298 | 299 | .s-home .shadow-overlay { 300 | position: absolute; 301 | top: 0; 302 | left: 0; 303 | width: 100%; 304 | 305 | overflow: hidden; 306 | } 307 | 308 | .s-home::before { 309 | display: block; 310 | content: ""; 311 | position: absolute; 312 | top: 0; 313 | left: 0; 314 | width: 100%; 315 | 316 | opacity: 0.65; 317 | background-color: #000000; 318 | } 319 | 320 | .home-content { 321 | display: table-cell; 322 | width: 100%; 323 | 324 | vertical-align: middle; 325 | padding-bottom: 10rem; 326 | overflow: hidden; 327 | position: relative; 328 | } 329 | 330 | 331 | .home-content__main { 332 | padding-top: 7rem; 333 | position: relative; 334 | } 335 | 336 | .home-scroll { 337 | 338 | position: absolute; 339 | right: 110px; 340 | bottom: 6.6rem; 341 | } 342 | 343 | .home-scroll__text { 344 | display: inline-block; 345 | font-family: "metropolis-semibold", sans-serif; 346 | font-size: 11px; 347 | line-height: 4.8rem; 348 | text-transform: uppercase; 349 | letter-spacing: 0.3rem; 350 | color: #ffffff; 351 | border-bottom: 1px solid transparent; 352 | transition: all 0.3s ease-in-out; 353 | position: relative; 354 | right: 7.5rem; 355 | } 356 | 357 | .home-scroll__icon { 358 | display: block; 359 | height: 4.8rem; 360 | width: 4.8rem; 361 | background-color: #ffffff; 362 | background-image: url(../images/icons/icon-arrow-down.svg); 363 | background-position: center center; 364 | background-repeat: no-repeat; 365 | background-size: 12px 18px; 366 | border-radius: 50%; 367 | transition: all 0.3s ease-in-out; 368 | position: absolute; 369 | top: 0; 370 | right: 0; 371 | } 372 | 373 | .home-scroll:hover .home-scroll__text { 374 | border-bottom: 1px solid #ffffff; 375 | } 376 | 377 | html.preload .home-content__main { 378 | opacity: 0; 379 | } 380 | 381 | html.loaded .home-content__main { 382 | animation-duration: 2s; 383 | animation-name: fadeIn; 384 | } 385 | 386 | @keyframes fadeIn { 387 | from { 388 | opacity: 0; 389 | transform: translate3d(0, 150%, 0); 390 | } 391 | 392 | to { 393 | opacity: 1; 394 | transform: translate3d(0, 0, 0); 395 | } 396 | } 397 | 398 | @keyframes fadeOut { 399 | from { 400 | opacity: 1; 401 | } 402 | 403 | to { 404 | opacity: 0; 405 | transform: translate3d(0, -150%, 0); 406 | } 407 | } 408 | 409 | 410 | #footer { 411 | padding: 10px; 412 | color: #fff; 413 | font-size: 14px; 414 | background: #000000; 415 | } 416 | 417 | 418 | #footer .social-links a { 419 | font-size: 18px; 420 | display: inline-block; 421 | background: #2b2b2b; 422 | color: #fff; 423 | line-height: 1; 424 | padding: 8px 0; 425 | margin-right: 4px; 426 | border-radius: 4px; 427 | text-align: center; 428 | width: 36px; 429 | height: 36px; 430 | transition: 0.3s; 431 | } 432 | 433 | #footer .social-links a:hover { 434 | background: #fcfbfb; 435 | color: #fff; 436 | text-decoration: none; 437 | } 438 | -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.min.css: -------------------------------------------------------------------------------- 1 | .glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:15px;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}} -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Swiper 6.5.9 3 | * Most modern mobile touch slider and framework with hardware accelerated transitions 4 | * https://swiperjs.com 5 | * 6 | * Copyright 2014-2021 Vladimir Kharlampidi 7 | * 8 | * Released under the MIT License 9 | * 10 | * Released on: April 30, 2021 11 | */ 12 | 13 | @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden} 14 | /* fa-discord */ -------------------------------------------------------------------------------- /assets/vanilla_tilt.js: -------------------------------------------------------------------------------- 1 | var VanillaTilt = (function () { 2 | 'use strict'; 3 | 4 | /** 5 | * Created by Sergiu ?andor (micku7zu) on 1/27/2017. 6 | * Original idea: https://github.com/gijsroge/tilt.js 7 | * MIT License. 8 | * Version 1.7.0 9 | */ 10 | 11 | class VanillaTilt { 12 | constructor(element, settings = {}) { 13 | if (!(element instanceof Node)) { 14 | throw ("Can't initialize VanillaTilt because " + element + " is not a Node."); 15 | } 16 | 17 | this.width = null; 18 | this.height = null; 19 | this.clientWidth = null; 20 | this.clientHeight = null; 21 | this.left = null; 22 | this.top = null; 23 | 24 | // for Gyroscope sampling 25 | this.gammazero = null; 26 | this.betazero = null; 27 | this.lastgammazero = null; 28 | this.lastbetazero = null; 29 | 30 | this.transitionTimeout = null; 31 | this.updateCall = null; 32 | this.event = null; 33 | 34 | this.updateBind = this.update.bind(this); 35 | this.resetBind = this.reset.bind(this); 36 | 37 | this.element = element; 38 | this.settings = this.extendSettings(settings); 39 | 40 | this.reverse = this.settings.reverse ? -1 : 1; 41 | this.glare = VanillaTilt.isSettingTrue(this.settings.glare); 42 | this.glarePrerender = VanillaTilt.isSettingTrue(this.settings["glare-prerender"]); 43 | this.fullPageListening = VanillaTilt.isSettingTrue(this.settings["full-page-listening"]); 44 | this.gyroscope = VanillaTilt.isSettingTrue(this.settings.gyroscope); 45 | this.gyroscopeSamples = this.settings.gyroscopeSamples; 46 | 47 | this.elementListener = this.getElementListener(); 48 | 49 | if (this.glare) { 50 | this.prepareGlare(); 51 | } 52 | 53 | if (this.fullPageListening) { 54 | this.updateClientSize(); 55 | } 56 | 57 | this.addEventListeners(); 58 | this.updateInitialPosition(); 59 | } 60 | 61 | static isSettingTrue(setting) { 62 | return setting === "" || setting === true || setting === 1; 63 | } 64 | 65 | /** 66 | * Method returns element what will be listen mouse events 67 | * @return {Node} 68 | */ 69 | getElementListener() { 70 | if (this.fullPageListening) { 71 | return window.document; 72 | } 73 | 74 | if (typeof this.settings["mouse-event-element"] === "string") { 75 | const mouseEventElement = document.querySelector(this.settings["mouse-event-element"]); 76 | 77 | if (mouseEventElement) { 78 | return mouseEventElement; 79 | } 80 | } 81 | 82 | if (this.settings["mouse-event-element"] instanceof Node) { 83 | return this.settings["mouse-event-element"]; 84 | } 85 | 86 | return this.element; 87 | } 88 | 89 | /** 90 | * Method set listen methods for this.elementListener 91 | * @return {Node} 92 | */ 93 | addEventListeners() { 94 | this.onMouseEnterBind = this.onMouseEnter.bind(this); 95 | this.onMouseMoveBind = this.onMouseMove.bind(this); 96 | this.onMouseLeaveBind = this.onMouseLeave.bind(this); 97 | this.onWindowResizeBind = this.onWindowResize.bind(this); 98 | this.onDeviceOrientationBind = this.onDeviceOrientation.bind(this); 99 | 100 | this.elementListener.addEventListener("mouseenter", this.onMouseEnterBind); 101 | this.elementListener.addEventListener("mouseleave", this.onMouseLeaveBind); 102 | this.elementListener.addEventListener("mousemove", this.onMouseMoveBind); 103 | 104 | if (this.glare || this.fullPageListening) { 105 | window.addEventListener("resize", this.onWindowResizeBind); 106 | } 107 | 108 | if (this.gyroscope) { 109 | window.addEventListener("deviceorientation", this.onDeviceOrientationBind); 110 | } 111 | } 112 | 113 | /** 114 | * Method remove event listeners from current this.elementListener 115 | */ 116 | removeEventListeners() { 117 | this.elementListener.removeEventListener("mouseenter", this.onMouseEnterBind); 118 | this.elementListener.removeEventListener("mouseleave", this.onMouseLeaveBind); 119 | this.elementListener.removeEventListener("mousemove", this.onMouseMoveBind); 120 | 121 | if (this.gyroscope) { 122 | window.removeEventListener("deviceorientation", this.onDeviceOrientationBind); 123 | } 124 | 125 | if (this.glare || this.fullPageListening) { 126 | window.removeEventListener("resize", this.onWindowResizeBind); 127 | } 128 | } 129 | 130 | destroy() { 131 | clearTimeout(this.transitionTimeout); 132 | if (this.updateCall !== null) { 133 | cancelAnimationFrame(this.updateCall); 134 | } 135 | 136 | this.reset(); 137 | 138 | this.removeEventListeners(); 139 | this.element.vanillaTilt = null; 140 | delete this.element.vanillaTilt; 141 | 142 | this.element = null; 143 | } 144 | 145 | onDeviceOrientation(event) { 146 | if (event.gamma === null || event.beta === null) { 147 | return; 148 | } 149 | 150 | this.updateElementPosition(); 151 | 152 | if (this.gyroscopeSamples > 0) { 153 | this.lastgammazero = this.gammazero; 154 | this.lastbetazero = this.betazero; 155 | 156 | if (this.gammazero === null) { 157 | this.gammazero = event.gamma; 158 | this.betazero = event.beta; 159 | } else { 160 | this.gammazero = (event.gamma + this.lastgammazero) / 2; 161 | this.betazero = (event.beta + this.lastbetazero) / 2; 162 | } 163 | 164 | this.gyroscopeSamples -= 1; 165 | } 166 | 167 | const totalAngleX = this.settings.gyroscopeMaxAngleX - this.settings.gyroscopeMinAngleX; 168 | const totalAngleY = this.settings.gyroscopeMaxAngleY - this.settings.gyroscopeMinAngleY; 169 | 170 | const degreesPerPixelX = totalAngleX / this.width; 171 | const degreesPerPixelY = totalAngleY / this.height; 172 | 173 | const angleX = event.gamma - (this.settings.gyroscopeMinAngleX + this.gammazero); 174 | const angleY = event.beta - (this.settings.gyroscopeMinAngleY + this.betazero); 175 | 176 | const posX = angleX / degreesPerPixelX; 177 | const posY = angleY / degreesPerPixelY; 178 | 179 | if (this.updateCall !== null) { 180 | cancelAnimationFrame(this.updateCall); 181 | } 182 | 183 | this.event = { 184 | clientX: posX + this.left, 185 | clientY: posY + this.top, 186 | }; 187 | 188 | this.updateCall = requestAnimationFrame(this.updateBind); 189 | } 190 | 191 | onMouseEnter() { 192 | this.updateElementPosition(); 193 | this.element.style.willChange = "transform"; 194 | this.setTransition(); 195 | } 196 | 197 | onMouseMove(event) { 198 | if (this.updateCall !== null) { 199 | cancelAnimationFrame(this.updateCall); 200 | } 201 | 202 | this.event = event; 203 | this.updateCall = requestAnimationFrame(this.updateBind); 204 | } 205 | 206 | onMouseLeave() { 207 | this.setTransition(); 208 | 209 | if (this.settings.reset) { 210 | requestAnimationFrame(this.resetBind); 211 | } 212 | } 213 | 214 | reset() { 215 | this.event = { 216 | clientX: this.left + this.width / 2, 217 | clientY: this.top + this.height / 2 218 | }; 219 | 220 | if (this.element && this.element.style) { 221 | this.element.style.transform = `perspective(${this.settings.perspective}px) ` + 222 | `rotateX(0deg) ` + 223 | `rotateY(0deg) ` + 224 | `scale3d(1, 1, 1)`; 225 | } 226 | 227 | this.resetGlare(); 228 | } 229 | 230 | resetGlare() { 231 | if (this.glare) { 232 | this.glareElement.style.transform = "rotate(180deg) translate(-50%, -50%)"; 233 | this.glareElement.style.opacity = "0"; 234 | } 235 | } 236 | 237 | updateInitialPosition() { 238 | if (this.settings.startX === 0 && this.settings.startY === 0) { 239 | return; 240 | } 241 | 242 | this.onMouseEnter(); 243 | 244 | if (this.fullPageListening) { 245 | this.event = { 246 | clientX: (this.settings.startX + this.settings.max) / (2 * this.settings.max) * this.clientWidth, 247 | clientY: (this.settings.startY + this.settings.max) / (2 * this.settings.max) * this.clientHeight 248 | }; 249 | } else { 250 | this.event = { 251 | clientX: this.left + ((this.settings.startX + this.settings.max) / (2 * this.settings.max) * this.width), 252 | clientY: this.top + ((this.settings.startY + this.settings.max) / (2 * this.settings.max) * this.height) 253 | }; 254 | } 255 | 256 | 257 | let backupScale = this.settings.scale; 258 | this.settings.scale = 1; 259 | this.update(); 260 | this.settings.scale = backupScale; 261 | this.resetGlare(); 262 | } 263 | 264 | getValues() { 265 | let x, y; 266 | 267 | if (this.fullPageListening) { 268 | x = this.event.clientX / this.clientWidth; 269 | y = this.event.clientY / this.clientHeight; 270 | } else { 271 | x = (this.event.clientX - this.left) / this.width; 272 | y = (this.event.clientY - this.top) / this.height; 273 | } 274 | 275 | x = Math.min(Math.max(x, 0), 1); 276 | y = Math.min(Math.max(y, 0), 1); 277 | 278 | let tiltX = (this.reverse * (this.settings.max - x * this.settings.max * 2)).toFixed(2); 279 | let tiltY = (this.reverse * (y * this.settings.max * 2 - this.settings.max)).toFixed(2); 280 | let angle = Math.atan2(this.event.clientX - (this.left + this.width / 2), -(this.event.clientY - (this.top + this.height / 2))) * (180 / Math.PI); 281 | 282 | return { 283 | tiltX: tiltX, 284 | tiltY: tiltY, 285 | percentageX: x * 100, 286 | percentageY: y * 100, 287 | angle: angle 288 | }; 289 | } 290 | 291 | updateElementPosition() { 292 | let rect = this.element.getBoundingClientRect(); 293 | 294 | this.width = this.element.offsetWidth; 295 | this.height = this.element.offsetHeight; 296 | this.left = rect.left; 297 | this.top = rect.top; 298 | } 299 | 300 | update() { 301 | let values = this.getValues(); 302 | 303 | this.element.style.transform = "perspective(" + this.settings.perspective + "px) " + 304 | "rotateX(" + (this.settings.axis === "x" ? 0 : values.tiltY) + "deg) " + 305 | "rotateY(" + (this.settings.axis === "y" ? 0 : values.tiltX) + "deg) " + 306 | "scale3d(" + this.settings.scale + ", " + this.settings.scale + ", " + this.settings.scale + ")"; 307 | 308 | if (this.glare) { 309 | this.glareElement.style.transform = `rotate(${values.angle}deg) translate(-50%, -50%)`; 310 | this.glareElement.style.opacity = `${values.percentageY * this.settings["max-glare"] / 100}`; 311 | } 312 | 313 | this.element.dispatchEvent(new CustomEvent("tiltChange", { 314 | "detail": values 315 | })); 316 | 317 | this.updateCall = null; 318 | } 319 | 320 | /** 321 | * Appends the glare element (if glarePrerender equals false) 322 | * and sets the default style 323 | */ 324 | prepareGlare() { 325 | // If option pre-render is enabled we assume all html/css is present for an optimal glare effect. 326 | if (!this.glarePrerender) { 327 | // Create glare element 328 | const jsTiltGlare = document.createElement("div"); 329 | jsTiltGlare.classList.add("js-tilt-glare"); 330 | 331 | const jsTiltGlareInner = document.createElement("div"); 332 | jsTiltGlareInner.classList.add("js-tilt-glare-inner"); 333 | 334 | jsTiltGlare.appendChild(jsTiltGlareInner); 335 | this.element.appendChild(jsTiltGlare); 336 | } 337 | 338 | this.glareElementWrapper = this.element.querySelector(".js-tilt-glare"); 339 | this.glareElement = this.element.querySelector(".js-tilt-glare-inner"); 340 | 341 | if (this.glarePrerender) { 342 | return; 343 | } 344 | 345 | Object.assign(this.glareElementWrapper.style, { 346 | "position": "absolute", 347 | "top": "0", 348 | "left": "0", 349 | "width": "100%", 350 | "height": "100%", 351 | "overflow": "hidden", 352 | "pointer-events": "none" 353 | }); 354 | 355 | Object.assign(this.glareElement.style, { 356 | "position": "absolute", 357 | "top": "50%", 358 | "left": "50%", 359 | "pointer-events": "none", 360 | "background-image": `linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)`, 361 | "width": `${this.element.offsetWidth * 2}px`, 362 | "height": `${this.element.offsetWidth * 2}px`, 363 | "transform": "rotate(180deg) translate(-50%, -50%)", 364 | "transform-origin": "0% 0%", 365 | "opacity": "0", 366 | }); 367 | } 368 | 369 | updateGlareSize() { 370 | if (this.glare) { 371 | Object.assign(this.glareElement.style, { 372 | "width": `${this.element.offsetWidth * 2}`, 373 | "height": `${this.element.offsetWidth * 2}`, 374 | }); 375 | } 376 | } 377 | 378 | updateClientSize() { 379 | this.clientWidth = window.innerWidth 380 | || document.documentElement.clientWidth 381 | || document.body.clientWidth; 382 | 383 | this.clientHeight = window.innerHeight 384 | || document.documentElement.clientHeight 385 | || document.body.clientHeight; 386 | } 387 | 388 | onWindowResize() { 389 | this.updateGlareSize(); 390 | this.updateClientSize(); 391 | } 392 | 393 | setTransition() { 394 | clearTimeout(this.transitionTimeout); 395 | this.element.style.transition = this.settings.speed + "ms " + this.settings.easing; 396 | if (this.glare) this.glareElement.style.transition = `opacity ${this.settings.speed}ms ${this.settings.easing}`; 397 | 398 | this.transitionTimeout = setTimeout(() => { 399 | this.element.style.transition = ""; 400 | if (this.glare) { 401 | this.glareElement.style.transition = ""; 402 | } 403 | }, this.settings.speed); 404 | 405 | } 406 | 407 | /** 408 | * Method return patched settings of instance 409 | * @param {boolean} settings.reverse - reverse the tilt direction 410 | * @param {number} settings.max - max tilt rotation (degrees) 411 | * @param {startX} settings.startX - the starting tilt on the X axis, in degrees. Default: 0 412 | * @param {startY} settings.startY - the starting tilt on the Y axis, in degrees. Default: 0 413 | * @param {number} settings.perspective - Transform perspective, the lower the more extreme the tilt gets 414 | * @param {string} settings.easing - Easing on enter/exit 415 | * @param {number} settings.scale - 2 = 200%, 1.5 = 150%, etc.. 416 | * @param {number} settings.speed - Speed of the enter/exit transition 417 | * @param {boolean} settings.transition - Set a transition on enter/exit 418 | * @param {string|null} settings.axis - What axis should be disabled. Can be X or Y 419 | * @param {boolean} settings.glare - What axis should be disabled. Can be X or Y 420 | * @param {number} settings.max-glare - the maximum "glare" opacity (1 = 100%, 0.5 = 50%) 421 | * @param {boolean} settings.glare-prerender - false = VanillaTilt creates the glare elements for you, otherwise 422 | * @param {boolean} settings.full-page-listening - If true, parallax effect will listen to mouse move events on the whole document, not only the selected element 423 | * @param {string|object} settings.mouse-event-element - String selector or link to HTML-element what will be listen mouse events 424 | * @param {boolean} settings.reset - false = If the tilt effect has to be reset on exit 425 | * @param {gyroscope} settings.gyroscope - Enable tilting by deviceorientation events 426 | * @param {gyroscopeSensitivity} settings.gyroscopeSensitivity - Between 0 and 1 - The angle at which max tilt position is reached. 1 = 90deg, 0.5 = 45deg, etc.. 427 | * @param {gyroscopeSamples} settings.gyroscopeSamples - How many gyroscope moves to decide the starting position. 428 | */ 429 | extendSettings(settings) { 430 | let defaultSettings = { 431 | reverse: false, 432 | max: 15, 433 | startX: 0, 434 | startY: 0, 435 | perspective: 1000, 436 | easing: "cubic-bezier(.03,.98,.52,.99)", 437 | scale: 1, 438 | speed: 300, 439 | transition: true, 440 | axis: null, 441 | glare: false, 442 | "max-glare": 1, 443 | "glare-prerender": false, 444 | "full-page-listening": false, 445 | "mouse-event-element": null, 446 | reset: true, 447 | gyroscope: true, 448 | gyroscopeMinAngleX: -45, 449 | gyroscopeMaxAngleX: 45, 450 | gyroscopeMinAngleY: -45, 451 | gyroscopeMaxAngleY: 45, 452 | gyroscopeSamples: 10 453 | }; 454 | 455 | let newSettings = {}; 456 | for (var property in defaultSettings) { 457 | if (property in settings) { 458 | newSettings[property] = settings[property]; 459 | } else if (this.element.hasAttribute("data-tilt-" + property)) { 460 | let attribute = this.element.getAttribute("data-tilt-" + property); 461 | try { 462 | newSettings[property] = JSON.parse(attribute); 463 | } catch (e) { 464 | newSettings[property] = attribute; 465 | } 466 | 467 | } else { 468 | newSettings[property] = defaultSettings[property]; 469 | } 470 | } 471 | 472 | return newSettings; 473 | } 474 | 475 | static init(elements, settings) { 476 | if (elements instanceof Node) { 477 | elements = [elements]; 478 | } 479 | 480 | if (elements instanceof NodeList) { 481 | elements = [].slice.call(elements); 482 | } 483 | 484 | if (!(elements instanceof Array)) { 485 | return; 486 | } 487 | 488 | elements.forEach((element) => { 489 | if (!("vanillaTilt" in element)) { 490 | element.vanillaTilt = new VanillaTilt(element, settings); 491 | } 492 | }); 493 | } 494 | } 495 | 496 | if (typeof document !== "undefined") { 497 | /* expose the class to window */ 498 | window.VanillaTilt = VanillaTilt; 499 | 500 | /** 501 | * Auto load 502 | */ 503 | VanillaTilt.init(document.querySelectorAll("[data-tilt]")); 504 | } 505 | 506 | return VanillaTilt; 507 | 508 | }()); -------------------------------------------------------------------------------- /assets/vendor/aos/aos.css: -------------------------------------------------------------------------------- 1 | [data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)} -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:'boxicons';font-weight:normal;font-style:normal;src:url('../fonts/boxicons.eot');src:url('../fonts/boxicons.eot') format('embedded-opentype'),url('../fonts/boxicons.woff2') format('woff2'),url('../fonts/boxicons.woff') format('woff'),url('../fonts/boxicons.ttf') format('truetype'),url('../fonts/boxicons.svg?#boxicons') format('svg')}.bx{font-family:'boxicons'!important;font-weight:normal;font-style:normal;font-variant:normal;line-height:1;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(.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)}}.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-fw{font-size:1.2857142857em;line-height:.8em;width:1.2857142857em;height:.8em;margin-top:-.2em!important;vertical-align:middle}.bx-lg{font-size:3.0!important}.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,.1);border-radius:.25em}.bx-border-circle{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:50%}.bx-abacus:before{content:"\e900"}.bx-accessibility:before{content:"\e901"}.bx-add-to-queue:before{content:"\e902"}.bx-adjust:before{content:"\e903"}.bx-alarm:before{content:"\e904"}.bx-alarm-add:before{content:"\e905"}.bx-alarm-exclamation:before{content:"\e906"}.bx-alarm-off:before{content:"\e907"}.bx-alarm-snooze:before{content:"\e908"}.bx-album:before{content:"\e909"}.bx-align-justify:before{content:"\e90a"}.bx-align-left:before{content:"\e90b"}.bx-align-middle:before{content:"\e90c"}.bx-align-right:before{content:"\e90d"}.bx-analyse:before{content:"\e90e"}.bx-anchor:before{content:"\e90f"}.bx-angry:before{content:"\e910"}.bx-aperture:before{content:"\e911"}.bx-arch:before{content:"\e912"}.bx-archive:before{content:"\e913"}.bx-archive-in:before{content:"\e914"}.bx-archive-out:before{content:"\e915"}.bx-area:before{content:"\e916"}.bx-arrow-back:before{content:"\e917"}.bx-arrow-from-bottom:before{content:"\e918"}.bx-arrow-from-left:before{content:"\e919"}.bx-arrow-from-right:before{content:"\e91a"}.bx-arrow-from-top:before{content:"\e91b"}.bx-arrow-to-bottom:before{content:"\e91c"}.bx-arrow-to-left:before{content:"\e91d"}.bx-arrow-to-right:before{content:"\e91e"}.bx-arrow-to-top:before{content:"\e91f"}.bx-at:before{content:"\e920"}.bx-atom:before{content:"\e921"}.bx-award:before{content:"\e922"}.bx-badge:before{content:"\e923"}.bx-badge-check:before{content:"\e924"}.bx-ball:before{content:"\e925"}.bx-band-aid:before{content:"\e926"}.bx-bar-chart:before{content:"\e927"}.bx-bar-chart-alt:before{content:"\e928"}.bx-bar-chart-alt-2:before{content:"\e929"}.bx-bar-chart-square:before{content:"\e92a"}.bx-barcode:before{content:"\e92b"}.bx-barcode-reader:before{content:"\e92c"}.bx-baseball:before{content:"\e92d"}.bx-basket:before{content:"\e92e"}.bx-basketball:before{content:"\e92f"}.bx-bath:before{content:"\e930"}.bx-battery:before{content:"\e931"}.bx-bed:before{content:"\e932"}.bx-been-here:before{content:"\e933"}.bx-beer:before{content:"\e934"}.bx-bell:before{content:"\e935"}.bx-bell-minus:before{content:"\e936"}.bx-bell-off:before{content:"\e937"}.bx-bell-plus:before{content:"\e938"}.bx-bible:before{content:"\e939"}.bx-bitcoin:before{content:"\e93a"}.bx-blanket:before{content:"\e93b"}.bx-block:before{content:"\e93c"}.bx-bluetooth:before{content:"\e93d"}.bx-body:before{content:"\e93e"}.bx-bold:before{content:"\e93f"}.bx-bolt-circle:before{content:"\e940"}.bx-bomb:before{content:"\e941"}.bx-bone:before{content:"\e942"}.bx-bong:before{content:"\e943"}.bx-book:before{content:"\e944"}.bx-book-add:before{content:"\e945"}.bx-book-alt:before{content:"\e946"}.bx-book-bookmark:before{content:"\e947"}.bx-book-content:before{content:"\e948"}.bx-book-heart:before{content:"\e949"}.bx-bookmark:before{content:"\e94a"}.bx-bookmark-alt:before{content:"\e94b"}.bx-bookmark-alt-minus:before{content:"\e94c"}.bx-bookmark-alt-plus:before{content:"\e94d"}.bx-bookmark-heart:before{content:"\e94e"}.bx-bookmark-minus:before{content:"\e94f"}.bx-bookmark-plus:before{content:"\e950"}.bx-bookmarks:before{content:"\e951"}.bx-book-open:before{content:"\e952"}.bx-book-reader:before{content:"\e953"}.bx-border-all:before{content:"\e954"}.bx-border-bottom:before{content:"\e955"}.bx-border-inner:before{content:"\e956"}.bx-border-left:before{content:"\e957"}.bx-border-none:before{content:"\e958"}.bx-border-outer:before{content:"\e959"}.bx-border-radius:before{content:"\e95a"}.bx-border-right:before{content:"\e95b"}.bx-border-top:before{content:"\e95c"}.bx-bot:before{content:"\e95d"}.bx-bowling-ball:before{content:"\e95e"}.bx-box:before{content:"\e95f"}.bx-bracket:before{content:"\e960"}.bx-braille:before{content:"\e961"}.bx-brain:before{content:"\e962"}.bx-briefcase:before{content:"\e963"}.bx-briefcase-alt:before{content:"\e964"}.bx-briefcase-alt-2:before{content:"\e965"}.bx-brightness:before{content:"\e966"}.bx-brightness-half:before{content:"\e967"}.bx-broadcast:before{content:"\e968"}.bx-brush:before{content:"\e969"}.bx-brush-alt:before{content:"\e96a"}.bx-bug:before{content:"\e96b"}.bx-bug-alt:before{content:"\e96c"}.bx-building:before{content:"\e96d"}.bx-building-house:before{content:"\e96e"}.bx-buildings:before{content:"\e96f"}.bx-bulb:before{content:"\e970"}.bx-bullseye:before{content:"\e971"}.bx-buoy:before{content:"\e972"}.bx-bus:before{content:"\e973"}.bx-bus-school:before{content:"\e974"}.bx-cabinet:before{content:"\e975"}.bx-cake:before{content:"\e976"}.bx-calculator:before{content:"\e977"}.bx-calendar:before{content:"\e978"}.bx-calendar-alt:before{content:"\e979"}.bx-calendar-check:before{content:"\e97a"}.bx-calendar-edit:before{content:"\e97b"}.bx-calendar-event:before{content:"\e97c"}.bx-calendar-exclamation:before{content:"\e97d"}.bx-calendar-heart:before{content:"\e97e"}.bx-calendar-minus:before{content:"\e97f"}.bx-calendar-plus:before{content:"\e980"}.bx-calendar-star:before{content:"\e981"}.bx-calendar-week:before{content:"\e982"}.bx-calendar-x:before{content:"\e983"}.bx-camera:before{content:"\e984"}.bx-camera-home:before{content:"\e985"}.bx-camera-movie:before{content:"\e986"}.bx-camera-off:before{content:"\e987"}.bx-capsule:before{content:"\e988"}.bx-captions:before{content:"\e989"}.bx-car:before{content:"\e98a"}.bx-card:before{content:"\e98b"}.bx-caret-down:before{content:"\e98c"}.bx-caret-down-circle:before{content:"\e98d"}.bx-caret-down-square:before{content:"\e98e"}.bx-caret-left:before{content:"\e98f"}.bx-caret-left-circle:before{content:"\e990"}.bx-caret-left-square:before{content:"\e991"}.bx-caret-right:before{content:"\e992"}.bx-caret-right-circle:before{content:"\e993"}.bx-caret-right-square:before{content:"\e994"}.bx-caret-up:before{content:"\e995"}.bx-caret-up-circle:before{content:"\e996"}.bx-caret-up-square:before{content:"\e997"}.bx-carousel:before{content:"\e998"}.bx-cart:before{content:"\e999"}.bx-cart-alt:before{content:"\e99a"}.bx-cast:before{content:"\e99b"}.bx-category:before{content:"\e99c"}.bx-category-alt:before{content:"\e99d"}.bx-cctv:before{content:"\e99e"}.bx-certification:before{content:"\e99f"}.bx-chair:before{content:"\e9a0"}.bx-chalkboard:before{content:"\e9a1"}.bx-chart:before{content:"\e9a2"}.bx-chat:before{content:"\e9a3"}.bx-check:before{content:"\e9a4"}.bx-checkbox:before{content:"\e9a5"}.bx-checkbox-checked:before{content:"\e9a6"}.bx-checkbox-square:before{content:"\e9a7"}.bx-check-circle:before{content:"\e9a8"}.bx-check-double:before{content:"\e9a9"}.bx-check-shield:before{content:"\e9aa"}.bx-check-square:before{content:"\e9ab"}.bx-chevron-down:before{content:"\e9ac"}.bx-chevron-down-circle:before{content:"\e9ad"}.bx-chevron-down-square:before{content:"\e9ae"}.bx-chevron-left:before{content:"\e9af"}.bx-chevron-left-circle:before{content:"\e9b0"}.bx-chevron-left-square:before{content:"\e9b1"}.bx-chevron-right:before{content:"\e9b2"}.bx-chevron-right-circle:before{content:"\e9b3"}.bx-chevron-right-square:before{content:"\e9b4"}.bx-chevrons-down:before{content:"\e9b5"}.bx-chevrons-left:before{content:"\e9b6"}.bx-chevrons-right:before{content:"\e9b7"}.bx-chevrons-up:before{content:"\e9b8"}.bx-chevron-up:before{content:"\e9b9"}.bx-chevron-up-circle:before{content:"\e9ba"}.bx-chevron-up-square:before{content:"\e9bb"}.bx-chip:before{content:"\e9bc"}.bx-church:before{content:"\e9bd"}.bx-circle:before{content:"\e9be"}.bx-clinic:before{content:"\e9bf"}.bx-clipboard:before{content:"\e9c0"}.bx-closet:before{content:"\e9c1"}.bx-cloud:before{content:"\e9c2"}.bx-cloud-download:before{content:"\e9c3"}.bx-cloud-drizzle:before{content:"\e9c4"}.bx-cloud-lightning:before{content:"\e9c5"}.bx-cloud-light-rain:before{content:"\e9c6"}.bx-cloud-rain:before{content:"\e9c7"}.bx-cloud-snow:before{content:"\e9c8"}.bx-cloud-upload:before{content:"\e9c9"}.bx-code:before{content:"\e9ca"}.bx-code-alt:before{content:"\e9cb"}.bx-code-block:before{content:"\e9cc"}.bx-code-curly:before{content:"\e9cd"}.bx-coffee:before{content:"\e9ce"}.bx-coffee-togo:before{content:"\e9cf"}.bx-cog:before{content:"\e9d0"}.bx-coin:before{content:"\e9d1"}.bx-coin-stack:before{content:"\e9d2"}.bx-collapse:before{content:"\e9d3"}.bx-collection:before{content:"\e9d4"}.bx-color-fill:before{content:"\e9d5"}.bx-columns:before{content:"\e9d6"}.bx-command:before{content:"\e9d7"}.bx-comment:before{content:"\e9d8"}.bx-comment-add:before{content:"\e9d9"}.bx-comment-check:before{content:"\e9da"}.bx-comment-detail:before{content:"\e9db"}.bx-comment-dots:before{content:"\e9dc"}.bx-comment-edit:before{content:"\e9dd"}.bx-comment-error:before{content:"\e9de"}.bx-comment-minus:before{content:"\e9df"}.bx-comment-x:before{content:"\e9e0"}.bx-compass:before{content:"\e9e1"}.bx-confused:before{content:"\e9e2"}.bx-conversation:before{content:"\e9e3"}.bx-cookie:before{content:"\e9e4"}.bx-cool:before{content:"\e9e5"}.bx-copy:before{content:"\e9e6"}.bx-copy-alt:before{content:"\e9e7"}.bx-copyright:before{content:"\e9e8"}.bx-credit-card:before{content:"\e9e9"}.bx-credit-card-alt:before{content:"\e9ea"}.bx-credit-card-front:before{content:"\e9eb"}.bx-crop:before{content:"\e9ec"}.bx-crosshair:before{content:"\e9ed"}.bx-crown:before{content:"\e9ee"}.bx-cube:before{content:"\e9ef"}.bx-cube-alt:before{content:"\e9f0"}.bx-cuboid:before{content:"\e9f1"}.bx-current-location:before{content:"\e9f2"}.bx-customize:before{content:"\e9f3"}.bx-cut:before{content:"\e9f4"}.bx-cycling:before{content:"\e9f5"}.bx-cylinder:before{content:"\e9f6"}.bx-data:before{content:"\e9f7"}.bx-desktop:before{content:"\e9f8"}.bx-detail:before{content:"\e9f9"}.bx-devices:before{content:"\e9fa"}.bx-dialpad:before{content:"\e9fb"}.bx-dialpad-alt:before{content:"\e9fc"}.bx-diamond:before{content:"\e9fd"}.bx-dice-1:before{content:"\e9fe"}.bx-dice-2:before{content:"\e9ff"}.bx-dice-3:before{content:"\ea00"}.bx-dice-4:before{content:"\ea01"}.bx-dice-5:before{content:"\ea02"}.bx-dice-6:before{content:"\ea03"}.bx-directions:before{content:"\ea04"}.bx-disc:before{content:"\ea05"}.bx-dish:before{content:"\ea06"}.bx-dislike:before{content:"\ea07"}.bx-dizzy:before{content:"\ea08"}.bx-dna:before{content:"\ea09"}.bx-dock-bottom:before{content:"\ea0a"}.bx-dock-left:before{content:"\ea0b"}.bx-dock-right:before{content:"\ea0c"}.bx-dock-top:before{content:"\ea0d"}.bx-dollar:before{content:"\ea0e"}.bx-dollar-circle:before{content:"\ea0f"}.bx-donate-blood:before{content:"\ea10"}.bx-donate-heart:before{content:"\ea11"}.bx-door-open:before{content:"\ea12"}.bx-dots-horizontal:before{content:"\ea13"}.bx-dots-horizontal-rounded:before{content:"\ea14"}.bx-dots-vertical:before{content:"\ea15"}.bx-dots-vertical-rounded:before{content:"\ea16"}.bx-doughnut-chart:before{content:"\ea17"}.bx-down-arrow:before{content:"\ea18"}.bx-down-arrow-alt:before{content:"\ea19"}.bx-down-arrow-circle:before{content:"\ea1a"}.bx-download:before{content:"\ea1b"}.bx-downvote:before{content:"\ea1c"}.bx-drink:before{content:"\ea1d"}.bx-droplet:before{content:"\ea1e"}.bx-dumbbell:before{content:"\ea1f"}.bx-duplicate:before{content:"\ea20"}.bx-edit:before{content:"\ea21"}.bx-edit-alt:before{content:"\ea22"}.bx-envelope:before{content:"\ea23"}.bx-envelope-open:before{content:"\ea24"}.bx-equalizer:before{content:"\ea25"}.bx-eraser:before{content:"\ea26"}.bx-error:before{content:"\ea27"}.bx-error-alt:before{content:"\ea28"}.bx-error-circle:before{content:"\ea29"}.bx-euro:before{content:"\ea2a"}.bx-exclude:before{content:"\ea2b"}.bx-exit:before{content:"\ea2c"}.bx-exit-fullscreen:before{content:"\ea2d"}.bx-expand:before{content:"\ea2e"}.bx-expand-alt:before{content:"\ea2f"}.bx-export:before{content:"\ea30"}.bx-extension:before{content:"\ea31"}.bx-face:before{content:"\ea32"}.bx-fast-forward:before{content:"\ea33"}.bx-fast-forward-circle:before{content:"\ea34"}.bx-female:before{content:"\ea35"}.bx-female-sign:before{content:"\ea36"}.bx-file:before{content:"\ea37"}.bx-file-blank:before{content:"\ea38"}.bx-file-find:before{content:"\ea39"}.bx-film:before{content:"\ea3a"}.bx-filter:before{content:"\ea3b"}.bx-filter-alt:before{content:"\ea3c"}.bx-fingerprint:before{content:"\ea3d"}.bx-first-aid:before{content:"\ea3e"}.bx-first-page:before{content:"\ea3f"}.bx-flag:before{content:"\ea40"}.bx-folder:before{content:"\ea41"}.bx-folder-minus:before{content:"\ea42"}.bx-folder-open:before{content:"\ea43"}.bx-folder-plus:before{content:"\ea44"}.bx-font:before{content:"\ea45"}.bx-font-color:before{content:"\ea46"}.bx-font-family:before{content:"\ea47"}.bx-font-size:before{content:"\ea48"}.bx-food-menu:before{content:"\ea49"}.bx-food-tag:before{content:"\ea4a"}.bx-football:before{content:"\ea4b"}.bx-fridge:before{content:"\ea4c"}.bx-fullscreen:before{content:"\ea4d"}.bx-game:before{content:"\ea4e"}.bx-gas-pump:before{content:"\ea4f"}.bx-ghost:before{content:"\ea50"}.bx-gift:before{content:"\ea51"}.bx-git-branch:before{content:"\ea52"}.bx-git-commit:before{content:"\ea53"}.bx-git-compare:before{content:"\ea54"}.bx-git-merge:before{content:"\ea55"}.bx-git-pull-request:before{content:"\ea56"}.bx-git-repo-forked:before{content:"\ea57"}.bx-glasses:before{content:"\ea58"}.bx-glasses-alt:before{content:"\ea59"}.bx-globe:before{content:"\ea5a"}.bx-globe-alt:before{content:"\ea5b"}.bx-grid:before{content:"\ea5c"}.bx-grid-alt:before{content:"\ea5d"}.bx-grid-horizontal:before{content:"\ea5e"}.bx-grid-small:before{content:"\ea5f"}.bx-grid-vertical:before{content:"\ea60"}.bx-group:before{content:"\ea61"}.bx-handicap:before{content:"\ea62"}.bx-happy:before{content:"\ea63"}.bx-happy-alt:before{content:"\ea64"}.bx-happy-beaming:before{content:"\ea65"}.bx-happy-heart-eyes:before{content:"\ea66"}.bx-hash:before{content:"\ea67"}.bx-hdd:before{content:"\ea68"}.bx-heading:before{content:"\ea69"}.bx-headphone:before{content:"\ea6a"}.bx-health:before{content:"\ea6b"}.bx-heart:before{content:"\ea6c"}.bx-heart-circle:before{content:"\ea6d"}.bx-heart-square:before{content:"\ea6e"}.bx-help-circle:before{content:"\ea6f"}.bx-hide:before{content:"\ea70"}.bx-highlight:before{content:"\ea71"}.bx-history:before{content:"\ea72"}.bx-hive:before{content:"\ea73"}.bx-home:before{content:"\ea74"}.bx-home-alt:before{content:"\ea75"}.bx-home-circle:before{content:"\ea76"}.bx-home-heart:before{content:"\ea77"}.bx-home-smile:before{content:"\ea78"}.bx-horizontal-center:before{content:"\ea79"}.bx-hotel:before{content:"\ea7a"}.bx-hourglass:before{content:"\ea7b"}.bx-id-card:before{content:"\ea7c"}.bx-image:before{content:"\ea7d"}.bx-image-add:before{content:"\ea7e"}.bx-image-alt:before{content:"\ea7f"}.bx-images:before{content:"\ea80"}.bx-import:before{content:"\ea81"}.bx-infinite:before{content:"\ea82"}.bx-info-circle:before{content:"\ea83"}.bx-info-square:before{content:"\ea84"}.bx-intersect:before{content:"\ea85"}.bx-italic:before{content:"\ea86"}.bx-joystick:before{content:"\ea87"}.bx-joystick-alt:before{content:"\ea88"}.bx-joystick-button:before{content:"\ea89"}.bx-key:before{content:"\ea8a"}.bx-label:before{content:"\ea8b"}.bx-landscape:before{content:"\ea8c"}.bx-laptop:before{content:"\ea8d"}.bx-last-page:before{content:"\ea8e"}.bx-laugh:before{content:"\ea8f"}.bx-layer:before{content:"\ea90"}.bx-layer-minus:before{content:"\ea91"}.bx-layer-plus:before{content:"\ea92"}.bx-layout:before{content:"\ea93"}.bx-left-arrow:before{content:"\ea94"}.bx-left-arrow-alt:before{content:"\ea95"}.bx-left-arrow-circle:before{content:"\ea96"}.bx-left-down-arrow-circle:before{content:"\ea97"}.bx-left-indent:before{content:"\ea98"}.bx-left-top-arrow-circle:before{content:"\ea99"}.bx-library:before{content:"\ea9a"}.bx-like:before{content:"\ea9b"}.bx-line-chart:before{content:"\ea9c"}.bx-line-chart-down:before{content:"\ea9d"}.bx-link:before{content:"\ea9e"}.bx-link-alt:before{content:"\ea9f"}.bx-link-external:before{content:"\eaa0"}.bx-lira:before{content:"\eaa1"}.bx-list-check:before{content:"\eaa2"}.bx-list-minus:before{content:"\eaa3"}.bx-list-ol:before{content:"\eaa4"}.bx-list-plus:before{content:"\eaa5"}.bx-list-ul:before{content:"\eaa6"}.bx-loader:before{content:"\eaa7"}.bx-loader-alt:before{content:"\eaa8"}.bx-loader-circle:before{content:"\eaa9"}.bx-location-plus:before{content:"\eaaa"}.bx-lock:before{content:"\eaab"}.bx-lock-alt:before{content:"\eaac"}.bx-lock-open:before{content:"\eaad"}.bx-lock-open-alt:before{content:"\eaae"}.bx-log-in:before{content:"\eaaf"}.bx-log-in-circle:before{content:"\eab0"}.bx-log-out:before{content:"\eab1"}.bx-log-out-circle:before{content:"\eab2"}.bx-low-vision:before{content:"\eab3"}.bx-magnet:before{content:"\eab4"}.bx-mail-send:before{content:"\eab5"}.bx-male:before{content:"\eab6"}.bx-male-sign:before{content:"\eab7"}.bx-map:before{content:"\eab8"}.bx-map-alt:before{content:"\eab9"}.bx-map-pin:before{content:"\eaba"}.bx-mask:before{content:"\eabb"}.bx-medal:before{content:"\eabc"}.bx-meh:before{content:"\eabd"}.bx-meh-alt:before{content:"\eabe"}.bx-meh-blank:before{content:"\eabf"}.bx-memory-card:before{content:"\eac0"}.bx-menu:before{content:"\eac1"}.bx-menu-alt-left:before{content:"\eac2"}.bx-menu-alt-right:before{content:"\eac3"}.bx-merge:before{content:"\eac4"}.bx-message:before{content:"\eac5"}.bx-message-add:before{content:"\eac6"}.bx-message-alt:before{content:"\eac7"}.bx-message-alt-add:before{content:"\eac8"}.bx-message-alt-check:before{content:"\eac9"}.bx-message-alt-detail:before{content:"\eaca"}.bx-message-alt-dots:before{content:"\eacb"}.bx-message-alt-edit:before{content:"\eacc"}.bx-message-alt-error:before{content:"\eacd"}.bx-message-alt-minus:before{content:"\eace"}.bx-message-alt-x:before{content:"\eacf"}.bx-message-check:before{content:"\ead0"}.bx-message-detail:before{content:"\ead1"}.bx-message-dots:before{content:"\ead2"}.bx-message-edit:before{content:"\ead3"}.bx-message-error:before{content:"\ead4"}.bx-message-minus:before{content:"\ead5"}.bx-message-rounded:before{content:"\ead6"}.bx-message-rounded-add:before{content:"\ead7"}.bx-message-rounded-check:before{content:"\ead8"}.bx-message-rounded-detail:before{content:"\ead9"}.bx-message-rounded-dots:before{content:"\eada"}.bx-message-rounded-edit:before{content:"\eadb"}.bx-message-rounded-error:before{content:"\eadc"}.bx-message-rounded-minus:before{content:"\eadd"}.bx-message-rounded-x:before{content:"\eade"}.bx-message-square:before{content:"\eadf"}.bx-message-square-add:before{content:"\eae0"}.bx-message-square-check:before{content:"\eae1"}.bx-message-square-detail:before{content:"\eae2"}.bx-message-square-dots:before{content:"\eae3"}.bx-message-square-edit:before{content:"\eae4"}.bx-message-square-error:before{content:"\eae5"}.bx-message-square-minus:before{content:"\eae6"}.bx-message-square-x:before{content:"\eae7"}.bx-message-x:before{content:"\eae8"}.bx-meteor:before{content:"\eae9"}.bx-microchip:before{content:"\eaea"}.bx-microphone:before{content:"\eaeb"}.bx-microphone-off:before{content:"\eaec"}.bx-minus:before{content:"\eaed"}.bx-minus-back:before{content:"\eaee"}.bx-minus-circle:before{content:"\eaef"}.bx-minus-front:before{content:"\eaf0"}.bx-mobile:before{content:"\eaf1"}.bx-mobile-alt:before{content:"\eaf2"}.bx-mobile-landscape:before{content:"\eaf3"}.bx-mobile-vibration:before{content:"\eaf4"}.bx-money:before{content:"\eaf5"}.bx-moon:before{content:"\eaf6"}.bx-mouse:before{content:"\eaf7"}.bx-mouse-alt:before{content:"\eaf8"}.bx-move:before{content:"\eaf9"}.bx-move-horizontal:before{content:"\eafa"}.bx-move-vertical:before{content:"\eafb"}.bx-movie:before{content:"\eafc"}.bx-movie-play:before{content:"\eafd"}.bx-music:before{content:"\eafe"}.bx-navigation:before{content:"\eaff"}.bx-network-chart:before{content:"\eb00"}.bx-news:before{content:"\eb01"}.bx-no-entry:before{content:"\eb02"}.bx-note:before{content:"\eb03"}.bx-notepad:before{content:"\eb04"}.bx-notification:before{content:"\eb05"}.bx-notification-off:before{content:"\eb06"}.bx-outline:before{content:"\eb07"}.bx-package:before{content:"\eb08"}.bx-paint:before{content:"\eb09"}.bx-paint-roll:before{content:"\eb0a"}.bx-palette:before{content:"\eb0b"}.bx-paperclip:before{content:"\eb0c"}.bx-paper-plane:before{content:"\eb0d"}.bx-paragraph:before{content:"\eb0e"}.bx-paste:before{content:"\eb0f"}.bx-pause:before{content:"\eb10"}.bx-pause-circle:before{content:"\eb11"}.bx-pen:before{content:"\eb12"}.bx-pencil:before{content:"\eb13"}.bx-phone:before{content:"\eb14"}.bx-phone-call:before{content:"\eb15"}.bx-phone-incoming:before{content:"\eb16"}.bx-phone-outgoing:before{content:"\eb17"}.bx-photo-album:before{content:"\eb18"}.bx-pie-chart:before{content:"\eb19"}.bx-pie-chart-alt:before{content:"\eb1a"}.bx-pie-chart-alt-2:before{content:"\eb1b"}.bx-pin:before{content:"\eb1c"}.bx-planet:before{content:"\eb1d"}.bx-play:before{content:"\eb1e"}.bx-play-circle:before{content:"\eb1f"}.bx-plug:before{content:"\eb20"}.bx-plus:before{content:"\eb21"}.bx-plus-circle:before{content:"\eb22"}.bx-plus-medical:before{content:"\eb23"}.bx-pointer:before{content:"\eb24"}.bx-poll:before{content:"\eb25"}.bx-polygon:before{content:"\eb26"}.bx-pound:before{content:"\eb27"}.bx-power-off:before{content:"\eb28"}.bx-printer:before{content:"\eb29"}.bx-pulse:before{content:"\eb2a"}.bx-purchase-tag:before{content:"\eb2b"}.bx-purchase-tag-alt:before{content:"\eb2c"}.bx-pyramid:before{content:"\eb2d"}.bx-question-mark:before{content:"\eb2e"}.bx-radar:before{content:"\eb2f"}.bx-radio:before{content:"\eb30"}.bx-radio-circle:before{content:"\eb31"}.bx-radio-circle-marked:before{content:"\eb32"}.bx-receipt:before{content:"\eb33"}.bx-rectangle:before{content:"\eb34"}.bx-recycle:before{content:"\eb35"}.bx-redo:before{content:"\eb36"}.bx-refresh:before{content:"\eb37"}.bx-rename:before{content:"\eb38"}.bx-repeat:before{content:"\eb39"}.bx-reply:before{content:"\eb3a"}.bx-reply-all:before{content:"\eb3b"}.bx-repost:before{content:"\eb3c"}.bx-reset:before{content:"\eb3d"}.bx-restaurant:before{content:"\eb3e"}.bx-revision:before{content:"\eb3f"}.bx-rewind:before{content:"\eb40"}.bx-rewind-circle:before{content:"\eb41"}.bx-right-arrow:before{content:"\eb42"}.bx-right-arrow-alt:before{content:"\eb43"}.bx-right-arrow-circle:before{content:"\eb44"}.bx-right-down-arrow-circle:before{content:"\eb45"}.bx-right-indent:before{content:"\eb46"}.bx-right-top-arrow-circle:before{content:"\eb47"}.bx-rocket:before{content:"\eb48"}.bx-rotate-left:before{content:"\eb49"}.bx-rotate-right:before{content:"\eb4a"}.bx-rss:before{content:"\eb4b"}.bx-ruble:before{content:"\eb4c"}.bx-ruler:before{content:"\eb4d"}.bx-run:before{content:"\eb4e"}.bx-rupee:before{content:"\eb4f"}.bx-sad:before{content:"\eb50"}.bx-save:before{content:"\eb51"}.bx-scan:before{content:"\eb52"}.bx-screenshot:before{content:"\eb53"}.bx-search:before{content:"\eb54"}.bx-search-alt:before{content:"\eb55"}.bx-search-alt-2:before{content:"\eb56"}.bx-selection:before{content:"\eb57"}.bx-select-multiple:before{content:"\eb58"}.bx-send:before{content:"\eb59"}.bx-server:before{content:"\eb5a"}.bx-shape-circle:before{content:"\eb5b"}.bx-shape-polygon:before{content:"\eb5c"}.bx-shape-square:before{content:"\eb5d"}.bx-shape-triangle:before{content:"\eb5e"}.bx-share:before{content:"\eb5f"}.bx-share-alt:before{content:"\eb60"}.bx-shekel:before{content:"\eb61"}.bx-shield:before{content:"\eb62"}.bx-shield-alt:before{content:"\eb63"}.bx-shield-alt-2:before{content:"\eb64"}.bx-shield-quarter:before{content:"\eb65"}.bx-shield-x:before{content:"\eb66"}.bx-shocked:before{content:"\eb67"}.bx-shopping-bag:before{content:"\eb68"}.bx-show:before{content:"\eb69"}.bx-show-alt:before{content:"\eb6a"}.bx-shuffle:before{content:"\eb6b"}.bx-sidebar:before{content:"\eb6c"}.bx-sitemap:before{content:"\eb6d"}.bx-skip-next:before{content:"\eb6e"}.bx-skip-next-circle:before{content:"\eb6f"}.bx-skip-previous:before{content:"\eb70"}.bx-skip-previous-circle:before{content:"\eb71"}.bx-sleepy:before{content:"\eb72"}.bx-slider:before{content:"\eb73"}.bx-slider-alt:before{content:"\eb74"}.bx-slideshow:before{content:"\eb75"}.bx-smile:before{content:"\eb76"}.bx-sort:before{content:"\eb77"}.bx-sort-alt-2:before{content:"\eb78"}.bx-sort-a-z:before{content:"\eb79"}.bx-sort-down:before{content:"\eb7a"}.bx-sort-up:before{content:"\eb7b"}.bx-sort-z-a:before{content:"\eb7c"}.bx-spa:before{content:"\eb7d"}.bx-space-bar:before{content:"\eb7e"}.bx-spray-can:before{content:"\eb7f"}.bx-spreadsheet:before{content:"\eb80"}.bx-square:before{content:"\eb81"}.bx-square-rounded:before{content:"\eb82"}.bx-star:before{content:"\eb83"}.bx-station:before{content:"\eb84"}.bx-stats:before{content:"\eb85"}.bx-sticker:before{content:"\eb86"}.bx-stop:before{content:"\eb87"}.bx-stop-circle:before{content:"\eb88"}.bx-stopwatch:before{content:"\eb89"}.bx-store:before{content:"\eb8a"}.bx-store-alt:before{content:"\eb8b"}.bx-street-view:before{content:"\eb8c"}.bx-strikethrough:before{content:"\eb8d"}.bx-subdirectory-left:before{content:"\eb8e"}.bx-subdirectory-right:before{content:"\eb8f"}.bx-sun:before{content:"\eb90"}.bx-support:before{content:"\eb91"}.bx-swim:before{content:"\eb92"}.bx-sync:before{content:"\eb93"}.bx-tab:before{content:"\eb94"}.bx-table:before{content:"\eb95"}.bx-tachometer:before{content:"\eb96"}.bx-tag:before{content:"\eb97"}.bx-tag-alt:before{content:"\eb98"}.bx-target-lock:before{content:"\eb99"}.bx-task:before{content:"\eb9a"}.bx-task-x:before{content:"\eb9b"}.bx-taxi:before{content:"\eb9c"}.bx-tennis-ball:before{content:"\eb9d"}.bx-terminal:before{content:"\eb9e"}.bx-test-tube:before{content:"\eb9f"}.bx-text:before{content:"\eba0"}.bx-time:before{content:"\eba1"}.bx-time-five:before{content:"\eba2"}.bx-timer:before{content:"\eba3"}.bx-tired:before{content:"\eba4"}.bx-toggle-left:before{content:"\eba5"}.bx-toggle-right:before{content:"\eba6"}.bx-tone:before{content:"\eba7"}.bx-traffic-cone:before{content:"\eba8"}.bx-train:before{content:"\eba9"}.bx-transfer:before{content:"\ebaa"}.bx-transfer-alt:before{content:"\ebab"}.bx-trash:before{content:"\ebac"}.bx-trash-alt:before{content:"\ebad"}.bx-trending-down:before{content:"\ebae"}.bx-trending-up:before{content:"\ebaf"}.bx-trim:before{content:"\ebb0"}.bx-trip:before{content:"\ebb1"}.bx-trophy:before{content:"\ebb2"}.bx-tv:before{content:"\ebb3"}.bx-underline:before{content:"\ebb4"}.bx-undo:before{content:"\ebb5"}.bx-unite:before{content:"\ebb6"}.bx-unlink:before{content:"\ebb7"}.bx-up-arrow:before{content:"\ebb8"}.bx-up-arrow-alt:before{content:"\ebb9"}.bx-up-arrow-circle:before{content:"\ebba"}.bx-upload:before{content:"\ebbb"}.bx-upside-down:before{content:"\ebbc"}.bx-upvote:before{content:"\ebbd"}.bx-usb:before{content:"\ebbe"}.bx-user:before{content:"\ebbf"}.bx-user-check:before{content:"\ebc0"}.bx-user-circle:before{content:"\ebc1"}.bx-user-minus:before{content:"\ebc2"}.bx-user-pin:before{content:"\ebc3"}.bx-user-plus:before{content:"\ebc4"}.bx-user-voice:before{content:"\ebc5"}.bx-user-x:before{content:"\ebc6"}.bx-vector:before{content:"\ebc7"}.bx-vertical-center:before{content:"\ebc8"}.bx-vial:before{content:"\ebc9"}.bx-video:before{content:"\ebca"}.bx-video-off:before{content:"\ebcb"}.bx-video-plus:before{content:"\ebcc"}.bx-video-recording:before{content:"\ebcd"}.bx-voicemail:before{content:"\ebce"}.bx-volume:before{content:"\ebcf"}.bx-volume-full:before{content:"\ebd0"}.bx-volume-low:before{content:"\ebd1"}.bx-volume-mute:before{content:"\ebd2"}.bx-walk:before{content:"\ebd3"}.bx-wallet:before{content:"\ebd4"}.bx-wallet-alt:before{content:"\ebd5"}.bx-water:before{content:"\ebd6"}.bx-webcam:before{content:"\ebd7"}.bx-wifi:before{content:"\ebd8"}.bx-wifi-0:before{content:"\ebd9"}.bx-wifi-1:before{content:"\ebda"}.bx-wifi-2:before{content:"\ebdb"}.bx-wifi-off:before{content:"\ebdc"}.bx-wind:before{content:"\ebdd"}.bx-window:before{content:"\ebde"}.bx-window-alt:before{content:"\ebdf"}.bx-window-close:before{content:"\ebe0"}.bx-window-open:before{content:"\ebe1"}.bx-windows:before{content:"\ebe2"}.bx-wine:before{content:"\ebe3"}.bx-wink-smile:before{content:"\ebe4"}.bx-wink-tongue:before{content:"\ebe5"}.bx-won:before{content:"\ebe6"}.bx-world:before{content:"\ebe7"}.bx-wrench:before{content:"\ebe8"}.bx-x:before{content:"\ebe9"}.bx-x-circle:before{content:"\ebea"}.bx-yen:before{content:"\ebeb"}.bx-zoom-in:before{content:"\ebec"}.bx-zoom-out:before{content:"\ebed"}.bxs-add-to-queue:before{content:"\ebee"}.bxs-adjust:before{content:"\ebef"}.bxs-adjust-alt:before{content:"\ebf0"}.bxs-alarm:before{content:"\ebf1"}.bxs-alarm-add:before{content:"\ebf2"}.bxs-alarm-exclamation:before{content:"\ebf3"}.bxs-alarm-off:before{content:"\ebf4"}.bxs-alarm-snooze:before{content:"\ebf5"}.bxs-album:before{content:"\ebf6"}.bxs-ambulance:before{content:"\ebf7"}.bxs-analyse:before{content:"\ebf8"}.bxs-angry:before{content:"\ebf9"}.bxs-arch:before{content:"\ebfa"}.bxs-archive:before{content:"\ebfb"}.bxs-archive-in:before{content:"\ebfc"}.bxs-archive-out:before{content:"\ebfd"}.bxs-area:before{content:"\ebfe"}.bxs-arrow-from-bottom:before{content:"\ebff"}.bxs-arrow-from-left:before{content:"\ec00"}.bxs-arrow-from-right:before{content:"\ec01"}.bxs-arrow-from-top:before{content:"\ec02"}.bxs-arrow-to-bottom:before{content:"\ec03"}.bxs-arrow-to-left:before{content:"\ec04"}.bxs-arrow-to-right:before{content:"\ec05"}.bxs-arrow-to-top:before{content:"\ec06"}.bxs-award:before{content:"\ec07"}.bxs-baby-carriage:before{content:"\ec08"}.bxs-backpack:before{content:"\ec09"}.bxs-badge:before{content:"\ec0a"}.bxs-badge-check:before{content:"\ec0b"}.bxs-badge-dollar:before{content:"\ec0c"}.bxs-ball:before{content:"\ec0d"}.bxs-band-aid:before{content:"\ec0e"}.bxs-bank:before{content:"\ec0f"}.bxs-bar-chart-alt-2:before{content:"\ec10"}.bxs-bar-chart-square:before{content:"\ec11"}.bxs-barcode:before{content:"\ec12"}.bxs-baseball:before{content:"\ec13"}.bxs-basket:before{content:"\ec14"}.bxs-basketball:before{content:"\ec15"}.bxs-bath:before{content:"\ec16"}.bxs-battery:before{content:"\ec17"}.bxs-battery-charging:before{content:"\ec18"}.bxs-battery-full:before{content:"\ec19"}.bxs-battery-low:before{content:"\ec1a"}.bxs-bed:before{content:"\ec1b"}.bxs-been-here:before{content:"\ec1c"}.bxs-beer:before{content:"\ec1d"}.bxs-bell:before{content:"\ec1e"}.bxs-bell-minus:before{content:"\ec1f"}.bxs-bell-off:before{content:"\ec20"}.bxs-bell-plus:before{content:"\ec21"}.bxs-bell-ring:before{content:"\ec22"}.bxs-bible:before{content:"\ec23"}.bxs-binoculars:before{content:"\ec24"}.bxs-blanket:before{content:"\ec25"}.bxs-bolt:before{content:"\ec26"}.bxs-bolt-circle:before{content:"\ec27"}.bxs-bomb:before{content:"\ec28"}.bxs-bone:before{content:"\ec29"}.bxs-bong:before{content:"\ec2a"}.bxs-book:before{content:"\ec2b"}.bxs-book-add:before{content:"\ec2c"}.bxs-book-alt:before{content:"\ec2d"}.bxs-book-bookmark:before{content:"\ec2e"}.bxs-book-content:before{content:"\ec2f"}.bxs-book-heart:before{content:"\ec30"}.bxs-bookmark:before{content:"\ec31"}.bxs-bookmark-alt:before{content:"\ec32"}.bxs-bookmark-alt-minus:before{content:"\ec33"}.bxs-bookmark-alt-plus:before{content:"\ec34"}.bxs-bookmark-heart:before{content:"\ec35"}.bxs-bookmark-minus:before{content:"\ec36"}.bxs-bookmark-plus:before{content:"\ec37"}.bxs-bookmarks:before{content:"\ec38"}.bxs-bookmark-star:before{content:"\ec39"}.bxs-book-open:before{content:"\ec3a"}.bxs-book-reader:before{content:"\ec3b"}.bxs-bot:before{content:"\ec3c"}.bxs-bowling-ball:before{content:"\ec3d"}.bxs-box:before{content:"\ec3e"}.bxs-brain:before{content:"\ec3f"}.bxs-briefcase:before{content:"\ec40"}.bxs-briefcase-alt:before{content:"\ec41"}.bxs-briefcase-alt-2:before{content:"\ec42"}.bxs-brightness:before{content:"\ec43"}.bxs-brightness-half:before{content:"\ec44"}.bxs-brush:before{content:"\ec45"}.bxs-brush-alt:before{content:"\ec46"}.bxs-bug:before{content:"\ec47"}.bxs-bug-alt:before{content:"\ec48"}.bxs-building:before{content:"\ec49"}.bxs-building-house:before{content:"\ec4a"}.bxs-buildings:before{content:"\ec4b"}.bxs-bulb:before{content:"\ec4c"}.bxs-bullseye:before{content:"\ec4d"}.bxs-buoy:before{content:"\ec4e"}.bxs-bus:before{content:"\ec4f"}.bxs-business:before{content:"\ec50"}.bxs-bus-school:before{content:"\ec51"}.bxs-cabinet:before{content:"\ec52"}.bxs-cake:before{content:"\ec53"}.bxs-calculator:before{content:"\ec54"}.bxs-calendar:before{content:"\ec55"}.bxs-calendar-alt:before{content:"\ec56"}.bxs-calendar-check:before{content:"\ec57"}.bxs-calendar-edit:before{content:"\ec58"}.bxs-calendar-event:before{content:"\ec59"}.bxs-calendar-exclamation:before{content:"\ec5a"}.bxs-calendar-heart:before{content:"\ec5b"}.bxs-calendar-minus:before{content:"\ec5c"}.bxs-calendar-plus:before{content:"\ec5d"}.bxs-calendar-star:before{content:"\ec5e"}.bxs-calendar-week:before{content:"\ec5f"}.bxs-calendar-x:before{content:"\ec60"}.bxs-camera:before{content:"\ec61"}.bxs-camera-home:before{content:"\ec62"}.bxs-camera-movie:before{content:"\ec63"}.bxs-camera-off:before{content:"\ec64"}.bxs-camera-plus:before{content:"\ec65"}.bxs-capsule:before{content:"\ec66"}.bxs-captions:before{content:"\ec67"}.bxs-car:before{content:"\ec68"}.bxs-car-battery:before{content:"\ec69"}.bxs-car-crash:before{content:"\ec6a"}.bxs-card:before{content:"\ec6b"}.bxs-caret-down-circle:before{content:"\ec6c"}.bxs-caret-down-square:before{content:"\ec6d"}.bxs-caret-left-circle:before{content:"\ec6e"}.bxs-caret-left-square:before{content:"\ec6f"}.bxs-caret-right-circle:before{content:"\ec70"}.bxs-caret-right-square:before{content:"\ec71"}.bxs-caret-up-circle:before{content:"\ec72"}.bxs-caret-up-square:before{content:"\ec73"}.bxs-car-garage:before{content:"\ec74"}.bxs-car-mechanic:before{content:"\ec75"}.bxs-carousel:before{content:"\ec76"}.bxs-cart:before{content:"\ec77"}.bxs-cart-add:before{content:"\ec78"}.bxs-cart-alt:before{content:"\ec79"}.bxs-cart-download:before{content:"\ec7a"}.bxs-car-wash:before{content:"\ec7b"}.bxs-category:before{content:"\ec7c"}.bxs-category-alt:before{content:"\ec7d"}.bxs-cctv:before{content:"\ec7e"}.bxs-certification:before{content:"\ec7f"}.bxs-chalkboard:before{content:"\ec80"}.bxs-chart:before{content:"\ec81"}.bxs-chat:before{content:"\ec82"}.bxs-checkbox:before{content:"\ec83"}.bxs-checkbox-checked:before{content:"\ec84"}.bxs-check-circle:before{content:"\ec85"}.bxs-check-shield:before{content:"\ec86"}.bxs-check-square:before{content:"\ec87"}.bxs-chess:before{content:"\ec88"}.bxs-chevron-down:before{content:"\ec89"}.bxs-chevron-down-circle:before{content:"\ec8a"}.bxs-chevron-down-square:before{content:"\ec8b"}.bxs-chevron-left:before{content:"\ec8c"}.bxs-chevron-left-circle:before{content:"\ec8d"}.bxs-chevron-left-square:before{content:"\ec8e"}.bxs-chevron-right:before{content:"\ec8f"}.bxs-chevron-right-circle:before{content:"\ec90"}.bxs-chevron-right-square:before{content:"\ec91"}.bxs-chevrons-down:before{content:"\ec92"}.bxs-chevrons-left:before{content:"\ec93"}.bxs-chevrons-right:before{content:"\ec94"}.bxs-chevrons-up:before{content:"\ec95"}.bxs-chevron-up:before{content:"\ec96"}.bxs-chevron-up-circle:before{content:"\ec97"}.bxs-chevron-up-square:before{content:"\ec98"}.bxs-chip:before{content:"\ec99"}.bxs-church:before{content:"\ec9a"}.bxs-circle:before{content:"\ec9b"}.bxs-city:before{content:"\ec9c"}.bxs-clinic:before{content:"\ec9d"}.bxs-cloud:before{content:"\ec9e"}.bxs-cloud-download:before{content:"\ec9f"}.bxs-cloud-lightning:before{content:"\eca0"}.bxs-cloud-rain:before{content:"\eca1"}.bxs-cloud-upload:before{content:"\eca2"}.bxs-coffee:before{content:"\eca3"}.bxs-coffee-alt:before{content:"\eca4"}.bxs-coffee-togo:before{content:"\eca5"}.bxs-cog:before{content:"\eca6"}.bxs-coin:before{content:"\eca7"}.bxs-coin-stack:before{content:"\eca8"}.bxs-collection:before{content:"\eca9"}.bxs-color-fill:before{content:"\ecaa"}.bxs-comment:before{content:"\ecab"}.bxs-comment-add:before{content:"\ecac"}.bxs-comment-check:before{content:"\ecad"}.bxs-comment-detail:before{content:"\ecae"}.bxs-comment-dots:before{content:"\ecaf"}.bxs-comment-edit:before{content:"\ecb0"}.bxs-comment-error:before{content:"\ecb1"}.bxs-comment-minus:before{content:"\ecb2"}.bxs-comment-x:before{content:"\ecb3"}.bxs-compass:before{content:"\ecb4"}.bxs-component:before{content:"\ecb5"}.bxs-confused:before{content:"\ecb6"}.bxs-contact:before{content:"\ecb7"}.bxs-conversation:before{content:"\ecb8"}.bxs-cookie:before{content:"\ecb9"}.bxs-cool:before{content:"\ecba"}.bxs-copy:before{content:"\ecbb"}.bxs-copy-alt:before{content:"\ecbc"}.bxs-copyright:before{content:"\ecbd"}.bxs-coupon:before{content:"\ecbe"}.bxs-credit-card:before{content:"\ecbf"}.bxs-credit-card-alt:before{content:"\ecc0"}.bxs-credit-card-front:before{content:"\ecc1"}.bxs-crop:before{content:"\ecc2"}.bxs-crown:before{content:"\ecc3"}.bxs-cube:before{content:"\ecc4"}.bxs-cube-alt:before{content:"\ecc5"}.bxs-cuboid:before{content:"\ecc6"}.bxs-customize:before{content:"\ecc7"}.bxs-cylinder:before{content:"\ecc8"}.bxs-dashboard:before{content:"\ecc9"}.bxs-data:before{content:"\ecca"}.bxs-detail:before{content:"\eccb"}.bxs-devices:before{content:"\eccc"}.bxs-diamond:before{content:"\eccd"}.bxs-dice-1:before{content:"\ecce"}.bxs-dice-2:before{content:"\eccf"}.bxs-dice-3:before{content:"\ecd0"}.bxs-dice-4:before{content:"\ecd1"}.bxs-dice-5:before{content:"\ecd2"}.bxs-dice-6:before{content:"\ecd3"}.bxs-direction-left:before{content:"\ecd4"}.bxs-direction-right:before{content:"\ecd5"}.bxs-directions:before{content:"\ecd6"}.bxs-disc:before{content:"\ecd7"}.bxs-discount:before{content:"\ecd8"}.bxs-dish:before{content:"\ecd9"}.bxs-dislike:before{content:"\ecda"}.bxs-dizzy:before{content:"\ecdb"}.bxs-dock-bottom:before{content:"\ecdc"}.bxs-dock-left:before{content:"\ecdd"}.bxs-dock-right:before{content:"\ecde"}.bxs-dock-top:before{content:"\ecdf"}.bxs-dollar-circle:before{content:"\ece0"}.bxs-donate-blood:before{content:"\ece1"}.bxs-donate-heart:before{content:"\ece2"}.bxs-door-open:before{content:"\ece3"}.bxs-doughnut-chart:before{content:"\ece4"}.bxs-down-arrow:before{content:"\ece5"}.bxs-down-arrow-alt:before{content:"\ece6"}.bxs-down-arrow-circle:before{content:"\ece7"}.bxs-down-arrow-square:before{content:"\ece8"}.bxs-download:before{content:"\ece9"}.bxs-downvote:before{content:"\ecea"}.bxs-drink:before{content:"\eceb"}.bxs-droplet:before{content:"\ecec"}.bxs-droplet-half:before{content:"\eced"}.bxs-dryer:before{content:"\ecee"}.bxs-duplicate:before{content:"\ecef"}.bxs-edit:before{content:"\ecf0"}.bxs-edit-alt:before{content:"\ecf1"}.bxs-edit-location:before{content:"\ecf2"}.bxs-eject:before{content:"\ecf3"}.bxs-envelope:before{content:"\ecf4"}.bxs-envelope-open:before{content:"\ecf5"}.bxs-eraser:before{content:"\ecf6"}.bxs-error:before{content:"\ecf7"}.bxs-error-alt:before{content:"\ecf8"}.bxs-error-circle:before{content:"\ecf9"}.bxs-ev-station:before{content:"\ecfa"}.bxs-exit:before{content:"\ecfb"}.bxs-extension:before{content:"\ecfc"}.bxs-eyedropper:before{content:"\ecfd"}.bxs-face:before{content:"\ecfe"}.bxs-face-mask:before{content:"\ecff"}.bxs-factory:before{content:"\ed00"}.bxs-fast-forward-circle:before{content:"\ed01"}.bxs-file:before{content:"\ed02"}.bxs-file-archive:before{content:"\ed03"}.bxs-file-blank:before{content:"\ed04"}.bxs-file-css:before{content:"\ed05"}.bxs-file-doc:before{content:"\ed06"}.bxs-file-export:before{content:"\ed07"}.bxs-file-find:before{content:"\ed08"}.bxs-file-gif:before{content:"\ed09"}.bxs-file-html:before{content:"\ed0a"}.bxs-file-image:before{content:"\ed0b"}.bxs-file-import:before{content:"\ed0c"}.bxs-file-jpg:before{content:"\ed0d"}.bxs-file-js:before{content:"\ed0e"}.bxs-file-json:before{content:"\ed0f"}.bxs-file-md:before{content:"\ed10"}.bxs-file-pdf:before{content:"\ed11"}.bxs-file-plus:before{content:"\ed12"}.bxs-file-png:before{content:"\ed13"}.bxs-file-txt:before{content:"\ed14"}.bxs-film:before{content:"\ed15"}.bxs-filter-alt:before{content:"\ed16"}.bxs-first-aid:before{content:"\ed17"}.bxs-flag:before{content:"\ed18"}.bxs-flag-alt:before{content:"\ed19"}.bxs-flag-checkered:before{content:"\ed1a"}.bxs-flame:before{content:"\ed1b"}.bxs-flask:before{content:"\ed1c"}.bxs-florist:before{content:"\ed1d"}.bxs-folder:before{content:"\ed1e"}.bxs-folder-minus:before{content:"\ed1f"}.bxs-folder-open:before{content:"\ed20"}.bxs-folder-plus:before{content:"\ed21"}.bxs-food-menu:before{content:"\ed22"}.bxs-fridge:before{content:"\ed23"}.bxs-game:before{content:"\ed24"}.bxs-gas-pump:before{content:"\ed25"}.bxs-ghost:before{content:"\ed26"}.bxs-gift:before{content:"\ed27"}.bxs-graduation:before{content:"\ed28"}.bxs-grid:before{content:"\ed29"}.bxs-grid-alt:before{content:"\ed2a"}.bxs-group:before{content:"\ed2b"}.bxs-guitar-amp:before{content:"\ed2c"}.bxs-hand-down:before{content:"\ed2d"}.bxs-hand-left:before{content:"\ed2e"}.bxs-hand-right:before{content:"\ed2f"}.bxs-hand-up:before{content:"\ed30"}.bxs-happy:before{content:"\ed31"}.bxs-happy-alt:before{content:"\ed32"}.bxs-happy-beaming:before{content:"\ed33"}.bxs-happy-heart-eyes:before{content:"\ed34"}.bxs-hdd:before{content:"\ed35"}.bxs-heart:before{content:"\ed36"}.bxs-heart-circle:before{content:"\ed37"}.bxs-heart-square:before{content:"\ed38"}.bxs-help-circle:before{content:"\ed39"}.bxs-hide:before{content:"\ed3a"}.bxs-home:before{content:"\ed3b"}.bxs-home-circle:before{content:"\ed3c"}.bxs-home-heart:before{content:"\ed3d"}.bxs-home-smile:before{content:"\ed3e"}.bxs-hot:before{content:"\ed3f"}.bxs-hotel:before{content:"\ed40"}.bxs-hourglass:before{content:"\ed41"}.bxs-hourglass-bottom:before{content:"\ed42"}.bxs-hourglass-top:before{content:"\ed43"}.bxs-id-card:before{content:"\ed44"}.bxs-image:before{content:"\ed45"}.bxs-image-add:before{content:"\ed46"}.bxs-image-alt:before{content:"\ed47"}.bxs-inbox:before{content:"\ed48"}.bxs-info-circle:before{content:"\ed49"}.bxs-info-square:before{content:"\ed4a"}.bxs-institution:before{content:"\ed4b"}.bxs-joystick:before{content:"\ed4c"}.bxs-joystick-alt:before{content:"\ed4d"}.bxs-joystick-button:before{content:"\ed4e"}.bxs-key:before{content:"\ed4f"}.bxs-keyboard:before{content:"\ed50"}.bxs-label:before{content:"\ed51"}.bxs-landmark:before{content:"\ed52"}.bxs-landscape:before{content:"\ed53"}.bxs-laugh:before{content:"\ed54"}.bxs-layer:before{content:"\ed55"}.bxs-layer-minus:before{content:"\ed56"}.bxs-layer-plus:before{content:"\ed57"}.bxs-layout:before{content:"\ed58"}.bxs-left-arrow:before{content:"\ed59"}.bxs-left-arrow-alt:before{content:"\ed5a"}.bxs-left-arrow-circle:before{content:"\ed5b"}.bxs-left-arrow-square:before{content:"\ed5c"}.bxs-left-down-arrow-circle:before{content:"\ed5d"}.bxs-left-top-arrow-circle:before{content:"\ed5e"}.bxs-like:before{content:"\ed5f"}.bxs-location-plus:before{content:"\ed60"}.bxs-lock:before{content:"\ed61"}.bxs-lock-alt:before{content:"\ed62"}.bxs-lock-open:before{content:"\ed63"}.bxs-lock-open-alt:before{content:"\ed64"}.bxs-log-in:before{content:"\ed65"}.bxs-log-in-circle:before{content:"\ed66"}.bxs-log-out:before{content:"\ed67"}.bxs-log-out-circle:before{content:"\ed68"}.bxs-low-vision:before{content:"\ed69"}.bxs-magic-wand:before{content:"\ed6a"}.bxs-magnet:before{content:"\ed6b"}.bxs-map:before{content:"\ed6c"}.bxs-map-alt:before{content:"\ed6d"}.bxs-map-pin:before{content:"\ed6e"}.bxs-mask:before{content:"\ed6f"}.bxs-medal:before{content:"\ed70"}.bxs-megaphone:before{content:"\ed71"}.bxs-meh:before{content:"\ed72"}.bxs-meh-alt:before{content:"\ed73"}.bxs-meh-blank:before{content:"\ed74"}.bxs-memory-card:before{content:"\ed75"}.bxs-message:before{content:"\ed76"}.bxs-message-add:before{content:"\ed77"}.bxs-message-alt:before{content:"\ed78"}.bxs-message-alt-add:before{content:"\ed79"}.bxs-message-alt-check:before{content:"\ed7a"}.bxs-message-alt-detail:before{content:"\ed7b"}.bxs-message-alt-dots:before{content:"\ed7c"}.bxs-message-alt-edit:before{content:"\ed7d"}.bxs-message-alt-error:before{content:"\ed7e"}.bxs-message-alt-minus:before{content:"\ed7f"}.bxs-message-alt-x:before{content:"\ed80"}.bxs-message-check:before{content:"\ed81"}.bxs-message-detail:before{content:"\ed82"}.bxs-message-dots:before{content:"\ed83"}.bxs-message-edit:before{content:"\ed84"}.bxs-message-error:before{content:"\ed85"}.bxs-message-minus:before{content:"\ed86"}.bxs-message-rounded:before{content:"\ed87"}.bxs-message-rounded-add:before{content:"\ed88"}.bxs-message-rounded-check:before{content:"\ed89"}.bxs-message-rounded-detail:before{content:"\ed8a"}.bxs-message-rounded-dots:before{content:"\ed8b"}.bxs-message-rounded-edit:before{content:"\ed8c"}.bxs-message-rounded-error:before{content:"\ed8d"}.bxs-message-rounded-minus:before{content:"\ed8e"}.bxs-message-rounded-x:before{content:"\ed8f"}.bxs-message-square:before{content:"\ed90"}.bxs-message-square-add:before{content:"\ed91"}.bxs-message-square-check:before{content:"\ed92"}.bxs-message-square-detail:before{content:"\ed93"}.bxs-message-square-dots:before{content:"\ed94"}.bxs-message-square-edit:before{content:"\ed95"}.bxs-message-square-error:before{content:"\ed96"}.bxs-message-square-minus:before{content:"\ed97"}.bxs-message-square-x:before{content:"\ed98"}.bxs-message-x:before{content:"\ed99"}.bxs-meteor:before{content:"\ed9a"}.bxs-microchip:before{content:"\ed9b"}.bxs-microphone:before{content:"\ed9c"}.bxs-microphone-alt:before{content:"\ed9d"}.bxs-microphone-off:before{content:"\ed9e"}.bxs-minus-circle:before{content:"\ed9f"}.bxs-minus-square:before{content:"\eda0"}.bxs-mobile:before{content:"\eda1"}.bxs-mobile-vibration:before{content:"\eda2"}.bxs-moon:before{content:"\eda3"}.bxs-mouse:before{content:"\eda4"}.bxs-mouse-alt:before{content:"\eda5"}.bxs-movie:before{content:"\eda6"}.bxs-movie-play:before{content:"\eda7"}.bxs-music:before{content:"\eda8"}.bxs-navigation:before{content:"\eda9"}.bxs-network-chart:before{content:"\edaa"}.bxs-news:before{content:"\edab"}.bxs-no-entry:before{content:"\edac"}.bxs-note:before{content:"\edad"}.bxs-notepad:before{content:"\edae"}.bxs-notification:before{content:"\edaf"}.bxs-notification-off:before{content:"\edb0"}.bxs-offer:before{content:"\edb1"}.bxs-package:before{content:"\edb2"}.bxs-paint:before{content:"\edb3"}.bxs-paint-roll:before{content:"\edb4"}.bxs-palette:before{content:"\edb5"}.bxs-paper-plane:before{content:"\edb6"}.bxs-parking:before{content:"\edb7"}.bxs-paste:before{content:"\edb8"}.bxs-pen:before{content:"\edb9"}.bxs-pencil:before{content:"\edba"}.bxs-phone:before{content:"\edbb"}.bxs-phone-call:before{content:"\edbc"}.bxs-phone-incoming:before{content:"\edbd"}.bxs-phone-outgoing:before{content:"\edbe"}.bxs-photo-album:before{content:"\edbf"}.bxs-piano:before{content:"\edc0"}.bxs-pie-chart:before{content:"\edc1"}.bxs-pie-chart-alt:before{content:"\edc2"}.bxs-pie-chart-alt-2:before{content:"\edc3"}.bxs-pin:before{content:"\edc4"}.bxs-pizza:before{content:"\edc5"}.bxs-plane:before{content:"\edc6"}.bxs-plane-alt:before{content:"\edc7"}.bxs-plane-land:before{content:"\edc8"}.bxs-planet:before{content:"\edc9"}.bxs-plane-take-off:before{content:"\edca"}.bxs-playlist:before{content:"\edcb"}.bxs-plug:before{content:"\edcc"}.bxs-plus-circle:before{content:"\edcd"}.bxs-plus-square:before{content:"\edce"}.bxs-pointer:before{content:"\edcf"}.bxs-polygon:before{content:"\edd0"}.bxs-printer:before{content:"\edd1"}.bxs-purchase-tag:before{content:"\edd2"}.bxs-purchase-tag-alt:before{content:"\edd3"}.bxs-pyramid:before{content:"\edd4"}.bxs-quote-alt-left:before{content:"\edd5"}.bxs-quote-alt-right:before{content:"\edd6"}.bxs-quote-left:before{content:"\edd7"}.bxs-quote-right:before{content:"\edd8"}.bxs-quote-single-left:before{content:"\edd9"}.bxs-quote-single-right:before{content:"\edda"}.bxs-radiation:before{content:"\eddb"}.bxs-radio:before{content:"\eddc"}.bxs-receipt:before{content:"\eddd"}.bxs-rectangle:before{content:"\edde"}.bxs-rename:before{content:"\eddf"}.bxs-report:before{content:"\ede0"}.bxs-rewind-circle:before{content:"\ede1"}.bxs-right-arrow:before{content:"\ede2"}.bxs-right-arrow-alt:before{content:"\ede3"}.bxs-right-arrow-circle:before{content:"\ede4"}.bxs-right-arrow-square:before{content:"\ede5"}.bxs-right-down-arrow-circle:before{content:"\ede6"}.bxs-right-top-arrow-circle:before{content:"\ede7"}.bxs-rocket:before{content:"\ede8"}.bxs-ruler:before{content:"\ede9"}.bxs-sad:before{content:"\edea"}.bxs-save:before{content:"\edeb"}.bxs-school:before{content:"\edec"}.bxs-search:before{content:"\eded"}.bxs-search-alt-2:before{content:"\edee"}.bxs-select-multiple:before{content:"\edef"}.bxs-send:before{content:"\edf0"}.bxs-server:before{content:"\edf1"}.bxs-shapes:before{content:"\edf2"}.bxs-share:before{content:"\edf3"}.bxs-share-alt:before{content:"\edf4"}.bxs-shield:before{content:"\edf5"}.bxs-shield-alt-2:before{content:"\edf6"}.bxs-shield-x:before{content:"\edf7"}.bxs-ship:before{content:"\edf8"}.bxs-shocked:before{content:"\edf9"}.bxs-shopping-bag:before{content:"\edfa"}.bxs-shopping-bag-alt:before{content:"\edfb"}.bxs-shopping-bags:before{content:"\edfc"}.bxs-show:before{content:"\edfd"}.bxs-skip-next-circle:before{content:"\edfe"}.bxs-skip-previous-circle:before{content:"\edff"}.bxs-skull:before{content:"\ee00"}.bxs-sleepy:before{content:"\ee01"}.bxs-slideshow:before{content:"\ee02"}.bxs-smile:before{content:"\ee03"}.bxs-sort-alt:before{content:"\ee04"}.bxs-spa:before{content:"\ee05"}.bxs-spray-can:before{content:"\ee06"}.bxs-spreadsheet:before{content:"\ee07"}.bxs-square:before{content:"\ee08"}.bxs-square-rounded:before{content:"\ee09"}.bxs-star:before{content:"\ee0a"}.bxs-star-half:before{content:"\ee0b"}.bxs-sticker:before{content:"\ee0c"}.bxs-stopwatch:before{content:"\ee0d"}.bxs-store:before{content:"\ee0e"}.bxs-store-alt:before{content:"\ee0f"}.bxs-sun:before{content:"\ee10"}.bxs-tachometer:before{content:"\ee11"}.bxs-tag:before{content:"\ee12"}.bxs-tag-alt:before{content:"\ee13"}.bxs-tag-x:before{content:"\ee14"}.bxs-taxi:before{content:"\ee15"}.bxs-tennis-ball:before{content:"\ee16"}.bxs-terminal:before{content:"\ee17"}.bxs-thermometer:before{content:"\ee18"}.bxs-time:before{content:"\ee19"}.bxs-time-five:before{content:"\ee1a"}.bxs-timer:before{content:"\ee1b"}.bxs-tired:before{content:"\ee1c"}.bxs-toggle-left:before{content:"\ee1d"}.bxs-toggle-right:before{content:"\ee1e"}.bxs-tone:before{content:"\ee1f"}.bxs-torch:before{content:"\ee20"}.bxs-to-top:before{content:"\ee21"}.bxs-traffic:before{content:"\ee22"}.bxs-traffic-barrier:before{content:"\ee23"}.bxs-traffic-cone:before{content:"\ee24"}.bxs-train:before{content:"\ee25"}.bxs-trash:before{content:"\ee26"}.bxs-trash-alt:before{content:"\ee27"}.bxs-tree:before{content:"\ee28"}.bxs-trophy:before{content:"\ee29"}.bxs-truck:before{content:"\ee2a"}.bxs-t-shirt:before{content:"\ee2b"}.bxs-tv:before{content:"\ee2c"}.bxs-up-arrow:before{content:"\ee2d"}.bxs-up-arrow-alt:before{content:"\ee2e"}.bxs-up-arrow-circle:before{content:"\ee2f"}.bxs-up-arrow-square:before{content:"\ee30"}.bxs-upside-down:before{content:"\ee31"}.bxs-upvote:before{content:"\ee32"}.bxs-user:before{content:"\ee33"}.bxs-user-account:before{content:"\ee34"}.bxs-user-badge:before{content:"\ee35"}.bxs-user-check:before{content:"\ee36"}.bxs-user-circle:before{content:"\ee37"}.bxs-user-detail:before{content:"\ee38"}.bxs-user-minus:before{content:"\ee39"}.bxs-user-pin:before{content:"\ee3a"}.bxs-user-plus:before{content:"\ee3b"}.bxs-user-rectangle:before{content:"\ee3c"}.bxs-user-voice:before{content:"\ee3d"}.bxs-user-x:before{content:"\ee3e"}.bxs-vector:before{content:"\ee3f"}.bxs-vial:before{content:"\ee40"}.bxs-video:before{content:"\ee41"}.bxs-video-off:before{content:"\ee42"}.bxs-video-plus:before{content:"\ee43"}.bxs-video-recording:before{content:"\ee44"}.bxs-videos:before{content:"\ee45"}.bxs-virus:before{content:"\ee46"}.bxs-virus-block:before{content:"\ee47"}.bxs-volume:before{content:"\ee48"}.bxs-volume-full:before{content:"\ee49"}.bxs-volume-low:before{content:"\ee4a"}.bxs-volume-mute:before{content:"\ee4b"}.bxs-wallet:before{content:"\ee4c"}.bxs-wallet-alt:before{content:"\ee4d"}.bxs-washer:before{content:"\ee4e"}.bxs-watch:before{content:"\ee4f"}.bxs-watch-alt:before{content:"\ee50"}.bxs-webcam:before{content:"\ee51"}.bxs-widget:before{content:"\ee52"}.bxs-window-alt:before{content:"\ee53"}.bxs-wine:before{content:"\ee54"}.bxs-wink-smile:before{content:"\ee55"}.bxs-wink-tongue:before{content:"\ee56"}.bxs-wrench:before{content:"\ee57"}.bxs-x-circle:before{content:"\ee58"}.bxs-x-square:before{content:"\ee59"}.bxs-yin-yang:before{content:"\ee5a"}.bxs-zap:before{content:"\ee5b"}.bxs-zoom-in:before{content:"\ee5c"}.bxs-zoom-out:before{content:"\ee5d"}.bxl-500px:before{content:"\ee5e"}.bxl-adobe:before{content:"\ee5f"}.bxl-airbnb:before{content:"\ee60"}.bxl-algolia:before{content:"\ee61"}.bxl-amazon:before{content:"\ee62"}.bxl-android:before{content:"\ee63"}.bxl-angular:before{content:"\ee64"}.bxl-apple:before{content:"\ee65"}.bxl-audible:before{content:"\ee66"}.bxl-baidu:before{content:"\ee67"}.bxl-behance:before{content:"\ee68"}.bxl-bing:before{content:"\ee69"}.bxl-bitcoin:before{content:"\ee6a"}.bxl-blender:before{content:"\ee6b"}.bxl-blogger:before{content:"\ee6c"}.bxl-bootstrap:before{content:"\ee6d"}.bxl-chrome:before{content:"\ee6e"}.bxl-codepen:before{content:"\ee6f"}.bxl-c-plus-plus:before{content:"\ee70"}.bxl-creative-commons:before{content:"\ee71"}.bxl-css3:before{content:"\ee72"}.bxl-dailymotion:before{content:"\ee73"}.bxl-deviantart:before{content:"\ee74"}.bxl-dev-to:before{content:"\ee75"}.bxl-digg:before{content:"\ee76"}.bxl-digitalocean:before{content:"\ee77"}.bxl-discord:before{content:"\ee78"}.bxl-discourse:before{content:"\ee79"}.bxl-django:before{content:"\ee7a"}.bxl-dribbble:before{content:"\ee7b"}.bxl-dropbox:before{content:"\ee7c"}.bxl-drupal:before{content:"\ee7d"}.bxl-ebay:before{content:"\ee7e"}.bxl-edge:before{content:"\ee7f"}.bxl-etsy:before{content:"\ee80"}.bxl-facebook:before{content:"\ee81"}.bxl-facebook-circle:before{content:"\ee82"}.bxl-facebook-square:before{content:"\ee83"}.bxl-figma:before{content:"\ee84"}.bxl-firebase:before{content:"\ee85"}.bxl-firefox:before{content:"\ee86"}.bxl-flickr:before{content:"\ee87"}.bxl-flickr-square:before{content:"\ee88"}.bxl-foursquare:before{content:"\ee89"}.bxl-git:before{content:"\ee8a"}.bxl-github:before{content:"\ee8b"}.bxl-gitlab:before{content:"\ee8c"}.bxl-google:before{content:"\ee8d"}.bxl-google-cloud:before{content:"\ee8e"}.bxl-google-plus:before{content:"\ee8f"}.bxl-google-plus-circle:before{content:"\ee90"}.bxl-html5:before{content:"\ee91"}.bxl-imdb:before{content:"\ee92"}.bxl-instagram:before{content:"\ee93"}.bxl-instagram-alt:before{content:"\ee94"}.bxl-internet-explorer:before{content:"\ee95"}.bxl-invision:before{content:"\ee96"}.bxl-javascript:before{content:"\ee97"}.bxl-joomla:before{content:"\ee98"}.bxl-jquery:before{content:"\ee99"}.bxl-jsfiddle:before{content:"\ee9a"}.bxl-kickstarter:before{content:"\ee9b"}.bxl-kubernetes:before{content:"\ee9c"}.bxl-less:before{content:"\ee9d"}.bxl-linkedin:before{content:"\ee9e"}.bxl-linkedin-square:before{content:"\ee9f"}.bxl-magento:before{content:"\eea0"}.bxl-mailchimp:before{content:"\eea1"}.bxl-markdown:before{content:"\eea2"}.bxl-mastercard:before{content:"\eea3"}.bxl-medium:before{content:"\eea4"}.bxl-medium-old:before{content:"\eea5"}.bxl-medium-square:before{content:"\eea6"}.bxl-messenger:before{content:"\eea7"}.bxl-microsoft:before{content:"\eea8"}.bxl-microsoft-teams:before{content:"\eea9"}.bxl-nodejs:before{content:"\eeaa"}.bxl-ok-ru:before{content:"\eeab"}.bxl-opera:before{content:"\eeac"}.bxl-patreon:before{content:"\eead"}.bxl-paypal:before{content:"\eeae"}.bxl-periscope:before{content:"\eeaf"}.bxl-pinterest:before{content:"\eeb0"}.bxl-pinterest-alt:before{content:"\eeb1"}.bxl-play-store:before{content:"\eeb2"}.bxl-pocket:before{content:"\eeb3"}.bxl-product-hunt:before{content:"\eeb4"}.bxl-python:before{content:"\eeb5"}.bxl-quora:before{content:"\eeb6"}.bxl-react:before{content:"\eeb7"}.bxl-redbubble:before{content:"\eeb8"}.bxl-reddit:before{content:"\eeb9"}.bxl-redux:before{content:"\eeba"}.bxl-sass:before{content:"\eebb"}.bxl-shopify:before{content:"\eebc"}.bxl-skype:before{content:"\eebd"}.bxl-slack:before{content:"\eebe"}.bxl-slack-old:before{content:"\eebf"}.bxl-snapchat:before{content:"\eec0"}.bxl-soundcloud:before{content:"\eec1"}.bxl-spotify:before{content:"\eec2"}.bxl-spring-boot:before{content:"\eec3"}.bxl-squarespace:before{content:"\eec4"}.bxl-stack-overflow:before{content:"\eec5"}.bxl-stripe:before{content:"\eec6"}.bxl-telegram:before{content:"\eec7"}.bxl-trello:before{content:"\eec8"}.bxl-tumblr:before{content:"\eec9"}.bxl-tux:before{content:"\eeca"}.bxl-twitch:before{content:"\eecb"}.bxl-twitter:before{content:"\eecc"}.bxl-unsplash:before{content:"\eecd"}.bxl-vimeo:before{content:"\eece"}.bxl-visa:before{content:"\eecf"}.bxl-vk:before{content:"\eed0"}.bxl-vuejs:before{content:"\eed1"}.bxl-whatsapp:before{content:"\eed2"}.bxl-whatsapp-square:before{content:"\eed3"}.bxl-wikipedia:before{content:"\eed4"}.bxl-windows:before{content:"\eed5"}.bxl-wix:before{content:"\eed6"}.bxl-wordpress:before{content:"\eed7"}.bxl-yahoo:before{content:"\eed8"}.bxl-yelp:before{content:"\eed9"}.bxl-youtube:before{content:"\eeda"}.bxl-zoom:before{content:"\eedb"} -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icon/bootstrap-icons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "bootstrap-icons"; 3 | src: url("./fonts/bootstrap-icons.woff2?231ce25e89ab5804f9a6c427b8d325c9") format("woff2"), 4 | url("./fonts/bootstrap-icons.woff?231ce25e89ab5804f9a6c427b8d325c9") format("woff"); 5 | } 6 | /* */ 7 | [class^="bi-"]::before, 8 | [class*=" bi-"]::before { 9 | display: inline-block; 10 | font-family: bootstrap-icons !important; 11 | font-style: normal; 12 | font-weight: normal !important; 13 | font-variant: normal; 14 | text-transform: none; 15 | line-height: 1; 16 | vertical-align: -.125em; 17 | -webkit-font-smoothing: antialiased; 18 | -moz-osx-font-smoothing: grayscale; 19 | } 20 | 21 | .bi-alarm-fill::before { content: "\f101"; } 22 | .bi-alarm::before { content: "\f102"; } 23 | .bi-align-bottom::before { content: "\f103"; } 24 | .bi-align-center::before { content: "\f104"; } 25 | .bi-align-end::before { content: "\f105"; } 26 | .bi-align-middle::before { content: "\f106"; } 27 | .bi-align-start::before { content: "\f107"; } 28 | .bi-align-top::before { content: "\f108"; } 29 | .bi-alt::before { content: "\f109"; } 30 | .bi-app-indicator::before { content: "\f10a"; } 31 | .bi-app::before { content: "\f10b"; } 32 | .bi-archive-fill::before { content: "\f10c"; } 33 | .bi-archive::before { content: "\f10d"; } 34 | .bi-arrow-90deg-down::before { content: "\f10e"; } 35 | .bi-arrow-90deg-left::before { content: "\f10f"; } 36 | .bi-arrow-90deg-right::before { content: "\f110"; } 37 | .bi-arrow-90deg-up::before { content: "\f111"; } 38 | .bi-arrow-bar-down::before { content: "\f112"; } 39 | .bi-arrow-bar-left::before { content: "\f113"; } 40 | .bi-arrow-bar-right::before { content: "\f114"; } 41 | .bi-arrow-bar-up::before { content: "\f115"; } 42 | .bi-arrow-clockwise::before { content: "\f116"; } 43 | .bi-arrow-counterclockwise::before { content: "\f117"; } 44 | .bi-arrow-down-circle-fill::before { content: "\f118"; } 45 | .bi-arrow-down-circle::before { content: "\f119"; } 46 | .bi-arrow-down-left-circle-fill::before { content: "\f11a"; } 47 | .bi-arrow-down-left-circle::before { content: "\f11b"; } 48 | .bi-arrow-down-left-square-fill::before { content: "\f11c"; } 49 | .bi-arrow-down-left-square::before { content: "\f11d"; } 50 | .bi-arrow-down-left::before { content: "\f11e"; } 51 | .bi-arrow-down-right-circle-fill::before { content: "\f11f"; } 52 | .bi-arrow-down-right-circle::before { content: "\f120"; } 53 | .bi-arrow-down-right-square-fill::before { content: "\f121"; } 54 | .bi-arrow-down-right-square::before { content: "\f122"; } 55 | .bi-arrow-down-right::before { content: "\f123"; } 56 | .bi-arrow-down-short::before { content: "\f124"; } 57 | .bi-arrow-down-square-fill::before { content: "\f125"; } 58 | .bi-arrow-down-square::before { content: "\f126"; } 59 | .bi-arrow-down-up::before { content: "\f127"; } 60 | .bi-arrow-down::before { content: "\f128"; } 61 | .bi-arrow-left-circle-fill::before { content: "\f129"; } 62 | .bi-arrow-left-circle::before { content: "\f12a"; } 63 | .bi-arrow-left-right::before { content: "\f12b"; } 64 | .bi-arrow-left-short::before { content: "\f12c"; } 65 | .bi-arrow-left-square-fill::before { content: "\f12d"; } 66 | .bi-arrow-left-square::before { content: "\f12e"; } 67 | .bi-arrow-left::before { content: "\f12f"; } 68 | .bi-arrow-repeat::before { content: "\f130"; } 69 | .bi-arrow-return-left::before { content: "\f131"; } 70 | .bi-arrow-return-right::before { content: "\f132"; } 71 | .bi-arrow-right-circle-fill::before { content: "\f133"; } 72 | .bi-arrow-right-circle::before { content: "\f134"; } 73 | .bi-arrow-right-short::before { content: "\f135"; } 74 | .bi-arrow-right-square-fill::before { content: "\f136"; } 75 | .bi-arrow-right-square::before { content: "\f137"; } 76 | .bi-arrow-right::before { content: "\f138"; } 77 | .bi-arrow-up-circle-fill::before { content: "\f139"; } 78 | .bi-arrow-up-circle::before { content: "\f13a"; } 79 | .bi-arrow-up-left-circle-fill::before { content: "\f13b"; } 80 | .bi-arrow-up-left-circle::before { content: "\f13c"; } 81 | .bi-arrow-up-left-square-fill::before { content: "\f13d"; } 82 | .bi-arrow-up-left-square::before { content: "\f13e"; } 83 | .bi-arrow-up-left::before { content: "\f13f"; } 84 | .bi-arrow-up-right-circle-fill::before { content: "\f140"; } 85 | .bi-arrow-up-right-circle::before { content: "\f141"; } 86 | .bi-arrow-up-right-square-fill::before { content: "\f142"; } 87 | .bi-arrow-up-right-square::before { content: "\f143"; } 88 | .bi-arrow-up-right::before { content: "\f144"; } 89 | .bi-arrow-up-short::before { content: "\f145"; } 90 | .bi-arrow-up-square-fill::before { content: "\f146"; } 91 | .bi-arrow-up-square::before { content: "\f147"; } 92 | .bi-arrow-up::before { content: "\f148"; } 93 | .bi-arrows-angle-contract::before { content: "\f149"; } 94 | .bi-arrows-angle-expand::before { content: "\f14a"; } 95 | .bi-arrows-collapse::before { content: "\f14b"; } 96 | .bi-arrows-expand::before { content: "\f14c"; } 97 | .bi-arrows-fullscreen::before { content: "\f14d"; } 98 | .bi-arrows-move::before { content: "\f14e"; } 99 | .bi-aspect-ratio-fill::before { content: "\f14f"; } 100 | .bi-aspect-ratio::before { content: "\f150"; } 101 | .bi-asterisk::before { content: "\f151"; } 102 | .bi-at::before { content: "\f152"; } 103 | .bi-award-fill::before { content: "\f153"; } 104 | .bi-award::before { content: "\f154"; } 105 | .bi-back::before { content: "\f155"; } 106 | .bi-backspace-fill::before { content: "\f156"; } 107 | .bi-backspace-reverse-fill::before { content: "\f157"; } 108 | .bi-backspace-reverse::before { content: "\f158"; } 109 | .bi-backspace::before { content: "\f159"; } 110 | .bi-badge-3d-fill::before { content: "\f15a"; } 111 | .bi-badge-3d::before { content: "\f15b"; } 112 | .bi-badge-4k-fill::before { content: "\f15c"; } 113 | .bi-badge-4k::before { content: "\f15d"; } 114 | .bi-badge-8k-fill::before { content: "\f15e"; } 115 | .bi-badge-8k::before { content: "\f15f"; } 116 | .bi-badge-ad-fill::before { content: "\f160"; } 117 | .bi-badge-ad::before { content: "\f161"; } 118 | .bi-badge-ar-fill::before { content: "\f162"; } 119 | .bi-badge-ar::before { content: "\f163"; } 120 | .bi-badge-cc-fill::before { content: "\f164"; } 121 | .bi-badge-cc::before { content: "\f165"; } 122 | .bi-badge-hd-fill::before { content: "\f166"; } 123 | .bi-badge-hd::before { content: "\f167"; } 124 | .bi-badge-tm-fill::before { content: "\f168"; } 125 | .bi-badge-tm::before { content: "\f169"; } 126 | .bi-badge-vo-fill::before { content: "\f16a"; } 127 | .bi-badge-vo::before { content: "\f16b"; } 128 | .bi-badge-vr-fill::before { content: "\f16c"; } 129 | .bi-badge-vr::before { content: "\f16d"; } 130 | .bi-badge-wc-fill::before { content: "\f16e"; } 131 | .bi-badge-wc::before { content: "\f16f"; } 132 | .bi-bag-check-fill::before { content: "\f170"; } 133 | .bi-bag-check::before { content: "\f171"; } 134 | .bi-bag-dash-fill::before { content: "\f172"; } 135 | .bi-bag-dash::before { content: "\f173"; } 136 | .bi-bag-fill::before { content: "\f174"; } 137 | .bi-bag-plus-fill::before { content: "\f175"; } 138 | .bi-bag-plus::before { content: "\f176"; } 139 | .bi-bag-x-fill::before { content: "\f177"; } 140 | .bi-bag-x::before { content: "\f178"; } 141 | .bi-bag::before { content: "\f179"; } 142 | .bi-bar-chart-fill::before { content: "\f17a"; } 143 | .bi-bar-chart-line-fill::before { content: "\f17b"; } 144 | .bi-bar-chart-line::before { content: "\f17c"; } 145 | .bi-bar-chart-steps::before { content: "\f17d"; } 146 | .bi-bar-chart::before { content: "\f17e"; } 147 | .bi-basket-fill::before { content: "\f17f"; } 148 | .bi-basket::before { content: "\f180"; } 149 | .bi-basket2-fill::before { content: "\f181"; } 150 | .bi-basket2::before { content: "\f182"; } 151 | .bi-basket3-fill::before { content: "\f183"; } 152 | .bi-basket3::before { content: "\f184"; } 153 | .bi-battery-charging::before { content: "\f185"; } 154 | .bi-battery-full::before { content: "\f186"; } 155 | .bi-battery-half::before { content: "\f187"; } 156 | .bi-battery::before { content: "\f188"; } 157 | .bi-bell-fill::before { content: "\f189"; } 158 | .bi-bell::before { content: "\f18a"; } 159 | .bi-bezier::before { content: "\f18b"; } 160 | .bi-bezier2::before { content: "\f18c"; } 161 | .bi-bicycle::before { content: "\f18d"; } 162 | .bi-binoculars-fill::before { content: "\f18e"; } 163 | .bi-binoculars::before { content: "\f18f"; } 164 | .bi-blockquote-left::before { content: "\f190"; } 165 | .bi-blockquote-right::before { content: "\f191"; } 166 | .bi-book-fill::before { content: "\f192"; } 167 | .bi-book-half::before { content: "\f193"; } 168 | .bi-book::before { content: "\f194"; } 169 | .bi-bookmark-check-fill::before { content: "\f195"; } 170 | .bi-bookmark-check::before { content: "\f196"; } 171 | .bi-bookmark-dash-fill::before { content: "\f197"; } 172 | .bi-bookmark-dash::before { content: "\f198"; } 173 | .bi-bookmark-fill::before { content: "\f199"; } 174 | .bi-bookmark-heart-fill::before { content: "\f19a"; } 175 | .bi-bookmark-heart::before { content: "\f19b"; } 176 | .bi-bookmark-plus-fill::before { content: "\f19c"; } 177 | .bi-bookmark-plus::before { content: "\f19d"; } 178 | .bi-bookmark-star-fill::before { content: "\f19e"; } 179 | .bi-bookmark-star::before { content: "\f19f"; } 180 | .bi-bookmark-x-fill::before { content: "\f1a0"; } 181 | .bi-bookmark-x::before { content: "\f1a1"; } 182 | .bi-bookmark::before { content: "\f1a2"; } 183 | .bi-bookmarks-fill::before { content: "\f1a3"; } 184 | .bi-bookmarks::before { content: "\f1a4"; } 185 | .bi-bookshelf::before { content: "\f1a5"; } 186 | .bi-bootstrap-fill::before { content: "\f1a6"; } 187 | .bi-bootstrap-reboot::before { content: "\f1a7"; } 188 | .bi-bootstrap::before { content: "\f1a8"; } 189 | .bi-border-all::before { content: "\f1a9"; } 190 | .bi-border-bottom::before { content: "\f1aa"; } 191 | .bi-border-center::before { content: "\f1ab"; } 192 | .bi-border-inner::before { content: "\f1ac"; } 193 | .bi-border-left::before { content: "\f1ad"; } 194 | .bi-border-middle::before { content: "\f1ae"; } 195 | .bi-border-outer::before { content: "\f1af"; } 196 | .bi-border-right::before { content: "\f1b0"; } 197 | .bi-border-style::before { content: "\f1b1"; } 198 | .bi-border-top::before { content: "\f1b2"; } 199 | .bi-border-width::before { content: "\f1b3"; } 200 | .bi-border::before { content: "\f1b4"; } 201 | .bi-bounding-box-circles::before { content: "\f1b5"; } 202 | .bi-bounding-box::before { content: "\f1b6"; } 203 | .bi-box-arrow-down-left::before { content: "\f1b7"; } 204 | .bi-box-arrow-down-right::before { content: "\f1b8"; } 205 | .bi-box-arrow-down::before { content: "\f1b9"; } 206 | .bi-box-arrow-in-down-left::before { content: "\f1ba"; } 207 | .bi-box-arrow-in-down-right::before { content: "\f1bb"; } 208 | .bi-box-arrow-in-down::before { content: "\f1bc"; } 209 | .bi-box-arrow-in-left::before { content: "\f1bd"; } 210 | .bi-box-arrow-in-right::before { content: "\f1be"; } 211 | .bi-box-arrow-in-up-left::before { content: "\f1bf"; } 212 | .bi-box-arrow-in-up-right::before { content: "\f1c0"; } 213 | .bi-box-arrow-in-up::before { content: "\f1c1"; } 214 | .bi-box-arrow-left::before { content: "\f1c2"; } 215 | .bi-box-arrow-right::before { content: "\f1c3"; } 216 | .bi-box-arrow-up-left::before { content: "\f1c4"; } 217 | .bi-box-arrow-up-right::before { content: "\f1c5"; } 218 | .bi-box-arrow-up::before { content: "\f1c6"; } 219 | .bi-box-seam::before { content: "\f1c7"; } 220 | .bi-box::before { content: "\f1c8"; } 221 | .bi-braces::before { content: "\f1c9"; } 222 | .bi-bricks::before { content: "\f1ca"; } 223 | .bi-briefcase-fill::before { content: "\f1cb"; } 224 | .bi-briefcase::before { content: "\f1cc"; } 225 | .bi-brightness-alt-high-fill::before { content: "\f1cd"; } 226 | .bi-brightness-alt-high::before { content: "\f1ce"; } 227 | .bi-brightness-alt-low-fill::before { content: "\f1cf"; } 228 | .bi-brightness-alt-low::before { content: "\f1d0"; } 229 | .bi-brightness-high-fill::before { content: "\f1d1"; } 230 | .bi-brightness-high::before { content: "\f1d2"; } 231 | .bi-brightness-low-fill::before { content: "\f1d3"; } 232 | .bi-brightness-low::before { content: "\f1d4"; } 233 | .bi-broadcast-pin::before { content: "\f1d5"; } 234 | .bi-broadcast::before { content: "\f1d6"; } 235 | .bi-brush-fill::before { content: "\f1d7"; } 236 | .bi-brush::before { content: "\f1d8"; } 237 | .bi-bucket-fill::before { content: "\f1d9"; } 238 | .bi-bucket::before { content: "\f1da"; } 239 | .bi-bug-fill::before { content: "\f1db"; } 240 | .bi-bug::before { content: "\f1dc"; } 241 | .bi-building::before { content: "\f1dd"; } 242 | .bi-bullseye::before { content: "\f1de"; } 243 | .bi-calculator-fill::before { content: "\f1df"; } 244 | .bi-calculator::before { content: "\f1e0"; } 245 | .bi-calendar-check-fill::before { content: "\f1e1"; } 246 | .bi-calendar-check::before { content: "\f1e2"; } 247 | .bi-calendar-date-fill::before { content: "\f1e3"; } 248 | .bi-calendar-date::before { content: "\f1e4"; } 249 | .bi-calendar-day-fill::before { content: "\f1e5"; } 250 | .bi-calendar-day::before { content: "\f1e6"; } 251 | .bi-calendar-event-fill::before { content: "\f1e7"; } 252 | .bi-calendar-event::before { content: "\f1e8"; } 253 | .bi-calendar-fill::before { content: "\f1e9"; } 254 | .bi-calendar-minus-fill::before { content: "\f1ea"; } 255 | .bi-calendar-minus::before { content: "\f1eb"; } 256 | .bi-calendar-month-fill::before { content: "\f1ec"; } 257 | .bi-calendar-month::before { content: "\f1ed"; } 258 | .bi-calendar-plus-fill::before { content: "\f1ee"; } 259 | .bi-calendar-plus::before { content: "\f1ef"; } 260 | .bi-calendar-range-fill::before { content: "\f1f0"; } 261 | .bi-calendar-range::before { content: "\f1f1"; } 262 | .bi-calendar-week-fill::before { content: "\f1f2"; } 263 | .bi-calendar-week::before { content: "\f1f3"; } 264 | .bi-calendar-x-fill::before { content: "\f1f4"; } 265 | .bi-calendar-x::before { content: "\f1f5"; } 266 | .bi-calendar::before { content: "\f1f6"; } 267 | .bi-calendar2-check-fill::before { content: "\f1f7"; } 268 | .bi-calendar2-check::before { content: "\f1f8"; } 269 | .bi-calendar2-date-fill::before { content: "\f1f9"; } 270 | .bi-calendar2-date::before { content: "\f1fa"; } 271 | .bi-calendar2-day-fill::before { content: "\f1fb"; } 272 | .bi-calendar2-day::before { content: "\f1fc"; } 273 | .bi-calendar2-event-fill::before { content: "\f1fd"; } 274 | .bi-calendar2-event::before { content: "\f1fe"; } 275 | .bi-calendar2-fill::before { content: "\f1ff"; } 276 | .bi-calendar2-minus-fill::before { content: "\f200"; } 277 | .bi-calendar2-minus::before { content: "\f201"; } 278 | .bi-calendar2-month-fill::before { content: "\f202"; } 279 | .bi-calendar2-month::before { content: "\f203"; } 280 | .bi-calendar2-plus-fill::before { content: "\f204"; } 281 | .bi-calendar2-plus::before { content: "\f205"; } 282 | .bi-calendar2-range-fill::before { content: "\f206"; } 283 | .bi-calendar2-range::before { content: "\f207"; } 284 | .bi-calendar2-week-fill::before { content: "\f208"; } 285 | .bi-calendar2-week::before { content: "\f209"; } 286 | .bi-calendar2-x-fill::before { content: "\f20a"; } 287 | .bi-calendar2-x::before { content: "\f20b"; } 288 | .bi-calendar2::before { content: "\f20c"; } 289 | .bi-calendar3-event-fill::before { content: "\f20d"; } 290 | .bi-calendar3-event::before { content: "\f20e"; } 291 | .bi-calendar3-fill::before { content: "\f20f"; } 292 | .bi-calendar3-range-fill::before { content: "\f210"; } 293 | .bi-calendar3-range::before { content: "\f211"; } 294 | .bi-calendar3-week-fill::before { content: "\f212"; } 295 | .bi-calendar3-week::before { content: "\f213"; } 296 | .bi-calendar3::before { content: "\f214"; } 297 | .bi-calendar4-event::before { content: "\f215"; } 298 | .bi-calendar4-range::before { content: "\f216"; } 299 | .bi-calendar4-week::before { content: "\f217"; } 300 | .bi-calendar4::before { content: "\f218"; } 301 | .bi-camera-fill::before { content: "\f219"; } 302 | .bi-camera-reels-fill::before { content: "\f21a"; } 303 | .bi-camera-reels::before { content: "\f21b"; } 304 | .bi-camera-video-fill::before { content: "\f21c"; } 305 | .bi-camera-video-off-fill::before { content: "\f21d"; } 306 | .bi-camera-video-off::before { content: "\f21e"; } 307 | .bi-camera-video::before { content: "\f21f"; } 308 | .bi-camera::before { content: "\f220"; } 309 | .bi-camera2::before { content: "\f221"; } 310 | .bi-capslock-fill::before { content: "\f222"; } 311 | .bi-capslock::before { content: "\f223"; } 312 | .bi-card-checklist::before { content: "\f224"; } 313 | .bi-card-heading::before { content: "\f225"; } 314 | .bi-card-image::before { content: "\f226"; } 315 | .bi-card-list::before { content: "\f227"; } 316 | .bi-card-text::before { content: "\f228"; } 317 | .bi-caret-down-fill::before { content: "\f229"; } 318 | .bi-caret-down-square-fill::before { content: "\f22a"; } 319 | .bi-caret-down-square::before { content: "\f22b"; } 320 | .bi-caret-down::before { content: "\f22c"; } 321 | .bi-caret-left-fill::before { content: "\f22d"; } 322 | .bi-caret-left-square-fill::before { content: "\f22e"; } 323 | .bi-caret-left-square::before { content: "\f22f"; } 324 | .bi-caret-left::before { content: "\f230"; } 325 | .bi-caret-right-fill::before { content: "\f231"; } 326 | .bi-caret-right-square-fill::before { content: "\f232"; } 327 | .bi-caret-right-square::before { content: "\f233"; } 328 | .bi-caret-right::before { content: "\f234"; } 329 | .bi-caret-up-fill::before { content: "\f235"; } 330 | .bi-caret-up-square-fill::before { content: "\f236"; } 331 | .bi-caret-up-square::before { content: "\f237"; } 332 | .bi-caret-up::before { content: "\f238"; } 333 | .bi-cart-check-fill::before { content: "\f239"; } 334 | .bi-cart-check::before { content: "\f23a"; } 335 | .bi-cart-dash-fill::before { content: "\f23b"; } 336 | .bi-cart-dash::before { content: "\f23c"; } 337 | .bi-cart-fill::before { content: "\f23d"; } 338 | .bi-cart-plus-fill::before { content: "\f23e"; } 339 | .bi-cart-plus::before { content: "\f23f"; } 340 | .bi-cart-x-fill::before { content: "\f240"; } 341 | .bi-cart-x::before { content: "\f241"; } 342 | .bi-cart::before { content: "\f242"; } 343 | .bi-cart2::before { content: "\f243"; } 344 | .bi-cart3::before { content: "\f244"; } 345 | .bi-cart4::before { content: "\f245"; } 346 | .bi-cash-stack::before { content: "\f246"; } 347 | .bi-cash::before { content: "\f247"; } 348 | .bi-cast::before { content: "\f248"; } 349 | .bi-chat-dots-fill::before { content: "\f249"; } 350 | .bi-chat-dots::before { content: "\f24a"; } 351 | .bi-chat-fill::before { content: "\f24b"; } 352 | .bi-chat-left-dots-fill::before { content: "\f24c"; } 353 | .bi-chat-left-dots::before { content: "\f24d"; } 354 | .bi-chat-left-fill::before { content: "\f24e"; } 355 | .bi-chat-left-quote-fill::before { content: "\f24f"; } 356 | .bi-chat-left-quote::before { content: "\f250"; } 357 | .bi-chat-left-text-fill::before { content: "\f251"; } 358 | .bi-chat-left-text::before { content: "\f252"; } 359 | .bi-chat-left::before { content: "\f253"; } 360 | .bi-chat-quote-fill::before { content: "\f254"; } 361 | .bi-chat-quote::before { content: "\f255"; } 362 | .bi-chat-right-dots-fill::before { content: "\f256"; } 363 | .bi-chat-right-dots::before { content: "\f257"; } 364 | .bi-chat-right-fill::before { content: "\f258"; } 365 | .bi-chat-right-quote-fill::before { content: "\f259"; } 366 | .bi-chat-right-quote::before { content: "\f25a"; } 367 | .bi-chat-right-text-fill::before { content: "\f25b"; } 368 | .bi-chat-right-text::before { content: "\f25c"; } 369 | .bi-chat-right::before { content: "\f25d"; } 370 | .bi-chat-square-dots-fill::before { content: "\f25e"; } 371 | .bi-chat-square-dots::before { content: "\f25f"; } 372 | .bi-chat-square-fill::before { content: "\f260"; } 373 | .bi-chat-square-quote-fill::before { content: "\f261"; } 374 | .bi-chat-square-quote::before { content: "\f262"; } 375 | .bi-chat-square-text-fill::before { content: "\f263"; } 376 | .bi-chat-square-text::before { content: "\f264"; } 377 | .bi-chat-square::before { content: "\f265"; } 378 | .bi-chat-text-fill::before { content: "\f266"; } 379 | .bi-chat-text::before { content: "\f267"; } 380 | .bi-chat::before { content: "\f268"; } 381 | .bi-check-all::before { content: "\f269"; } 382 | .bi-check-circle-fill::before { content: "\f26a"; } 383 | .bi-check-circle::before { content: "\f26b"; } 384 | .bi-check-square-fill::before { content: "\f26c"; } 385 | .bi-check-square::before { content: "\f26d"; } 386 | .bi-check::before { content: "\f26e"; } 387 | .bi-check2-all::before { content: "\f26f"; } 388 | .bi-check2-circle::before { content: "\f270"; } 389 | .bi-check2-square::before { content: "\f271"; } 390 | .bi-check2::before { content: "\f272"; } 391 | .bi-chevron-bar-contract::before { content: "\f273"; } 392 | .bi-chevron-bar-down::before { content: "\f274"; } 393 | .bi-chevron-bar-expand::before { content: "\f275"; } 394 | .bi-chevron-bar-left::before { content: "\f276"; } 395 | .bi-chevron-bar-right::before { content: "\f277"; } 396 | .bi-chevron-bar-up::before { content: "\f278"; } 397 | .bi-chevron-compact-down::before { content: "\f279"; } 398 | .bi-chevron-compact-left::before { content: "\f27a"; } 399 | .bi-chevron-compact-right::before { content: "\f27b"; } 400 | .bi-chevron-compact-up::before { content: "\f27c"; } 401 | .bi-chevron-contract::before { content: "\f27d"; } 402 | .bi-chevron-double-down::before { content: "\f27e"; } 403 | .bi-chevron-double-left::before { content: "\f27f"; } 404 | .bi-chevron-double-right::before { content: "\f280"; } 405 | .bi-chevron-double-up::before { content: "\f281"; } 406 | .bi-chevron-down::before { content: "\f282"; } 407 | .bi-chevron-expand::before { content: "\f283"; } 408 | .bi-chevron-left::before { content: "\f284"; } 409 | .bi-chevron-right::before { content: "\f285"; } 410 | .bi-chevron-up::before { content: "\f286"; } 411 | .bi-circle-fill::before { content: "\f287"; } 412 | .bi-circle-half::before { content: "\f288"; } 413 | .bi-circle-square::before { content: "\f289"; } 414 | .bi-circle::before { content: "\f28a"; } 415 | .bi-clipboard-check::before { content: "\f28b"; } 416 | .bi-clipboard-data::before { content: "\f28c"; } 417 | .bi-clipboard-minus::before { content: "\f28d"; } 418 | .bi-clipboard-plus::before { content: "\f28e"; } 419 | .bi-clipboard-x::before { content: "\f28f"; } 420 | .bi-clipboard::before { content: "\f290"; } 421 | .bi-clock-fill::before { content: "\f291"; } 422 | .bi-clock-history::before { content: "\f292"; } 423 | .bi-clock::before { content: "\f293"; } 424 | .bi-cloud-arrow-down-fill::before { content: "\f294"; } 425 | .bi-cloud-arrow-down::before { content: "\f295"; } 426 | .bi-cloud-arrow-up-fill::before { content: "\f296"; } 427 | .bi-cloud-arrow-up::before { content: "\f297"; } 428 | .bi-cloud-check-fill::before { content: "\f298"; } 429 | .bi-cloud-check::before { content: "\f299"; } 430 | .bi-cloud-download-fill::before { content: "\f29a"; } 431 | .bi-cloud-download::before { content: "\f29b"; } 432 | .bi-cloud-drizzle-fill::before { content: "\f29c"; } 433 | .bi-cloud-drizzle::before { content: "\f29d"; } 434 | .bi-cloud-fill::before { content: "\f29e"; } 435 | .bi-cloud-fog-fill::before { content: "\f29f"; } 436 | .bi-cloud-fog::before { content: "\f2a0"; } 437 | .bi-cloud-fog2-fill::before { content: "\f2a1"; } 438 | .bi-cloud-fog2::before { content: "\f2a2"; } 439 | .bi-cloud-hail-fill::before { content: "\f2a3"; } 440 | .bi-cloud-hail::before { content: "\f2a4"; } 441 | .bi-cloud-haze-1::before { content: "\f2a5"; } 442 | .bi-cloud-haze-fill::before { content: "\f2a6"; } 443 | .bi-cloud-haze::before { content: "\f2a7"; } 444 | .bi-cloud-haze2-fill::before { content: "\f2a8"; } 445 | .bi-cloud-lightning-fill::before { content: "\f2a9"; } 446 | .bi-cloud-lightning-rain-fill::before { content: "\f2aa"; } 447 | .bi-cloud-lightning-rain::before { content: "\f2ab"; } 448 | .bi-cloud-lightning::before { content: "\f2ac"; } 449 | .bi-cloud-minus-fill::before { content: "\f2ad"; } 450 | .bi-cloud-minus::before { content: "\f2ae"; } 451 | .bi-cloud-moon-fill::before { content: "\f2af"; } 452 | .bi-cloud-moon::before { content: "\f2b0"; } 453 | .bi-cloud-plus-fill::before { content: "\f2b1"; } 454 | .bi-cloud-plus::before { content: "\f2b2"; } 455 | .bi-cloud-rain-fill::before { content: "\f2b3"; } 456 | .bi-cloud-rain-heavy-fill::before { content: "\f2b4"; } 457 | .bi-cloud-rain-heavy::before { content: "\f2b5"; } 458 | .bi-cloud-rain::before { content: "\f2b6"; } 459 | .bi-cloud-slash-fill::before { content: "\f2b7"; } 460 | .bi-cloud-slash::before { content: "\f2b8"; } 461 | .bi-cloud-sleet-fill::before { content: "\f2b9"; } 462 | .bi-cloud-sleet::before { content: "\f2ba"; } 463 | .bi-cloud-snow-fill::before { content: "\f2bb"; } 464 | .bi-cloud-snow::before { content: "\f2bc"; } 465 | .bi-cloud-sun-fill::before { content: "\f2bd"; } 466 | .bi-cloud-sun::before { content: "\f2be"; } 467 | .bi-cloud-upload-fill::before { content: "\f2bf"; } 468 | .bi-cloud-upload::before { content: "\f2c0"; } 469 | .bi-cloud::before { content: "\f2c1"; } 470 | .bi-clouds-fill::before { content: "\f2c2"; } 471 | .bi-clouds::before { content: "\f2c3"; } 472 | .bi-cloudy-fill::before { content: "\f2c4"; } 473 | .bi-cloudy::before { content: "\f2c5"; } 474 | .bi-code-slash::before { content: "\f2c6"; } 475 | .bi-code-square::before { content: "\f2c7"; } 476 | .bi-code::before { content: "\f2c8"; } 477 | .bi-collection-fill::before { content: "\f2c9"; } 478 | .bi-collection-play-fill::before { content: "\f2ca"; } 479 | .bi-collection-play::before { content: "\f2cb"; } 480 | .bi-collection::before { content: "\f2cc"; } 481 | .bi-columns-gap::before { content: "\f2cd"; } 482 | .bi-columns::before { content: "\f2ce"; } 483 | .bi-command::before { content: "\f2cf"; } 484 | .bi-compass-fill::before { content: "\f2d0"; } 485 | .bi-compass::before { content: "\f2d1"; } 486 | .bi-cone-striped::before { content: "\f2d2"; } 487 | .bi-cone::before { content: "\f2d3"; } 488 | .bi-controller::before { content: "\f2d4"; } 489 | .bi-cpu-fill::before { content: "\f2d5"; } 490 | .bi-cpu::before { content: "\f2d6"; } 491 | .bi-credit-card-2-back-fill::before { content: "\f2d7"; } 492 | .bi-credit-card-2-back::before { content: "\f2d8"; } 493 | .bi-credit-card-2-front-fill::before { content: "\f2d9"; } 494 | .bi-credit-card-2-front::before { content: "\f2da"; } 495 | .bi-credit-card-fill::before { content: "\f2db"; } 496 | .bi-credit-card::before { content: "\f2dc"; } 497 | .bi-crop::before { content: "\f2dd"; } 498 | .bi-cup-fill::before { content: "\f2de"; } 499 | .bi-cup-straw::before { content: "\f2df"; } 500 | .bi-cup::before { content: "\f2e0"; } 501 | .bi-cursor-fill::before { content: "\f2e1"; } 502 | .bi-cursor-text::before { content: "\f2e2"; } 503 | .bi-cursor::before { content: "\f2e3"; } 504 | .bi-dash-circle-dotted::before { content: "\f2e4"; } 505 | .bi-dash-circle-fill::before { content: "\f2e5"; } 506 | .bi-dash-circle::before { content: "\f2e6"; } 507 | .bi-dash-square-dotted::before { content: "\f2e7"; } 508 | .bi-dash-square-fill::before { content: "\f2e8"; } 509 | .bi-dash-square::before { content: "\f2e9"; } 510 | .bi-dash::before { content: "\f2ea"; } 511 | .bi-diagram-2-fill::before { content: "\f2eb"; } 512 | .bi-diagram-2::before { content: "\f2ec"; } 513 | .bi-diagram-3-fill::before { content: "\f2ed"; } 514 | .bi-diagram-3::before { content: "\f2ee"; } 515 | .bi-diamond-fill::before { content: "\f2ef"; } 516 | .bi-diamond-half::before { content: "\f2f0"; } 517 | .bi-diamond::before { content: "\f2f1"; } 518 | .bi-dice-1-fill::before { content: "\f2f2"; } 519 | .bi-dice-1::before { content: "\f2f3"; } 520 | .bi-dice-2-fill::before { content: "\f2f4"; } 521 | .bi-dice-2::before { content: "\f2f5"; } 522 | .bi-dice-3-fill::before { content: "\f2f6"; } 523 | .bi-dice-3::before { content: "\f2f7"; } 524 | .bi-dice-4-fill::before { content: "\f2f8"; } 525 | .bi-dice-4::before { content: "\f2f9"; } 526 | .bi-dice-5-fill::before { content: "\f2fa"; } 527 | .bi-dice-5::before { content: "\f2fb"; } 528 | .bi-dice-6-fill::before { content: "\f2fc"; } 529 | .bi-dice-6::before { content: "\f2fd"; } 530 | .bi-disc-fill::before { content: "\f2fe"; } 531 | .bi-disc::before { content: "\f2ff"; } 532 | .bi-discord::before { content: "\f300"; } 533 | .bi-display-fill::before { content: "\f301"; } 534 | .bi-display::before { content: "\f302"; } 535 | .bi-distribute-horizontal::before { content: "\f303"; } 536 | .bi-distribute-vertical::before { content: "\f304"; } 537 | .bi-door-closed-fill::before { content: "\f305"; } 538 | .bi-door-closed::before { content: "\f306"; } 539 | .bi-door-open-fill::before { content: "\f307"; } 540 | .bi-door-open::before { content: "\f308"; } 541 | .bi-dot::before { content: "\f309"; } 542 | .bi-download::before { content: "\f30a"; } 543 | .bi-droplet-fill::before { content: "\f30b"; } 544 | .bi-droplet-half::before { content: "\f30c"; } 545 | .bi-droplet::before { content: "\f30d"; } 546 | .bi-earbuds::before { content: "\f30e"; } 547 | .bi-easel-fill::before { content: "\f30f"; } 548 | .bi-easel::before { content: "\f310"; } 549 | .bi-egg-fill::before { content: "\f311"; } 550 | .bi-egg-fried::before { content: "\f312"; } 551 | .bi-egg::before { content: "\f313"; } 552 | .bi-eject-fill::before { content: "\f314"; } 553 | .bi-eject::before { content: "\f315"; } 554 | .bi-emoji-angry-fill::before { content: "\f316"; } 555 | .bi-emoji-angry::before { content: "\f317"; } 556 | .bi-emoji-dizzy-fill::before { content: "\f318"; } 557 | .bi-emoji-dizzy::before { content: "\f319"; } 558 | .bi-emoji-expressionless-fill::before { content: "\f31a"; } 559 | .bi-emoji-expressionless::before { content: "\f31b"; } 560 | .bi-emoji-frown-fill::before { content: "\f31c"; } 561 | .bi-emoji-frown::before { content: "\f31d"; } 562 | .bi-emoji-heart-eyes-fill::before { content: "\f31e"; } 563 | .bi-emoji-heart-eyes::before { content: "\f31f"; } 564 | .bi-emoji-laughing-fill::before { content: "\f320"; } 565 | .bi-emoji-laughing::before { content: "\f321"; } 566 | .bi-emoji-neutral-fill::before { content: "\f322"; } 567 | .bi-emoji-neutral::before { content: "\f323"; } 568 | .bi-emoji-smile-fill::before { content: "\f324"; } 569 | .bi-emoji-smile-upside-down-fill::before { content: "\f325"; } 570 | .bi-emoji-smile-upside-down::before { content: "\f326"; } 571 | .bi-emoji-smile::before { content: "\f327"; } 572 | .bi-emoji-sunglasses-fill::before { content: "\f328"; } 573 | .bi-emoji-sunglasses::before { content: "\f329"; } 574 | .bi-emoji-wink-fill::before { content: "\f32a"; } 575 | .bi-emoji-wink::before { content: "\f32b"; } 576 | .bi-envelope-fill::before { content: "\f32c"; } 577 | .bi-envelope-open-fill::before { content: "\f32d"; } 578 | .bi-envelope-open::before { content: "\f32e"; } 579 | .bi-envelope::before { content: "\f32f"; } 580 | .bi-eraser-fill::before { content: "\f330"; } 581 | .bi-eraser::before { content: "\f331"; } 582 | .bi-exclamation-circle-fill::before { content: "\f332"; } 583 | .bi-exclamation-circle::before { content: "\f333"; } 584 | .bi-exclamation-diamond-fill::before { content: "\f334"; } 585 | .bi-exclamation-diamond::before { content: "\f335"; } 586 | .bi-exclamation-octagon-fill::before { content: "\f336"; } 587 | .bi-exclamation-octagon::before { content: "\f337"; } 588 | .bi-exclamation-square-fill::before { content: "\f338"; } 589 | .bi-exclamation-square::before { content: "\f339"; } 590 | .bi-exclamation-triangle-fill::before { content: "\f33a"; } 591 | .bi-exclamation-triangle::before { content: "\f33b"; } 592 | .bi-exclamation::before { content: "\f33c"; } 593 | .bi-exclude::before { content: "\f33d"; } 594 | .bi-eye-fill::before { content: "\f33e"; } 595 | .bi-eye-slash-fill::before { content: "\f33f"; } 596 | .bi-eye-slash::before { content: "\f340"; } 597 | .bi-eye::before { content: "\f341"; } 598 | .bi-eyedropper::before { content: "\f342"; } 599 | .bi-eyeglasses::before { content: "\f343"; } 600 | .bi-facebook::before { content: "\f344"; } 601 | .bi-file-arrow-down-fill::before { content: "\f345"; } 602 | .bi-file-arrow-down::before { content: "\f346"; } 603 | .bi-file-arrow-up-fill::before { content: "\f347"; } 604 | .bi-file-arrow-up::before { content: "\f348"; } 605 | .bi-file-bar-graph-fill::before { content: "\f349"; } 606 | .bi-file-bar-graph::before { content: "\f34a"; } 607 | .bi-file-binary-fill::before { content: "\f34b"; } 608 | .bi-file-binary::before { content: "\f34c"; } 609 | .bi-file-break-fill::before { content: "\f34d"; } 610 | .bi-file-break::before { content: "\f34e"; } 611 | .bi-file-check-fill::before { content: "\f34f"; } 612 | .bi-file-check::before { content: "\f350"; } 613 | .bi-file-code-fill::before { content: "\f351"; } 614 | .bi-file-code::before { content: "\f352"; } 615 | .bi-file-diff-fill::before { content: "\f353"; } 616 | .bi-file-diff::before { content: "\f354"; } 617 | .bi-file-earmark-arrow-down-fill::before { content: "\f355"; } 618 | .bi-file-earmark-arrow-down::before { content: "\f356"; } 619 | .bi-file-earmark-arrow-up-fill::before { content: "\f357"; } 620 | .bi-file-earmark-arrow-up::before { content: "\f358"; } 621 | .bi-file-earmark-bar-graph-fill::before { content: "\f359"; } 622 | .bi-file-earmark-bar-graph::before { content: "\f35a"; } 623 | .bi-file-earmark-binary-fill::before { content: "\f35b"; } 624 | .bi-file-earmark-binary::before { content: "\f35c"; } 625 | .bi-file-earmark-break-fill::before { content: "\f35d"; } 626 | .bi-file-earmark-break::before { content: "\f35e"; } 627 | .bi-file-earmark-check-fill::before { content: "\f35f"; } 628 | .bi-file-earmark-check::before { content: "\f360"; } 629 | .bi-file-earmark-code-fill::before { content: "\f361"; } 630 | .bi-file-earmark-code::before { content: "\f362"; } 631 | .bi-file-earmark-diff-fill::before { content: "\f363"; } 632 | .bi-file-earmark-diff::before { content: "\f364"; } 633 | .bi-file-earmark-easel-fill::before { content: "\f365"; } 634 | .bi-file-earmark-easel::before { content: "\f366"; } 635 | .bi-file-earmark-excel-fill::before { content: "\f367"; } 636 | .bi-file-earmark-excel::before { content: "\f368"; } 637 | .bi-file-earmark-fill::before { content: "\f369"; } 638 | .bi-file-earmark-font-fill::before { content: "\f36a"; } 639 | .bi-file-earmark-font::before { content: "\f36b"; } 640 | .bi-file-earmark-image-fill::before { content: "\f36c"; } 641 | .bi-file-earmark-image::before { content: "\f36d"; } 642 | .bi-file-earmark-lock-fill::before { content: "\f36e"; } 643 | .bi-file-earmark-lock::before { content: "\f36f"; } 644 | .bi-file-earmark-lock2-fill::before { content: "\f370"; } 645 | .bi-file-earmark-lock2::before { content: "\f371"; } 646 | .bi-file-earmark-medical-fill::before { content: "\f372"; } 647 | .bi-file-earmark-medical::before { content: "\f373"; } 648 | .bi-file-earmark-minus-fill::before { content: "\f374"; } 649 | .bi-file-earmark-minus::before { content: "\f375"; } 650 | .bi-file-earmark-music-fill::before { content: "\f376"; } 651 | .bi-file-earmark-music::before { content: "\f377"; } 652 | .bi-file-earmark-person-fill::before { content: "\f378"; } 653 | .bi-file-earmark-person::before { content: "\f379"; } 654 | .bi-file-earmark-play-fill::before { content: "\f37a"; } 655 | .bi-file-earmark-play::before { content: "\f37b"; } 656 | .bi-file-earmark-plus-fill::before { content: "\f37c"; } 657 | .bi-file-earmark-plus::before { content: "\f37d"; } 658 | .bi-file-earmark-post-fill::before { content: "\f37e"; } 659 | .bi-file-earmark-post::before { content: "\f37f"; } 660 | .bi-file-earmark-ppt-fill::before { content: "\f380"; } 661 | .bi-file-earmark-ppt::before { content: "\f381"; } 662 | .bi-file-earmark-richtext-fill::before { content: "\f382"; } 663 | .bi-file-earmark-richtext::before { content: "\f383"; } 664 | .bi-file-earmark-ruled-fill::before { content: "\f384"; } 665 | .bi-file-earmark-ruled::before { content: "\f385"; } 666 | .bi-file-earmark-slides-fill::before { content: "\f386"; } 667 | .bi-file-earmark-slides::before { content: "\f387"; } 668 | .bi-file-earmark-spreadsheet-fill::before { content: "\f388"; } 669 | .bi-file-earmark-spreadsheet::before { content: "\f389"; } 670 | .bi-file-earmark-text-fill::before { content: "\f38a"; } 671 | .bi-file-earmark-text::before { content: "\f38b"; } 672 | .bi-file-earmark-word-fill::before { content: "\f38c"; } 673 | .bi-file-earmark-word::before { content: "\f38d"; } 674 | .bi-file-earmark-x-fill::before { content: "\f38e"; } 675 | .bi-file-earmark-x::before { content: "\f38f"; } 676 | .bi-file-earmark-zip-fill::before { content: "\f390"; } 677 | .bi-file-earmark-zip::before { content: "\f391"; } 678 | .bi-file-earmark::before { content: "\f392"; } 679 | .bi-file-easel-fill::before { content: "\f393"; } 680 | .bi-file-easel::before { content: "\f394"; } 681 | .bi-file-excel-fill::before { content: "\f395"; } 682 | .bi-file-excel::before { content: "\f396"; } 683 | .bi-file-fill::before { content: "\f397"; } 684 | .bi-file-font-fill::before { content: "\f398"; } 685 | .bi-file-font::before { content: "\f399"; } 686 | .bi-file-image-fill::before { content: "\f39a"; } 687 | .bi-file-image::before { content: "\f39b"; } 688 | .bi-file-lock-fill::before { content: "\f39c"; } 689 | .bi-file-lock::before { content: "\f39d"; } 690 | .bi-file-lock2-fill::before { content: "\f39e"; } 691 | .bi-file-lock2::before { content: "\f39f"; } 692 | .bi-file-medical-fill::before { content: "\f3a0"; } 693 | .bi-file-medical::before { content: "\f3a1"; } 694 | .bi-file-minus-fill::before { content: "\f3a2"; } 695 | .bi-file-minus::before { content: "\f3a3"; } 696 | .bi-file-music-fill::before { content: "\f3a4"; } 697 | .bi-file-music::before { content: "\f3a5"; } 698 | .bi-file-person-fill::before { content: "\f3a6"; } 699 | .bi-file-person::before { content: "\f3a7"; } 700 | .bi-file-play-fill::before { content: "\f3a8"; } 701 | .bi-file-play::before { content: "\f3a9"; } 702 | .bi-file-plus-fill::before { content: "\f3aa"; } 703 | .bi-file-plus::before { content: "\f3ab"; } 704 | .bi-file-post-fill::before { content: "\f3ac"; } 705 | .bi-file-post::before { content: "\f3ad"; } 706 | .bi-file-ppt-fill::before { content: "\f3ae"; } 707 | .bi-file-ppt::before { content: "\f3af"; } 708 | .bi-file-richtext-fill::before { content: "\f3b0"; } 709 | .bi-file-richtext::before { content: "\f3b1"; } 710 | .bi-file-ruled-fill::before { content: "\f3b2"; } 711 | .bi-file-ruled::before { content: "\f3b3"; } 712 | .bi-file-slides-fill::before { content: "\f3b4"; } 713 | .bi-file-slides::before { content: "\f3b5"; } 714 | .bi-file-spreadsheet-fill::before { content: "\f3b6"; } 715 | .bi-file-spreadsheet::before { content: "\f3b7"; } 716 | .bi-file-text-fill::before { content: "\f3b8"; } 717 | .bi-file-text::before { content: "\f3b9"; } 718 | .bi-file-word-fill::before { content: "\f3ba"; } 719 | .bi-file-word::before { content: "\f3bb"; } 720 | .bi-file-x-fill::before { content: "\f3bc"; } 721 | .bi-file-x::before { content: "\f3bd"; } 722 | .bi-file-zip-fill::before { content: "\f3be"; } 723 | .bi-file-zip::before { content: "\f3bf"; } 724 | .bi-file::before { content: "\f3c0"; } 725 | .bi-files-alt::before { content: "\f3c1"; } 726 | .bi-files::before { content: "\f3c2"; } 727 | .bi-film::before { content: "\f3c3"; } 728 | .bi-filter-circle-fill::before { content: "\f3c4"; } 729 | .bi-filter-circle::before { content: "\f3c5"; } 730 | .bi-filter-left::before { content: "\f3c6"; } 731 | .bi-filter-right::before { content: "\f3c7"; } 732 | .bi-filter-square-fill::before { content: "\f3c8"; } 733 | .bi-filter-square::before { content: "\f3c9"; } 734 | .bi-filter::before { content: "\f3ca"; } 735 | .bi-flag-fill::before { content: "\f3cb"; } 736 | .bi-flag::before { content: "\f3cc"; } 737 | .bi-flower1::before { content: "\f3cd"; } 738 | .bi-flower2::before { content: "\f3ce"; } 739 | .bi-flower3::before { content: "\f3cf"; } 740 | .bi-folder-check::before { content: "\f3d0"; } 741 | .bi-folder-fill::before { content: "\f3d1"; } 742 | .bi-folder-minus::before { content: "\f3d2"; } 743 | .bi-folder-plus::before { content: "\f3d3"; } 744 | .bi-folder-symlink-fill::before { content: "\f3d4"; } 745 | .bi-folder-symlink::before { content: "\f3d5"; } 746 | .bi-folder-x::before { content: "\f3d6"; } 747 | .bi-folder::before { content: "\f3d7"; } 748 | .bi-folder2-open::before { content: "\f3d8"; } 749 | .bi-folder2::before { content: "\f3d9"; } 750 | .bi-fonts::before { content: "\f3da"; } 751 | .bi-forward-fill::before { content: "\f3db"; } 752 | .bi-forward::before { content: "\f3dc"; } 753 | .bi-front::before { content: "\f3dd"; } 754 | .bi-fullscreen-exit::before { content: "\f3de"; } 755 | .bi-fullscreen::before { content: "\f3df"; } 756 | .bi-funnel-fill::before { content: "\f3e0"; } 757 | .bi-funnel::before { content: "\f3e1"; } 758 | .bi-gear-fill::before { content: "\f3e2"; } 759 | .bi-gear-wide-connected::before { content: "\f3e3"; } 760 | .bi-gear-wide::before { content: "\f3e4"; } 761 | .bi-gear::before { content: "\f3e5"; } 762 | .bi-gem::before { content: "\f3e6"; } 763 | .bi-geo-alt-fill::before { content: "\f3e7"; } 764 | .bi-geo-alt::before { content: "\f3e8"; } 765 | .bi-geo-fill::before { content: "\f3e9"; } 766 | .bi-geo::before { content: "\f3ea"; } 767 | .bi-gift-fill::before { content: "\f3eb"; } 768 | .bi-gift::before { content: "\f3ec"; } 769 | .bi-github::before { content: "\f3ed"; } 770 | .bi-globe::before { content: "\f3ee"; } 771 | .bi-globe2::before { content: "\f3ef"; } 772 | .bi-google::before { content: "\f3f0"; } 773 | .bi-graph-down::before { content: "\f3f1"; } 774 | .bi-graph-up::before { content: "\f3f2"; } 775 | .bi-grid-1x2-fill::before { content: "\f3f3"; } 776 | .bi-grid-1x2::before { content: "\f3f4"; } 777 | .bi-grid-3x2-gap-fill::before { content: "\f3f5"; } 778 | .bi-grid-3x2-gap::before { content: "\f3f6"; } 779 | .bi-grid-3x2::before { content: "\f3f7"; } 780 | .bi-grid-3x3-gap-fill::before { content: "\f3f8"; } 781 | .bi-grid-3x3-gap::before { content: "\f3f9"; } 782 | .bi-grid-3x3::before { content: "\f3fa"; } 783 | .bi-grid-fill::before { content: "\f3fb"; } 784 | .bi-grid::before { content: "\f3fc"; } 785 | .bi-grip-horizontal::before { content: "\f3fd"; } 786 | .bi-grip-vertical::before { content: "\f3fe"; } 787 | .bi-hammer::before { content: "\f3ff"; } 788 | .bi-hand-index-fill::before { content: "\f400"; } 789 | .bi-hand-index-thumb-fill::before { content: "\f401"; } 790 | .bi-hand-index-thumb::before { content: "\f402"; } 791 | .bi-hand-index::before { content: "\f403"; } 792 | .bi-hand-thumbs-down-fill::before { content: "\f404"; } 793 | .bi-hand-thumbs-down::before { content: "\f405"; } 794 | .bi-hand-thumbs-up-fill::before { content: "\f406"; } 795 | .bi-hand-thumbs-up::before { content: "\f407"; } 796 | .bi-handbag-fill::before { content: "\f408"; } 797 | .bi-handbag::before { content: "\f409"; } 798 | .bi-hash::before { content: "\f40a"; } 799 | .bi-hdd-fill::before { content: "\f40b"; } 800 | .bi-hdd-network-fill::before { content: "\f40c"; } 801 | .bi-hdd-network::before { content: "\f40d"; } 802 | .bi-hdd-rack-fill::before { content: "\f40e"; } 803 | .bi-hdd-rack::before { content: "\f40f"; } 804 | .bi-hdd-stack-fill::before { content: "\f410"; } 805 | .bi-hdd-stack::before { content: "\f411"; } 806 | .bi-hdd::before { content: "\f412"; } 807 | .bi-headphones::before { content: "\f413"; } 808 | .bi-headset::before { content: "\f414"; } 809 | .bi-heart-fill::before { content: "\f415"; } 810 | .bi-heart-half::before { content: "\f416"; } 811 | .bi-heart::before { content: "\f417"; } 812 | .bi-heptagon-fill::before { content: "\f418"; } 813 | .bi-heptagon-half::before { content: "\f419"; } 814 | .bi-heptagon::before { content: "\f41a"; } 815 | .bi-hexagon-fill::before { content: "\f41b"; } 816 | .bi-hexagon-half::before { content: "\f41c"; } 817 | .bi-hexagon::before { content: "\f41d"; } 818 | .bi-hourglass-bottom::before { content: "\f41e"; } 819 | .bi-hourglass-split::before { content: "\f41f"; } 820 | .bi-hourglass-top::before { content: "\f420"; } 821 | .bi-hourglass::before { content: "\f421"; } 822 | .bi-house-door-fill::before { content: "\f422"; } 823 | .bi-house-door::before { content: "\f423"; } 824 | .bi-house-fill::before { content: "\f424"; } 825 | .bi-house::before { content: "\f425"; } 826 | .bi-hr::before { content: "\f426"; } 827 | .bi-hurricane::before { content: "\f427"; } 828 | .bi-image-alt::before { content: "\f428"; } 829 | .bi-image-fill::before { content: "\f429"; } 830 | .bi-image::before { content: "\f42a"; } 831 | .bi-images::before { content: "\f42b"; } 832 | .bi-inbox-fill::before { content: "\f42c"; } 833 | .bi-inbox::before { content: "\f42d"; } 834 | .bi-inboxes-fill::before { content: "\f42e"; } 835 | .bi-inboxes::before { content: "\f42f"; } 836 | .bi-info-circle-fill::before { content: "\f430"; } 837 | .bi-info-circle::before { content: "\f431"; } 838 | .bi-info-square-fill::before { content: "\f432"; } 839 | .bi-info-square::before { content: "\f433"; } 840 | .bi-info::before { content: "\f434"; } 841 | .bi-input-cursor-text::before { content: "\f435"; } 842 | .bi-input-cursor::before { content: "\f436"; } 843 | .bi-instagram::before { content: "\f437"; } 844 | .bi-intersect::before { content: "\f438"; } 845 | .bi-journal-album::before { content: "\f439"; } 846 | .bi-journal-arrow-down::before { content: "\f43a"; } 847 | .bi-journal-arrow-up::before { content: "\f43b"; } 848 | .bi-journal-bookmark-fill::before { content: "\f43c"; } 849 | .bi-journal-bookmark::before { content: "\f43d"; } 850 | .bi-journal-check::before { content: "\f43e"; } 851 | .bi-journal-code::before { content: "\f43f"; } 852 | .bi-journal-medical::before { content: "\f440"; } 853 | .bi-journal-minus::before { content: "\f441"; } 854 | .bi-journal-plus::before { content: "\f442"; } 855 | .bi-journal-richtext::before { content: "\f443"; } 856 | .bi-journal-text::before { content: "\f444"; } 857 | .bi-journal-x::before { content: "\f445"; } 858 | .bi-journal::before { content: "\f446"; } 859 | .bi-journals::before { content: "\f447"; } 860 | .bi-joystick::before { content: "\f448"; } 861 | .bi-justify-left::before { content: "\f449"; } 862 | .bi-justify-right::before { content: "\f44a"; } 863 | .bi-justify::before { content: "\f44b"; } 864 | .bi-kanban-fill::before { content: "\f44c"; } 865 | .bi-kanban::before { content: "\f44d"; } 866 | .bi-key-fill::before { content: "\f44e"; } 867 | .bi-key::before { content: "\f44f"; } 868 | .bi-keyboard-fill::before { content: "\f450"; } 869 | .bi-keyboard::before { content: "\f451"; } 870 | .bi-ladder::before { content: "\f452"; } 871 | .bi-lamp-fill::before { content: "\f453"; } 872 | .bi-lamp::before { content: "\f454"; } 873 | .bi-laptop-fill::before { content: "\f455"; } 874 | .bi-laptop::before { content: "\f456"; } 875 | .bi-layer-backward::before { content: "\f457"; } 876 | .bi-layer-forward::before { content: "\f458"; } 877 | .bi-layers-fill::before { content: "\f459"; } 878 | .bi-layers-half::before { content: "\f45a"; } 879 | .bi-layers::before { content: "\f45b"; } 880 | .bi-layout-sidebar-inset-reverse::before { content: "\f45c"; } 881 | .bi-layout-sidebar-inset::before { content: "\f45d"; } 882 | .bi-layout-sidebar-reverse::before { content: "\f45e"; } 883 | .bi-layout-sidebar::before { content: "\f45f"; } 884 | .bi-layout-split::before { content: "\f460"; } 885 | .bi-layout-text-sidebar-reverse::before { content: "\f461"; } 886 | .bi-layout-text-sidebar::before { content: "\f462"; } 887 | .bi-layout-text-window-reverse::before { content: "\f463"; } 888 | .bi-layout-text-window::before { content: "\f464"; } 889 | .bi-layout-three-columns::before { content: "\f465"; } 890 | .bi-layout-wtf::before { content: "\f466"; } 891 | .bi-life-preserver::before { content: "\f467"; } 892 | .bi-lightbulb-fill::before { content: "\f468"; } 893 | .bi-lightbulb-off-fill::before { content: "\f469"; } 894 | .bi-lightbulb-off::before { content: "\f46a"; } 895 | .bi-lightbulb::before { content: "\f46b"; } 896 | .bi-lightning-charge-fill::before { content: "\f46c"; } 897 | .bi-lightning-charge::before { content: "\f46d"; } 898 | .bi-lightning-fill::before { content: "\f46e"; } 899 | .bi-lightning::before { content: "\f46f"; } 900 | .bi-link-45deg::before { content: "\f470"; } 901 | .bi-link::before { content: "\f471"; } 902 | .bi-linkedin::before { content: "\f472"; } 903 | .bi-list-check::before { content: "\f473"; } 904 | .bi-list-nested::before { content: "\f474"; } 905 | .bi-list-ol::before { content: "\f475"; } 906 | .bi-list-stars::before { content: "\f476"; } 907 | .bi-list-task::before { content: "\f477"; } 908 | .bi-list-ul::before { content: "\f478"; } 909 | .bi-list::before { content: "\f479"; } 910 | .bi-lock-fill::before { content: "\f47a"; } 911 | .bi-lock::before { content: "\f47b"; } 912 | .bi-mailbox::before { content: "\f47c"; } 913 | .bi-mailbox2::before { content: "\f47d"; } 914 | .bi-map-fill::before { content: "\f47e"; } 915 | .bi-map::before { content: "\f47f"; } 916 | .bi-markdown-fill::before { content: "\f480"; } 917 | .bi-markdown::before { content: "\f481"; } 918 | .bi-mask::before { content: "\f482"; } 919 | .bi-megaphone-fill::before { content: "\f483"; } 920 | .bi-megaphone::before { content: "\f484"; } 921 | .bi-menu-app-fill::before { content: "\f485"; } 922 | .bi-menu-app::before { content: "\f486"; } 923 | .bi-menu-button-fill::before { content: "\f487"; } 924 | .bi-menu-button-wide-fill::before { content: "\f488"; } 925 | .bi-menu-button-wide::before { content: "\f489"; } 926 | .bi-menu-button::before { content: "\f48a"; } 927 | .bi-menu-down::before { content: "\f48b"; } 928 | .bi-menu-up::before { content: "\f48c"; } 929 | .bi-mic-fill::before { content: "\f48d"; } 930 | .bi-mic-mute-fill::before { content: "\f48e"; } 931 | .bi-mic-mute::before { content: "\f48f"; } 932 | .bi-mic::before { content: "\f490"; } 933 | .bi-minecart-loaded::before { content: "\f491"; } 934 | .bi-minecart::before { content: "\f492"; } 935 | .bi-moisture::before { content: "\f493"; } 936 | .bi-moon-fill::before { content: "\f494"; } 937 | .bi-moon-stars-fill::before { content: "\f495"; } 938 | .bi-moon-stars::before { content: "\f496"; } 939 | .bi-moon::before { content: "\f497"; } 940 | .bi-mouse-fill::before { content: "\f498"; } 941 | .bi-mouse::before { content: "\f499"; } 942 | .bi-mouse2-fill::before { content: "\f49a"; } 943 | .bi-mouse2::before { content: "\f49b"; } 944 | .bi-mouse3-fill::before { content: "\f49c"; } 945 | .bi-mouse3::before { content: "\f49d"; } 946 | .bi-music-note-beamed::before { content: "\f49e"; } 947 | .bi-music-note-list::before { content: "\f49f"; } 948 | .bi-music-note::before { content: "\f4a0"; } 949 | .bi-music-player-fill::before { content: "\f4a1"; } 950 | .bi-music-player::before { content: "\f4a2"; } 951 | .bi-newspaper::before { content: "\f4a3"; } 952 | .bi-node-minus-fill::before { content: "\f4a4"; } 953 | .bi-node-minus::before { content: "\f4a5"; } 954 | .bi-node-plus-fill::before { content: "\f4a6"; } 955 | .bi-node-plus::before { content: "\f4a7"; } 956 | .bi-nut-fill::before { content: "\f4a8"; } 957 | .bi-nut::before { content: "\f4a9"; } 958 | .bi-octagon-fill::before { content: "\f4aa"; } 959 | .bi-octagon-half::before { content: "\f4ab"; } 960 | .bi-octagon::before { content: "\f4ac"; } 961 | .bi-option::before { content: "\f4ad"; } 962 | .bi-outlet::before { content: "\f4ae"; } 963 | .bi-paint-bucket::before { content: "\f4af"; } 964 | .bi-palette-fill::before { content: "\f4b0"; } 965 | .bi-palette::before { content: "\f4b1"; } 966 | .bi-palette2::before { content: "\f4b2"; } 967 | .bi-paperclip::before { content: "\f4b3"; } 968 | .bi-paragraph::before { content: "\f4b4"; } 969 | .bi-patch-check-fill::before { content: "\f4b5"; } 970 | .bi-patch-check::before { content: "\f4b6"; } 971 | .bi-patch-exclamation-fill::before { content: "\f4b7"; } 972 | .bi-patch-exclamation::before { content: "\f4b8"; } 973 | .bi-patch-minus-fill::before { content: "\f4b9"; } 974 | .bi-patch-minus::before { content: "\f4ba"; } 975 | .bi-patch-plus-fill::before { content: "\f4bb"; } 976 | .bi-patch-plus::before { content: "\f4bc"; } 977 | .bi-patch-question-fill::before { content: "\f4bd"; } 978 | .bi-patch-question::before { content: "\f4be"; } 979 | .bi-pause-btn-fill::before { content: "\f4bf"; } 980 | .bi-pause-btn::before { content: "\f4c0"; } 981 | .bi-pause-circle-fill::before { content: "\f4c1"; } 982 | .bi-pause-circle::before { content: "\f4c2"; } 983 | .bi-pause-fill::before { content: "\f4c3"; } 984 | .bi-pause::before { content: "\f4c4"; } 985 | .bi-peace-fill::before { content: "\f4c5"; } 986 | .bi-peace::before { content: "\f4c6"; } 987 | .bi-pen-fill::before { content: "\f4c7"; } 988 | .bi-pen::before { content: "\f4c8"; } 989 | .bi-pencil-fill::before { content: "\f4c9"; } 990 | .bi-pencil-square::before { content: "\f4ca"; } 991 | .bi-pencil::before { content: "\f4cb"; } 992 | .bi-pentagon-fill::before { content: "\f4cc"; } 993 | .bi-pentagon-half::before { content: "\f4cd"; } 994 | .bi-pentagon::before { content: "\f4ce"; } 995 | .bi-people-fill::before { content: "\f4cf"; } 996 | .bi-people::before { content: "\f4d0"; } 997 | .bi-percent::before { content: "\f4d1"; } 998 | .bi-person-badge-fill::before { content: "\f4d2"; } 999 | .bi-person-badge::before { content: "\f4d3"; } 1000 | .bi-person-bounding-box::before { content: "\f4d4"; } 1001 | .bi-person-check-fill::before { content: "\f4d5"; } 1002 | .bi-person-check::before { content: "\f4d6"; } 1003 | .bi-person-circle::before { content: "\f4d7"; } 1004 | .bi-person-dash-fill::before { content: "\f4d8"; } 1005 | .bi-person-dash::before { content: "\f4d9"; } 1006 | .bi-person-fill::before { content: "\f4da"; } 1007 | .bi-person-lines-fill::before { content: "\f4db"; } 1008 | .bi-person-plus-fill::before { content: "\f4dc"; } 1009 | .bi-person-plus::before { content: "\f4dd"; } 1010 | .bi-person-square::before { content: "\f4de"; } 1011 | .bi-person-x-fill::before { content: "\f4df"; } 1012 | .bi-person-x::before { content: "\f4e0"; } 1013 | .bi-person::before { content: "\f4e1"; } 1014 | .bi-phone-fill::before { content: "\f4e2"; } 1015 | .bi-phone-landscape-fill::before { content: "\f4e3"; } 1016 | .bi-phone-landscape::before { content: "\f4e4"; } 1017 | .bi-phone-vibrate-fill::before { content: "\f4e5"; } 1018 | .bi-phone-vibrate::before { content: "\f4e6"; } 1019 | .bi-phone::before { content: "\f4e7"; } 1020 | .bi-pie-chart-fill::before { content: "\f4e8"; } 1021 | .bi-pie-chart::before { content: "\f4e9"; } 1022 | .bi-pin-angle-fill::before { content: "\f4ea"; } 1023 | .bi-pin-angle::before { content: "\f4eb"; } 1024 | .bi-pin-fill::before { content: "\f4ec"; } 1025 | .bi-pin::before { content: "\f4ed"; } 1026 | .bi-pip-fill::before { content: "\f4ee"; } 1027 | .bi-pip::before { content: "\f4ef"; } 1028 | .bi-play-btn-fill::before { content: "\f4f0"; } 1029 | .bi-play-btn::before { content: "\f4f1"; } 1030 | .bi-play-circle-fill::before { content: "\f4f2"; } 1031 | .bi-play-circle::before { content: "\f4f3"; } 1032 | .bi-play-fill::before { content: "\f4f4"; } 1033 | .bi-play::before { content: "\f4f5"; } 1034 | .bi-plug-fill::before { content: "\f4f6"; } 1035 | .bi-plug::before { content: "\f4f7"; } 1036 | .bi-plus-circle-dotted::before { content: "\f4f8"; } 1037 | .bi-plus-circle-fill::before { content: "\f4f9"; } 1038 | .bi-plus-circle::before { content: "\f4fa"; } 1039 | .bi-plus-square-dotted::before { content: "\f4fb"; } 1040 | .bi-plus-square-fill::before { content: "\f4fc"; } 1041 | .bi-plus-square::before { content: "\f4fd"; } 1042 | .bi-plus::before { content: "\f4fe"; } 1043 | .bi-power::before { content: "\f4ff"; } 1044 | .bi-printer-fill::before { content: "\f500"; } 1045 | .bi-printer::before { content: "\f501"; } 1046 | .bi-puzzle-fill::before { content: "\f502"; } 1047 | .bi-puzzle::before { content: "\f503"; } 1048 | .bi-question-circle-fill::before { content: "\f504"; } 1049 | .bi-question-circle::before { content: "\f505"; } 1050 | .bi-question-diamond-fill::before { content: "\f506"; } 1051 | .bi-question-diamond::before { content: "\f507"; } 1052 | .bi-question-octagon-fill::before { content: "\f508"; } 1053 | .bi-question-octagon::before { content: "\f509"; } 1054 | .bi-question-square-fill::before { content: "\f50a"; } 1055 | .bi-question-square::before { content: "\f50b"; } 1056 | .bi-question::before { content: "\f50c"; } 1057 | .bi-rainbow::before { content: "\f50d"; } 1058 | .bi-receipt-cutoff::before { content: "\f50e"; } 1059 | .bi-receipt::before { content: "\f50f"; } 1060 | .bi-reception-0::before { content: "\f510"; } 1061 | .bi-reception-1::before { content: "\f511"; } 1062 | .bi-reception-2::before { content: "\f512"; } 1063 | .bi-reception-3::before { content: "\f513"; } 1064 | .bi-reception-4::before { content: "\f514"; } 1065 | .bi-record-btn-fill::before { content: "\f515"; } 1066 | .bi-record-btn::before { content: "\f516"; } 1067 | .bi-record-circle-fill::before { content: "\f517"; } 1068 | .bi-record-circle::before { content: "\f518"; } 1069 | .bi-record-fill::before { content: "\f519"; } 1070 | .bi-record::before { content: "\f51a"; } 1071 | .bi-record2-fill::before { content: "\f51b"; } 1072 | .bi-record2::before { content: "\f51c"; } 1073 | .bi-reply-all-fill::before { content: "\f51d"; } 1074 | .bi-reply-all::before { content: "\f51e"; } 1075 | .bi-reply-fill::before { content: "\f51f"; } 1076 | .bi-reply::before { content: "\f520"; } 1077 | .bi-rss-fill::before { content: "\f521"; } 1078 | .bi-rss::before { content: "\f522"; } 1079 | .bi-rulers::before { content: "\f523"; } 1080 | .bi-save-fill::before { content: "\f524"; } 1081 | .bi-save::before { content: "\f525"; } 1082 | .bi-save2-fill::before { content: "\f526"; } 1083 | .bi-save2::before { content: "\f527"; } 1084 | .bi-scissors::before { content: "\f528"; } 1085 | .bi-screwdriver::before { content: "\f529"; } 1086 | .bi-search::before { content: "\f52a"; } 1087 | .bi-segmented-nav::before { content: "\f52b"; } 1088 | .bi-server::before { content: "\f52c"; } 1089 | .bi-share-fill::before { content: "\f52d"; } 1090 | .bi-share::before { content: "\f52e"; } 1091 | .bi-shield-check::before { content: "\f52f"; } 1092 | .bi-shield-exclamation::before { content: "\f530"; } 1093 | .bi-shield-fill-check::before { content: "\f531"; } 1094 | .bi-shield-fill-exclamation::before { content: "\f532"; } 1095 | .bi-shield-fill-minus::before { content: "\f533"; } 1096 | .bi-shield-fill-plus::before { content: "\f534"; } 1097 | .bi-shield-fill-x::before { content: "\f535"; } 1098 | .bi-shield-fill::before { content: "\f536"; } 1099 | .bi-shield-lock-fill::before { content: "\f537"; } 1100 | .bi-shield-lock::before { content: "\f538"; } 1101 | .bi-shield-minus::before { content: "\f539"; } 1102 | .bi-shield-plus::before { content: "\f53a"; } 1103 | .bi-shield-shaded::before { content: "\f53b"; } 1104 | .bi-shield-slash-fill::before { content: "\f53c"; } 1105 | .bi-shield-slash::before { content: "\f53d"; } 1106 | .bi-shield-x::before { content: "\f53e"; } 1107 | .bi-shield::before { content: "\f53f"; } 1108 | .bi-shift-fill::before { content: "\f540"; } 1109 | .bi-shift::before { content: "\f541"; } 1110 | .bi-shop-window::before { content: "\f542"; } 1111 | .bi-shop::before { content: "\f543"; } 1112 | .bi-shuffle::before { content: "\f544"; } 1113 | .bi-signpost-2-fill::before { content: "\f545"; } 1114 | .bi-signpost-2::before { content: "\f546"; } 1115 | .bi-signpost-fill::before { content: "\f547"; } 1116 | .bi-signpost-split-fill::before { content: "\f548"; } 1117 | .bi-signpost-split::before { content: "\f549"; } 1118 | .bi-signpost::before { content: "\f54a"; } 1119 | .bi-sim-fill::before { content: "\f54b"; } 1120 | .bi-sim::before { content: "\f54c"; } 1121 | .bi-skip-backward-btn-fill::before { content: "\f54d"; } 1122 | .bi-skip-backward-btn::before { content: "\f54e"; } 1123 | .bi-skip-backward-circle-fill::before { content: "\f54f"; } 1124 | .bi-skip-backward-circle::before { content: "\f550"; } 1125 | .bi-skip-backward-fill::before { content: "\f551"; } 1126 | .bi-skip-backward::before { content: "\f552"; } 1127 | .bi-skip-end-btn-fill::before { content: "\f553"; } 1128 | .bi-skip-end-btn::before { content: "\f554"; } 1129 | .bi-skip-end-circle-fill::before { content: "\f555"; } 1130 | .bi-skip-end-circle::before { content: "\f556"; } 1131 | .bi-skip-end-fill::before { content: "\f557"; } 1132 | .bi-skip-end::before { content: "\f558"; } 1133 | .bi-skip-forward-btn-fill::before { content: "\f559"; } 1134 | .bi-skip-forward-btn::before { content: "\f55a"; } 1135 | .bi-skip-forward-circle-fill::before { content: "\f55b"; } 1136 | .bi-skip-forward-circle::before { content: "\f55c"; } 1137 | .bi-skip-forward-fill::before { content: "\f55d"; } 1138 | .bi-skip-forward::before { content: "\f55e"; } 1139 | .bi-skip-start-btn-fill::before { content: "\f55f"; } 1140 | .bi-skip-start-btn::before { content: "\f560"; } 1141 | .bi-skip-start-circle-fill::before { content: "\f561"; } 1142 | .bi-skip-start-circle::before { content: "\f562"; } 1143 | .bi-skip-start-fill::before { content: "\f563"; } 1144 | .bi-skip-start::before { content: "\f564"; } 1145 | .bi-slack::before { content: "\f565"; } 1146 | .bi-slash-circle-fill::before { content: "\f566"; } 1147 | .bi-slash-circle::before { content: "\f567"; } 1148 | .bi-slash-square-fill::before { content: "\f568"; } 1149 | .bi-slash-square::before { content: "\f569"; } 1150 | .bi-slash::before { content: "\f56a"; } 1151 | .bi-sliders::before { content: "\f56b"; } 1152 | .bi-smartwatch::before { content: "\f56c"; } 1153 | .bi-snow::before { content: "\f56d"; } 1154 | .bi-snow2::before { content: "\f56e"; } 1155 | .bi-snow3::before { content: "\f56f"; } 1156 | .bi-sort-alpha-down-alt::before { content: "\f570"; } 1157 | .bi-sort-alpha-down::before { content: "\f571"; } 1158 | .bi-sort-alpha-up-alt::before { content: "\f572"; } 1159 | .bi-sort-alpha-up::before { content: "\f573"; } 1160 | .bi-sort-down-alt::before { content: "\f574"; } 1161 | .bi-sort-down::before { content: "\f575"; } 1162 | .bi-sort-numeric-down-alt::before { content: "\f576"; } 1163 | .bi-sort-numeric-down::before { content: "\f577"; } 1164 | .bi-sort-numeric-up-alt::before { content: "\f578"; } 1165 | .bi-sort-numeric-up::before { content: "\f579"; } 1166 | .bi-sort-up-alt::before { content: "\f57a"; } 1167 | .bi-sort-up::before { content: "\f57b"; } 1168 | .bi-soundwave::before { content: "\f57c"; } 1169 | .bi-speaker-fill::before { content: "\f57d"; } 1170 | .bi-speaker::before { content: "\f57e"; } 1171 | .bi-speedometer::before { content: "\f57f"; } 1172 | .bi-speedometer2::before { content: "\f580"; } 1173 | .bi-spellcheck::before { content: "\f581"; } 1174 | .bi-square-fill::before { content: "\f582"; } 1175 | .bi-square-half::before { content: "\f583"; } 1176 | .bi-square::before { content: "\f584"; } 1177 | .bi-stack::before { content: "\f585"; } 1178 | .bi-star-fill::before { content: "\f586"; } 1179 | .bi-star-half::before { content: "\f587"; } 1180 | .bi-star::before { content: "\f588"; } 1181 | .bi-stars::before { content: "\f589"; } 1182 | .bi-stickies-fill::before { content: "\f58a"; } 1183 | .bi-stickies::before { content: "\f58b"; } 1184 | .bi-sticky-fill::before { content: "\f58c"; } 1185 | .bi-sticky::before { content: "\f58d"; } 1186 | .bi-stop-btn-fill::before { content: "\f58e"; } 1187 | .bi-stop-btn::before { content: "\f58f"; } 1188 | .bi-stop-circle-fill::before { content: "\f590"; } 1189 | .bi-stop-circle::before { content: "\f591"; } 1190 | .bi-stop-fill::before { content: "\f592"; } 1191 | .bi-stop::before { content: "\f593"; } 1192 | .bi-stoplights-fill::before { content: "\f594"; } 1193 | .bi-stoplights::before { content: "\f595"; } 1194 | .bi-stopwatch-fill::before { content: "\f596"; } 1195 | .bi-stopwatch::before { content: "\f597"; } 1196 | .bi-subtract::before { content: "\f598"; } 1197 | .bi-suit-club-fill::before { content: "\f599"; } 1198 | .bi-suit-club::before { content: "\f59a"; } 1199 | .bi-suit-diamond-fill::before { content: "\f59b"; } 1200 | .bi-suit-diamond::before { content: "\f59c"; } 1201 | .bi-suit-heart-fill::before { content: "\f59d"; } 1202 | .bi-suit-heart::before { content: "\f59e"; } 1203 | .bi-suit-spade-fill::before { content: "\f59f"; } 1204 | .bi-suit-spade::before { content: "\f5a0"; } 1205 | .bi-sun-fill::before { content: "\f5a1"; } 1206 | .bi-sun::before { content: "\f5a2"; } 1207 | .bi-sunglasses::before { content: "\f5a3"; } 1208 | .bi-sunrise-fill::before { content: "\f5a4"; } 1209 | .bi-sunrise::before { content: "\f5a5"; } 1210 | .bi-sunset-fill::before { content: "\f5a6"; } 1211 | .bi-sunset::before { content: "\f5a7"; } 1212 | .bi-symmetry-horizontal::before { content: "\f5a8"; } 1213 | .bi-symmetry-vertical::before { content: "\f5a9"; } 1214 | .bi-table::before { content: "\f5aa"; } 1215 | .bi-tablet-fill::before { content: "\f5ab"; } 1216 | .bi-tablet-landscape-fill::before { content: "\f5ac"; } 1217 | .bi-tablet-landscape::before { content: "\f5ad"; } 1218 | .bi-tablet::before { content: "\f5ae"; } 1219 | .bi-tag-fill::before { content: "\f5af"; } 1220 | .bi-tag::before { content: "\f5b0"; } 1221 | .bi-tags-fill::before { content: "\f5b1"; } 1222 | .bi-tags::before { content: "\f5b2"; } 1223 | .bi-telegram::before { content: "\f5b3"; } 1224 | .bi-telephone-fill::before { content: "\f5b4"; } 1225 | .bi-telephone-forward-fill::before { content: "\f5b5"; } 1226 | .bi-telephone-forward::before { content: "\f5b6"; } 1227 | .bi-telephone-inbound-fill::before { content: "\f5b7"; } 1228 | .bi-telephone-inbound::before { content: "\f5b8"; } 1229 | .bi-telephone-minus-fill::before { content: "\f5b9"; } 1230 | .bi-telephone-minus::before { content: "\f5ba"; } 1231 | .bi-telephone-outbound-fill::before { content: "\f5bb"; } 1232 | .bi-telephone-outbound::before { content: "\f5bc"; } 1233 | .bi-telephone-plus-fill::before { content: "\f5bd"; } 1234 | .bi-telephone-plus::before { content: "\f5be"; } 1235 | .bi-telephone-x-fill::before { content: "\f5bf"; } 1236 | .bi-telephone-x::before { content: "\f5c0"; } 1237 | .bi-telephone::before { content: "\f5c1"; } 1238 | .bi-terminal-fill::before { content: "\f5c2"; } 1239 | .bi-terminal::before { content: "\f5c3"; } 1240 | .bi-text-center::before { content: "\f5c4"; } 1241 | .bi-text-indent-left::before { content: "\f5c5"; } 1242 | .bi-text-indent-right::before { content: "\f5c6"; } 1243 | .bi-text-left::before { content: "\f5c7"; } 1244 | .bi-text-paragraph::before { content: "\f5c8"; } 1245 | .bi-text-right::before { content: "\f5c9"; } 1246 | .bi-textarea-resize::before { content: "\f5ca"; } 1247 | .bi-textarea-t::before { content: "\f5cb"; } 1248 | .bi-textarea::before { content: "\f5cc"; } 1249 | .bi-thermometer-half::before { content: "\f5cd"; } 1250 | .bi-thermometer-high::before { content: "\f5ce"; } 1251 | .bi-thermometer-low::before { content: "\f5cf"; } 1252 | .bi-thermometer-snow::before { content: "\f5d0"; } 1253 | .bi-thermometer-sun::before { content: "\f5d1"; } 1254 | .bi-thermometer::before { content: "\f5d2"; } 1255 | .bi-three-dots-vertical::before { content: "\f5d3"; } 1256 | .bi-three-dots::before { content: "\f5d4"; } 1257 | .bi-toggle-off::before { content: "\f5d5"; } 1258 | .bi-toggle-on::before { content: "\f5d6"; } 1259 | .bi-toggle2-off::before { content: "\f5d7"; } 1260 | .bi-toggle2-on::before { content: "\f5d8"; } 1261 | .bi-toggles::before { content: "\f5d9"; } 1262 | .bi-toggles2::before { content: "\f5da"; } 1263 | .bi-tools::before { content: "\f5db"; } 1264 | .bi-tornado::before { content: "\f5dc"; } 1265 | .bi-trash-fill::before { content: "\f5dd"; } 1266 | .bi-trash::before { content: "\f5de"; } 1267 | .bi-trash2-fill::before { content: "\f5df"; } 1268 | .bi-trash2::before { content: "\f5e0"; } 1269 | .bi-tree-fill::before { content: "\f5e1"; } 1270 | .bi-tree::before { content: "\f5e2"; } 1271 | .bi-triangle-fill::before { content: "\f5e3"; } 1272 | .bi-triangle-half::before { content: "\f5e4"; } 1273 | .bi-triangle::before { content: "\f5e5"; } 1274 | .bi-trophy-fill::before { content: "\f5e6"; } 1275 | .bi-trophy::before { content: "\f5e7"; } 1276 | .bi-tropical-storm::before { content: "\f5e8"; } 1277 | .bi-truck-flatbed::before { content: "\f5e9"; } 1278 | .bi-truck::before { content: "\f5ea"; } 1279 | .bi-tsunami::before { content: "\f5eb"; } 1280 | .bi-tv-fill::before { content: "\f5ec"; } 1281 | .bi-tv::before { content: "\f5ed"; } 1282 | .bi-twitch::before { content: "\f5ee"; } 1283 | .bi-twitter::before { content: "\f5ef"; } 1284 | .bi-type-bold::before { content: "\f5f0"; } 1285 | .bi-type-h1::before { content: "\f5f1"; } 1286 | .bi-type-h2::before { content: "\f5f2"; } 1287 | .bi-type-h3::before { content: "\f5f3"; } 1288 | .bi-type-italic::before { content: "\f5f4"; } 1289 | .bi-type-strikethrough::before { content: "\f5f5"; } 1290 | .bi-type-underline::before { content: "\f5f6"; } 1291 | .bi-type::before { content: "\f5f7"; } 1292 | .bi-ui-checks-grid::before { content: "\f5f8"; } 1293 | .bi-ui-checks::before { content: "\f5f9"; } 1294 | .bi-ui-radios-grid::before { content: "\f5fa"; } 1295 | .bi-ui-radios::before { content: "\f5fb"; } 1296 | .bi-umbrella-fill::before { content: "\f5fc"; } 1297 | .bi-umbrella::before { content: "\f5fd"; } 1298 | .bi-union::before { content: "\f5fe"; } 1299 | .bi-unlock-fill::before { content: "\f5ff"; } 1300 | .bi-unlock::before { content: "\f600"; } 1301 | .bi-upc-scan::before { content: "\f601"; } 1302 | .bi-upc::before { content: "\f602"; } 1303 | .bi-upload::before { content: "\f603"; } 1304 | .bi-vector-pen::before { content: "\f604"; } 1305 | .bi-view-list::before { content: "\f605"; } 1306 | .bi-view-stacked::before { content: "\f606"; } 1307 | .bi-vinyl-fill::before { content: "\f607"; } 1308 | .bi-vinyl::before { content: "\f608"; } 1309 | .bi-voicemail::before { content: "\f609"; } 1310 | .bi-volume-down-fill::before { content: "\f60a"; } 1311 | .bi-volume-down::before { content: "\f60b"; } 1312 | .bi-volume-mute-fill::before { content: "\f60c"; } 1313 | .bi-volume-mute::before { content: "\f60d"; } 1314 | .bi-volume-off-fill::before { content: "\f60e"; } 1315 | .bi-volume-off::before { content: "\f60f"; } 1316 | .bi-volume-up-fill::before { content: "\f610"; } 1317 | .bi-volume-up::before { content: "\f611"; } 1318 | .bi-vr::before { content: "\f612"; } 1319 | .bi-wallet-fill::before { content: "\f613"; } 1320 | .bi-wallet::before { content: "\f614"; } 1321 | .bi-wallet2::before { content: "\f615"; } 1322 | .bi-watch::before { content: "\f616"; } 1323 | .bi-water::before { content: "\f617"; } 1324 | .bi-whatsapp::before { content: "\f618"; } 1325 | .bi-wifi-1::before { content: "\f619"; } 1326 | .bi-wifi-2::before { content: "\f61a"; } 1327 | .bi-wifi-off::before { content: "\f61b"; } 1328 | .bi-wifi::before { content: "\f61c"; } 1329 | .bi-wind::before { content: "\f61d"; } 1330 | .bi-window-dock::before { content: "\f61e"; } 1331 | .bi-window-sidebar::before { content: "\f61f"; } 1332 | .bi-window::before { content: "\f620"; } 1333 | .bi-wrench::before { content: "\f621"; } 1334 | .bi-x-circle-fill::before { content: "\f622"; } 1335 | .bi-x-circle::before { content: "\f623"; } 1336 | .bi-x-diamond-fill::before { content: "\f624"; } 1337 | .bi-x-diamond::before { content: "\f625"; } 1338 | .bi-x-octagon-fill::before { content: "\f626"; } 1339 | .bi-x-octagon::before { content: "\f627"; } 1340 | .bi-x-square-fill::before { content: "\f628"; } 1341 | .bi-x-square::before { content: "\f629"; } 1342 | .bi-x::before { content: "\f62a"; } 1343 | .bi-youtube::before { content: "\f62b"; } 1344 | .bi-zoom-in::before { content: "\f62c"; } 1345 | .bi-zoom-out::before { content: "\f62d"; } 1346 | --------------------------------------------------------------------------------