├── .idea ├── .name ├── vcs.xml ├── .gitignore ├── modules.xml └── first template.iml ├── fonts └── vazir-font │ ├── Vazir.eot │ ├── Vazir.ttf │ ├── Vazir.woff │ └── Vazir.woff2 ├── images ├── intro-1655904387.jpg └── download-removebg-preview.png ├── vendor └── fontawesome │ ├── webfonts │ ├── fa-solid-900.ttf │ ├── fa-brands-400.ttf │ ├── fa-regular-400.ttf │ ├── fa-solid-900.woff2 │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 │ ├── css │ ├── solid.min.css │ ├── regular.min.css │ ├── solid.css │ ├── regular.css │ ├── v5-font-face.min.css │ ├── v5-font-face.css │ ├── v4-font-face.min.css │ ├── v4-font-face.css │ ├── svg-with-js.min.css │ ├── brands.min.css │ ├── svg-with-js.css │ ├── v4-shims.min.css │ └── brands.css │ └── js │ ├── conflict-detection.min.js │ ├── v4-shims.min.js │ └── v4-shims.js ├── css ├── variables.css ├── fonts.css ├── responsive.css └── style.css ├── js └── script.js ├── README.md └── index.html /.idea/.name: -------------------------------------------------------------------------------- 1 | script.js -------------------------------------------------------------------------------- /fonts/vazir-font/Vazir.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/fonts/vazir-font/Vazir.eot -------------------------------------------------------------------------------- /fonts/vazir-font/Vazir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/fonts/vazir-font/Vazir.ttf -------------------------------------------------------------------------------- /fonts/vazir-font/Vazir.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/fonts/vazir-font/Vazir.woff -------------------------------------------------------------------------------- /fonts/vazir-font/Vazir.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/fonts/vazir-font/Vazir.woff2 -------------------------------------------------------------------------------- /images/intro-1655904387.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/images/intro-1655904387.jpg -------------------------------------------------------------------------------- /images/download-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/images/download-removebg-preview.png -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /vendor/fontawesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simamatin/CoffeShop/HEAD/vendor/fontawesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /css/variables.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --white-color: #fff; 3 | --primary-color: rgba(137, 100, 82, .5); 4 | --second-color: rgb(191, 159, 82); 5 | --primary-font: "Vazir"; 6 | } -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /css/fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Vazir"; 3 | src: url("../fonts/vazir-font/Vazir.eot") format('eot'), 4 | url("../fonts/vazir-font/Vazir.ttf") format('ttf'), 5 | url("../fonts/vazir-font/Vazir.woff") format('woff'), 6 | url("../fonts/vazir-font/Vazir.woff2") format('woff2'); 7 | } -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/first template.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900} -------------------------------------------------------------------------------- /vendor/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400} -------------------------------------------------------------------------------- /vendor/fontawesome/css/solid.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-style-family-classic: 'Font Awesome 6 Free'; 8 | --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } 9 | 10 | @font-face { 11 | font-family: 'Font Awesome 6 Free'; 12 | font-style: normal; 13 | font-weight: 900; 14 | font-display: block; 15 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 16 | 17 | .fas, 18 | .fa-solid { 19 | font-weight: 900; } 20 | -------------------------------------------------------------------------------- /vendor/fontawesome/css/regular.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-style-family-classic: 'Font Awesome 6 Free'; 8 | --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } 9 | 10 | @font-face { 11 | font-family: 'Font Awesome 6 Free'; 12 | font-style: normal; 13 | font-weight: 400; 14 | font-display: block; 15 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 16 | 17 | .far, 18 | .fa-regular { 19 | font-weight: 400; } 20 | -------------------------------------------------------------------------------- /vendor/fontawesome/css/v5-font-face.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | @font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} -------------------------------------------------------------------------------- /vendor/fontawesome/css/v5-font-face.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | @font-face { 7 | font-family: 'Font Awesome 5 Brands'; 8 | font-display: block; 9 | font-weight: 400; 10 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 11 | 12 | @font-face { 13 | font-family: 'Font Awesome 5 Free'; 14 | font-display: block; 15 | font-weight: 900; 16 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 17 | 18 | @font-face { 19 | font-family: 'Font Awesome 5 Free'; 20 | font-display: block; 21 | font-weight: 400; 22 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 23 | -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | let headerTitle = document.querySelector('.header-title'); 2 | let menuBtn = document.querySelector('.header__icon'); 3 | let menuBtnIcon = document.querySelector('.header__icon i'); 4 | let menu = document.querySelector('.menu'); 5 | 6 | // Start Hamburger Menu 7 | 8 | menuBtn.addEventListener('click', () => { 9 | if (menuBtnIcon.classList.contains('fa-bars')) { 10 | menu.style.left = '0'; 11 | menuBtnIcon.className = 'fa fa-close'; 12 | } else { 13 | menu.style.left = '-160px'; 14 | menuBtnIcon.className = 'fa fa-bars'; 15 | } 16 | }) 17 | // End Hamburger Menu 18 | 19 | 20 | let headerTitleTypewriter = new Typewriter(headerTitle, { 21 | loop: true, 22 | cursor: '☕', 23 | }); 24 | 25 | headerTitleTypewriter.typeString('به خوشمزه‌ترین قهوه‌خانۀ دنیا خوش آمدید: ') 26 | .pauseFor(2000) 27 | .deleteAll() 28 | .typeString('جایی که عشق به قهوه به زیبایی تبدیل می‌شود و لحظات‌تان را به شگفتی تبدیل می‌کند.') 29 | .deleteChars(82) 30 | .typeString('زیبایی و شگفتی...') 31 | .pauseFor(10000) 32 | // .stop(); 33 | .start(); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ☕ CoffeShop 2 | 3 |

4 | This repository contains files related to the "Café Sima" website, where only the header of the page is implemented. 5 |

6 | 7 | 8 | ## Project Link: 9 | You can see the function of this library (Typewriter) in this [link](https://simamatin.github.io/CoffeShop/). 10 | 11 | 12 | 13 | ## Typewriter JavaScript Library 14 | 15 | The Typewriter JavaScript library is utilized to create an animated typing effect on the main title of the website's header. This library enables the creation of text animations with various effects. More details and usage instructions for this library can be found in its respective documentation. 16 | 17 | 18 | ## Technologies Used: 19 | 20 | ![HTML](https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white) 21 | 22 | ![CSS](https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white) 23 | 24 | ![JS](https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E) 25 | 26 | 27 | ## Note: 28 | This website is not currently accessible locally and requires execution in a web environment. 29 | -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- 1 | /* Media Queries */ 2 | 3 | @media only screen and (max-width: 900px) { 4 | 5 | body .container { 6 | width: 900px; 7 | padding: 0 2rem; 8 | } 9 | 10 | .menu__item .menu__link { 11 | font-size: .9rem; 12 | } 13 | 14 | .navbar-parent .header__logo { 15 | width: 5rem; 16 | height: 5rem; 17 | } 18 | } 19 | 20 | @media only screen and (max-width: 768px) { 21 | 22 | .navbar-parent .header__logo { 23 | display: none; 24 | } 25 | 26 | .navbar-parent .menu { 27 | position: fixed; 28 | top: 0; 29 | left: -160px; 30 | bottom: 0; 31 | background-color: var(--primary-color); 32 | width: 10rem; 33 | flex-direction: column; 34 | padding: 2rem 1rem; 35 | transition: 0.3s all; 36 | gap: 1.8rem; 37 | } 38 | 39 | .overlay .navbar { 40 | background-color: transparent; 41 | } 42 | 43 | .container .header__icon { 44 | display: block; 45 | font-size: 2rem; 46 | padding: 2.5rem; 47 | color: var(--white-color); 48 | } 49 | 50 | .header-desc .header-title { 51 | font-size: 2rem; 52 | } 53 | } 54 | 55 | @media only screen and (max-width: 640px) { 56 | 57 | .container .header-desc { 58 | top: 60%; 59 | line-height: 2; 60 | } 61 | } 62 | 63 | @media only screen and (max-width: 480px) { 64 | 65 | .container .header__icon { 66 | font-size: 1.5rem; 67 | } 68 | 69 | .header-desc .header-title { 70 | font-size: 1.5rem; 71 | } 72 | } -------------------------------------------------------------------------------- /vendor/fontawesome/css/v4-font-face.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | @font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a} -------------------------------------------------------------------------------- /vendor/fontawesome/css/v4-font-face.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | @font-face { 7 | font-family: 'FontAwesome'; 8 | font-display: block; 9 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 10 | 11 | @font-face { 12 | font-family: 'FontAwesome'; 13 | font-display: block; 14 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 15 | 16 | @font-face { 17 | font-family: 'FontAwesome'; 18 | font-display: block; 19 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); 20 | unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } 21 | 22 | @font-face { 23 | font-family: 'FontAwesome'; 24 | font-display: block; 25 | src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); 26 | unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; } 27 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | کافه سیما 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @import "./fonts.css"; 2 | @import "./responsive.css"; 3 | @import "./variables.css"; 4 | 5 | /* Start Default */ 6 | body { 7 | font-family: var(--primary-font); 8 | } 9 | 10 | *, 11 | *::before, 12 | *::after { 13 | margin: 0; 14 | padding: 0; 15 | box-sizing: border-box; 16 | } 17 | 18 | .container { 19 | width: 1270px; 20 | margin: auto; 21 | padding: 0 5rem; 22 | } 23 | 24 | .overlay { 25 | position: absolute; 26 | background-color: rgba(0, 0, 0, .3); 27 | top: 0; 28 | right: 0; 29 | left: 0; 30 | bottom: 0; 31 | } 32 | 33 | .header__icon { 34 | font-size: 1.8rem; 35 | display: none; 36 | cursor: pointer; 37 | } 38 | 39 | ul { 40 | list-style: none; 41 | } 42 | 43 | a { 44 | text-decoration: none; 45 | } 46 | 47 | i { 48 | user-select: none; 49 | } 50 | 51 | /* Finish Default */ 52 | 53 | /* Start Header */ 54 | 55 | #header { 56 | background: url("../images/intro-1655904387.jpg") no-repeat center center / cover; 57 | width: 100%; 58 | height: 100vh; 59 | position: relative; 60 | } 61 | 62 | .navbar { 63 | background-color: var(--primary-color); 64 | width: 100%; 65 | display: flex; 66 | justify-content: space-between; 67 | align-items: center; 68 | } 69 | 70 | .navbar-parent { 71 | display: flex; 72 | justify-content: space-between; 73 | align-items: center; 74 | } 75 | 76 | .menu { 77 | display: flex; 78 | } 79 | 80 | .menu__item { 81 | margin: .3rem; 82 | display: flex; 83 | align-items: center; 84 | } 85 | 86 | .menu-item__icon { 87 | font-size: .8rem; 88 | color: var(--second-color); 89 | } 90 | 91 | .menu__link { 92 | display: block; 93 | margin-left: 2rem; 94 | padding-right: .5rem; 95 | color: var(--white-color); 96 | font-size: 1.1rem; 97 | transition: 500ms; 98 | } 99 | 100 | .menu__link:hover { 101 | color: var(--second-color); 102 | } 103 | 104 | .header__logo { 105 | width: 6rem; 106 | height: 6rem; 107 | } 108 | 109 | .header__logo-img { 110 | width: 100%; 111 | height: 100%; 112 | display: block; 113 | } 114 | 115 | .header-desc { 116 | color: var(--white-color); 117 | position: absolute; 118 | top: 50%; 119 | left: 50%; 120 | transform: translate(-50%, -50%); 121 | line-height: 2.5; 122 | } 123 | 124 | .header-title { 125 | font-size: 2.5rem; 126 | font-weight: bolder; 127 | transition: 300ms; 128 | margin: 0 auto; 129 | text-align: center; 130 | } 131 | 132 | .header-txt { 133 | font-size: 1.3rem; 134 | font-weight: bold; 135 | text-align: center; 136 | transition: 300ms; 137 | } 138 | 139 | .header-title:hover, 140 | .header-txt:hover { 141 | color: var(--second-color); 142 | text-shadow: 0 0 1rem var(--primary-color); 143 | } 144 | 145 | /* Finish Header */ -------------------------------------------------------------------------------- /vendor/fontawesome/js/conflict-detection.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | var t;t=function(){"use strict";function o(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),o.push.apply(o,n)),o}function a(e){for(var t=1;tt.length)&&(e=t.length);for(var n=0,o=new Array(e);n>16)+(e>>16)+(n>>16)<<16|65535&n}function c(t,e,n,o,r,i){return u((i=u(u(e,t),u(o,i)))<>>32-r,n)}function d(t,e,n,o,r,i,a){return c(e&n|~e&o,t,e,r,i,a)}function m(t,e,n,o,r,i,a){return c(e&o|n&~o,t,e,r,i,a)}function g(t,e,n,o,r,i,a){return c(e^n^o,t,e,r,i,a)}function p(t,e,n,o,r,i,a){return c(n^(e|~o),t,e,r,i,a)}function a(t,e){var n,o,r,i;t[e>>5]|=128<>>9<<4)]=e;for(var a=1732584193,c=-271733879,f=-1732584194,s=271733878,l=0;l>5]>>>o%32&255);return e}function s(t){var e=[];for(e[(t.length>>2)-1]=void 0,o=0;o>5]|=(255&t.charCodeAt(o/8))<>>4&15)+n.charAt(15&e);return o}function n(t){return unescape(encodeURIComponent(t))}function r(t){return f(a(s(t=n(t)),8*t.length))}function i(t,e){return function(t,e){var n,o=s(t),r=[],i=[];for(r[15]=i[15]=void 0,16 element that loads this detection:"),console.info("\t%c".concat(O,"%c: milliseconds to wait for each test before deciding whether it's a conflict."),"font-weight: bold;","font-size: normal;"),console.info("\t%c".concat(D,"%c: milliseconds to wait for the browser to accumulate test results before giving up."),"font-weight: bold;","font-size: normal;"),C({maxDuration:t,showProgress:!0,progressIndicator:"waiting...",fn:function(){return Object.keys(n.conflict).length+Object.keys(n.noConflict).length>=i}}).then(function(){console.info("DONE!"),k({nodesTested:n,nodesFound:r}),e({nodesTested:n,nodesFound:r}),console.groupEnd()}).catch(function(t){"timeout"===t?console.info("TIME OUT! We waited until we got tired. Here's what we found:"):(console.info("Whoops! We hit an error:",t),console.info("Here's what we'd found up until that error:")),k({nodesTested:n,nodesFound:r}),e({nodesTested:n,nodesFound:r}),console.groupEnd()}))}var S=l.FontAwesomeDetection||{},N=a(a(a({},{report:function(t){var e,n=t.nodesTested,o=t.nodesFound,r={};for(e in o)n.conflict[e]||n.noConflict[e]||(r[e]=o[e]);if(0<(t=Object.keys(n.conflict).length)){console.info("%cConflict".concat(1li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)} -------------------------------------------------------------------------------- /vendor/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"} -------------------------------------------------------------------------------- /vendor/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Solid'; 8 | --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Regular'; 9 | --fa-font-light: normal 300 1em/1 'Font Awesome 6 Light'; 10 | --fa-font-thin: normal 100 1em/1 'Font Awesome 6 Thin'; 11 | --fa-font-duotone: normal 900 1em/1 'Font Awesome 6 Duotone'; 12 | --fa-font-sharp-solid: normal 900 1em/1 'Font Awesome 6 Sharp'; 13 | --fa-font-sharp-regular: normal 400 1em/1 'Font Awesome 6 Sharp'; 14 | --fa-font-sharp-light: normal 300 1em/1 'Font Awesome 6 Sharp'; 15 | --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; } 16 | 17 | svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa { 18 | overflow: visible; 19 | box-sizing: content-box; } 20 | 21 | .svg-inline--fa { 22 | display: var(--fa-display, inline-block); 23 | height: 1em; 24 | overflow: visible; 25 | vertical-align: -.125em; } 26 | .svg-inline--fa.fa-2xs { 27 | vertical-align: 0.1em; } 28 | .svg-inline--fa.fa-xs { 29 | vertical-align: 0em; } 30 | .svg-inline--fa.fa-sm { 31 | vertical-align: -0.07143em; } 32 | .svg-inline--fa.fa-lg { 33 | vertical-align: -0.2em; } 34 | .svg-inline--fa.fa-xl { 35 | vertical-align: -0.25em; } 36 | .svg-inline--fa.fa-2xl { 37 | vertical-align: -0.3125em; } 38 | .svg-inline--fa.fa-pull-left { 39 | margin-right: var(--fa-pull-margin, 0.3em); 40 | width: auto; } 41 | .svg-inline--fa.fa-pull-right { 42 | margin-left: var(--fa-pull-margin, 0.3em); 43 | width: auto; } 44 | .svg-inline--fa.fa-li { 45 | width: var(--fa-li-width, 2em); 46 | top: 0.25em; } 47 | .svg-inline--fa.fa-fw { 48 | width: var(--fa-fw-width, 1.25em); } 49 | 50 | .fa-layers svg.svg-inline--fa { 51 | bottom: 0; 52 | left: 0; 53 | margin: auto; 54 | position: absolute; 55 | right: 0; 56 | top: 0; } 57 | 58 | .fa-layers-text, .fa-layers-counter { 59 | display: inline-block; 60 | position: absolute; 61 | text-align: center; } 62 | 63 | .fa-layers { 64 | display: inline-block; 65 | height: 1em; 66 | position: relative; 67 | text-align: center; 68 | vertical-align: -.125em; 69 | width: 1em; } 70 | .fa-layers svg.svg-inline--fa { 71 | -webkit-transform-origin: center center; 72 | transform-origin: center center; } 73 | 74 | .fa-layers-text { 75 | left: 50%; 76 | top: 50%; 77 | -webkit-transform: translate(-50%, -50%); 78 | transform: translate(-50%, -50%); 79 | -webkit-transform-origin: center center; 80 | transform-origin: center center; } 81 | 82 | .fa-layers-counter { 83 | background-color: var(--fa-counter-background-color, #ff253a); 84 | border-radius: var(--fa-counter-border-radius, 1em); 85 | box-sizing: border-box; 86 | color: var(--fa-inverse, #fff); 87 | line-height: var(--fa-counter-line-height, 1); 88 | max-width: var(--fa-counter-max-width, 5em); 89 | min-width: var(--fa-counter-min-width, 1.5em); 90 | overflow: hidden; 91 | padding: var(--fa-counter-padding, 0.25em 0.5em); 92 | right: var(--fa-right, 0); 93 | text-overflow: ellipsis; 94 | top: var(--fa-top, 0); 95 | -webkit-transform: scale(var(--fa-counter-scale, 0.25)); 96 | transform: scale(var(--fa-counter-scale, 0.25)); 97 | -webkit-transform-origin: top right; 98 | transform-origin: top right; } 99 | 100 | .fa-layers-bottom-right { 101 | bottom: var(--fa-bottom, 0); 102 | right: var(--fa-right, 0); 103 | top: auto; 104 | -webkit-transform: scale(var(--fa-layers-scale, 0.25)); 105 | transform: scale(var(--fa-layers-scale, 0.25)); 106 | -webkit-transform-origin: bottom right; 107 | transform-origin: bottom right; } 108 | 109 | .fa-layers-bottom-left { 110 | bottom: var(--fa-bottom, 0); 111 | left: var(--fa-left, 0); 112 | right: auto; 113 | top: auto; 114 | -webkit-transform: scale(var(--fa-layers-scale, 0.25)); 115 | transform: scale(var(--fa-layers-scale, 0.25)); 116 | -webkit-transform-origin: bottom left; 117 | transform-origin: bottom left; } 118 | 119 | .fa-layers-top-right { 120 | top: var(--fa-top, 0); 121 | right: var(--fa-right, 0); 122 | -webkit-transform: scale(var(--fa-layers-scale, 0.25)); 123 | transform: scale(var(--fa-layers-scale, 0.25)); 124 | -webkit-transform-origin: top right; 125 | transform-origin: top right; } 126 | 127 | .fa-layers-top-left { 128 | left: var(--fa-left, 0); 129 | right: auto; 130 | top: var(--fa-top, 0); 131 | -webkit-transform: scale(var(--fa-layers-scale, 0.25)); 132 | transform: scale(var(--fa-layers-scale, 0.25)); 133 | -webkit-transform-origin: top left; 134 | transform-origin: top left; } 135 | 136 | .fa-1x { 137 | font-size: 1em; } 138 | 139 | .fa-2x { 140 | font-size: 2em; } 141 | 142 | .fa-3x { 143 | font-size: 3em; } 144 | 145 | .fa-4x { 146 | font-size: 4em; } 147 | 148 | .fa-5x { 149 | font-size: 5em; } 150 | 151 | .fa-6x { 152 | font-size: 6em; } 153 | 154 | .fa-7x { 155 | font-size: 7em; } 156 | 157 | .fa-8x { 158 | font-size: 8em; } 159 | 160 | .fa-9x { 161 | font-size: 9em; } 162 | 163 | .fa-10x { 164 | font-size: 10em; } 165 | 166 | .fa-2xs { 167 | font-size: 0.625em; 168 | line-height: 0.1em; 169 | vertical-align: 0.225em; } 170 | 171 | .fa-xs { 172 | font-size: 0.75em; 173 | line-height: 0.08333em; 174 | vertical-align: 0.125em; } 175 | 176 | .fa-sm { 177 | font-size: 0.875em; 178 | line-height: 0.07143em; 179 | vertical-align: 0.05357em; } 180 | 181 | .fa-lg { 182 | font-size: 1.25em; 183 | line-height: 0.05em; 184 | vertical-align: -0.075em; } 185 | 186 | .fa-xl { 187 | font-size: 1.5em; 188 | line-height: 0.04167em; 189 | vertical-align: -0.125em; } 190 | 191 | .fa-2xl { 192 | font-size: 2em; 193 | line-height: 0.03125em; 194 | vertical-align: -0.1875em; } 195 | 196 | .fa-fw { 197 | text-align: center; 198 | width: 1.25em; } 199 | 200 | .fa-ul { 201 | list-style-type: none; 202 | margin-left: var(--fa-li-margin, 2.5em); 203 | padding-left: 0; } 204 | .fa-ul > li { 205 | position: relative; } 206 | 207 | .fa-li { 208 | left: calc(var(--fa-li-width, 2em) * -1); 209 | position: absolute; 210 | text-align: center; 211 | width: var(--fa-li-width, 2em); 212 | line-height: inherit; } 213 | 214 | .fa-border { 215 | border-color: var(--fa-border-color, #eee); 216 | border-radius: var(--fa-border-radius, 0.1em); 217 | border-style: var(--fa-border-style, solid); 218 | border-width: var(--fa-border-width, 0.08em); 219 | padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } 220 | 221 | .fa-pull-left { 222 | float: left; 223 | margin-right: var(--fa-pull-margin, 0.3em); } 224 | 225 | .fa-pull-right { 226 | float: right; 227 | margin-left: var(--fa-pull-margin, 0.3em); } 228 | 229 | .fa-beat { 230 | -webkit-animation-name: fa-beat; 231 | animation-name: fa-beat; 232 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 233 | animation-delay: var(--fa-animation-delay, 0s); 234 | -webkit-animation-direction: var(--fa-animation-direction, normal); 235 | animation-direction: var(--fa-animation-direction, normal); 236 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 237 | animation-duration: var(--fa-animation-duration, 1s); 238 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 239 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 240 | -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); 241 | animation-timing-function: var(--fa-animation-timing, ease-in-out); } 242 | 243 | .fa-bounce { 244 | -webkit-animation-name: fa-bounce; 245 | animation-name: fa-bounce; 246 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 247 | animation-delay: var(--fa-animation-delay, 0s); 248 | -webkit-animation-direction: var(--fa-animation-direction, normal); 249 | animation-direction: var(--fa-animation-direction, normal); 250 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 251 | animation-duration: var(--fa-animation-duration, 1s); 252 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 253 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 254 | -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); 255 | animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } 256 | 257 | .fa-fade { 258 | -webkit-animation-name: fa-fade; 259 | animation-name: fa-fade; 260 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 261 | animation-delay: var(--fa-animation-delay, 0s); 262 | -webkit-animation-direction: var(--fa-animation-direction, normal); 263 | animation-direction: var(--fa-animation-direction, normal); 264 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 265 | animation-duration: var(--fa-animation-duration, 1s); 266 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 267 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 268 | -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); 269 | animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } 270 | 271 | .fa-beat-fade { 272 | -webkit-animation-name: fa-beat-fade; 273 | animation-name: fa-beat-fade; 274 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 275 | animation-delay: var(--fa-animation-delay, 0s); 276 | -webkit-animation-direction: var(--fa-animation-direction, normal); 277 | animation-direction: var(--fa-animation-direction, normal); 278 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 279 | animation-duration: var(--fa-animation-duration, 1s); 280 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 281 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 282 | -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); 283 | animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } 284 | 285 | .fa-flip { 286 | -webkit-animation-name: fa-flip; 287 | animation-name: fa-flip; 288 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 289 | animation-delay: var(--fa-animation-delay, 0s); 290 | -webkit-animation-direction: var(--fa-animation-direction, normal); 291 | animation-direction: var(--fa-animation-direction, normal); 292 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 293 | animation-duration: var(--fa-animation-duration, 1s); 294 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 295 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 296 | -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); 297 | animation-timing-function: var(--fa-animation-timing, ease-in-out); } 298 | 299 | .fa-shake { 300 | -webkit-animation-name: fa-shake; 301 | animation-name: fa-shake; 302 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 303 | animation-delay: var(--fa-animation-delay, 0s); 304 | -webkit-animation-direction: var(--fa-animation-direction, normal); 305 | animation-direction: var(--fa-animation-direction, normal); 306 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 307 | animation-duration: var(--fa-animation-duration, 1s); 308 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 309 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 310 | -webkit-animation-timing-function: var(--fa-animation-timing, linear); 311 | animation-timing-function: var(--fa-animation-timing, linear); } 312 | 313 | .fa-spin { 314 | -webkit-animation-name: fa-spin; 315 | animation-name: fa-spin; 316 | -webkit-animation-delay: var(--fa-animation-delay, 0s); 317 | animation-delay: var(--fa-animation-delay, 0s); 318 | -webkit-animation-direction: var(--fa-animation-direction, normal); 319 | animation-direction: var(--fa-animation-direction, normal); 320 | -webkit-animation-duration: var(--fa-animation-duration, 2s); 321 | animation-duration: var(--fa-animation-duration, 2s); 322 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 323 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 324 | -webkit-animation-timing-function: var(--fa-animation-timing, linear); 325 | animation-timing-function: var(--fa-animation-timing, linear); } 326 | 327 | .fa-spin-reverse { 328 | --fa-animation-direction: reverse; } 329 | 330 | .fa-pulse, 331 | .fa-spin-pulse { 332 | -webkit-animation-name: fa-spin; 333 | animation-name: fa-spin; 334 | -webkit-animation-direction: var(--fa-animation-direction, normal); 335 | animation-direction: var(--fa-animation-direction, normal); 336 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 337 | animation-duration: var(--fa-animation-duration, 1s); 338 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 339 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 340 | -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); 341 | animation-timing-function: var(--fa-animation-timing, steps(8)); } 342 | 343 | @media (prefers-reduced-motion: reduce) { 344 | .fa-beat, 345 | .fa-bounce, 346 | .fa-fade, 347 | .fa-beat-fade, 348 | .fa-flip, 349 | .fa-pulse, 350 | .fa-shake, 351 | .fa-spin, 352 | .fa-spin-pulse { 353 | -webkit-animation-delay: -1ms; 354 | animation-delay: -1ms; 355 | -webkit-animation-duration: 1ms; 356 | animation-duration: 1ms; 357 | -webkit-animation-iteration-count: 1; 358 | animation-iteration-count: 1; 359 | -webkit-transition-delay: 0s; 360 | transition-delay: 0s; 361 | -webkit-transition-duration: 0s; 362 | transition-duration: 0s; } } 363 | 364 | @-webkit-keyframes fa-beat { 365 | 0%, 90% { 366 | -webkit-transform: scale(1); 367 | transform: scale(1); } 368 | 45% { 369 | -webkit-transform: scale(var(--fa-beat-scale, 1.25)); 370 | transform: scale(var(--fa-beat-scale, 1.25)); } } 371 | 372 | @keyframes fa-beat { 373 | 0%, 90% { 374 | -webkit-transform: scale(1); 375 | transform: scale(1); } 376 | 45% { 377 | -webkit-transform: scale(var(--fa-beat-scale, 1.25)); 378 | transform: scale(var(--fa-beat-scale, 1.25)); } } 379 | 380 | @-webkit-keyframes fa-bounce { 381 | 0% { 382 | -webkit-transform: scale(1, 1) translateY(0); 383 | transform: scale(1, 1) translateY(0); } 384 | 10% { 385 | -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); 386 | transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 387 | 30% { 388 | -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); 389 | transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 390 | 50% { 391 | -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); 392 | transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 393 | 57% { 394 | -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); 395 | transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 396 | 64% { 397 | -webkit-transform: scale(1, 1) translateY(0); 398 | transform: scale(1, 1) translateY(0); } 399 | 100% { 400 | -webkit-transform: scale(1, 1) translateY(0); 401 | transform: scale(1, 1) translateY(0); } } 402 | 403 | @keyframes fa-bounce { 404 | 0% { 405 | -webkit-transform: scale(1, 1) translateY(0); 406 | transform: scale(1, 1) translateY(0); } 407 | 10% { 408 | -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); 409 | transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 410 | 30% { 411 | -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); 412 | transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 413 | 50% { 414 | -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); 415 | transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 416 | 57% { 417 | -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); 418 | transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 419 | 64% { 420 | -webkit-transform: scale(1, 1) translateY(0); 421 | transform: scale(1, 1) translateY(0); } 422 | 100% { 423 | -webkit-transform: scale(1, 1) translateY(0); 424 | transform: scale(1, 1) translateY(0); } } 425 | 426 | @-webkit-keyframes fa-fade { 427 | 50% { 428 | opacity: var(--fa-fade-opacity, 0.4); } } 429 | 430 | @keyframes fa-fade { 431 | 50% { 432 | opacity: var(--fa-fade-opacity, 0.4); } } 433 | 434 | @-webkit-keyframes fa-beat-fade { 435 | 0%, 100% { 436 | opacity: var(--fa-beat-fade-opacity, 0.4); 437 | -webkit-transform: scale(1); 438 | transform: scale(1); } 439 | 50% { 440 | opacity: 1; 441 | -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); 442 | transform: scale(var(--fa-beat-fade-scale, 1.125)); } } 443 | 444 | @keyframes fa-beat-fade { 445 | 0%, 100% { 446 | opacity: var(--fa-beat-fade-opacity, 0.4); 447 | -webkit-transform: scale(1); 448 | transform: scale(1); } 449 | 50% { 450 | opacity: 1; 451 | -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); 452 | transform: scale(var(--fa-beat-fade-scale, 1.125)); } } 453 | 454 | @-webkit-keyframes fa-flip { 455 | 50% { 456 | -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); 457 | transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } 458 | 459 | @keyframes fa-flip { 460 | 50% { 461 | -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); 462 | transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } 463 | 464 | @-webkit-keyframes fa-shake { 465 | 0% { 466 | -webkit-transform: rotate(-15deg); 467 | transform: rotate(-15deg); } 468 | 4% { 469 | -webkit-transform: rotate(15deg); 470 | transform: rotate(15deg); } 471 | 8%, 24% { 472 | -webkit-transform: rotate(-18deg); 473 | transform: rotate(-18deg); } 474 | 12%, 28% { 475 | -webkit-transform: rotate(18deg); 476 | transform: rotate(18deg); } 477 | 16% { 478 | -webkit-transform: rotate(-22deg); 479 | transform: rotate(-22deg); } 480 | 20% { 481 | -webkit-transform: rotate(22deg); 482 | transform: rotate(22deg); } 483 | 32% { 484 | -webkit-transform: rotate(-12deg); 485 | transform: rotate(-12deg); } 486 | 36% { 487 | -webkit-transform: rotate(12deg); 488 | transform: rotate(12deg); } 489 | 40%, 100% { 490 | -webkit-transform: rotate(0deg); 491 | transform: rotate(0deg); } } 492 | 493 | @keyframes fa-shake { 494 | 0% { 495 | -webkit-transform: rotate(-15deg); 496 | transform: rotate(-15deg); } 497 | 4% { 498 | -webkit-transform: rotate(15deg); 499 | transform: rotate(15deg); } 500 | 8%, 24% { 501 | -webkit-transform: rotate(-18deg); 502 | transform: rotate(-18deg); } 503 | 12%, 28% { 504 | -webkit-transform: rotate(18deg); 505 | transform: rotate(18deg); } 506 | 16% { 507 | -webkit-transform: rotate(-22deg); 508 | transform: rotate(-22deg); } 509 | 20% { 510 | -webkit-transform: rotate(22deg); 511 | transform: rotate(22deg); } 512 | 32% { 513 | -webkit-transform: rotate(-12deg); 514 | transform: rotate(-12deg); } 515 | 36% { 516 | -webkit-transform: rotate(12deg); 517 | transform: rotate(12deg); } 518 | 40%, 100% { 519 | -webkit-transform: rotate(0deg); 520 | transform: rotate(0deg); } } 521 | 522 | @-webkit-keyframes fa-spin { 523 | 0% { 524 | -webkit-transform: rotate(0deg); 525 | transform: rotate(0deg); } 526 | 100% { 527 | -webkit-transform: rotate(360deg); 528 | transform: rotate(360deg); } } 529 | 530 | @keyframes fa-spin { 531 | 0% { 532 | -webkit-transform: rotate(0deg); 533 | transform: rotate(0deg); } 534 | 100% { 535 | -webkit-transform: rotate(360deg); 536 | transform: rotate(360deg); } } 537 | 538 | .fa-rotate-90 { 539 | -webkit-transform: rotate(90deg); 540 | transform: rotate(90deg); } 541 | 542 | .fa-rotate-180 { 543 | -webkit-transform: rotate(180deg); 544 | transform: rotate(180deg); } 545 | 546 | .fa-rotate-270 { 547 | -webkit-transform: rotate(270deg); 548 | transform: rotate(270deg); } 549 | 550 | .fa-flip-horizontal { 551 | -webkit-transform: scale(-1, 1); 552 | transform: scale(-1, 1); } 553 | 554 | .fa-flip-vertical { 555 | -webkit-transform: scale(1, -1); 556 | transform: scale(1, -1); } 557 | 558 | .fa-flip-both, 559 | .fa-flip-horizontal.fa-flip-vertical { 560 | -webkit-transform: scale(-1, -1); 561 | transform: scale(-1, -1); } 562 | 563 | .fa-rotate-by { 564 | -webkit-transform: rotate(var(--fa-rotate-angle, none)); 565 | transform: rotate(var(--fa-rotate-angle, none)); } 566 | 567 | .fa-stack { 568 | display: inline-block; 569 | vertical-align: middle; 570 | height: 2em; 571 | position: relative; 572 | width: 2.5em; } 573 | 574 | .fa-stack-1x, 575 | .fa-stack-2x { 576 | bottom: 0; 577 | left: 0; 578 | margin: auto; 579 | position: absolute; 580 | right: 0; 581 | top: 0; 582 | z-index: var(--fa-stack-z-index, auto); } 583 | 584 | .svg-inline--fa.fa-stack-1x { 585 | height: 1em; 586 | width: 1.25em; } 587 | 588 | .svg-inline--fa.fa-stack-2x { 589 | height: 2em; 590 | width: 2.5em; } 591 | 592 | .fa-inverse { 593 | color: var(--fa-inverse, #fff); } 594 | 595 | .sr-only, 596 | .fa-sr-only { 597 | position: absolute; 598 | width: 1px; 599 | height: 1px; 600 | padding: 0; 601 | margin: -1px; 602 | overflow: hidden; 603 | clip: rect(0, 0, 0, 0); 604 | white-space: nowrap; 605 | border-width: 0; } 606 | 607 | .sr-only-focusable:not(:focus), 608 | .fa-sr-only-focusable:not(:focus) { 609 | position: absolute; 610 | width: 1px; 611 | height: 1px; 612 | padding: 0; 613 | margin: -1px; 614 | overflow: hidden; 615 | clip: rect(0, 0, 0, 0); 616 | white-space: nowrap; 617 | border-width: 0; } 618 | 619 | .svg-inline--fa .fa-primary { 620 | fill: var(--fa-primary-color, currentColor); 621 | opacity: var(--fa-primary-opacity, 1); } 622 | 623 | .svg-inline--fa .fa-secondary { 624 | fill: var(--fa-secondary-color, currentColor); 625 | opacity: var(--fa-secondary-opacity, 0.4); } 626 | 627 | .svg-inline--fa.fa-swap-opacity .fa-primary { 628 | opacity: var(--fa-secondary-opacity, 0.4); } 629 | 630 | .svg-inline--fa.fa-swap-opacity .fa-secondary { 631 | opacity: var(--fa-primary-opacity, 1); } 632 | 633 | .svg-inline--fa mask .fa-primary, 634 | .svg-inline--fa mask .fa-secondary { 635 | fill: black; } 636 | 637 | .fad.fa-inverse, 638 | .fa-duotone.fa-inverse { 639 | color: var(--fa-inverse, #fff); } 640 | -------------------------------------------------------------------------------- /vendor/fontawesome/js/v4-shims.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2023 Fonticons, Inc. 5 | */ 6 | var a,e;a=this,e=function(){"use strict";var a={},e={};try{"undefined"!=typeof window&&(a=window),"undefined"!=typeof document&&(e=document)}catch(a){}var l=(a.navigator||{}).userAgent,r=void 0===l?"":l,f=a,n=e;f.document,n.documentElement&&n.head&&"function"==typeof n.addEventListener&&n.createElement,~r.indexOf("MSIE")||r.indexOf("Trident/");function o(a,e,l){return e in a?Object.defineProperty(a,e,{value:l,enumerable:!0,configurable:!0,writable:!0}):a[e]=l,a}function t(a,e){(null==e||e>a.length)&&(e=a.length);for(var l=0,r=new Array(e);l arr.length) len = arr.length; 67 | 68 | for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; 69 | 70 | return arr2; 71 | } 72 | 73 | function _nonIterableSpread() { 74 | throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); 75 | } 76 | 77 | var _familyProxy, _familyProxy2, _familyProxy3, _familyProxy4, _familyProxy5; 78 | 79 | var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; 80 | var PRODUCTION = function () { 81 | try { 82 | return process.env.NODE_ENV === 'production'; 83 | } catch (e) { 84 | return false; 85 | } 86 | }(); 87 | var FAMILY_CLASSIC = 'classic'; 88 | var FAMILY_SHARP = 'sharp'; 89 | var FAMILIES = [FAMILY_CLASSIC, FAMILY_SHARP]; 90 | 91 | function familyProxy(obj) { 92 | // Defaults to the classic family if family is not available 93 | return new Proxy(obj, { 94 | get: function get(target, prop) { 95 | return prop in target ? target[prop] : target[FAMILY_CLASSIC]; 96 | } 97 | }); 98 | } 99 | var PREFIX_TO_STYLE = familyProxy((_familyProxy = {}, _defineProperty(_familyProxy, FAMILY_CLASSIC, { 100 | 'fa': 'solid', 101 | 'fas': 'solid', 102 | 'fa-solid': 'solid', 103 | 'far': 'regular', 104 | 'fa-regular': 'regular', 105 | 'fal': 'light', 106 | 'fa-light': 'light', 107 | 'fat': 'thin', 108 | 'fa-thin': 'thin', 109 | 'fad': 'duotone', 110 | 'fa-duotone': 'duotone', 111 | 'fab': 'brands', 112 | 'fa-brands': 'brands', 113 | 'fak': 'kit', 114 | 'fa-kit': 'kit' 115 | }), _defineProperty(_familyProxy, FAMILY_SHARP, { 116 | 'fa': 'solid', 117 | 'fass': 'solid', 118 | 'fa-solid': 'solid', 119 | 'fasr': 'regular', 120 | 'fa-regular': 'regular', 121 | 'fasl': 'light', 122 | 'fa-light': 'light' 123 | }), _familyProxy)); 124 | var STYLE_TO_PREFIX = familyProxy((_familyProxy2 = {}, _defineProperty(_familyProxy2, FAMILY_CLASSIC, { 125 | 'solid': 'fas', 126 | 'regular': 'far', 127 | 'light': 'fal', 128 | 'thin': 'fat', 129 | 'duotone': 'fad', 130 | 'brands': 'fab', 131 | 'kit': 'fak' 132 | }), _defineProperty(_familyProxy2, FAMILY_SHARP, { 133 | 'solid': 'fass', 134 | 'regular': 'fasr', 135 | 'light': 'fasl' 136 | }), _familyProxy2)); 137 | var PREFIX_TO_LONG_STYLE = familyProxy((_familyProxy3 = {}, _defineProperty(_familyProxy3, FAMILY_CLASSIC, { 138 | 'fab': 'fa-brands', 139 | 'fad': 'fa-duotone', 140 | 'fak': 'fa-kit', 141 | 'fal': 'fa-light', 142 | 'far': 'fa-regular', 143 | 'fas': 'fa-solid', 144 | 'fat': 'fa-thin' 145 | }), _defineProperty(_familyProxy3, FAMILY_SHARP, { 146 | 'fass': 'fa-solid', 147 | 'fasr': 'fa-regular', 148 | 'fasl': 'fa-light' 149 | }), _familyProxy3)); 150 | var LONG_STYLE_TO_PREFIX = familyProxy((_familyProxy4 = {}, _defineProperty(_familyProxy4, FAMILY_CLASSIC, { 151 | 'fa-brands': 'fab', 152 | 'fa-duotone': 'fad', 153 | 'fa-kit': 'fak', 154 | 'fa-light': 'fal', 155 | 'fa-regular': 'far', 156 | 'fa-solid': 'fas', 157 | 'fa-thin': 'fat' 158 | }), _defineProperty(_familyProxy4, FAMILY_SHARP, { 159 | 'fa-solid': 'fass', 160 | 'fa-regular': 'fasr', 161 | 'fa-light': 'fasl' 162 | }), _familyProxy4)); 163 | var FONT_WEIGHT_TO_PREFIX = familyProxy((_familyProxy5 = {}, _defineProperty(_familyProxy5, FAMILY_CLASSIC, { 164 | '900': 'fas', 165 | '400': 'far', 166 | 'normal': 'far', 167 | '300': 'fal', 168 | '100': 'fat' 169 | }), _defineProperty(_familyProxy5, FAMILY_SHARP, { 170 | '900': 'fass', 171 | '400': 'fasr', 172 | '300': 'fasl' 173 | }), _familyProxy5)); 174 | var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; 175 | var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); 176 | var DUOTONE_CLASSES = { 177 | GROUP: 'duotone-group', 178 | SWAP_OPACITY: 'swap-opacity', 179 | PRIMARY: 'primary', 180 | SECONDARY: 'secondary' 181 | }; 182 | var prefixes = new Set(); 183 | Object.keys(STYLE_TO_PREFIX[FAMILY_CLASSIC]).map(prefixes.add.bind(prefixes)); 184 | Object.keys(STYLE_TO_PREFIX[FAMILY_SHARP]).map(prefixes.add.bind(prefixes)); 185 | var RESERVED_CLASSES = [].concat(FAMILIES, _toConsumableArray(prefixes), ['2xs', 'xs', 'sm', 'lg', 'xl', '2xl', 'beat', 'border', 'fade', 'beat-fade', 'bounce', 'flip-both', 'flip-horizontal', 'flip-vertical', 'flip', 'fw', 'inverse', 'layers-counter', 'layers-text', 'layers', 'li', 'pull-left', 'pull-right', 'pulse', 'rotate-180', 'rotate-270', 'rotate-90', 'rotate-by', 'shake', 'spin-pulse', 'spin-reverse', 'spin', 'stack-1x', 'stack-2x', 'stack', 'ul', DUOTONE_CLASSES.GROUP, DUOTONE_CLASSES.SWAP_OPACITY, DUOTONE_CLASSES.PRIMARY, DUOTONE_CLASSES.SECONDARY]).concat(oneToTen.map(function (n) { 186 | return "".concat(n, "x"); 187 | })).concat(oneToTwenty.map(function (n) { 188 | return "w-".concat(n); 189 | })); 190 | 191 | function bunker(fn) { 192 | try { 193 | for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { 194 | args[_key - 1] = arguments[_key]; 195 | } 196 | 197 | fn.apply(void 0, args); 198 | } catch (e) { 199 | if (!PRODUCTION) { 200 | throw e; 201 | } 202 | } 203 | } 204 | 205 | var w = WINDOW || {}; 206 | if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; 207 | if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; 208 | if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; 209 | if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; 210 | var namespace = w[NAMESPACE_IDENTIFIER]; 211 | 212 | var shims = [["glass", null, "martini-glass-empty"], ["envelope-o", "far", "envelope"], ["star-o", "far", "star"], ["remove", null, "xmark"], ["close", null, "xmark"], ["gear", null, "gear"], ["trash-o", "far", "trash-can"], ["home", null, "house"], ["file-o", "far", "file"], ["clock-o", "far", "clock"], ["arrow-circle-o-down", "far", "circle-down"], ["arrow-circle-o-up", "far", "circle-up"], ["play-circle-o", "far", "circle-play"], ["repeat", null, "arrow-rotate-right"], ["rotate-right", null, "arrow-rotate-right"], ["refresh", null, "arrows-rotate"], ["list-alt", "far", "rectangle-list"], ["dedent", null, "outdent"], ["video-camera", null, "video"], ["picture-o", "far", "image"], ["photo", "far", "image"], ["image", "far", "image"], ["map-marker", null, "location-dot"], ["pencil-square-o", "far", "pen-to-square"], ["edit", "far", "pen-to-square"], ["share-square-o", null, "share-from-square"], ["check-square-o", "far", "square-check"], ["arrows", null, "up-down-left-right"], ["times-circle-o", "far", "circle-xmark"], ["check-circle-o", "far", "circle-check"], ["mail-forward", null, "share"], ["expand", null, "up-right-and-down-left-from-center"], ["compress", null, "down-left-and-up-right-to-center"], ["eye", "far", null], ["eye-slash", "far", null], ["warning", null, "triangle-exclamation"], ["calendar", null, "calendar-days"], ["arrows-v", null, "up-down"], ["arrows-h", null, "left-right"], ["bar-chart", null, "chart-column"], ["bar-chart-o", null, "chart-column"], ["twitter-square", "fab", "square-twitter"], ["facebook-square", "fab", "square-facebook"], ["gears", null, "gears"], ["thumbs-o-up", "far", "thumbs-up"], ["thumbs-o-down", "far", "thumbs-down"], ["heart-o", "far", "heart"], ["sign-out", null, "right-from-bracket"], ["linkedin-square", "fab", "linkedin"], ["thumb-tack", null, "thumbtack"], ["external-link", null, "up-right-from-square"], ["sign-in", null, "right-to-bracket"], ["github-square", "fab", "square-github"], ["lemon-o", "far", "lemon"], ["square-o", "far", "square"], ["bookmark-o", "far", "bookmark"], ["twitter", "fab", null], ["facebook", "fab", "facebook-f"], ["facebook-f", "fab", "facebook-f"], ["github", "fab", null], ["credit-card", "far", null], ["feed", null, "rss"], ["hdd-o", "far", "hard-drive"], ["hand-o-right", "far", "hand-point-right"], ["hand-o-left", "far", "hand-point-left"], ["hand-o-up", "far", "hand-point-up"], ["hand-o-down", "far", "hand-point-down"], ["globe", null, "earth-americas"], ["tasks", null, "bars-progress"], ["arrows-alt", null, "maximize"], ["group", null, "users"], ["chain", null, "link"], ["cut", null, "scissors"], ["files-o", "far", "copy"], ["floppy-o", "far", "floppy-disk"], ["save", "far", "floppy-disk"], ["navicon", null, "bars"], ["reorder", null, "bars"], ["magic", null, "wand-magic-sparkles"], ["pinterest", "fab", null], ["pinterest-square", "fab", "square-pinterest"], ["google-plus-square", "fab", "square-google-plus"], ["google-plus", "fab", "google-plus-g"], ["money", null, "money-bill-1"], ["unsorted", null, "sort"], ["sort-desc", null, "sort-down"], ["sort-asc", null, "sort-up"], ["linkedin", "fab", "linkedin-in"], ["rotate-left", null, "arrow-rotate-left"], ["legal", null, "gavel"], ["tachometer", null, "gauge-high"], ["dashboard", null, "gauge-high"], ["comment-o", "far", "comment"], ["comments-o", "far", "comments"], ["flash", null, "bolt"], ["clipboard", null, "paste"], ["lightbulb-o", "far", "lightbulb"], ["exchange", null, "right-left"], ["cloud-download", null, "cloud-arrow-down"], ["cloud-upload", null, "cloud-arrow-up"], ["bell-o", "far", "bell"], ["cutlery", null, "utensils"], ["file-text-o", "far", "file-lines"], ["building-o", "far", "building"], ["hospital-o", "far", "hospital"], ["tablet", null, "tablet-screen-button"], ["mobile", null, "mobile-screen-button"], ["mobile-phone", null, "mobile-screen-button"], ["circle-o", "far", "circle"], ["mail-reply", null, "reply"], ["github-alt", "fab", null], ["folder-o", "far", "folder"], ["folder-open-o", "far", "folder-open"], ["smile-o", "far", "face-smile"], ["frown-o", "far", "face-frown"], ["meh-o", "far", "face-meh"], ["keyboard-o", "far", "keyboard"], ["flag-o", "far", "flag"], ["mail-reply-all", null, "reply-all"], ["star-half-o", "far", "star-half-stroke"], ["star-half-empty", "far", "star-half-stroke"], ["star-half-full", "far", "star-half-stroke"], ["code-fork", null, "code-branch"], ["chain-broken", null, "link-slash"], ["unlink", null, "link-slash"], ["calendar-o", "far", "calendar"], ["maxcdn", "fab", null], ["html5", "fab", null], ["css3", "fab", null], ["unlock-alt", null, "unlock"], ["minus-square-o", "far", "square-minus"], ["level-up", null, "turn-up"], ["level-down", null, "turn-down"], ["pencil-square", null, "square-pen"], ["external-link-square", null, "square-up-right"], ["compass", "far", null], ["caret-square-o-down", "far", "square-caret-down"], ["toggle-down", "far", "square-caret-down"], ["caret-square-o-up", "far", "square-caret-up"], ["toggle-up", "far", "square-caret-up"], ["caret-square-o-right", "far", "square-caret-right"], ["toggle-right", "far", "square-caret-right"], ["eur", null, "euro-sign"], ["euro", null, "euro-sign"], ["gbp", null, "sterling-sign"], ["usd", null, "dollar-sign"], ["dollar", null, "dollar-sign"], ["inr", null, "indian-rupee-sign"], ["rupee", null, "indian-rupee-sign"], ["jpy", null, "yen-sign"], ["cny", null, "yen-sign"], ["rmb", null, "yen-sign"], ["yen", null, "yen-sign"], ["rub", null, "ruble-sign"], ["ruble", null, "ruble-sign"], ["rouble", null, "ruble-sign"], ["krw", null, "won-sign"], ["won", null, "won-sign"], ["btc", "fab", null], ["bitcoin", "fab", "btc"], ["file-text", null, "file-lines"], ["sort-alpha-asc", null, "arrow-down-a-z"], ["sort-alpha-desc", null, "arrow-down-z-a"], ["sort-amount-asc", null, "arrow-down-short-wide"], ["sort-amount-desc", null, "arrow-down-wide-short"], ["sort-numeric-asc", null, "arrow-down-1-9"], ["sort-numeric-desc", null, "arrow-down-9-1"], ["youtube-square", "fab", "square-youtube"], ["youtube", "fab", null], ["xing", "fab", null], ["xing-square", "fab", "square-xing"], ["youtube-play", "fab", "youtube"], ["dropbox", "fab", null], ["stack-overflow", "fab", null], ["instagram", "fab", null], ["flickr", "fab", null], ["adn", "fab", null], ["bitbucket", "fab", null], ["bitbucket-square", "fab", "bitbucket"], ["tumblr", "fab", null], ["tumblr-square", "fab", "square-tumblr"], ["long-arrow-down", null, "down-long"], ["long-arrow-up", null, "up-long"], ["long-arrow-left", null, "left-long"], ["long-arrow-right", null, "right-long"], ["apple", "fab", null], ["windows", "fab", null], ["android", "fab", null], ["linux", "fab", null], ["dribbble", "fab", null], ["skype", "fab", null], ["foursquare", "fab", null], ["trello", "fab", null], ["gratipay", "fab", null], ["gittip", "fab", "gratipay"], ["sun-o", "far", "sun"], ["moon-o", "far", "moon"], ["vk", "fab", null], ["weibo", "fab", null], ["renren", "fab", null], ["pagelines", "fab", null], ["stack-exchange", "fab", null], ["arrow-circle-o-right", "far", "circle-right"], ["arrow-circle-o-left", "far", "circle-left"], ["caret-square-o-left", "far", "square-caret-left"], ["toggle-left", "far", "square-caret-left"], ["dot-circle-o", "far", "circle-dot"], ["vimeo-square", "fab", "square-vimeo"], ["try", null, "turkish-lira-sign"], ["turkish-lira", null, "turkish-lira-sign"], ["plus-square-o", "far", "square-plus"], ["slack", "fab", null], ["wordpress", "fab", null], ["openid", "fab", null], ["institution", null, "building-columns"], ["bank", null, "building-columns"], ["mortar-board", null, "graduation-cap"], ["yahoo", "fab", null], ["google", "fab", null], ["reddit", "fab", null], ["reddit-square", "fab", "square-reddit"], ["stumbleupon-circle", "fab", null], ["stumbleupon", "fab", null], ["delicious", "fab", null], ["digg", "fab", null], ["pied-piper-pp", "fab", null], ["pied-piper-alt", "fab", null], ["drupal", "fab", null], ["joomla", "fab", null], ["behance", "fab", null], ["behance-square", "fab", "square-behance"], ["steam", "fab", null], ["steam-square", "fab", "square-steam"], ["automobile", null, "car"], ["cab", null, "taxi"], ["spotify", "fab", null], ["deviantart", "fab", null], ["soundcloud", "fab", null], ["file-pdf-o", "far", "file-pdf"], ["file-word-o", "far", "file-word"], ["file-excel-o", "far", "file-excel"], ["file-powerpoint-o", "far", "file-powerpoint"], ["file-image-o", "far", "file-image"], ["file-photo-o", "far", "file-image"], ["file-picture-o", "far", "file-image"], ["file-archive-o", "far", "file-zipper"], ["file-zip-o", "far", "file-zipper"], ["file-audio-o", "far", "file-audio"], ["file-sound-o", "far", "file-audio"], ["file-video-o", "far", "file-video"], ["file-movie-o", "far", "file-video"], ["file-code-o", "far", "file-code"], ["vine", "fab", null], ["codepen", "fab", null], ["jsfiddle", "fab", null], ["life-bouy", null, "life-ring"], ["life-buoy", null, "life-ring"], ["life-saver", null, "life-ring"], ["support", null, "life-ring"], ["circle-o-notch", null, "circle-notch"], ["rebel", "fab", null], ["ra", "fab", "rebel"], ["resistance", "fab", "rebel"], ["empire", "fab", null], ["ge", "fab", "empire"], ["git-square", "fab", "square-git"], ["git", "fab", null], ["hacker-news", "fab", null], ["y-combinator-square", "fab", "hacker-news"], ["yc-square", "fab", "hacker-news"], ["tencent-weibo", "fab", null], ["qq", "fab", null], ["weixin", "fab", null], ["wechat", "fab", "weixin"], ["send", null, "paper-plane"], ["paper-plane-o", "far", "paper-plane"], ["send-o", "far", "paper-plane"], ["circle-thin", "far", "circle"], ["header", null, "heading"], ["futbol-o", "far", "futbol"], ["soccer-ball-o", "far", "futbol"], ["slideshare", "fab", null], ["twitch", "fab", null], ["yelp", "fab", null], ["newspaper-o", "far", "newspaper"], ["paypal", "fab", null], ["google-wallet", "fab", null], ["cc-visa", "fab", null], ["cc-mastercard", "fab", null], ["cc-discover", "fab", null], ["cc-amex", "fab", null], ["cc-paypal", "fab", null], ["cc-stripe", "fab", null], ["bell-slash-o", "far", "bell-slash"], ["trash", null, "trash-can"], ["copyright", "far", null], ["eyedropper", null, "eye-dropper"], ["area-chart", null, "chart-area"], ["pie-chart", null, "chart-pie"], ["line-chart", null, "chart-line"], ["lastfm", "fab", null], ["lastfm-square", "fab", "square-lastfm"], ["ioxhost", "fab", null], ["angellist", "fab", null], ["cc", "far", "closed-captioning"], ["ils", null, "shekel-sign"], ["shekel", null, "shekel-sign"], ["sheqel", null, "shekel-sign"], ["buysellads", "fab", null], ["connectdevelop", "fab", null], ["dashcube", "fab", null], ["forumbee", "fab", null], ["leanpub", "fab", null], ["sellsy", "fab", null], ["shirtsinbulk", "fab", null], ["simplybuilt", "fab", null], ["skyatlas", "fab", null], ["diamond", "far", "gem"], ["transgender", null, "mars-and-venus"], ["intersex", null, "mars-and-venus"], ["transgender-alt", null, "transgender"], ["facebook-official", "fab", "facebook"], ["pinterest-p", "fab", null], ["whatsapp", "fab", null], ["hotel", null, "bed"], ["viacoin", "fab", null], ["medium", "fab", null], ["y-combinator", "fab", null], ["yc", "fab", "y-combinator"], ["optin-monster", "fab", null], ["opencart", "fab", null], ["expeditedssl", "fab", null], ["battery-4", null, "battery-full"], ["battery", null, "battery-full"], ["battery-3", null, "battery-three-quarters"], ["battery-2", null, "battery-half"], ["battery-1", null, "battery-quarter"], ["battery-0", null, "battery-empty"], ["object-group", "far", null], ["object-ungroup", "far", null], ["sticky-note-o", "far", "note-sticky"], ["cc-jcb", "fab", null], ["cc-diners-club", "fab", null], ["clone", "far", null], ["hourglass-o", null, "hourglass"], ["hourglass-1", null, "hourglass-start"], ["hourglass-2", null, "hourglass-half"], ["hourglass-3", null, "hourglass-end"], ["hand-rock-o", "far", "hand-back-fist"], ["hand-grab-o", "far", "hand-back-fist"], ["hand-paper-o", "far", "hand"], ["hand-stop-o", "far", "hand"], ["hand-scissors-o", "far", "hand-scissors"], ["hand-lizard-o", "far", "hand-lizard"], ["hand-spock-o", "far", "hand-spock"], ["hand-pointer-o", "far", "hand-pointer"], ["hand-peace-o", "far", "hand-peace"], ["registered", "far", null], ["creative-commons", "fab", null], ["gg", "fab", null], ["gg-circle", "fab", null], ["odnoklassniki", "fab", null], ["odnoklassniki-square", "fab", "square-odnoklassniki"], ["get-pocket", "fab", null], ["wikipedia-w", "fab", null], ["safari", "fab", null], ["chrome", "fab", null], ["firefox", "fab", null], ["opera", "fab", null], ["internet-explorer", "fab", null], ["television", null, "tv"], ["contao", "fab", null], ["500px", "fab", null], ["amazon", "fab", null], ["calendar-plus-o", "far", "calendar-plus"], ["calendar-minus-o", "far", "calendar-minus"], ["calendar-times-o", "far", "calendar-xmark"], ["calendar-check-o", "far", "calendar-check"], ["map-o", "far", "map"], ["commenting", null, "comment-dots"], ["commenting-o", "far", "comment-dots"], ["houzz", "fab", null], ["vimeo", "fab", "vimeo-v"], ["black-tie", "fab", null], ["fonticons", "fab", null], ["reddit-alien", "fab", null], ["edge", "fab", null], ["credit-card-alt", null, "credit-card"], ["codiepie", "fab", null], ["modx", "fab", null], ["fort-awesome", "fab", null], ["usb", "fab", null], ["product-hunt", "fab", null], ["mixcloud", "fab", null], ["scribd", "fab", null], ["pause-circle-o", "far", "circle-pause"], ["stop-circle-o", "far", "circle-stop"], ["bluetooth", "fab", null], ["bluetooth-b", "fab", null], ["gitlab", "fab", null], ["wpbeginner", "fab", null], ["wpforms", "fab", null], ["envira", "fab", null], ["wheelchair-alt", "fab", "accessible-icon"], ["question-circle-o", "far", "circle-question"], ["volume-control-phone", null, "phone-volume"], ["asl-interpreting", null, "hands-asl-interpreting"], ["deafness", null, "ear-deaf"], ["hard-of-hearing", null, "ear-deaf"], ["glide", "fab", null], ["glide-g", "fab", null], ["signing", null, "hands"], ["viadeo", "fab", null], ["viadeo-square", "fab", "square-viadeo"], ["snapchat", "fab", null], ["snapchat-ghost", "fab", "snapchat"], ["snapchat-square", "fab", "square-snapchat"], ["pied-piper", "fab", null], ["first-order", "fab", null], ["yoast", "fab", null], ["themeisle", "fab", null], ["google-plus-official", "fab", "google-plus"], ["google-plus-circle", "fab", "google-plus"], ["font-awesome", "fab", null], ["fa", "fab", "font-awesome"], ["handshake-o", "far", "handshake"], ["envelope-open-o", "far", "envelope-open"], ["linode", "fab", null], ["address-book-o", "far", "address-book"], ["vcard", null, "address-card"], ["address-card-o", "far", "address-card"], ["vcard-o", "far", "address-card"], ["user-circle-o", "far", "circle-user"], ["user-o", "far", "user"], ["id-badge", "far", null], ["drivers-license", null, "id-card"], ["id-card-o", "far", "id-card"], ["drivers-license-o", "far", "id-card"], ["quora", "fab", null], ["free-code-camp", "fab", null], ["telegram", "fab", null], ["thermometer-4", null, "temperature-full"], ["thermometer", null, "temperature-full"], ["thermometer-3", null, "temperature-three-quarters"], ["thermometer-2", null, "temperature-half"], ["thermometer-1", null, "temperature-quarter"], ["thermometer-0", null, "temperature-empty"], ["bathtub", null, "bath"], ["s15", null, "bath"], ["window-maximize", "far", null], ["window-restore", "far", null], ["times-rectangle", null, "rectangle-xmark"], ["window-close-o", "far", "rectangle-xmark"], ["times-rectangle-o", "far", "rectangle-xmark"], ["bandcamp", "fab", null], ["grav", "fab", null], ["etsy", "fab", null], ["imdb", "fab", null], ["ravelry", "fab", null], ["eercast", "fab", "sellcast"], ["snowflake-o", "far", "snowflake"], ["superpowers", "fab", null], ["wpexplorer", "fab", null], ["meetup", "fab", null], [61440, "fas", "martini-glass-empty"], [61443, "far", "envelope"], [61446, "far", "star"], [61460, "far", "trash-can"], [61462, "far", "file"], [61463, "far", "clock"], [61466, "far", "circle-down"], [61467, "far", "circle-up"], [61469, "far", "circle-play"], [61470, "fas", "arrow-rotate-right"], [61474, "far", "rectangle-list"], [61502, "far", "image"], [61505, "fas", "location-dot"], [61508, "far", "pen-to-square"], [61509, "fas", "share-from-square"], [61510, "far", "square-check"], [61511, "fas", "up-down-left-right"], [61532, "far", "circle-xmark"], [61533, "far", "circle-check"], [61541, "fas", "up-right-and-down-left-from-center"], [61542, "fas", "down-left-and-up-right-to-center"], [61550, "far", "eye"], [61552, "far", "eye-slash"], [61555, "fas", "calendar-days"], [61565, "fas", "up-down"], [61566, "fas", "left-right"], [61568, "fas", "chart-column"], [61569, "fab", "square-twitter"], [61570, "fab", "square-facebook"], [61575, "far", "thumbs-up"], [61576, "far", "thumbs-down"], [61578, "far", "heart"], [61579, "fas", "right-from-bracket"], [61580, "fab", "linkedin"], [61582, "fas", "up-right-from-square"], [61584, "fas", "right-to-bracket"], [61586, "fab", "square-github"], [61588, "far", "lemon"], [61590, "far", "square"], [61591, "far", "bookmark"], [61593, "fab", "twitter"], [61594, "fab", "facebook-f"], [61595, "fab", "github"], [61597, "far", "credit-card"], [61600, "far", "hard-drive"], [61604, "far", "hand-point-right"], [61605, "far", "hand-point-left"], [61606, "far", "hand-point-up"], [61607, "far", "hand-point-down"], [61612, "fas", "earth-americas"], [61614, "fas", "bars-progress"], [61618, "fas", "maximize"], [61632, "fas", "users"], [61637, "far", "copy"], [61639, "far", "floppy-disk"], [61641, "fas", "bars"], [61648, "fas", "wand-magic-sparkles"], [61650, "fab", "pinterest"], [61651, "fab", "square-pinterest"], [61652, "fab", "square-google-plus"], [61653, "fab", "google-plus-g"], [61654, "fas", "money-bill-1"], [61665, "fab", "linkedin-in"], [61666, "fas", "arrow-rotate-left"], [61668, "fas", "gauge-high"], [61669, "far", "comment"], [61670, "far", "comments"], [61671, "fas", "bolt"], [61674, "fas", "paste"], [61675, "far", "lightbulb"], [61676, "fas", "right-left"], [61602, "far", "bell"], [61685, "fas", "utensils"], [61686, "far", "file-lines"], [61687, "far", "building"], [61688, "far", "hospital"], [61706, "fas", "tablet-screen-button"], [61707, "fas", "mobile-screen-button"], [61708, "far", "circle"], [61714, "fas", "reply"], [61715, "fab", "github-alt"], [61716, "far", "folder"], [61717, "far", "folder-open"], [61720, "far", "face-smile"], [61721, "far", "face-frown"], [61722, "far", "face-meh"], [61724, "far", "keyboard"], [61725, "far", "flag"], [61731, "far", "star-half-stroke"], [61734, "fas", "code-branch"], [61747, "far", "calendar"], [61750, "fab", "maxcdn"], [61755, "fab", "html5"], [61756, "fab", "css3"], [61758, "fas", "unlock"], [61767, "far", "square-minus"], [61768, "fas", "turn-up"], [61769, "fas", "turn-down"], [61772, "fas", "square-up-right"], [61774, "far", "compass"], [61776, "far", "square-caret-down"], [61777, "far", "square-caret-up"], [61778, "far", "square-caret-right"], [61781, "fas", "dollar-sign"], [61782, "fas", "indian-rupee-sign"], [61786, "fab", "btc"], [61790, "fas", "arrow-down-z-a"], [61792, "fas", "arrow-down-short-wide"], [61793, "fas", "arrow-down-wide-short"], [61795, "fas", "arrow-down-9-1"], [61798, "fab", "square-youtube"], [61799, "fab", "youtube"], [61800, "fab", "xing"], [61801, "fab", "square-xing"], [61802, "fab", "youtube"], [61803, "fab", "dropbox"], [61804, "fab", "stack-overflow"], [61805, "fab", "instagram"], [61806, "fab", "flickr"], [61808, "fab", "adn"], [61809, "fab", "bitbucket"], [61810, "fab", "bitbucket"], [61811, "fab", "tumblr"], [61812, "fab", "square-tumblr"], [61813, "fas", "down-long"], [61814, "fas", "up-long"], [61815, "fas", "left-long"], [61816, "fas", "right-long"], [61817, "fab", "apple"], [61818, "fab", "windows"], [61819, "fab", "android"], [61820, "fab", "linux"], [61821, "fab", "dribbble"], [61822, "fab", "skype"], [61824, "fab", "foursquare"], [61825, "fab", "trello"], [61828, "fab", "gratipay"], [61829, "far", "sun"], [61830, "far", "moon"], [61833, "fab", "vk"], [61834, "fab", "weibo"], [61835, "fab", "renren"], [61836, "fab", "pagelines"], [61837, "fab", "stack-exchange"], [61838, "far", "circle-right"], [61840, "far", "circle-left"], [61841, "far", "square-caret-left"], [61842, "far", "circle-dot"], [61844, "fab", "square-vimeo"], [61845, "fas", "turkish-lira-sign"], [61846, "far", "square-plus"], [61848, "fab", "slack"], [61850, "fab", "wordpress"], [61851, "fab", "openid"], [61854, "fab", "yahoo"], [61856, "fab", "google"], [61857, "fab", "reddit"], [61858, "fab", "square-reddit"], [61859, "fab", "stumbleupon-circle"], [61860, "fab", "stumbleupon"], [61861, "fab", "delicious"], [61862, "fab", "digg"], [61863, "fab", "pied-piper-pp"], [61864, "fab", "pied-piper-alt"], [61865, "fab", "drupal"], [61866, "fab", "joomla"], [61876, "fab", "behance"], [61877, "fab", "square-behance"], [61878, "fab", "steam"], [61879, "fab", "square-steam"], [61884, "fab", "spotify"], [61885, "fab", "deviantart"], [61886, "fab", "soundcloud"], [61889, "far", "file-pdf"], [61890, "far", "file-word"], [61891, "far", "file-excel"], [61892, "far", "file-powerpoint"], [61893, "far", "file-image"], [61894, "far", "file-zipper"], [61895, "far", "file-audio"], [61896, "far", "file-video"], [61897, "far", "file-code"], [61898, "fab", "vine"], [61899, "fab", "codepen"], [61900, "fab", "jsfiddle"], [61901, "fas", "life-ring"], [61902, "fas", "circle-notch"], [61904, "fab", "rebel"], [61905, "fab", "empire"], [61906, "fab", "square-git"], [61907, "fab", "git"], [61908, "fab", "hacker-news"], [61909, "fab", "tencent-weibo"], [61910, "fab", "qq"], [61911, "fab", "weixin"], [61912, "fas", "paper-plane"], [61913, "far", "paper-plane"], [61915, "far", "circle"], [61923, "far", "futbol"], [61927, "fab", "slideshare"], [61928, "fab", "twitch"], [61929, "fab", "yelp"], [61930, "far", "newspaper"], [61933, "fab", "paypal"], [61934, "fab", "google-wallet"], [61936, "fab", "cc-visa"], [61937, "fab", "cc-mastercard"], [61938, "fab", "cc-discover"], [61939, "fab", "cc-amex"], [61940, "fab", "cc-paypal"], [61941, "fab", "cc-stripe"], [61943, "far", "bell-slash"], [61944, "fas", "trash-can"], [61945, "far", "copyright"], [61954, "fab", "lastfm"], [61955, "fab", "square-lastfm"], [61960, "fab", "ioxhost"], [61961, "fab", "angellist"], [61962, "far", "closed-captioning"], [61965, "fab", "buysellads"], [61966, "fab", "connectdevelop"], [61968, "fab", "dashcube"], [61969, "fab", "forumbee"], [61970, "fab", "leanpub"], [61971, "fab", "sellsy"], [61972, "fab", "shirtsinbulk"], [61973, "fab", "simplybuilt"], [61974, "fab", "skyatlas"], [61977, "far", "gem"], [61988, "fas", "mars-and-venus"], [62000, "fab", "facebook"], [62001, "fab", "pinterest-p"], [62002, "fab", "whatsapp"], [62006, "fas", "bed"], [62007, "fab", "viacoin"], [62010, "fab", "medium"], [62011, "fab", "y-combinator"], [62012, "fab", "optin-monster"], [62013, "fab", "opencart"], [62014, "fab", "expeditedssl"], [62016, "fas", "battery-full"], [62017, "fas", "battery-three-quarters"], [62018, "fas", "battery-half"], [62019, "fas", "battery-quarter"], [62023, "far", "object-group"], [62024, "far", "object-ungroup"], [62026, "far", "note-sticky"], [62027, "fab", "cc-jcb"], [62028, "fab", "cc-diners-club"], [62029, "far", "clone"], [62032, "fas", "hourglass"], [62037, "far", "hand-back-fist"], [62038, "far", "hand"], [62039, "far", "hand-scissors"], [62040, "far", "hand-lizard"], [62041, "far", "hand-spock"], [62042, "far", "hand-pointer"], [62043, "far", "hand-peace"], [62045, "far", "registered"], [62046, "fab", "creative-commons"], [62048, "fab", "gg"], [62049, "fab", "gg-circle"], [62051, "fab", "odnoklassniki"], [62052, "fab", "square-odnoklassniki"], [62053, "fab", "get-pocket"], [62054, "fab", "wikipedia-w"], [62055, "fab", "safari"], [62056, "fab", "chrome"], [62057, "fab", "firefox"], [62058, "fab", "opera"], [62059, "fab", "internet-explorer"], [62061, "fab", "contao"], [62062, "fab", "500px"], [62064, "fab", "amazon"], [62065, "far", "calendar-plus"], [62066, "far", "calendar-minus"], [62067, "far", "calendar-xmark"], [62068, "far", "calendar-check"], [62072, "far", "map"], [62074, "fas", "comment-dots"], [62075, "far", "comment-dots"], [62076, "fab", "houzz"], [62077, "fab", "vimeo-v"], [62078, "fab", "black-tie"], [62080, "fab", "fonticons"], [62081, "fab", "reddit-alien"], [62082, "fab", "edge"], [62083, "fas", "credit-card"], [62084, "fab", "codiepie"], [62085, "fab", "modx"], [62086, "fab", "fort-awesome"], [62087, "fab", "usb"], [62088, "fab", "product-hunt"], [62089, "fab", "mixcloud"], [62090, "fab", "scribd"], [62092, "far", "circle-pause"], [62094, "far", "circle-stop"], [62099, "fab", "bluetooth"], [62100, "fab", "bluetooth-b"], [62102, "fab", "gitlab"], [62103, "fab", "wpbeginner"], [62104, "fab", "wpforms"], [62105, "fab", "envira"], [62107, "fab", "accessible-icon"], [62108, "far", "circle-question"], [62117, "fab", "glide"], [62118, "fab", "glide-g"], [62121, "fab", "viadeo"], [62122, "fab", "square-viadeo"], [62123, "fab", "snapchat"], [62124, "fab", "snapchat"], [62125, "fab", "square-snapchat"], [62126, "fab", "pied-piper"], [62128, "fab", "first-order"], [62129, "fab", "yoast"], [62130, "fab", "themeisle"], [62131, "fab", "google-plus"], [62132, "fab", "font-awesome"], [62133, "far", "handshake"], [62135, "far", "envelope-open"], [62136, "fab", "linode"], [62138, "far", "address-book"], [62140, "far", "address-card"], [62142, "far", "circle-user"], [62144, "far", "user"], [62145, "far", "id-badge"], [62147, "far", "id-card"], [62148, "fab", "quora"], [62149, "fab", "free-code-camp"], [62150, "fab", "telegram"], [62151, "fas", "temperature-full"], [62157, "fas", "bath"], [62160, "far", "window-maximize"], [62162, "far", "window-restore"], [62163, "fas", "rectangle-xmark"], [62164, "far", "rectangle-xmark"], [62165, "fab", "bandcamp"], [62166, "fab", "grav"], [62167, "fab", "etsy"], [62168, "fab", "imdb"], [62169, "fab", "ravelry"], [62170, "fab", "sellcast"], [62172, "far", "snowflake"], [62173, "fab", "superpowers"], [62174, "fab", "wpexplorer"], [62176, "fab", "meetup"]]; 213 | bunker(function () { 214 | if (typeof namespace.hooks.addShims === 'function') { 215 | namespace.hooks.addShims(shims); 216 | } else { 217 | var _namespace$shims; 218 | 219 | (_namespace$shims = namespace.shims).push.apply(_namespace$shims, shims); 220 | } 221 | }); 222 | 223 | return shims; 224 | 225 | }))); 226 | --------------------------------------------------------------------------------