diff --git a/assets/script.js b/assets/js/script.js similarity index 93% rename from assets/script.js rename to assets/js/script.js index 72768a037..e2118f852 100644 --- a/assets/script.js +++ b/assets/js/script.js @@ -7,11 +7,6 @@ $(document).ready(function () { itemsDesktopSmall: [979, 3] }); - // Gallery Popup - $('.image-popup').magnificPopup({ - type: 'image' - }); - // animation scroll js var html_body = $('html, body'); $('.page-scroll').on('click', function () { //use page-scroll class in any HTML tag for scrolling diff --git a/assets/scss/_mixins.scss b/assets/scss/_mixins.scss new file mode 100644 index 000000000..d74db82cf --- /dev/null +++ b/assets/scss/_mixins.scss @@ -0,0 +1,35 @@ +@mixin mobile-xs{ + @media(max-width:400px){ + @content; + } +} +@mixin mobile{ + @media(max-width:575px){ + @content; + } +} +@mixin tablet{ + @media(max-width:767px){ + @content; + } +} +@mixin desktop{ + @media(max-width:991px){ + @content; + } +} +@mixin desktop-lg{ + @media(max-width:1199px){ + @content; + } +} + +@mixin desktop-xl{ + @media(max-width:1499px){ + @content; + } +} + +@mixin size($size){ + width: $size; height: $size; +} \ No newline at end of file diff --git a/assets/scss/style.scss b/assets/scss/style.scss new file mode 100644 index 000000000..0db2fb78a --- /dev/null +++ b/assets/scss/style.scss @@ -0,0 +1,550 @@ +@import 'mixins'; + +// Variables +$primary-font: 'Josefin Sans', +sans-serif; +$secondary-font: 'Droid Serif', +serif; +$primary-color: #f9a743; +$icon-font: 'themefisher-font' !important; + +/*-- + Common Css +--*/ +body { + font-size: 14px; + font-weight: 300; + line-height: 25px; + color: #3b4045; + font-family: $primary-font; + -webkit-font-smoothing: antialiased; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: 300; + margin: 0px; +} + +h1, +.h1 { + font-size: 44px; + line-height: 56px; +} + +h2, +.h2 { + font-size: 30px; + line-height: 35px; +} + +h3, +.h3 { + font-size: 23px; + line-height: 25px; +} + +h4, +.h4 { + font-size: 20px; + line-height: 24px; + font-weight: 400; +} + +p { + font-size: 18px; + line-height: 25px; +} + +ul { + padding: 0; + margin: 0; + list-style: none; +} + +a { + -webkit-transition: all 0.2s ease-in-out 0s; + -moz-transition: all 0.2s ease-in-out 0s; + -o-transition: all 0.2s ease-in-out 0s; + transition: all 0.2s ease-in-out 0s; +} + +.mt-100 { + margin-top: 100px; +} + +.bg-1 { + background-image: url(../images/call-to-action.jpg); +} + +.bg-orange { + background: $primary-color; +} + +.bg-opacity { + position: relative; + + &:before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.7); + } +} + +a:focus, +.btn:focus, +.btn:active:focus { + box-shadow: none; + outline: 0 none; +} + +a, +a:active, +a:focus, +a:active { + text-decoration: none; +} + +.section { + padding: 100px 0; +} + +.font-size-60 { + font-size: 60px; + line-height: 1.2; + + @include mobile { + font-size: 40px; + } +} + +.mb-10 { + margin-bottom: 10px; +} + +.mb-40 { + margin-bottom: 40px; +} + +/*-- + custom heading +--*/ +.text-center { + text-align: center; +} + +.heading { + text-align: center; + color: #777777; + padding-bottom: 70px; + + h2 { + color: #3c3c3c; + padding-bottom: 15px; + text-transform: capitalize; + font-weight: 700; + font-size: 40px; + line-height: 40px; + } + + p { + font-size: 17px; + line-height: 24px; + font-weight: 300; + } +} + +.subheading { + color: #3c3c3c; + padding-bottom: 15px; + text-transform: capitalize; + font-weight: 500; + font-size: 32px; + line-height: 45px; +} + +.btn { + border-radius: 0; +} + +.btn-main { + color: #fff; + border-radius: 30px; + font-size: 18px; + padding: 15px 40px; + display: inline-block; + background-color: $primary-color; + box-shadow: 0 15px 40px rgba(249, 167, 68, 0.5); + background-image: linear-gradient(bottom, rgba(255, 239, 206, 0) 0%, rgba(255, 239, 206, 0.25) 100%); + + &:hover, + &:focus { + background-color: $primary-color; + color: #fff; + } +} + +.btn-main-sm { + padding: 12px 35px; + text-transform: uppercase; + font-size: 14px; + font-weight: bold; +} + +/*Preloader*/ +#preloader-wrapper { + background-color: #fff; + bottom: auto; + height: 100%; + left: auto; + position: fixed; + right: auto; + top: auto; + width: 100%; + z-index: 9999; + display: flex; + justify-content: center; + align-items: center; +} + +.pre-loader { + width: 130px; + height: 130px; + background: $primary-color; + border-radius: 50%; + animation: loading 6s infinite reverse linear; + position: relative; + font-family: $icon-font; + + &:before { + content: "\f3bd"; + position: absolute; + top: 50%; + left: 50%; + display: block; + font-size: 40px; + transform: translate(-50%, -50%); + color: #fff; + } +} + +@keyframes loading { + + /* */ + 0% { + box-shadow: inset 0 0 0 80px $primary-color; + } + + 8.49% { + background: $primary-color; + box-shadow: inset 0 0 0 160px $primary-color; + } + + /* orange */ + 8.5% { + box-shadow: inset 0 0 0 0 #ff8133; + } + + 24.99% { + background: #ff8133; + box-shadow: inset 0 0 0 160px #ff8133; + } + + /* yellow */ + 25% { + box-shadow: inset 0 0 0 0 #ffbe1a; + } + + 41.49% { + background: #ffbe1a; + box-shadow: inset 0 0 0 160px #ffbe1a; + } + + /* */ + 41.5% { + box-shadow: inset 0 0 0 0 $primary-color; + } + + 57.99% { + background: $primary-color; + box-shadow: inset 0 0 0 160px $primary-color; + } + + /* blue */ + 58% { + box-shadow: inset 0 0 0 0 #00b5d9; + } + + 74.49% { + background: #00b5d9; + box-shadow: inset 0 0 0 160px #00b5d9; + } + + /* purple */ + 74.5% { + box-shadow: inset 0 0 0 0 #9772e5; + } + + 90.99% { + background: #9772e5; + box-shadow: inset 0 0 0 160px #9772e5; + } + + /* */ + 91% { + box-shadow: inset 0 0 0 0 $primary-color; + } + + 100% { + background: $primary-color; + box-shadow: inset 0 0 0 80px $primary-color; + } +} + +/* navigation */ +.navbar { + &-brand { + color: #444; + font-size: 25px; + margin: 0; + line-height: 1; + } +} + +.nav-link { + font-size: 14px; + font-weight: bold; +} + +.navbar-light .navbar-nav .nav-link { + color: #444; +} + +/*-- + feature start +--*/ +/*-- + Feature-list start +--*/ +.feature-list { + .btn-main { + margin-top: 15px; + } +} + +/*-- + Gallery start +--*/ +.gallery { + padding-bottom: 100px; + + .owl-item { + overflow: hidden; + position: relative; + } + + .block { + padding: 20px; + position: relative; + + &:hover .gallery-overlay { + transform: scale(1); + opacity: 1; + } + } + + .gallery-overlay { + position: absolute; + bottom: 15px; + left: 15px; + right: 15px; + top: 15px; + background: rgba(255, 255, 255, 0.85); + text-decoration: none; + color: inherit; + -webkit-transform: scale(.5); + transform: scale(.5); + -webkit-transition: all .3s; + transition: all .3s; + z-index: 2; + opacity: 0; + + .gallery-popup { + text-align: center; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + background: $primary-color; + padding: 5px 10px; + border-radius: 40px; + width: 50px; + height: 50px; + + i { + color: #fff; + font-size: 30px; + line-height: 40px; + display: inline-block; + } + } + } +} + +/*-- + service start +--*/ +.testimonials { + .testimonial-block { + padding: 0 10px; + + i { + font-size: 40px; + display: inline-block; + margin-bottom: 20px; + color: $primary-color; + } + + p { + font-family: $secondary-font; + font-size: 14px; + color: #777; + } + + .author-details { + margin-top: 30px; + + img { + border-radius: 50%; + width: 50px; + } + + h4 { + font-weight: 700; + font-size: 20px; + margin-top: 10px; + } + } + } +} + +/*-- + call-to-action start +--*/ +.call-to-action { + background-attachment: fixed; + background-repeat: no-repeat; + background-size: cover; +} + +.input-group { + margin-top: 30px; + position: relative; + + .btn-submit { + padding: 10.5px 40px !important; + position: absolute; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + top: 0; + right: 0; + } + + input { + height: 50px; + border-radius: 40px; + border: none; + padding-left: 15px; + box-shadow: none; + display: table-cell; + } +} + +.footer-menu { + a { + font-size: 14; + font-weight: 700; + color: #444; + padding: 10px; + } +} + +footer { + text-align: center; + background: #f4f4f4; + padding: 50px 0px; + + .footer-logo { + color: #555; + display: block; + } + + p.copyright-text { + font-weight: 300; + font-size: 12px; + color: #888; + letter-spacing: 3px; + margin-top: 15px; + + a { + color: #282828; + + &:hover { + text-decoration: none; + } + } + } +} + +// product single +p.price { + font-size: 30px; + font-family: $secondary-font; +} + +s.price { + color: red; + font-size: 25px; + font-family: $secondary-font; +} + +// contact list +.contact-list{ + li,a{ + color: #282828; + font-size: 18px; + } +} + +.form-control{ + border: 1px solid #f1f1f1; + border-radius: 35px; + &:focus{ + border-color: $primary-color; + box-shadow: none; + } + &::placeholder{ + font-size: 80%; + } +} + +textarea.form-control{ + height: 100px; + padding-top: 15px; +} + +.sticky-image{ + position: sticky; + top: 100px; + z-index: 1; +} \ No newline at end of file diff --git a/assets/style.css b/assets/style.css deleted file mode 100644 index 36abb9a63..000000000 --- a/assets/style.css +++ /dev/null @@ -1,530 +0,0 @@ -/*-- - Common Css ---*/ -body { - font-size: 14px; - font-weight: 300; - line-height: 25px; - color: #3b4045; - font-family: "Josefin Sans", sans-serif; - -webkit-font-smoothing: antialiased; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 300; - margin: 0px; -} - -h1, -.h1 { - font-size: 44px; - line-height: 56px; -} - -h2, -.h2 { - font-size: 30px; - line-height: 35px; -} - -h3, -.h3 { - font-size: 23px; - line-height: 25px; -} - -h4, -.h4 { - font-size: 20px; - line-height: 24px; - font-weight: 400; -} - -p { - font-size: 18px; - line-height: 25px; -} - -ul { - padding: 0; - margin: 0; - list-style: none; -} - -a { - transition: all 0.2s ease-in-out 0s; -} - -.mt-100 { - margin-top: 100px; -} - -.bg-orange { - background: #f9a743; -} - -.bg-opacity { - position: relative; -} - -.bg-opacity:before { - content: ""; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: rgba(0, 0, 0, 0.7); -} - -a:focus, -.btn:focus, -.btn:active:focus { - box-shadow: none; - outline: 0 none; -} - -a, -a:active, -a:focus, -a:active { - text-decoration: none; -} - -.section { - padding: 100px 0; -} - -.font-size-60 { - font-size: 60px; - line-height: 1.2; -} - -@media (max-width: 575px) { - .font-size-60 { - font-size: 40px; - } -} - -.mb-10 { - margin-bottom: 10px; -} - -.mb-40 { - margin-bottom: 40px; -} - -/*-- - custom heading ---*/ -.text-center { - text-align: center; -} - -.heading { - text-align: center; - color: #777777; - padding-bottom: 70px; -} - -.heading h2 { - color: #3c3c3c; - padding-bottom: 15px; - text-transform: capitalize; - font-weight: 700; - font-size: 40px; - line-height: 40px; -} - -.heading p { - font-size: 17px; - line-height: 24px; - font-weight: 300; -} - -.subheading { - color: #3c3c3c; - padding-bottom: 15px; - text-transform: capitalize; - font-weight: 500; - font-size: 32px; - line-height: 45px; -} - -.btn { - border-radius: 0; -} - -.btn-main { - color: #fff; - border-radius: 30px; - font-size: 18px; - padding: 15px 40px; - display: inline-block; - background-color: #f9a743; - box-shadow: 0 15px 40px rgba(249, 167, 68, 0.5); - background-image: linear-gradient(bottom, rgba(255, 239, 206, 0) 0%, rgba(255, 239, 206, 0.25) 100%); -} - -.btn-main:hover, .btn-main:focus { - background-color: #f9a743; - color: #fff; -} - -.btn-main-sm { - padding: 12px 35px; - text-transform: uppercase; - font-size: 14px; - font-weight: bold; -} - -/*Preloader*/ -#preloader-wrapper { - background-color: #fff; - bottom: auto; - height: 100%; - left: auto; - position: fixed; - right: auto; - top: auto; - width: 100%; - z-index: 9999; - display: flex; - justify-content: center; - align-items: center; -} - -.pre-loader { - width: 130px; - height: 130px; - background: #f9a743; - border-radius: 50%; - animation: loading 6s infinite reverse linear; - position: relative; - font-family: "themefisher-font" !important; -} - -.pre-loader:before { - content: "\f3bd"; - position: absolute; - top: 50%; - left: 50%; - display: block; - font-size: 40px; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - color: #fff; -} - -@-webkit-keyframes loading { - /* */ - 0% { - box-shadow: inset 0 0 0 80px #f9a743; - } - 8.49% { - background: #f9a743; - box-shadow: inset 0 0 0 160px #f9a743; - } - /* orange */ - 8.5% { - box-shadow: inset 0 0 0 0 #ff8133; - } - 24.99% { - background: #ff8133; - box-shadow: inset 0 0 0 160px #ff8133; - } - /* yellow */ - 25% { - box-shadow: inset 0 0 0 0 #ffbe1a; - } - 41.49% { - background: #ffbe1a; - box-shadow: inset 0 0 0 160px #ffbe1a; - } - /* */ - 41.5% { - box-shadow: inset 0 0 0 0 #f9a743; - } - 57.99% { - background: #f9a743; - box-shadow: inset 0 0 0 160px #f9a743; - } - /* blue */ - 58% { - box-shadow: inset 0 0 0 0 #00b5d9; - } - 74.49% { - background: #00b5d9; - box-shadow: inset 0 0 0 160px #00b5d9; - } - /* purple */ - 74.5% { - box-shadow: inset 0 0 0 0 #9772e5; - } - 90.99% { - background: #9772e5; - box-shadow: inset 0 0 0 160px #9772e5; - } - /* */ - 91% { - box-shadow: inset 0 0 0 0 #f9a743; - } - 100% { - background: #f9a743; - box-shadow: inset 0 0 0 80px #f9a743; - } -} - -@keyframes loading { - /* */ - 0% { - box-shadow: inset 0 0 0 80px #f9a743; - } - 8.49% { - background: #f9a743; - box-shadow: inset 0 0 0 160px #f9a743; - } - /* orange */ - 8.5% { - box-shadow: inset 0 0 0 0 #ff8133; - } - 24.99% { - background: #ff8133; - box-shadow: inset 0 0 0 160px #ff8133; - } - /* yellow */ - 25% { - box-shadow: inset 0 0 0 0 #ffbe1a; - } - 41.49% { - background: #ffbe1a; - box-shadow: inset 0 0 0 160px #ffbe1a; - } - /* */ - 41.5% { - box-shadow: inset 0 0 0 0 #f9a743; - } - 57.99% { - background: #f9a743; - box-shadow: inset 0 0 0 160px #f9a743; - } - /* blue */ - 58% { - box-shadow: inset 0 0 0 0 #00b5d9; - } - 74.49% { - background: #00b5d9; - box-shadow: inset 0 0 0 160px #00b5d9; - } - /* purple */ - 74.5% { - box-shadow: inset 0 0 0 0 #9772e5; - } - 90.99% { - background: #9772e5; - box-shadow: inset 0 0 0 160px #9772e5; - } - /* */ - 91% { - box-shadow: inset 0 0 0 0 #f9a743; - } - 100% { - background: #f9a743; - box-shadow: inset 0 0 0 80px #f9a743; - } -} - -/* navigation */ -.navbar-brand { - color: #444; - font-size: 25px; - margin: 0; - line-height: 1; -} - -.nav-link { - font-size: 14px; - font-weight: bold; -} - -.navbar-light .navbar-nav .nav-link { - color: #444; -} - -/*-- - feature start ---*/ -/*-- - Feature-list start ---*/ -.feature-list .btn-main { - margin-top: 15px; -} - -/*-- - Gallery start ---*/ -.gallery { - padding-bottom: 100px; -} - -.gallery .owl-item { - overflow: hidden; - position: relative; -} - -.gallery .block { - padding: 20px; -} - -.gallery .block:hover .gallery-overlay { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; -} - -.gallery .gallery-overlay { - position: absolute; - bottom: 15px; - left: 15px; - right: 15px; - top: 15px; - background: rgba(255, 255, 255, 0.85); - text-decoration: none; - color: inherit; - -webkit-transform: scale(0.5); - transform: scale(0.5); - transition: all .3s; - z-index: 2; - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -} - -.gallery .gallery-overlay .gallery-popup { - text-align: center; - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - background: #f9a743; - padding: 5px 10px; - border-radius: 40px; - width: 50px; - height: 50px; -} - -.gallery .gallery-overlay .gallery-popup i { - color: #fff; - font-size: 30px; - line-height: 40px; - display: inline-block; -} - -/*-- - service start ---*/ -.testimonials .testimonial-block { - padding: 0 10px; -} - -.testimonials .testimonial-block i { - font-size: 40px; - display: inline-block; - margin-bottom: 20px; - color: #f9a743; -} - -.testimonials .testimonial-block p { - font-family: "Droid Serif", serif; - font-size: 14px; - color: #777; -} - -.testimonials .testimonial-block .author-details { - margin-top: 30px; -} - -.testimonials .testimonial-block .author-details img { - border-radius: 50%; - width: 50px; -} - -.testimonials .testimonial-block .author-details h4 { - font-weight: 700; - font-size: 20px; - margin-top: 10px; -} - -/*-- - call-to-action start ---*/ -.call-to-action { - background-attachment: fixed; - background-repeat: no-repeat; - background-size: cover; -} - -.input-group { - margin-top: 30px; - position: relative; -} - -.input-group .btn-submit { - padding: 10.5px 40px !important; - position: absolute; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - top: 0; - right: 0; -} - -.input-group input { - height: 50px; - border-radius: 40px; - border: none; - padding-left: 15px; - box-shadow: none; - display: table-cell; -} - -.footer-menu a { - font-size: 14; - font-weight: 700; - color: #444; - padding: 10px; -} - -footer { - text-align: center; - background: #f4f4f4; - padding: 50px 0px; -} - -footer .footer-logo { - color: #555; - display: block; -} - -footer p.copyright-text { - font-weight: 300; - font-size: 12px; - color: #888; - letter-spacing: 3px; - margin-top: 15px; -} - -footer p.copyright-text a { - color: #282828; -} - -footer p.copyright-text a:hover { - text-decoration: none; -} - -/*# sourceMappingURL=maps/style.css.map */ diff --git a/exampleSite/config.toml b/exampleSite/config.toml index ccd001307..adcdf6748 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -1,73 +1,129 @@ ################################### Default Configuration ############################ baseurl = "https://www.example.com/" -languageCode = "en" -title = "Vex" +title = "Vex | hugo landing page template" theme = "vex-hugo" +# post excert +summarylength = "20" +# google analytics +googleAnalytics = "" # Ex: UA-123-45 +# disqus short name +disqusShortname = "" # get your shortname form here : https://disqus.com +# disable language +disableLanguages = [] # desable language from here #################################### Plugins ########################################## # CSS Plugins [[params.plugins.css]] -URL = "https://fonts.googleapis.com/css?family=Droid+Serif:400i|Source+Sans+Pro:300,400,600,700" +link = "https://fonts.googleapis.com/css?family=Droid+Serif:400|Josefin+Sans:300,400,600,700" [[params.plugins.css]] -URL = "https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700" +link = "plugins/bootstrap/bootstrap.min.css" [[params.plugins.css]] -URL = "css/bootstrap.min.css" +link = "plugins/themefisher-font/themefisher-font.min.css" [[params.plugins.css]] -URL = "css/themefisher-fonts.css" +link = "plugins/owl-carousel/owl.carousel.css" [[params.plugins.css]] -URL = "css/owl.carousel.css" -[[params.plugins.css]] -URL = "css/magnific-popup.css" -[[params.plugins.css]] -URL = "https://cdn.snipcart.com/themes/v3.0.3/default/snipcart.css" +link = "https://cdn.snipcart.com/themes/v3.0.3/default/snipcart.css" # JS Plugins [[params.plugins.js]] -URL = "js/jquery-2.1.1.min.js" -[[params.plugins.js]] -URL = "js/bootstrap.min.js" +link = "plugins/jquery/jquery.js" [[params.plugins.js]] -URL = "js/owl.carousel.min.js" +link = "plugins/bootstrap/bootstrap.min.js" [[params.plugins.js]] -URL = "js/jquery.magnific-popup.min.js" +link = "plugins/owl-carousel/owl.carousel.min.js" [[params.plugins.js]] -URL = "https://cdn.snipcart.com/themes/v3.0.3/default/snipcart.js" +link = "https://cdn.snipcart.com/themes/v3.0.3/default/snipcart.js" ###################################### Navigation ###################################### +# homepage section menu [[menu.main]] -name = "Feature" -URL = "feature" +name = "Home" +URL = "/" +weight = 1 + +# main menu +[[menu.main]] +name = "Products" +URL = "products" weight = 2 +# main menu [[menu.main]] -name = "Gallery" -URL = "gallery" +name = "Blog" +URL = "blog" weight = 3 [[menu.main]] -name = "Testimonial" -URL = "testimonial" +name = "Contact" +URL = "contact" +weight = 4 + +# footer menu +[[menu.footer]] +name = "Home" +URL = "/" +weight = 1 + +[[menu.footer]] +name = "Blog" +URL = "blog" +weight = 2 + +[[menu.footer]] +name = "Contact" +URL = "contact" +weight = 3 + +[[menu.footer]] +name = "Privacy & Policy" +URL = "#" weight = 4 ########################### Default parameters ########################## [params] -logo = "" -home = "Home" +logo = "images/logo.png" +logo_width = "100px" # Meta data description = "This is meta description" author = "Themefisher" -# Google Analitycs -google_analitycs_id = "" # Your ID +# currency +currency = "$" +# contact form action +contact_form_action = "#" # contact form works with https://formspree.io # snipcart public api key snipcart_api = "ZDgxY2ZiM2EtMWRmMi00M2ZkLWI1MDAtNzA2MDc0Y2Q1MzJlNjM3MTAzNDIwOTQ1NDA4NjM4" -# copyright -copyright = "Copyright 2020 © [themefisher](http://www.Themefisher.com) | All right reserved." # Preloader [params.preloader] enable = true -preloader = "" # use .png , .svg or .gif format \ No newline at end of file +preloader = "" # use .png , .svg or .gif format + +# Subscription +[params.subscription] +# mailchimp subsciption +mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours +mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074" # replace this code with yours + + +################################### English language ##################################### +[Languages.en] +languageName = "En" +languageCode = "en-us" +contentDir = "content/english" +weight = 1 +# copyright +copyright = "Designed By [Themefisher](https://themefisher.com/) & Developed By [Gethugothemes](https://gethugothemes.com/)" + + +################################### French language ##################################### +[Languages.fr] +languageName = "Fr" +languageCode = "fr-fr" +contentDir = "content/french" +weight = 2 +# copyright +copyright = "Designed By [Themefisher](https://themefisher.com/) & Developed By [Gethugothemes](https://gethugothemes.com/)" \ No newline at end of file diff --git a/exampleSite/content/english/blog/_index.md b/exampleSite/content/english/blog/_index.md new file mode 100644 index 000000000..26166796e --- /dev/null +++ b/exampleSite/content/english/blog/_index.md @@ -0,0 +1,5 @@ +--- +title: "Our Latest Post" +description : "this is a meta description" +draft: false +--- \ No newline at end of file diff --git a/exampleSite/content/english/blog/post-1.md b/exampleSite/content/english/blog/post-1.md new file mode 100644 index 000000000..18e55773d --- /dev/null +++ b/exampleSite/content/english/blog/post-1.md @@ -0,0 +1,13 @@ +--- +title: "How to choose right watch for you." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-1.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/english/blog/post-2.md b/exampleSite/content/english/blog/post-2.md new file mode 100644 index 000000000..30c69898f --- /dev/null +++ b/exampleSite/content/english/blog/post-2.md @@ -0,0 +1,13 @@ +--- +title: "Why You Should Buy a Smart Watch." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-2.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/english/blog/post-3.md b/exampleSite/content/english/blog/post-3.md new file mode 100644 index 000000000..a03b1e818 --- /dev/null +++ b/exampleSite/content/english/blog/post-3.md @@ -0,0 +1,13 @@ +--- +title: "How to choose right watch for you." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-3.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/english/blog/post-4.md b/exampleSite/content/english/blog/post-4.md new file mode 100644 index 000000000..f6bfe1208 --- /dev/null +++ b/exampleSite/content/english/blog/post-4.md @@ -0,0 +1,13 @@ +--- +title: "Why You Should Buy a Smart Watch." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-4.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/english/contact/_index.md b/exampleSite/content/english/contact/_index.md new file mode 100644 index 000000000..e6960ea2d --- /dev/null +++ b/exampleSite/content/english/contact/_index.md @@ -0,0 +1,25 @@ +--- +title: "Contact" +description : "this is a meta description" + +office: + title : "Central Office" + mobile : "0124857985320" + email : "demo@email.com" + location : "Dhaka, Bangladedsh" + content : "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna" + +# opennig hour +opennig_hour: + title : "Opening Hours" + day_time: + - "Monday: 9:00 – 19:00" + - "Tuesday: 9:00 – 19:00" + - "Wednesday: 9:00 – 19:00" + - "Thursday: 9:00 – 19:00" + - "Friday: 9:00 – 19:00" + - "Saturday: 9:00 – 19:00" + - "sunday: 9:00 – 19:00" + +draft: false +--- \ No newline at end of file diff --git a/exampleSite/content/english/products/_index.md b/exampleSite/content/english/products/_index.md new file mode 100644 index 000000000..f081ac357 --- /dev/null +++ b/exampleSite/content/english/products/_index.md @@ -0,0 +1,6 @@ +--- +title: "All latest Smart Watch" +description : "this is a meta description" +draft: false +--- + diff --git a/exampleSite/content/english/products/product-1.md b/exampleSite/content/english/products/product-1.md new file mode 100644 index 000000000..3fbc97eea --- /dev/null +++ b/exampleSite/content/english/products/product-1.md @@ -0,0 +1,20 @@ +--- +title: "Apple Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-1.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-2.md b/exampleSite/content/english/products/product-2.md new file mode 100644 index 000000000..42473936d --- /dev/null +++ b/exampleSite/content/english/products/product-2.md @@ -0,0 +1,20 @@ +--- +title: "Galaxy Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-2.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-3.md b/exampleSite/content/english/products/product-3.md new file mode 100644 index 000000000..4205463c0 --- /dev/null +++ b/exampleSite/content/english/products/product-3.md @@ -0,0 +1,20 @@ +--- +title: "Xiaomi Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-3.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-4.md b/exampleSite/content/english/products/product-4.md new file mode 100644 index 000000000..05c861234 --- /dev/null +++ b/exampleSite/content/english/products/product-4.md @@ -0,0 +1,20 @@ +--- +title: "Motorola Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-4.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-5.md b/exampleSite/content/english/products/product-5.md new file mode 100644 index 000000000..f0959a0f3 --- /dev/null +++ b/exampleSite/content/english/products/product-5.md @@ -0,0 +1,20 @@ +--- +title: "Redmi Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-5.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-6.md b/exampleSite/content/english/products/product-6.md new file mode 100644 index 000000000..c36ff0443 --- /dev/null +++ b/exampleSite/content/english/products/product-6.md @@ -0,0 +1,20 @@ +--- +title: "Realme Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-1.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-7.md b/exampleSite/content/english/products/product-7.md new file mode 100644 index 000000000..7a9083682 --- /dev/null +++ b/exampleSite/content/english/products/product-7.md @@ -0,0 +1,20 @@ +--- +title: "OnePlus Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-7.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/english/products/product-8.md b/exampleSite/content/english/products/product-8.md new file mode 100644 index 000000000..02c1f0ebf --- /dev/null +++ b/exampleSite/content/english/products/product-8.md @@ -0,0 +1,20 @@ +--- +title: "Oppo Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-8.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/blog/_index.md b/exampleSite/content/french/blog/_index.md new file mode 100644 index 000000000..26166796e --- /dev/null +++ b/exampleSite/content/french/blog/_index.md @@ -0,0 +1,5 @@ +--- +title: "Our Latest Post" +description : "this is a meta description" +draft: false +--- \ No newline at end of file diff --git a/exampleSite/content/french/blog/post-1.md b/exampleSite/content/french/blog/post-1.md new file mode 100644 index 000000000..18e55773d --- /dev/null +++ b/exampleSite/content/french/blog/post-1.md @@ -0,0 +1,13 @@ +--- +title: "How to choose right watch for you." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-1.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/french/blog/post-2.md b/exampleSite/content/french/blog/post-2.md new file mode 100644 index 000000000..30c69898f --- /dev/null +++ b/exampleSite/content/french/blog/post-2.md @@ -0,0 +1,13 @@ +--- +title: "Why You Should Buy a Smart Watch." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-2.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/french/blog/post-3.md b/exampleSite/content/french/blog/post-3.md new file mode 100644 index 000000000..a03b1e818 --- /dev/null +++ b/exampleSite/content/french/blog/post-3.md @@ -0,0 +1,13 @@ +--- +title: "How to choose right watch for you." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-3.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/french/blog/post-4.md b/exampleSite/content/french/blog/post-4.md new file mode 100644 index 000000000..f6bfe1208 --- /dev/null +++ b/exampleSite/content/french/blog/post-4.md @@ -0,0 +1,13 @@ +--- +title: "Why You Should Buy a Smart Watch." +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-4.png" +description : "this is a meta description" +draft: false +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \ No newline at end of file diff --git a/exampleSite/content/french/contact/_index.md b/exampleSite/content/french/contact/_index.md new file mode 100644 index 000000000..e6960ea2d --- /dev/null +++ b/exampleSite/content/french/contact/_index.md @@ -0,0 +1,25 @@ +--- +title: "Contact" +description : "this is a meta description" + +office: + title : "Central Office" + mobile : "0124857985320" + email : "demo@email.com" + location : "Dhaka, Bangladedsh" + content : "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna" + +# opennig hour +opennig_hour: + title : "Opening Hours" + day_time: + - "Monday: 9:00 – 19:00" + - "Tuesday: 9:00 – 19:00" + - "Wednesday: 9:00 – 19:00" + - "Thursday: 9:00 – 19:00" + - "Friday: 9:00 – 19:00" + - "Saturday: 9:00 – 19:00" + - "sunday: 9:00 – 19:00" + +draft: false +--- \ No newline at end of file diff --git a/exampleSite/content/french/products/_index.md b/exampleSite/content/french/products/_index.md new file mode 100644 index 000000000..22cf4eb53 --- /dev/null +++ b/exampleSite/content/french/products/_index.md @@ -0,0 +1,5 @@ +--- +title: "All latest Smart Watch" +description : "this is a meta description" +draft: false +--- diff --git a/exampleSite/content/french/products/product-1.md b/exampleSite/content/french/products/product-1.md new file mode 100644 index 000000000..3fbc97eea --- /dev/null +++ b/exampleSite/content/french/products/product-1.md @@ -0,0 +1,20 @@ +--- +title: "Apple Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-1.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-2.md b/exampleSite/content/french/products/product-2.md new file mode 100644 index 000000000..42473936d --- /dev/null +++ b/exampleSite/content/french/products/product-2.md @@ -0,0 +1,20 @@ +--- +title: "Galaxy Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-2.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-3.md b/exampleSite/content/french/products/product-3.md new file mode 100644 index 000000000..4205463c0 --- /dev/null +++ b/exampleSite/content/french/products/product-3.md @@ -0,0 +1,20 @@ +--- +title: "Xiaomi Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-3.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-4.md b/exampleSite/content/french/products/product-4.md new file mode 100644 index 000000000..05c861234 --- /dev/null +++ b/exampleSite/content/french/products/product-4.md @@ -0,0 +1,20 @@ +--- +title: "Motorola Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-4.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-5.md b/exampleSite/content/french/products/product-5.md new file mode 100644 index 000000000..f0959a0f3 --- /dev/null +++ b/exampleSite/content/french/products/product-5.md @@ -0,0 +1,20 @@ +--- +title: "Redmi Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-5.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-6.md b/exampleSite/content/french/products/product-6.md new file mode 100644 index 000000000..c36ff0443 --- /dev/null +++ b/exampleSite/content/french/products/product-6.md @@ -0,0 +1,20 @@ +--- +title: "Realme Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-1.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-7.md b/exampleSite/content/french/products/product-7.md new file mode 100644 index 000000000..7a9083682 --- /dev/null +++ b/exampleSite/content/french/products/product-7.md @@ -0,0 +1,20 @@ +--- +title: "OnePlus Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-7.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/content/french/products/product-8.md b/exampleSite/content/french/products/product-8.md new file mode 100644 index 000000000..02c1f0ebf --- /dev/null +++ b/exampleSite/content/french/products/product-8.md @@ -0,0 +1,20 @@ +--- +title: "Oppo Watch" +date: 2019-10-17T11:22:16+06:00 +image: "images/showcase/showcase-8.png" + +# meta description +description : "this is meta description" + +# product Price +price: "30.00" +discount_price: "25.00" + +# product variation +colors : ["black","white","gray"] +sizes : ["small","medium","large"] + +draft: false +--- + +Apple Watch is a line of smartwatches produced by Apple Inc. It incorporates fitness tracking and health-oriented capabilities with integration with iOS and other Apple products and services. diff --git a/exampleSite/data/homepage.yml b/exampleSite/data/en/homepage.yml similarity index 83% rename from exampleSite/data/homepage.yml rename to exampleSite/data/en/homepage.yml index edb728e0f..67ec851c5 100644 --- a/exampleSite/data/homepage.yml +++ b/exampleSite/data/en/homepage.yml @@ -10,7 +10,7 @@ banner: product: name : "Smart watch" image : "images/watch.png" - price : "199" + price : "199" colors : ["black","white","gray"] sizes : ["small","medium","large"] @@ -21,38 +21,38 @@ features: image : "images/watch-2.png" # feature at the left of the image - leftSide: + left_side: # feature item loop - - icon : "tf-ion-ios-alarm-outline" - title : "Smooth Touch" + - title : "Smooth Touch" + icon : "tf-ion-ios-alarm-outline" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" # feature item loop - - icon : "tf-ion-ios-bell-outline" - title : "Elegant Design" + - title : "Elegant Design" + icon : "tf-ion-ios-bell-outline" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" # feature item loop - - icon : "tf-ion-ios-cart-outline" - title : "Easy Pricing" + - title : "Easy Pricing" + icon : "tf-ion-ios-cart-outline" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" # feature at the right of the image - rightSide: + right_side: # feature item loop - - icon : "tf-ion-ios-alarm-outline" - title : "Smooth Touch" + - title : "Smooth Touch" + icon : "tf-ion-ios-alarm-outline" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" # feature item loop - - icon : "tf-ion-ios-bell-outline" - title : "Elegant Design" + - title : "Elegant Design" + icon : "tf-ion-ios-bell-outline" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" # feature item loop - - icon : "tf-ion-ios-cart-outline" - title : "Easy Pricing" + - title : "Easy Pricing" + icon : "tf-ion-ios-cart-outline" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" @@ -68,7 +68,7 @@ promo: ############################# About Product ####################### -aboutProduct: +about_product: enable : true title : "Why Choose Apple Watch" items: @@ -79,7 +79,7 @@ aboutProduct: sed esse, voluptas voluptate est veniam numquam, quis magni. Architecto minus suscipit quas, quo harum deserunt consequatur cumque!" button: - enable : true + enable : false label : "Check Features" link : "#" @@ -90,26 +90,21 @@ aboutProduct: sed esse, voluptas voluptate est veniam numquam, quis magni. Architecto minus suscipit quas, quo harum deserunt consequatur cumque!" button: - enable : true + enable : false label : "Check Features" link : "#" -#################################### Gallery ######################## -gallery: +#################################### Products ######################## +products: enable : true - title : "Checkout some amazing Shorts" - # Set the image directory to use as base - directory : "images/showcase" - # Set the images to show in the gallery - images : ["showcase-1.png", "showcase-2.png", "showcase-3.png", "showcase-4.png", "showcase-5.png", "showcase-6.png", "showcase-7.png", "showcase-8.png"] + title : "Checkout Our All Products" - -################################## call to action ################### -cta: +################################## Subscription ################### +subscription: enable : true - bgImage : "images/call-to-action.jpg" + bg_image : "images/call-to-action.jpg" title : "Get Product Updates" content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod" placeholder : "Your Email Address Here" @@ -119,7 +114,7 @@ cta: testimonial: enable : true title : "Watch Review" - testimonialItem: + testimonial_item: # testimonial item loop - name : "Jonathon Andrew" designation : "CEO, Themefisher" diff --git a/exampleSite/data/fr/homepage.yml b/exampleSite/data/fr/homepage.yml new file mode 100644 index 000000000..67ec851c5 --- /dev/null +++ b/exampleSite/data/fr/homepage.yml @@ -0,0 +1,134 @@ +############################# banner ############################ +banner: + enable : true + title : "Believe in Technology, Make the change" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptas, modi fugit in veritatis labore perferendis. Minima hic at, nostrum nihil!" + image : "images/watch.png" + button: "Buy Now With $199" + +############################## product ########################### +product: + name : "Smart watch" + image : "images/watch.png" + price : "199" + colors : ["black","white","gray"] + sizes : ["small","medium","large"] + +############################# Feature ############################ +features: + enable : true + title : "Our Core Features" + image : "images/watch-2.png" + + # feature at the left of the image + left_side: + # feature item loop + - title : "Smooth Touch" + icon : "tf-ion-ios-alarm-outline" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" + + # feature item loop + - title : "Elegant Design" + icon : "tf-ion-ios-bell-outline" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" + + # feature item loop + - title : "Easy Pricing" + icon : "tf-ion-ios-cart-outline" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" + + + # feature at the right of the image + right_side: + # feature item loop + - title : "Smooth Touch" + icon : "tf-ion-ios-alarm-outline" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" + + # feature item loop + - title : "Elegant Design" + icon : "tf-ion-ios-bell-outline" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" + + # feature item loop + - title : "Easy Pricing" + icon : "tf-ion-ios-cart-outline" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, inventore?" + + +############################# promo ############################ +promo: + enable : true + image : "images/watch.png" + title : "Designed by professional , the benefit for creative gigs" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia vel labore, deleniti minima + nisi, velit atque quaerat impedit ea maxime sunt accusamus at obcaecati dolor iure iusto omnis quis eum. +

+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Facilis commodi odit, illo, qui aliquam dol" + + +############################# About Product ####################### +about_product: + enable : true + title : "Why Choose Apple Watch" + items: + # about product item loop + - image : "images/showcase/showcase-4.png" + title : "Lorem ipsum dolor sit amet." + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate, sed, assumenda. Tenetur + sed esse, voluptas voluptate est veniam numquam, quis magni. Architecto minus suscipit + quas, quo harum deserunt consequatur cumque!" + button: + enable : false + label : "Check Features" + link : "#" + + # about product item loop + - image : "images/showcase/showcase-3.png" + title : "Lorem ipsum dolor sit amet." + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate, sed, assumenda. Tenetur + sed esse, voluptas voluptate est veniam numquam, quis magni. Architecto minus suscipit + quas, quo harum deserunt consequatur cumque!" + button: + enable : false + label : "Check Features" + link : "#" + + +#################################### Products ######################## +products: + enable : true + title : "Checkout Our All Products" + + +################################## Subscription ################### +subscription: + enable : true + bg_image : "images/call-to-action.jpg" + title : "Get Product Updates" + content : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod" + placeholder : "Your Email Address Here" + + +############################## Testimonial ########################## +testimonial: + enable : true + title : "Watch Review" + testimonial_item: + # testimonial item loop + - name : "Jonathon Andrew" + designation : "CEO, Themefisher" + image : "images/avater.png" + content : "A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents." + + # testimonial item loop + - name : "Jonathon Andrew" + designation : "CEO, Themefisher" + image : "images/avater.png" + content : "A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents." + + # testimonial item loop + - name : "Jonathon Andrew" + designation : "CEO, Themefisher" + image : "images/avater.png" + content : "A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents." \ No newline at end of file diff --git a/exampleSite/i18n/en.yaml b/exampleSite/i18n/en.yaml new file mode 100644 index 000000000..60ded904c --- /dev/null +++ b/exampleSite/i18n/en.yaml @@ -0,0 +1,20 @@ +- id: "add_to_cart" + translation: "Add to Cart" + +- id: "send" + translation: "Send Now" + +- id: "subscribe" + translation: "Subscribe" + +- id: "read_more" + translation: "Read More" + +- id: "subscribe" + translation: "Subscribe" + +- id: "subscribe" + translation: "Subscribe" + +- id: "subscribe" + translation: "Subscribe" \ No newline at end of file diff --git a/exampleSite/i18n/fr.yaml b/exampleSite/i18n/fr.yaml new file mode 100644 index 000000000..60ded904c --- /dev/null +++ b/exampleSite/i18n/fr.yaml @@ -0,0 +1,20 @@ +- id: "add_to_cart" + translation: "Add to Cart" + +- id: "send" + translation: "Send Now" + +- id: "subscribe" + translation: "Subscribe" + +- id: "read_more" + translation: "Read More" + +- id: "subscribe" + translation: "Subscribe" + +- id: "subscribe" + translation: "Subscribe" + +- id: "subscribe" + translation: "Subscribe" \ No newline at end of file diff --git a/exampleSite/resources/_gen/assets/scss/scss/style.scss_b95b077eb505d5c0aff8055eaced30ad.content b/exampleSite/resources/_gen/assets/scss/scss/style.scss_b95b077eb505d5c0aff8055eaced30ad.content new file mode 100644 index 000000000..5326486f6 --- /dev/null +++ b/exampleSite/resources/_gen/assets/scss/scss/style.scss_b95b077eb505d5c0aff8055eaced30ad.content @@ -0,0 +1 @@ +body{font-size:14px;font-weight:300;line-height:25px;color:#3b4045;font-family:josefin sans,sans-serif;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{font-weight:300;margin:0}h1,.h1{font-size:44px;line-height:56px}h2,.h2{font-size:30px;line-height:35px}h3,.h3{font-size:23px;line-height:25px}h4,.h4{font-size:20px;line-height:24px;font-weight:400}p{font-size:18px;line-height:25px}ul{padding:0;margin:0;list-style:none}a{-webkit-transition:all .2s ease-in-out 0s;-moz-transition:all .2s ease-in-out 0s;-o-transition:all .2s ease-in-out 0s;transition:all .2s ease-in-out 0s}.mt-100{margin-top:100px}.bg-1{background-image:url(../images/call-to-action.jpg)}.bg-orange{background:#f9a743}.bg-opacity{position:relative}.bg-opacity:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7)}a:focus,.btn:focus,.btn:active:focus{box-shadow:none;outline:0}a,a:active,a:focus,a:active{text-decoration:none}.section{padding:100px 0}.font-size-60{font-size:60px;line-height:1.2}@media(max-width:575px){.font-size-60{font-size:40px}}.mb-10{margin-bottom:10px}.mb-40{margin-bottom:40px}.text-center{text-align:center}.heading{text-align:center;color:#777;padding-bottom:70px}.heading h2{color:#3c3c3c;padding-bottom:15px;text-transform:capitalize;font-weight:700;font-size:40px;line-height:40px}.heading p{font-size:17px;line-height:24px;font-weight:300}.subheading{color:#3c3c3c;padding-bottom:15px;text-transform:capitalize;font-weight:500;font-size:32px;line-height:45px}.btn{border-radius:0}.btn-main{color:#fff;border-radius:30px;font-size:18px;padding:15px 40px;display:inline-block;background-color:#f9a743;box-shadow:0 15px 40px rgba(249,167,68,.5);background-image:linear-gradient(bottom,rgba(255,239,206,0) 0%,rgba(255,239,206,0.25) 100%)}.btn-main:hover,.btn-main:focus{background-color:#f9a743;color:#fff}.btn-main-sm{padding:12px 35px;text-transform:uppercase;font-size:14px;font-weight:700}#preloader-wrapper{background-color:#fff;bottom:auto;height:100%;left:auto;position:fixed;right:auto;top:auto;width:100%;z-index:9999;display:flex;justify-content:center;align-items:center}.pre-loader{width:130px;height:130px;background:#f9a743;border-radius:50%;animation:loading 6s infinite reverse linear;position:relative;font-family:themefisher-font!important}.pre-loader:before{content:"\f3bd";position:absolute;top:50%;left:50%;display:block;font-size:40px;transform:translate(-50%,-50%);color:#fff}@keyframes loading{0%{box-shadow:inset 0 0 0 80px #f9a743}8.49%{background:#f9a743;box-shadow:inset 0 0 0 160px #f9a743}8.5%{box-shadow:inset 0 0 0 0 #ff8133}24.99%{background:#ff8133;box-shadow:inset 0 0 0 160px #ff8133}25%{box-shadow:inset 0 0 0 0 #ffbe1a}41.49%{background:#ffbe1a;box-shadow:inset 0 0 0 160px #ffbe1a}41.5%{box-shadow:inset 0 0 0 0 #f9a743}57.99%{background:#f9a743;box-shadow:inset 0 0 0 160px #f9a743}58%{box-shadow:inset 0 0 0 0 #00b5d9}74.49%{background:#00b5d9;box-shadow:inset 0 0 0 160px #00b5d9}74.5%{box-shadow:inset 0 0 0 0 #9772e5}90.99%{background:#9772e5;box-shadow:inset 0 0 0 160px #9772e5}91%{box-shadow:inset 0 0 0 0 #f9a743}100%{background:#f9a743;box-shadow:inset 0 0 0 80px #f9a743}}.navbar-brand{color:#444;font-size:25px;margin:0;line-height:1}.nav-link{font-size:14px;font-weight:700}.navbar-light .navbar-nav .nav-link{color:#444}.feature-list .btn-main{margin-top:15px}.gallery{padding-bottom:100px}.gallery .owl-item{overflow:hidden;position:relative}.gallery .block{padding:20px;position:relative}.gallery .block:hover .gallery-overlay{transform:scale(1);opacity:1}.gallery .gallery-overlay{position:absolute;bottom:15px;left:15px;right:15px;top:15px;background:rgba(255,255,255,.85);text-decoration:none;color:inherit;-webkit-transform:scale(0.5);transform:scale(0.5);-webkit-transition:all .3s;transition:all .3s;z-index:2;opacity:0}.gallery .gallery-overlay .gallery-popup{text-align:center;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#f9a743;padding:5px 10px;border-radius:40px;width:50px;height:50px}.gallery .gallery-overlay .gallery-popup i{color:#fff;font-size:30px;line-height:40px;display:inline-block}.testimonials .testimonial-block{padding:0 10px}.testimonials .testimonial-block i{font-size:40px;display:inline-block;margin-bottom:20px;color:#f9a743}.testimonials .testimonial-block p{font-family:droid serif,serif;font-size:14px;color:#777}.testimonials .testimonial-block .author-details{margin-top:30px}.testimonials .testimonial-block .author-details img{border-radius:50%;width:50px}.testimonials .testimonial-block .author-details h4{font-weight:700;font-size:20px;margin-top:10px}.call-to-action{background-attachment:fixed;background-repeat:no-repeat;background-size:cover}.input-group{margin-top:30px;position:relative}.input-group .btn-submit{padding:10.5px 40px!important;position:absolute;border-top-left-radius:0;border-bottom-left-radius:0;top:0;right:0}.input-group input{height:50px;border-radius:40px;border:none;padding-left:15px;box-shadow:none;display:table-cell}.footer-menu a{font-size:14;font-weight:700;color:#444;padding:10px}footer{text-align:center;background:#f4f4f4;padding:50px 0}footer .footer-logo{color:#555;display:block}footer p.copyright-text{font-weight:300;font-size:12px;color:#888;letter-spacing:3px;margin-top:15px}footer p.copyright-text a{color:#282828}footer p.copyright-text a:hover{text-decoration:none}p.price{font-size:30px;font-family:droid serif,serif}s.price{color:red;font-size:25px;font-family:droid serif,serif}.contact-list li,.contact-list a{color:#282828;font-size:18px}.form-control{border:1px solid #f1f1f1;border-radius:35px}.form-control:focus{border-color:#f9a743;box-shadow:none}.form-control::placeholder{font-size:80%}textarea.form-control{height:100px;padding-top:15px}.sticky-image{position:sticky;top:100px;z-index:1} \ No newline at end of file diff --git a/exampleSite/resources/_gen/assets/scss/scss/style.scss_b95b077eb505d5c0aff8055eaced30ad.json b/exampleSite/resources/_gen/assets/scss/scss/style.scss_b95b077eb505d5c0aff8055eaced30ad.json new file mode 100644 index 000000000..57e79182f --- /dev/null +++ b/exampleSite/resources/_gen/assets/scss/scss/style.scss_b95b077eb505d5c0aff8055eaced30ad.json @@ -0,0 +1 @@ +{"Target":"scss/style.min.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/exampleSite/static/images/logo.png b/exampleSite/static/images/logo.png new file mode 100644 index 000000000..417f304b6 Binary files /dev/null and b/exampleSite/static/images/logo.png differ diff --git a/layouts/_default/list.html b/layouts/_default/list.html index b7031afb6..3fd2c584e 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,12 +1,41 @@ {{ define "main" }} -
+
-
- {{ .Content }} +
+

{{.Title}}

+ {{ range $index, $element := (where .Site.RegularPages "Section" "blog") }} + {{- if ne (mod $index 2) 1 }} +
+
+ +
+
+
+

{{ .Title | markdownify }}

+

{{ .Summary }}

+ {{ i18n "read_more" }} +
+
+
+ {{- else }} +
+
+
+

{{ .Title | markdownify }}

+

{{ .Summary }}

+ {{ i18n "read_more" }} +
+
+
+ +
+
+ {{ end }} + {{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index b7031afb6..de546a7d5 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -3,8 +3,16 @@
-
- {{ .Content }} +
+
+ {{ .Title }} +
+
+
+

{{.Title | markdownify}}

+
+ {{.Content}} +
diff --git a/layouts/contact/list.html b/layouts/contact/list.html new file mode 100644 index 000000000..69ea1d54d --- /dev/null +++ b/layouts/contact/list.html @@ -0,0 +1,43 @@ +{{ define "main" }} + +
+
+
+ {{ with .Params.office }} +
+

{{ .title | markdownify }}

+

{{ .content | markdownify }}

+ + +
+ {{ end }} +
+ {{ with .Params.opennig_hour }} +

{{ .title | markdownify }}

+
    + {{ range .day_time }} +
  • {{ . | markdownify }}
  • + {{ end }} +
+ {{ end }} +
+
+

{{ .Title }}

+
+ + + + +
+
+
+
+
+ +{{ end }} \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html index da4c7b5da..cebf095a0 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -6,12 +6,12 @@ {{- partial "promo.html" . }} - {{- partial "feature-list.html" . }} + {{- partial "about-product.html" . }} - {{- partial "gallery.html" . }} + {{- partial "products.html" . }} - {{- partial "call-to-action.html" . }} + {{- partial "subscription.html" . }} {{- partial "testimonials.html" . }} -{{ end }} +{{ end }} \ No newline at end of file diff --git a/layouts/partials/feature-list.html b/layouts/partials/about-product.html similarity index 92% rename from layouts/partials/feature-list.html rename to layouts/partials/about-product.html index e99aa2771..6b8530ab0 100644 --- a/layouts/partials/feature-list.html +++ b/layouts/partials/about-product.html @@ -1,5 +1,7 @@ -{{ if site.Data.homepage.aboutProduct.enable }} -{{ with site.Data.homepage.aboutProduct }} +{{ $data := index .Site.Data .Site.Language.Lang }} + +{{ if $data.homepage.about_product.enable }} +{{ with $data.homepage.about_product }}
diff --git a/layouts/partials/banner.html b/layouts/partials/banner.html index bc3bb52cb..ccce7a586 100644 --- a/layouts/partials/banner.html +++ b/layouts/partials/banner.html @@ -1,9 +1,11 @@ -{{- if site.Data.homepage.banner.enable }} +{{ $data := index .Site.Data .Site.Language.Lang }} + +{{- if $data.homepage.banner.enable }}
- {{- with site.Data.homepage.banner }} + {{- with $data.homepage.banner }}
@@ -13,7 +15,7 @@

{{ .title | markdownify }}

{{ .content | markdownify }}

{{- end }} + {{ end }}{{ end }}>{{ $data.homepage.banner.button }}
diff --git a/layouts/partials/features.html b/layouts/partials/features.html index fa46e54e7..112147d02 100644 --- a/layouts/partials/features.html +++ b/layouts/partials/features.html @@ -1,5 +1,7 @@ -{{- if site.Data.homepage.features.enable }} -{{- with site.Data.homepage.features }} +{{ $data := index .Site.Data .Site.Language.Lang }} + +{{- if $data.homepage.features.enable }} +{{- with $data.homepage.features }}
@@ -9,7 +11,7 @@

{{ .title | markdownify }}

- {{ range .leftSide }} + {{ range .left_side }}

{{ .title | markdownify }}

@@ -21,7 +23,7 @@

{{ .title | markdownify }}

- {{ range .rightSide }} + {{ range .right_side }}

{{ .title | markdownify }}

diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 68d0b1d90..d4593df9d 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -3,14 +3,11 @@
- + {{ if site.Params.logo }} {{ site.Title }} {{ else }} {{ .Title }} {{ end }} @@ -23,32 +20,13 @@ - +{{with site.Params.snipcart_api}}{{end}} {{ range site.Params.plugins.js}} - + {{ end }} -{{ $script := resources.Get "script.js" }} - - - -{{ with site.Params.google_analitycs_id }} - -{{ end }} \ No newline at end of file +{{ $script := resources.Get "js/script.js" }} + \ No newline at end of file diff --git a/layouts/partials/gallery.html b/layouts/partials/gallery.html deleted file mode 100644 index c849fc647..000000000 --- a/layouts/partials/gallery.html +++ /dev/null @@ -1,29 +0,0 @@ -{{ if site.Data.homepage.gallery.enable }} -{{ with site.Data.homepage.gallery }} - -{{ end }} -{{ end }} \ No newline at end of file diff --git a/layouts/partials/head.html b/layouts/partials/head.html index fc447937d..d7749f1e1 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -10,15 +10,22 @@ {{ "" | safeHTML }} {{ range site.Params.plugins.css }} - + {{ end }} {{ "" | safeHTML }} - {{ $styles := resources.Get "style.css" | minify }} + {{ $styles := resources.Get "scss/style.scss" | toCSS | minify }} {{ "" | safeHTML }} + {{ with .Params.image }} + + {{ end }} + {{ template "_internal/opengraph.html" . }} + {{ template "_internal/google_analytics.html" . }} + {{ template "_internal/google_analytics_async.html" . }} + \ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 2f2d04906..95ce35738 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -2,23 +2,47 @@
diff --git a/layouts/partials/products.html b/layouts/partials/products.html new file mode 100644 index 000000000..a84e6ba11 --- /dev/null +++ b/layouts/partials/products.html @@ -0,0 +1,28 @@ +{{ $data := index .Site.Data .Site.Language.Lang }} + +{{ if $data.homepage.products.enable }} + +{{ end }} \ No newline at end of file diff --git a/layouts/partials/promo.html b/layouts/partials/promo.html index d6209050b..24ce8dd82 100644 --- a/layouts/partials/promo.html +++ b/layouts/partials/promo.html @@ -1,5 +1,7 @@ -{{ if site.Data.homepage.promo.enable }} -{{ with site.Data.homepage.promo }} +{{ $data := index .Site.Data .Site.Language.Lang }} + +{{ if $data.homepage.promo.enable }} +{{ with $data.homepage.promo }}
diff --git a/layouts/partials/call-to-action.html b/layouts/partials/subscription.html similarity index 53% rename from layouts/partials/call-to-action.html rename to layouts/partials/subscription.html index 6878913e7..f38475fb6 100644 --- a/layouts/partials/call-to-action.html +++ b/layouts/partials/subscription.html @@ -1,16 +1,21 @@ -{{- if site.Data.homepage.cta.enable }} -{{- with site.Data.homepage.cta }} -
+{{ $data := index .Site.Data .Site.Language.Lang }} + +{{- if $data.homepage.subscription.enable }} +{{- with $data.homepage.subscription }} +

{{ .title | markdownify }}

{{ .content | markdownify }}

-
+ - + +
@@ -18,4 +23,4 @@

{{ .title | markdownify }}

{{- end }} -{{- end }} +{{- end }} \ No newline at end of file diff --git a/layouts/partials/testimonials.html b/layouts/partials/testimonials.html index 9fd78547f..0ea0cadad 100644 --- a/layouts/partials/testimonials.html +++ b/layouts/partials/testimonials.html @@ -1,14 +1,16 @@ -{{ if site.Data.homepage.testimonial.enable }} +{{ $data := index .Site.Data .Site.Language.Lang }} + +{{ if $data.homepage.testimonial.enable }}
- {{ with site.Data.homepage.testimonial }} + {{ with $data.homepage.testimonial }}

{{ .title | markdownify }}

- {{ range .testimonialItem }} + {{ range .testimonial_item }}
@@ -23,18 +25,6 @@

{{ .name }}

{{ end }}
{{ end }} -
-
- -
-
{{ end }} \ No newline at end of file diff --git a/layouts/products/list.html b/layouts/products/list.html new file mode 100644 index 000000000..012ae3032 --- /dev/null +++ b/layouts/products/list.html @@ -0,0 +1,26 @@ +{{ define "main" }} + + + +{{ end }} \ No newline at end of file diff --git a/layouts/products/single.html b/layouts/products/single.html new file mode 100644 index 000000000..67d184020 --- /dev/null +++ b/layouts/products/single.html @@ -0,0 +1,37 @@ +{{ define "main" }} + +
+
+
+
+
+ {{ .Title }} +
+
+
+

{{ .Title }}

+

Colors: {{delimit .Params.colors ", "}}

+

Sizes: {{delimit .Params.sizes ", "}}

+

{{if .Params.discount_price}}{{site.Params.currency}}{{.Params.discount_price}}{{else}}{{site.Params.currency}}{{.Params.price}}{{end}} + {{if .Params.discount_price}}{{site.Params.currency}}{{ .Params.price }}{{end}} +

+ +
{{.Content}}
+
+
+
+
+ +{{ end }} \ No newline at end of file diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 000000000..60b1323ef --- /dev/null +++ b/netlify.toml @@ -0,0 +1,8 @@ +[build] + publish = "exampleSite/public" + command = "cd exampleSite && hugo --gc --themesDir ../.." + +[build.environment] + HUGO_VERSION = "0.73.0" + HUGO_THEME = "repo" + HUGO_BASEURL = "/" \ No newline at end of file diff --git a/static/.htaccess b/static/.htaccess new file mode 100644 index 000000000..58eeb9f22 --- /dev/null +++ b/static/.htaccess @@ -0,0 +1,16 @@ + +AddOutputFilterByType DEFLATE text/plain +AddOutputFilterByType DEFLATE text/html +AddOutputFilterByType DEFLATE text/xml +AddOutputFilterByType DEFLATE text/css +AddOutputFilterByType DEFLATE application/xml +AddOutputFilterByType DEFLATE application/xhtml+xml +AddOutputFilterByType DEFLATE application/rss+xml +AddOutputFilterByType DEFLATE application/javascript +AddOutputFilterByType DEFLATE application/x-javascript +AddOutputFilterByType DEFLATE image/jpg +AddOutputFilterByType DEFLATE image/png +AddOutputFilterByType DEFLATE image/gif +AddOutputFilterByType DEFLATE image/jpeg +AddOutputFilterByType DEFLATE image/svg+xml + \ No newline at end of file diff --git a/static/css/bootstrap.min.css b/static/css/bootstrap.min.css deleted file mode 100644 index 7aebd0ffa..000000000 --- a/static/css/bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.1.1 (https://getbootstrap.com/) - * Copyright 2011-2018 The Bootstrap Authors - * Copyright 2011-2018 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-appearance:none;appearance:none}.custom-range::-webkit-slider-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-appearance:none;appearance:none}.custom-range::-moz-range-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;appearance:none}.custom-range::-ms-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/static/css/magnific-popup.css b/static/css/magnific-popup.css deleted file mode 100755 index 8561e181a..000000000 --- a/static/css/magnific-popup.css +++ /dev/null @@ -1,351 +0,0 @@ -/* Magnific Popup CSS */ -.mfp-bg { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1042; - overflow: hidden; - position: fixed; - background: #0b0b0b; - opacity: 0.8; } - -.mfp-wrap { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1043; - position: fixed; - outline: none !important; - -webkit-backface-visibility: hidden; } - -.mfp-container { - text-align: center; - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - padding: 0 8px; - box-sizing: border-box; } - -.mfp-container:before { - content: ''; - display: inline-block; - height: 100%; - vertical-align: middle; } - -.mfp-align-top .mfp-container:before { - display: none; } - -.mfp-content { - position: relative; - display: inline-block; - vertical-align: middle; - margin: 0 auto; - text-align: left; - z-index: 1045; } - -.mfp-inline-holder .mfp-content, -.mfp-ajax-holder .mfp-content { - width: 100%; - cursor: auto; } - -.mfp-ajax-cur { - cursor: progress; } - -.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { - cursor: -moz-zoom-out; - cursor: -webkit-zoom-out; - cursor: zoom-out; } - -.mfp-zoom { - cursor: pointer; - cursor: -webkit-zoom-in; - cursor: -moz-zoom-in; - cursor: zoom-in; } - -.mfp-auto-cursor .mfp-content { - cursor: auto; } - -.mfp-close, -.mfp-arrow, -.mfp-preloader, -.mfp-counter { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; } - -.mfp-loading.mfp-figure { - display: none; } - -.mfp-hide { - display: none !important; } - -.mfp-preloader { - color: #CCC; - position: absolute; - top: 50%; - width: auto; - text-align: center; - margin-top: -0.8em; - left: 8px; - right: 8px; - z-index: 1044; } - .mfp-preloader a { - color: #CCC; } - .mfp-preloader a:hover { - color: #FFF; } - -.mfp-s-ready .mfp-preloader { - display: none; } - -.mfp-s-error .mfp-content { - display: none; } - -button.mfp-close, -button.mfp-arrow { - overflow: visible; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - display: block; - outline: none; - padding: 0; - z-index: 1046; - box-shadow: none; - touch-action: manipulation; } - -button::-moz-focus-inner { - padding: 0; - border: 0; } - -.mfp-close { - width: 44px; - height: 44px; - line-height: 44px; - position: absolute; - right: 0; - top: 0; - text-decoration: none; - text-align: center; - opacity: 0.65; - padding: 0 0 18px 10px; - color: #FFF; - font-style: normal; - font-size: 28px; - font-family: Arial, Baskerville, monospace; } - .mfp-close:hover, - .mfp-close:focus { - opacity: 1; } - .mfp-close:active { - top: 1px; } - -.mfp-close-btn-in .mfp-close { - color: #333; } - -.mfp-image-holder .mfp-close, -.mfp-iframe-holder .mfp-close { - color: #FFF; - right: -6px; - text-align: right; - padding-right: 6px; - width: 100%; } - -.mfp-counter { - position: absolute; - top: 0; - right: 0; - color: #CCC; - font-size: 12px; - line-height: 18px; - white-space: nowrap; } - -.mfp-arrow { - position: absolute; - opacity: 0.65; - margin: 0; - top: 50%; - margin-top: -55px; - padding: 0; - width: 90px; - height: 110px; - -webkit-tap-highlight-color: transparent; } - .mfp-arrow:active { - margin-top: -54px; } - .mfp-arrow:hover, - .mfp-arrow:focus { - opacity: 1; } - .mfp-arrow:before, - .mfp-arrow:after { - content: ''; - display: block; - width: 0; - height: 0; - position: absolute; - left: 0; - top: 0; - margin-top: 35px; - margin-left: 35px; - border: medium inset transparent; } - .mfp-arrow:after { - border-top-width: 13px; - border-bottom-width: 13px; - top: 8px; } - .mfp-arrow:before { - border-top-width: 21px; - border-bottom-width: 21px; - opacity: 0.7; } - -.mfp-arrow-left { - left: 0; } - .mfp-arrow-left:after { - border-right: 17px solid #FFF; - margin-left: 31px; } - .mfp-arrow-left:before { - margin-left: 25px; - border-right: 27px solid #3F3F3F; } - -.mfp-arrow-right { - right: 0; } - .mfp-arrow-right:after { - border-left: 17px solid #FFF; - margin-left: 39px; } - .mfp-arrow-right:before { - border-left: 27px solid #3F3F3F; } - -.mfp-iframe-holder { - padding-top: 40px; - padding-bottom: 40px; } - .mfp-iframe-holder .mfp-content { - line-height: 0; - width: 100%; - max-width: 900px; } - .mfp-iframe-holder .mfp-close { - top: -40px; } - -.mfp-iframe-scaler { - width: 100%; - height: 0; - overflow: hidden; - padding-top: 56.25%; } - .mfp-iframe-scaler iframe { - position: absolute; - display: block; - top: 0; - left: 0; - width: 100%; - height: 100%; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #000; } - -/* Main image in popup */ -img.mfp-img { - width: auto; - max-width: 100%; - height: auto; - display: block; - line-height: 0; - box-sizing: border-box; - padding: 40px 0 40px; - margin: 0 auto; } - -/* The shadow behind the image */ -.mfp-figure { - line-height: 0; } - .mfp-figure:after { - content: ''; - position: absolute; - left: 0; - top: 40px; - bottom: 40px; - display: block; - right: 0; - width: auto; - height: auto; - z-index: -1; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #444; } - .mfp-figure small { - color: #BDBDBD; - display: block; - font-size: 12px; - line-height: 14px; } - .mfp-figure figure { - margin: 0; } - -.mfp-bottom-bar { - margin-top: -36px; - position: absolute; - top: 100%; - left: 0; - width: 100%; - cursor: auto; } - -.mfp-title { - text-align: left; - line-height: 18px; - color: #F3F3F3; - word-wrap: break-word; - padding-right: 36px; } - -.mfp-image-holder .mfp-content { - max-width: 100%; } - -.mfp-gallery .mfp-image-holder .mfp-figure { - cursor: pointer; } - -@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { - /** - * Remove all paddings around the image on small screen - */ - .mfp-img-mobile .mfp-image-holder { - padding-left: 0; - padding-right: 0; } - .mfp-img-mobile img.mfp-img { - padding: 0; } - .mfp-img-mobile .mfp-figure:after { - top: 0; - bottom: 0; } - .mfp-img-mobile .mfp-figure small { - display: inline; - margin-left: 5px; } - .mfp-img-mobile .mfp-bottom-bar { - background: rgba(0, 0, 0, 0.6); - bottom: 0; - margin: 0; - top: auto; - padding: 3px 5px; - position: fixed; - box-sizing: border-box; } - .mfp-img-mobile .mfp-bottom-bar:empty { - padding: 0; } - .mfp-img-mobile .mfp-counter { - right: 5px; - top: 3px; } - .mfp-img-mobile .mfp-close { - top: 0; - right: 0; - width: 35px; - height: 35px; - line-height: 35px; - background: rgba(0, 0, 0, 0.6); - position: fixed; - text-align: center; - padding: 0; } } - -@media all and (max-width: 900px) { - .mfp-arrow { - -webkit-transform: scale(0.75); - transform: scale(0.75); } - .mfp-arrow-left { - -webkit-transform-origin: 0; - transform-origin: 0; } - .mfp-arrow-right { - -webkit-transform-origin: 100%; - transform-origin: 100%; } - .mfp-container { - padding-left: 6px; - padding-right: 6px; } } diff --git a/static/css/themefisher-fonts.css b/static/css/themefisher-fonts.css deleted file mode 100755 index ee0e9bdb4..000000000 --- a/static/css/themefisher-fonts.css +++ /dev/null @@ -1,2517 +0,0 @@ -@font-face { - font-family: 'themefisher-font'; - src: url('../fonts/themefisher-font.eot?ug5hnh'); - src: url('../fonts/themefisher-font.eot?ug5hnh#iefix') format('embedded-opentype'), - url('../fonts/themefisher-font.ttf?ug5hnh') format('truetype'), - url('../fonts/themefisher-font.woff?ug5hnh') format('woff'), - url('../fonts/themefisher-font.svg?ug5hnh#themefisher-font') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^="tf-"], [class*=" tf-"] { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: 'themefisher-font' !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.tf-ion-alert-circled:before { - content: "\f100"; -} -.tf-ion-alert:before { - content: "\f101"; -} -.tf-ion-android-add-circle:before { - content: "\f359"; -} -.tf-ion-android-add:before { - content: "\f2c7"; -} -.tf-ion-android-alarm-clock:before { - content: "\f35a"; -} -.tf-ion-android-alert:before { - content: "\f35b"; -} -.tf-ion-android-apps:before { - content: "\f35c"; -} -.tf-ion-android-archive:before { - content: "\f2c9"; -} -.tf-ion-android-arrow-back:before { - content: "\f2ca"; -} -.tf-ion-android-arrow-down:before { - content: "\f35d"; -} -.tf-ion-android-arrow-dropdown-circle:before { - content: "\f35e"; -} -.tf-ion-android-arrow-dropdown:before { - content: "\f35f"; -} -.tf-ion-android-arrow-dropleft-circle:before { - content: "\f360"; -} -.tf-ion-android-arrow-dropleft:before { - content: "\f361"; -} -.tf-ion-android-arrow-dropright-circle:before { - content: "\f362"; -} -.tf-ion-android-arrow-dropright:before { - content: "\f363"; -} -.tf-ion-android-arrow-dropup-circle:before { - content: "\f364"; -} -.tf-ion-android-arrow-dropup:before { - content: "\f365"; -} -.tf-ion-android-arrow-forward:before { - content: "\f30f"; -} -.tf-ion-android-arrow-up:before { - content: "\f366"; -} -.tf-ion-android-attach:before { - content: "\f367"; -} -.tf-ion-android-bar:before { - content: "\f368"; -} -.tf-ion-android-bicycle:before { - content: "\f369"; -} -.tf-ion-android-boat:before { - content: "\f36a"; -} -.tf-ion-android-bookmark:before { - content: "\f36b"; -} -.tf-ion-android-bulb:before { - content: "\f36c"; -} -.tf-ion-android-bus:before { - content: "\f36d"; -} -.tf-ion-android-calendar:before { - content: "\f2d1"; -} -.tf-ion-android-call:before { - content: "\f2d2"; -} -.tf-ion-android-camera:before { - content: "\f2d3"; -} -.tf-ion-android-cancel:before { - content: "\f36e"; -} -.tf-ion-android-car:before { - content: "\f36f"; -} -.tf-ion-android-cart:before { - content: "\f370"; -} -.tf-ion-android-chat:before { - content: "\f2d4"; -} -.tf-ion-android-checkbox-blank:before { - content: "\f371"; -} -.tf-ion-android-checkbox-outline-blank:before { - content: "\f372"; -} -.tf-ion-android-checkbox-outline:before { - content: "\f373"; -} -.tf-ion-android-checkbox:before { - content: "\f374"; -} -.tf-ion-android-checkmark-circle:before { - content: "\f375"; -} -.tf-ion-android-clipboard:before { - content: "\f376"; -} -.tf-ion-android-close:before { - content: "\f2d7"; -} -.tf-ion-android-cloud-circle:before { - content: "\f377"; -} -.tf-ion-android-cloud-done:before { - content: "\f378"; -} -.tf-ion-android-cloud-outline:before { - content: "\f379"; -} -.tf-ion-android-cloud:before { - content: "\f37a"; -} -.tf-ion-android-color-palette:before { - content: "\f37b"; -} -.tf-ion-android-compass:before { - content: "\f37c"; -} -.tf-ion-android-contact:before { - content: "\f2d8"; -} -.tf-ion-android-contacts:before { - content: "\f2d9"; -} -.tf-ion-android-contract:before { - content: "\f37d"; -} -.tf-ion-android-create:before { - content: "\f37e"; -} -.tf-ion-android-delete:before { - content: "\f37f"; -} -.tf-ion-android-desktop:before { - content: "\f380"; -} -.tf-ion-android-document:before { - content: "\f381"; -} -.tf-ion-android-done-all:before { - content: "\f382"; -} -.tf-ion-android-done:before { - content: "\f383"; -} -.tf-ion-android-download:before { - content: "\f2dd"; -} -.tf-ion-android-drafts:before { - content: "\f384"; -} -.tf-ion-android-exit:before { - content: "\f385"; -} -.tf-ion-android-expand:before { - content: "\f386"; -} -.tf-ion-android-favorite-outline:before { - content: "\f387"; -} -.tf-ion-android-favorite:before { - content: "\f388"; -} -.tf-ion-android-film:before { - content: "\f389"; -} -.tf-ion-android-folder-open:before { - content: "\f38a"; -} -.tf-ion-android-folder:before { - content: "\f2e0"; -} -.tf-ion-android-funnel:before { - content: "\f38b"; -} -.tf-ion-android-globe:before { - content: "\f38c"; -} -.tf-ion-android-hand:before { - content: "\f2e3"; -} -.tf-ion-android-hangout:before { - content: "\f38d"; -} -.tf-ion-android-happy:before { - content: "\f38e"; -} -.tf-ion-android-home:before { - content: "\f38f"; -} -.tf-ion-android-image:before { - content: "\f2e4"; -} -.tf-ion-android-laptop:before { - content: "\f390"; -} -.tf-ion-android-list:before { - content: "\f391"; -} -.tf-ion-android-locate:before { - content: "\f2e9"; -} -.tf-ion-android-lock:before { - content: "\f392"; -} -.tf-ion-android-mail:before { - content: "\f2eb"; -} -.tf-ion-android-map:before { - content: "\f393"; -} -.tf-ion-android-menu:before { - content: "\f394"; -} -.tf-ion-android-microphone-off:before { - content: "\f395"; -} -.tf-ion-android-microphone:before { - content: "\f2ec"; -} -.tf-ion-android-more-horizontal:before { - content: "\f396"; -} -.tf-ion-android-more-vertical:before { - content: "\f397"; -} -.tf-ion-android-navigate:before { - content: "\f398"; -} -.tf-ion-android-notifications-none:before { - content: "\f399"; -} -.tf-ion-android-notifications-off:before { - content: "\f39a"; -} -.tf-ion-android-notifications:before { - content: "\f39b"; -} -.tf-ion-android-open:before { - content: "\f39c"; -} -.tf-ion-android-options:before { - content: "\f39d"; -} -.tf-ion-android-people:before { - content: "\f39e"; -} -.tf-ion-android-person-add:before { - content: "\f39f"; -} -.tf-ion-android-person:before { - content: "\f3a0"; -} -.tf-ion-android-phone-landscape:before { - content: "\f3a1"; -} -.tf-ion-android-phone-portrait:before { - content: "\f3a2"; -} -.tf-ion-android-pin:before { - content: "\f3a3"; -} -.tf-ion-android-plane:before { - content: "\f3a4"; -} -.tf-ion-android-playstore:before { - content: "\f2f0"; -} -.tf-ion-android-print:before { - content: "\f3a5"; -} -.tf-ion-android-radio-button-off:before { - content: "\f3a6"; -} -.tf-ion-android-radio-button-on:before { - content: "\f3a7"; -} -.tf-ion-android-refresh:before { - content: "\f3a8"; -} -.tf-ion-android-remove-circle:before { - content: "\f3a9"; -} -.tf-ion-android-remove:before { - content: "\f2f4"; -} -.tf-ion-android-restaurant:before { - content: "\f3aa"; -} -.tf-ion-android-sad:before { - content: "\f3ab"; -} -.tf-ion-android-search:before { - content: "\f2f5"; -} -.tf-ion-android-send:before { - content: "\f2f6"; -} -.tf-ion-android-settings:before { - content: "\f2f7"; -} -.tf-ion-android-share-alt:before { - content: "\f3ac"; -} -.tf-ion-android-share:before { - content: "\f2f8"; -} -.tf-ion-android-star-half:before { - content: "\f3ad"; -} -.tf-ion-android-star-outline:before { - content: "\f3ae"; -} -.tf-ion-android-star:before { - content: "\f2fc"; -} -.tf-ion-android-stopwatch:before { - content: "\f2fd"; -} -.tf-ion-android-subway:before { - content: "\f3af"; -} -.tf-ion-android-sunny:before { - content: "\f3b0"; -} -.tf-ion-android-sync:before { - content: "\f3b1"; -} -.tf-ion-android-textsms:before { - content: "\f3b2"; -} -.tf-ion-android-time:before { - content: "\f3b3"; -} -.tf-ion-android-train:before { - content: "\f3b4"; -} -.tf-ion-android-unlock:before { - content: "\f3b5"; -} -.tf-ion-android-upload:before { - content: "\f3b6"; -} -.tf-ion-android-volume-down:before { - content: "\f3b7"; -} -.tf-ion-android-volume-mute:before { - content: "\f3b8"; -} -.tf-ion-android-volume-off:before { - content: "\f3b9"; -} -.tf-ion-android-volume-up:before { - content: "\f3ba"; -} -.tf-ion-android-walk:before { - content: "\f3bb"; -} -.tf-ion-android-warning:before { - content: "\f3bc"; -} -.tf-ion-android-watch:before { - content: "\f3bd"; -} -.tf-ion-android-wifi:before { - content: "\f305"; -} -.tf-ion-aperture:before { - content: "\f313"; -} -.tf-ion-archive:before { - content: "\f102"; -} -.tf-ion-arrow-down-a:before { - content: "\f103"; -} -.tf-ion-arrow-down-b:before { - content: "\f104"; -} -.tf-ion-arrow-down-c:before { - content: "\f105"; -} -.tf-ion-arrow-expand:before { - content: "\f25e"; -} -.tf-ion-arrow-graph-down-left:before { - content: "\f25f"; -} -.tf-ion-arrow-graph-down-right:before { - content: "\f260"; -} -.tf-ion-arrow-graph-up-left:before { - content: "\f261"; -} -.tf-ion-arrow-graph-up-right:before { - content: "\f262"; -} -.tf-ion-arrow-left-a:before { - content: "\f106"; -} -.tf-ion-arrow-left-b:before { - content: "\f107"; -} -.tf-ion-arrow-left-c:before { - content: "\f108"; -} -.tf-ion-arrow-move:before { - content: "\f263"; -} -.tf-ion-arrow-resize:before { - content: "\f264"; -} -.tf-ion-arrow-return-left:before { - content: "\f265"; -} -.tf-ion-arrow-return-right:before { - content: "\f266"; -} -.tf-ion-arrow-right-a:before { - content: "\f109"; -} -.tf-ion-arrow-right-b:before { - content: "\f10a"; -} -.tf-ion-arrow-right-c:before { - content: "\f10b"; -} -.tf-ion-arrow-shrink:before { - content: "\f267"; -} -.tf-ion-arrow-swap:before { - content: "\f268"; -} -.tf-ion-arrow-up-a:before { - content: "\f10c"; -} -.tf-ion-arrow-up-b:before { - content: "\f10d"; -} -.tf-ion-arrow-up-c:before { - content: "\f10e"; -} -.tf-ion-asterisk:before { - content: "\f314"; -} -.tf-ion-at:before { - content: "\f10f"; -} -.tf-ion-backspace-outline:before { - content: "\f3be"; -} -.tf-ion-backspace:before { - content: "\f3bf"; -} -.tf-ion-bag:before { - content: "\f110"; -} -.tf-ion-battery-charging:before { - content: "\f111"; -} -.tf-ion-battery-empty:before { - content: "\f112"; -} -.tf-ion-battery-full:before { - content: "\f113"; -} -.tf-ion-battery-half:before { - content: "\f114"; -} -.tf-ion-battery-low:before { - content: "\f115"; -} -.tf-ion-beaker:before { - content: "\f269"; -} -.tf-ion-beer:before { - content: "\f26a"; -} -.tf-ion-bluetooth:before { - content: "\f116"; -} -.tf-ion-bonfire:before { - content: "\f315"; -} -.tf-ion-bookmark:before { - content: "\f26b"; -} -.tf-ion-bowtie:before { - content: "\f3c0"; -} -.tf-ion-briefcase:before { - content: "\f26c"; -} -.tf-ion-bug:before { - content: "\f2be"; -} -.tf-ion-calculator:before { - content: "\f26d"; -} -.tf-ion-calendar:before { - content: "\f117"; -} -.tf-ion-camera:before { - content: "\f118"; -} -.tf-ion-card:before { - content: "\f119"; -} -.tf-ion-cash:before { - content: "\f316"; -} -.tf-ion-chatbox-working:before { - content: "\f11a"; -} -.tf-ion-chatbox:before { - content: "\f11b"; -} -.tf-ion-chatboxes:before { - content: "\f11c"; -} -.tf-ion-chatbubble-working:before { - content: "\f11d"; -} -.tf-ion-chatbubble:before { - content: "\f11e"; -} -.tf-ion-chatbubbles:before { - content: "\f11f"; -} -.tf-ion-checkmark-circled:before { - content: "\f120"; -} -.tf-ion-checkmark-round:before { - content: "\f121"; -} -.tf-ion-checkmark:before { - content: "\f122"; -} -.tf-ion-chevron-down:before { - content: "\f123"; -} -.tf-ion-chevron-left:before { - content: "\f124"; -} -.tf-ion-chevron-right:before { - content: "\f125"; -} -.tf-ion-chevron-up:before { - content: "\f126"; -} -.tf-ion-clipboard:before { - content: "\f127"; -} -.tf-ion-clock:before { - content: "\f26e"; -} -.tf-ion-close-circled:before { - content: "\f128"; -} -.tf-ion-close-round:before { - content: "\f129"; -} -.tf-ion-close:before { - content: "\f12a"; -} -.tf-ion-closed-captioning:before { - content: "\f317"; -} -.tf-ion-cloud:before { - content: "\f12b"; -} -.tf-ion-code-download:before { - content: "\f26f"; -} -.tf-ion-code-working:before { - content: "\f270"; -} -.tf-ion-code:before { - content: "\f271"; -} -.tf-ion-coffee:before { - content: "\f272"; -} -.tf-ion-compass:before { - content: "\f273"; -} -.tf-ion-compose:before { - content: "\f12c"; -} -.tf-ion-connection-bars:before { - content: "\f274"; -} -.tf-ion-contrast:before { - content: "\f275"; -} -.tf-ion-crop:before { - content: "\f3c1"; -} -.tf-ion-cube:before { - content: "\f318"; -} -.tf-ion-disc:before { - content: "\f12d"; -} -.tf-ion-document-text:before { - content: "\f12e"; -} -.tf-ion-document:before { - content: "\f12f"; -} -.tf-ion-drag:before { - content: "\f130"; -} -.tf-ion-earth:before { - content: "\f276"; -} -.tf-ion-easel:before { - content: "\f3c2"; -} -.tf-ion-edit:before { - content: "\f2bf"; -} -.tf-ion-egg:before { - content: "\f277"; -} -.tf-ion-eject:before { - content: "\f131"; -} -.tf-ion-email-unread:before { - content: "\f3c3"; -} -.tf-ion-email:before { - content: "\f132"; -} -.tf-ion-erlenmeyer-flask-bubbles:before { - content: "\f3c4"; -} -.tf-ion-erlenmeyer-flask:before { - content: "\f3c5"; -} -.tf-ion-eye-disabled:before { - content: "\f306"; -} -.tf-ion-eye:before { - content: "\f133"; -} -.tf-ion-female:before { - content: "\f278"; -} -.tf-ion-filing:before { - content: "\f134"; -} -.tf-ion-film-marker:before { - content: "\f135"; -} -.tf-ion-fireball:before { - content: "\f319"; -} -.tf-ion-flag:before { - content: "\f279"; -} -.tf-ion-flame:before { - content: "\f31a"; -} -.tf-ion-flash-off:before { - content: "\f136"; -} -.tf-ion-flash:before { - content: "\f137"; -} -.tf-ion-folder:before { - content: "\f139"; -} -.tf-ion-fork-repo:before { - content: "\f2c0"; -} -.tf-ion-fork:before { - content: "\f27a"; -} -.tf-ion-forward:before { - content: "\f13a"; -} -.tf-ion-funnel:before { - content: "\f31b"; -} -.tf-ion-gear-a:before { - content: "\f13d"; -} -.tf-ion-gear-b:before { - content: "\f13e"; -} -.tf-ion-grid:before { - content: "\f13f"; -} -.tf-ion-hammer:before { - content: "\f27b"; -} -.tf-ion-happy-outline:before { - content: "\f3c6"; -} -.tf-ion-happy:before { - content: "\f31c"; -} -.tf-ion-headphone:before { - content: "\f140"; -} -.tf-ion-heart-broken:before { - content: "\f31d"; -} -.tf-ion-heart:before { - content: "\f141"; -} -.tf-ion-help-buoy:before { - content: "\f27c"; -} -.tf-ion-help-circled:before { - content: "\f142"; -} -.tf-ion-help:before { - content: "\f143"; -} -.tf-ion-home:before { - content: "\f144"; -} -.tf-ion-icecream:before { - content: "\f27d"; -} -.tf-ion-image:before { - content: "\f147"; -} -.tf-ion-images:before { - content: "\f148"; -} -.tf-ion-information-circled:before { - content: "\f149"; -} -.tf-ion-information:before { - content: "\f14a"; -} -.tf-ion-ionic:before { - content: "\f14b"; -} -.tf-ion-ios-alarm-outline:before { - content: "\f3c7"; -} -.tf-ion-ios-alarm:before { - content: "\f3c8"; -} -.tf-ion-ios-albums-outline:before { - content: "\f3c9"; -} -.tf-ion-ios-albums:before { - content: "\f3ca"; -} -.tf-ion-ios-americanfootball-outline:before { - content: "\f3cb"; -} -.tf-ion-ios-americanfootball:before { - content: "\f3cc"; -} -.tf-ion-ios-analytics-outline:before { - content: "\f3cd"; -} -.tf-ion-ios-analytics:before { - content: "\f3ce"; -} -.tf-ion-ios-arrow-back:before { - content: "\f3cf"; -} -.tf-ion-ios-arrow-down:before { - content: "\f3d0"; -} -.tf-ion-ios-arrow-forward:before { - content: "\f3d1"; -} -.tf-ion-ios-arrow-left:before { - content: "\f3d2"; -} -.tf-ion-ios-arrow-right:before { - content: "\f3d3"; -} -.tf-ion-ios-arrow-thin-down:before { - content: "\f3d4"; -} -.tf-ion-ios-arrow-thin-left:before { - content: "\f3d5"; -} -.tf-ion-ios-arrow-thin-right:before { - content: "\f3d6"; -} -.tf-ion-ios-arrow-thin-up:before { - content: "\f3d7"; -} -.tf-ion-ios-arrow-up:before { - content: "\f3d8"; -} -.tf-ion-ios-at-outline:before { - content: "\f3d9"; -} -.tf-ion-ios-at:before { - content: "\f3da"; -} -.tf-ion-ios-barcode-outline:before { - content: "\f3db"; -} -.tf-ion-ios-barcode:before { - content: "\f3dc"; -} -.tf-ion-ios-baseball-outline:before { - content: "\f3dd"; -} -.tf-ion-ios-baseball:before { - content: "\f3de"; -} -.tf-ion-ios-basketball-outline:before { - content: "\f3df"; -} -.tf-ion-ios-basketball:before { - content: "\f3e0"; -} -.tf-ion-ios-bell-outline:before { - content: "\f3e1"; -} -.tf-ion-ios-bell:before { - content: "\f3e2"; -} -.tf-ion-ios-body-outline:before { - content: "\f3e3"; -} -.tf-ion-ios-body:before { - content: "\f3e4"; -} -.tf-ion-ios-bolt-outline:before { - content: "\f3e5"; -} -.tf-ion-ios-bolt:before { - content: "\f3e6"; -} -.tf-ion-ios-book-outline:before { - content: "\f3e7"; -} -.tf-ion-ios-book:before { - content: "\f3e8"; -} -.tf-ion-ios-bookmarks-outline:before { - content: "\f3e9"; -} -.tf-ion-ios-bookmarks:before { - content: "\f3ea"; -} -.tf-ion-ios-box-outline:before { - content: "\f3eb"; -} -.tf-ion-ios-box:before { - content: "\f3ec"; -} -.tf-ion-ios-briefcase-outline:before { - content: "\f3ed"; -} -.tf-ion-ios-briefcase:before { - content: "\f3ee"; -} -.tf-ion-ios-browsers-outline:before { - content: "\f3ef"; -} -.tf-ion-ios-browsers:before { - content: "\f3f0"; -} -.tf-ion-ios-calculator-outline:before { - content: "\f3f1"; -} -.tf-ion-ios-calculator:before { - content: "\f3f2"; -} -.tf-ion-ios-calendar-outline:before { - content: "\f3f3"; -} -.tf-ion-ios-calendar:before { - content: "\f3f4"; -} -.tf-ion-ios-camera-outline:before { - content: "\f3f5"; -} -.tf-ion-ios-camera:before { - content: "\f3f6"; -} -.tf-ion-ios-cart-outline:before { - content: "\f3f7"; -} -.tf-ion-ios-cart:before { - content: "\f3f8"; -} -.tf-ion-ios-chatboxes-outline:before { - content: "\f3f9"; -} -.tf-ion-ios-chatboxes:before { - content: "\f3fa"; -} -.tf-ion-ios-chatbubble-outline:before { - content: "\f3fb"; -} -.tf-ion-ios-chatbubble:before { - content: "\f3fc"; -} -.tf-ion-ios-checkmark-empty:before { - content: "\f3fd"; -} -.tf-ion-ios-checkmark-outline:before { - content: "\f3fe"; -} -.tf-ion-ios-checkmark:before { - content: "\f3ff"; -} -.tf-ion-ios-circle-filled:before { - content: "\f400"; -} -.tf-ion-ios-circle-outline:before { - content: "\f401"; -} -.tf-ion-ios-clock-outline:before { - content: "\f402"; -} -.tf-ion-ios-clock:before { - content: "\f403"; -} -.tf-ion-ios-close-empty:before { - content: "\f404"; -} -.tf-ion-ios-close-outline:before { - content: "\f405"; -} -.tf-ion-ios-close:before { - content: "\f406"; -} -.tf-ion-ios-cloud-download-outline:before { - content: "\f407"; -} -.tf-ion-ios-cloud-download:before { - content: "\f408"; -} -.tf-ion-ios-cloud-outline:before { - content: "\f409"; -} -.tf-ion-ios-cloud-upload-outline:before { - content: "\f40a"; -} -.tf-ion-ios-cloud-upload:before { - content: "\f40b"; -} -.tf-ion-ios-cloud:before { - content: "\f40c"; -} -.tf-ion-ios-cloudy-night-outline:before { - content: "\f40d"; -} -.tf-ion-ios-cloudy-night:before { - content: "\f40e"; -} -.tf-ion-ios-cloudy-outline:before { - content: "\f40f"; -} -.tf-ion-ios-cloudy:before { - content: "\f410"; -} -.tf-ion-ios-cog-outline:before { - content: "\f411"; -} -.tf-ion-ios-cog:before { - content: "\f412"; -} -.tf-ion-ios-color-filter-outline:before { - content: "\f413"; -} -.tf-ion-ios-color-filter:before { - content: "\f414"; -} -.tf-ion-ios-color-wand-outline:before { - content: "\f415"; -} -.tf-ion-ios-color-wand:before { - content: "\f416"; -} -.tf-ion-ios-compose-outline:before { - content: "\f417"; -} -.tf-ion-ios-compose:before { - content: "\f418"; -} -.tf-ion-ios-contact-outline:before { - content: "\f419"; -} -.tf-ion-ios-contact:before { - content: "\f41a"; -} -.tf-ion-ios-copy-outline:before { - content: "\f41b"; -} -.tf-ion-ios-copy:before { - content: "\f41c"; -} -.tf-ion-ios-crop-strong:before { - content: "\f41d"; -} -.tf-ion-ios-crop:before { - content: "\f41e"; -} -.tf-ion-ios-download-outline:before { - content: "\f41f"; -} -.tf-ion-ios-download:before { - content: "\f420"; -} -.tf-ion-ios-drag:before { - content: "\f421"; -} -.tf-ion-ios-email-outline:before { - content: "\f422"; -} -.tf-ion-ios-email:before { - content: "\f423"; -} -.tf-ion-ios-eye-outline:before { - content: "\f424"; -} -.tf-ion-ios-eye:before { - content: "\f425"; -} -.tf-ion-ios-fastforward-outline:before { - content: "\f426"; -} -.tf-ion-ios-fastforward:before { - content: "\f427"; -} -.tf-ion-ios-filing-outline:before { - content: "\f428"; -} -.tf-ion-ios-filing:before { - content: "\f429"; -} -.tf-ion-ios-film-outline:before { - content: "\f42a"; -} -.tf-ion-ios-film:before { - content: "\f42b"; -} -.tf-ion-ios-flag-outline:before { - content: "\f42c"; -} -.tf-ion-ios-flag:before { - content: "\f42d"; -} -.tf-ion-ios-flame-outline:before { - content: "\f42e"; -} -.tf-ion-ios-flame:before { - content: "\f42f"; -} -.tf-ion-ios-flask-outline:before { - content: "\f430"; -} -.tf-ion-ios-flask:before { - content: "\f431"; -} -.tf-ion-ios-flower-outline:before { - content: "\f432"; -} -.tf-ion-ios-flower:before { - content: "\f433"; -} -.tf-ion-ios-folder-outline:before { - content: "\f434"; -} -.tf-ion-ios-folder:before { - content: "\f435"; -} -.tf-ion-ios-football-outline:before { - content: "\f436"; -} -.tf-ion-ios-football:before { - content: "\f437"; -} -.tf-ion-ios-game-controller-a-outline:before { - content: "\f438"; -} -.tf-ion-ios-game-controller-a:before { - content: "\f439"; -} -.tf-ion-ios-game-controller-b-outline:before { - content: "\f43a"; -} -.tf-ion-ios-game-controller-b:before { - content: "\f43b"; -} -.tf-ion-ios-gear-outline:before { - content: "\f43c"; -} -.tf-ion-ios-gear:before { - content: "\f43d"; -} -.tf-ion-ios-glasses-outline:before { - content: "\f43e"; -} -.tf-ion-ios-glasses:before { - content: "\f43f"; -} -.tf-ion-ios-grid-view-outline:before { - content: "\f440"; -} -.tf-ion-ios-grid-view:before { - content: "\f441"; -} -.tf-ion-ios-heart-outline:before { - content: "\f442"; -} -.tf-ion-ios-heart:before { - content: "\f443"; -} -.tf-ion-ios-help-empty:before { - content: "\f444"; -} -.tf-ion-ios-help-outline:before { - content: "\f445"; -} -.tf-ion-ios-help:before { - content: "\f446"; -} -.tf-ion-ios-home-outline:before { - content: "\f447"; -} -.tf-ion-ios-home:before { - content: "\f448"; -} -.tf-ion-ios-infinite-outline:before { - content: "\f449"; -} -.tf-ion-ios-infinite:before { - content: "\f44a"; -} -.tf-ion-ios-information-empty:before { - content: "\f44b"; -} -.tf-ion-ios-information-outline:before { - content: "\f44c"; -} -.tf-ion-ios-information:before { - content: "\f44d"; -} -.tf-ion-ios-ionic-outline:before { - content: "\f44e"; -} -.tf-ion-ios-keypad-outline:before { - content: "\f44f"; -} -.tf-ion-ios-keypad:before { - content: "\f450"; -} -.tf-ion-ios-lightbulb-outline:before { - content: "\f451"; -} -.tf-ion-ios-lightbulb:before { - content: "\f452"; -} -.tf-ion-ios-list-outline:before { - content: "\f453"; -} -.tf-ion-ios-list:before { - content: "\f454"; -} -.tf-ion-ios-location-outline:before { - content: "\f455"; -} -.tf-ion-ios-location:before { - content: "\f456"; -} -.tf-ion-ios-locked-outline:before { - content: "\f457"; -} -.tf-ion-ios-locked:before { - content: "\f458"; -} -.tf-ion-ios-loop-strong:before { - content: "\f459"; -} -.tf-ion-ios-loop:before { - content: "\f45a"; -} -.tf-ion-ios-medical-outline:before { - content: "\f45b"; -} -.tf-ion-ios-medical:before { - content: "\f45c"; -} -.tf-ion-ios-medkit-outline:before { - content: "\f45d"; -} -.tf-ion-ios-medkit:before { - content: "\f45e"; -} -.tf-ion-ios-mic-off:before { - content: "\f45f"; -} -.tf-ion-ios-mic-outline:before { - content: "\f460"; -} -.tf-ion-ios-mic:before { - content: "\f461"; -} -.tf-ion-ios-minus-empty:before { - content: "\f462"; -} -.tf-ion-ios-minus-outline:before { - content: "\f463"; -} -.tf-ion-ios-minus:before { - content: "\f464"; -} -.tf-ion-ios-monitor-outline:before { - content: "\f465"; -} -.tf-ion-ios-monitor:before { - content: "\f466"; -} -.tf-ion-ios-moon-outline:before { - content: "\f467"; -} -.tf-ion-ios-moon:before { - content: "\f468"; -} -.tf-ion-ios-more-outline:before { - content: "\f469"; -} -.tf-ion-ios-more:before { - content: "\f46a"; -} -.tf-ion-ios-musical-note:before { - content: "\f46b"; -} -.tf-ion-ios-musical-notes:before { - content: "\f46c"; -} -.tf-ion-ios-navigate-outline:before { - content: "\f46d"; -} -.tf-ion-ios-navigate:before { - content: "\f46e"; -} -.tf-ion-ios-nutrition-outline:before { - content: "\f46f"; -} -.tf-ion-ios-nutrition:before { - content: "\f470"; -} -.tf-ion-ios-paper-outline:before { - content: "\f471"; -} -.tf-ion-ios-paper:before { - content: "\f472"; -} -.tf-ion-ios-paperplane-outline:before { - content: "\f473"; -} -.tf-ion-ios-paperplane:before { - content: "\f474"; -} -.tf-ion-ios-partlysunny-outline:before { - content: "\f475"; -} -.tf-ion-ios-partlysunny:before { - content: "\f476"; -} -.tf-ion-ios-pause-outline:before { - content: "\f477"; -} -.tf-ion-ios-pause:before { - content: "\f478"; -} -.tf-ion-ios-paw-outline:before { - content: "\f479"; -} -.tf-ion-ios-paw:before { - content: "\f47a"; -} -.tf-ion-ios-people-outline:before { - content: "\f47b"; -} -.tf-ion-ios-people:before { - content: "\f47c"; -} -.tf-ion-ios-person-outline:before { - content: "\f47d"; -} -.tf-ion-ios-person:before { - content: "\f47e"; -} -.tf-ion-ios-personadd-outline:before { - content: "\f47f"; -} -.tf-ion-ios-personadd:before { - content: "\f480"; -} -.tf-ion-ios-photos-outline:before { - content: "\f481"; -} -.tf-ion-ios-photos:before { - content: "\f482"; -} -.tf-ion-ios-pie-outline:before { - content: "\f483"; -} -.tf-ion-ios-pie:before { - content: "\f484"; -} -.tf-ion-ios-pint-outline:before { - content: "\f485"; -} -.tf-ion-ios-pint:before { - content: "\f486"; -} -.tf-ion-ios-play-outline:before { - content: "\f487"; -} -.tf-ion-ios-play:before { - content: "\f488"; -} -.tf-ion-ios-plus-empty:before { - content: "\f489"; -} -.tf-ion-ios-plus-outline:before { - content: "\f48a"; -} -.tf-ion-ios-plus:before { - content: "\f48b"; -} -.tf-ion-ios-pricetag-outline:before { - content: "\f48c"; -} -.tf-ion-ios-pricetag:before { - content: "\f48d"; -} -.tf-ion-ios-pricetags-outline:before { - content: "\f48e"; -} -.tf-ion-ios-pricetags:before { - content: "\f48f"; -} -.tf-ion-ios-printer-outline:before { - content: "\f490"; -} -.tf-ion-ios-printer:before { - content: "\f491"; -} -.tf-ion-ios-pulse-strong:before { - content: "\f492"; -} -.tf-ion-ios-pulse:before { - content: "\f493"; -} -.tf-ion-ios-rainy-outline:before { - content: "\f494"; -} -.tf-ion-ios-rainy:before { - content: "\f495"; -} -.tf-ion-ios-recording-outline:before { - content: "\f496"; -} -.tf-ion-ios-recording:before { - content: "\f497"; -} -.tf-ion-ios-redo-outline:before { - content: "\f498"; -} -.tf-ion-ios-redo:before { - content: "\f499"; -} -.tf-ion-ios-refresh-empty:before { - content: "\f49a"; -} -.tf-ion-ios-refresh-outline:before { - content: "\f49b"; -} -.tf-ion-ios-refresh:before { - content: "\f49c"; -} -.tf-ion-ios-reload:before { - content: "\f49d"; -} -.tf-ion-ios-reverse-camera-outline:before { - content: "\f49e"; -} -.tf-ion-ios-reverse-camera:before { - content: "\f49f"; -} -.tf-ion-ios-rewind-outline:before { - content: "\f4a0"; -} -.tf-ion-ios-rewind:before { - content: "\f4a1"; -} -.tf-ion-ios-rose-outline:before { - content: "\f4a2"; -} -.tf-ion-ios-rose:before { - content: "\f4a3"; -} -.tf-ion-ios-search-strong:before { - content: "\f4a4"; -} -.tf-ion-ios-search:before { - content: "\f4a5"; -} -.tf-ion-ios-settings-strong:before { - content: "\f4a6"; -} -.tf-ion-ios-settings:before { - content: "\f4a7"; -} -.tf-ion-ios-shuffle-strong:before { - content: "\f4a8"; -} -.tf-ion-ios-shuffle:before { - content: "\f4a9"; -} -.tf-ion-ios-skipbackward-outline:before { - content: "\f4aa"; -} -.tf-ion-ios-skipbackward:before { - content: "\f4ab"; -} -.tf-ion-ios-skipforward-outline:before { - content: "\f4ac"; -} -.tf-ion-ios-skipforward:before { - content: "\f4ad"; -} -.tf-ion-ios-snowy:before { - content: "\f4ae"; -} -.tf-ion-ios-speedometer-outline:before { - content: "\f4af"; -} -.tf-ion-ios-speedometer:before { - content: "\f4b0"; -} -.tf-ion-ios-star-half:before { - content: "\f4b1"; -} -.tf-ion-ios-star-outline:before { - content: "\f4b2"; -} -.tf-ion-ios-star:before { - content: "\f4b3"; -} -.tf-ion-ios-stopwatch-outline:before { - content: "\f4b4"; -} -.tf-ion-ios-stopwatch:before { - content: "\f4b5"; -} -.tf-ion-ios-sunny-outline:before { - content: "\f4b6"; -} -.tf-ion-ios-sunny:before { - content: "\f4b7"; -} -.tf-ion-ios-telephone-outline:before { - content: "\f4b8"; -} -.tf-ion-ios-telephone:before { - content: "\f4b9"; -} -.tf-ion-ios-tennisball-outline:before { - content: "\f4ba"; -} -.tf-ion-ios-tennisball:before { - content: "\f4bb"; -} -.tf-ion-ios-thunderstorm-outline:before { - content: "\f4bc"; -} -.tf-ion-ios-thunderstorm:before { - content: "\f4bd"; -} -.tf-ion-ios-time-outline:before { - content: "\f4be"; -} -.tf-ion-ios-time:before { - content: "\f4bf"; -} -.tf-ion-ios-timer-outline:before { - content: "\f4c0"; -} -.tf-ion-ios-timer:before { - content: "\f4c1"; -} -.tf-ion-ios-toggle-outline:before { - content: "\f4c2"; -} -.tf-ion-ios-toggle:before { - content: "\f4c3"; -} -.tf-ion-ios-trash-outline:before { - content: "\f4c4"; -} -.tf-ion-ios-trash:before { - content: "\f4c5"; -} -.tf-ion-ios-undo-outline:before { - content: "\f4c6"; -} -.tf-ion-ios-undo:before { - content: "\f4c7"; -} -.tf-ion-ios-unlocked-outline:before { - content: "\f4c8"; -} -.tf-ion-ios-unlocked:before { - content: "\f4c9"; -} -.tf-ion-ios-upload-outline:before { - content: "\f4ca"; -} -.tf-ion-ios-upload:before { - content: "\f4cb"; -} -.tf-ion-ios-videocam-outline:before { - content: "\f4cc"; -} -.tf-ion-ios-videocam:before { - content: "\f4cd"; -} -.tf-ion-ios-volume-high:before { - content: "\f4ce"; -} -.tf-ion-ios-volume-low:before { - content: "\f4cf"; -} -.tf-ion-ios-wineglass-outline:before { - content: "\f4d0"; -} -.tf-ion-ios-wineglass:before { - content: "\f4d1"; -} -.tf-ion-ios-world-outline:before { - content: "\f4d2"; -} -.tf-ion-ios-world:before { - content: "\f4d3"; -} -.tf-ion-ipad:before { - content: "\f1f9"; -} -.tf-ion-iphone:before { - content: "\f1fa"; -} -.tf-ion-ipod:before { - content: "\f1fb"; -} -.tf-ion-jet:before { - content: "\f295"; -} -.tf-ion-key:before { - content: "\f296"; -} -.tf-ion-knife:before { - content: "\f297"; -} -.tf-ion-laptop:before { - content: "\f1fc"; -} -.tf-ion-leaf:before { - content: "\f1fd"; -} -.tf-ion-levels:before { - content: "\f298"; -} -.tf-ion-lightbulb:before { - content: "\f299"; -} -.tf-ion-link:before { - content: "\f1fe"; -} -.tf-ion-load-a:before { - content: "\f29a"; -} -.tf-ion-load-b:before { - content: "\f29b"; -} -.tf-ion-load-c:before { - content: "\f29c"; -} -.tf-ion-load-d:before { - content: "\f29d"; -} -.tf-ion-location:before { - content: "\f1ff"; -} -.tf-ion-lock-combination:before { - content: "\f4d4"; -} -.tf-ion-locked:before { - content: "\f200"; -} -.tf-ion-log-in:before { - content: "\f29e"; -} -.tf-ion-log-out:before { - content: "\f29f"; -} -.tf-ion-loop:before { - content: "\f201"; -} -.tf-ion-magnet:before { - content: "\f2a0"; -} -.tf-ion-male:before { - content: "\f2a1"; -} -.tf-ion-man:before { - content: "\f202"; -} -.tf-ion-map:before { - content: "\f203"; -} -.tf-ion-medkit:before { - content: "\f2a2"; -} -.tf-ion-merge:before { - content: "\f33f"; -} -.tf-ion-mic-a:before { - content: "\f204"; -} -.tf-ion-mic-b:before { - content: "\f205"; -} -.tf-ion-mic-c:before { - content: "\f206"; -} -.tf-ion-minus-circled:before { - content: "\f207"; -} -.tf-ion-minus-round:before { - content: "\f208"; -} -.tf-ion-minus:before { - content: "\f209"; -} -.tf-ion-model-s:before { - content: "\f2c1"; -} -.tf-ion-monitor:before { - content: "\f20a"; -} -.tf-ion-more:before { - content: "\f20b"; -} -.tf-ion-mouse:before { - content: "\f340"; -} -.tf-ion-music-note:before { - content: "\f20c"; -} -.tf-ion-navicon-round:before { - content: "\f20d"; -} -.tf-ion-navicon:before { - content: "\f20e"; -} -.tf-ion-navigate:before { - content: "\f2a3"; -} -.tf-ion-network:before { - content: "\f341"; -} -.tf-ion-no-smoking:before { - content: "\f2c2"; -} -.tf-ion-nuclear:before { - content: "\f2a4"; -} -.tf-ion-outlet:before { - content: "\f342"; -} -.tf-ion-paintbrush:before { - content: "\f4d5"; -} -.tf-ion-paintbucket:before { - content: "\f4d6"; -} -.tf-ion-paper-airplane:before { - content: "\f2c3"; -} -.tf-ion-paperclip:before { - content: "\f20f"; -} -.tf-ion-pause:before { - content: "\f210"; -} -.tf-ion-person-add:before { - content: "\f211"; -} -.tf-ion-person-stalker:before { - content: "\f212"; -} -.tf-ion-person:before { - content: "\f213"; -} -.tf-ion-pie-graph:before { - content: "\f2a5"; -} -.tf-ion-pin:before { - content: "\f2a6"; -} -.tf-ion-pinpoint:before { - content: "\f2a7"; -} -.tf-ion-pizza:before { - content: "\f2a8"; -} -.tf-ion-plane:before { - content: "\f214"; -} -.tf-ion-planet:before { - content: "\f343"; -} -.tf-ion-play:before { - content: "\f215"; -} -.tf-ion-playstation:before { - content: "\f30a"; -} -.tf-ion-plus-circled:before { - content: "\f216"; -} -.tf-ion-plus-round:before { - content: "\f217"; -} -.tf-ion-plus:before { - content: "\f218"; -} -.tf-ion-podium:before { - content: "\f344"; -} -.tf-ion-pound:before { - content: "\f219"; -} -.tf-ion-power:before { - content: "\f2a9"; -} -.tf-ion-pricetag:before { - content: "\f2aa"; -} -.tf-ion-pricetags:before { - content: "\f2ab"; -} -.tf-ion-printer:before { - content: "\f21a"; -} -.tf-ion-pull-request:before { - content: "\f345"; -} -.tf-ion-qr-scanner:before { - content: "\f346"; -} -.tf-ion-quote:before { - content: "\f347"; -} -.tf-ion-radio-waves:before { - content: "\f2ac"; -} -.tf-ion-record:before { - content: "\f21b"; -} -.tf-ion-refresh:before { - content: "\f21c"; -} -.tf-ion-reply-all:before { - content: "\f21d"; -} -.tf-ion-reply:before { - content: "\f21e"; -} -.tf-ion-ribbon-a:before { - content: "\f348"; -} -.tf-ion-ribbon-b:before { - content: "\f349"; -} -.tf-ion-sad-outline:before { - content: "\f4d7"; -} -.tf-ion-sad:before { - content: "\f34a"; -} -.tf-ion-scissors:before { - content: "\f34b"; -} -.tf-ion-search:before { - content: "\f21f"; -} -.tf-ion-settings:before { - content: "\f2ad"; -} -.tf-ion-share:before { - content: "\f220"; -} -.tf-ion-shuffle:before { - content: "\f221"; -} -.tf-ion-skip-backward:before { - content: "\f222"; -} -.tf-ion-skip-forward:before { - content: "\f223"; -} -.tf-ion-social-android-outline:before { - content: "\f224"; -} -.tf-ion-social-android:before { - content: "\f225"; -} -.tf-ion-social-angular-outline:before { - content: "\f4d8"; -} -.tf-ion-social-angular:before { - content: "\f4d9"; -} -.tf-ion-social-apple-outline:before { - content: "\f226"; -} -.tf-ion-social-apple:before { - content: "\f227"; -} -.tf-ion-social-bitcoin-outline:before { - content: "\f2ae"; -} -.tf-ion-social-bitcoin:before { - content: "\f2af"; -} -.tf-ion-social-buffer-outline:before { - content: "\f228"; -} -.tf-ion-social-buffer:before { - content: "\f229"; -} -.tf-ion-social-chrome-outline:before { - content: "\f4da"; -} -.tf-ion-social-chrome:before { - content: "\f4db"; -} -.tf-ion-social-codepen-outline:before { - content: "\f4dc"; -} -.tf-ion-social-codepen:before { - content: "\f4dd"; -} -.tf-ion-social-css3-outline:before { - content: "\f4de"; -} -.tf-ion-social-css3:before { - content: "\f4df"; -} -.tf-ion-social-designernews-outline:before { - content: "\f22a"; -} -.tf-ion-social-designernews:before { - content: "\f22b"; -} -.tf-ion-social-dribbble-outline:before { - content: "\f22c"; -} -.tf-ion-social-dribbble:before { - content: "\f22d"; -} -.tf-ion-social-dropbox-outline:before { - content: "\f22e"; -} -.tf-ion-social-dropbox:before { - content: "\f22f"; -} -.tf-ion-social-euro-outline:before { - content: "\f4e0"; -} -.tf-ion-social-euro:before { - content: "\f4e1"; -} -.tf-ion-social-facebook-outline:before { - content: "\f230"; -} -.tf-ion-social-facebook:before { - content: "\f231"; -} -.tf-ion-social-foursquare-outline:before { - content: "\f34c"; -} -.tf-ion-social-foursquare:before { - content: "\f34d"; -} -.tf-ion-social-freebsd-devil:before { - content: "\f2c4"; -} -.tf-ion-social-github-outline:before { - content: "\f232"; -} -.tf-ion-social-github:before { - content: "\f233"; -} -.tf-ion-social-google-outline:before { - content: "\f34e"; -} -.tf-ion-social-google:before { - content: "\f34f"; -} -.tf-ion-social-googleplus-outline:before { - content: "\f234"; -} -.tf-ion-social-googleplus:before { - content: "\f235"; -} -.tf-ion-social-hackernews-outline:before { - content: "\f236"; -} -.tf-ion-social-hackernews:before { - content: "\f237"; -} -.tf-ion-social-html5-outline:before { - content: "\f4e2"; -} -.tf-ion-social-html5:before { - content: "\f4e3"; -} -.tf-ion-social-instagram-outline:before { - content: "\f350"; -} -.tf-ion-social-instagram:before { - content: "\f351"; -} -.tf-ion-social-javascript-outline:before { - content: "\f4e4"; -} -.tf-ion-social-javascript:before { - content: "\f4e5"; -} -.tf-ion-social-linkedin-outline:before { - content: "\f238"; -} -.tf-ion-social-linkedin:before { - content: "\f239"; -} -.tf-ion-social-markdown:before { - content: "\f4e6"; -} -.tf-ion-social-nodejs:before { - content: "\f4e7"; -} -.tf-ion-social-octocat:before { - content: "\f4e8"; -} -.tf-ion-social-pinterest-outline:before { - content: "\f2b0"; -} -.tf-ion-social-pinterest:before { - content: "\f2b1"; -} -.tf-ion-social-python:before { - content: "\f4e9"; -} -.tf-ion-social-reddit-outline:before { - content: "\f23a"; -} -.tf-ion-social-reddit:before { - content: "\f23b"; -} -.tf-ion-social-rss-outline:before { - content: "\f23c"; -} -.tf-ion-social-rss:before { - content: "\f23d"; -} -.tf-ion-social-sass:before { - content: "\f4ea"; -} -.tf-ion-social-skype-outline:before { - content: "\f23e"; -} -.tf-ion-social-skype:before { - content: "\f23f"; -} -.tf-ion-social-snapchat-outline:before { - content: "\f4eb"; -} -.tf-ion-social-snapchat:before { - content: "\f4ec"; -} -.tf-ion-social-tumblr-outline:before { - content: "\f240"; -} -.tf-ion-social-tumblr:before { - content: "\f241"; -} -.tf-ion-social-tux:before { - content: "\f2c5"; -} -.tf-ion-social-twitch-outline:before { - content: "\f4ed"; -} -.tf-ion-social-twitch:before { - content: "\f4ee"; -} -.tf-ion-social-twitter-outline:before { - content: "\f242"; -} -.tf-ion-social-twitter:before { - content: "\f243"; -} -.tf-ion-social-usd-outline:before { - content: "\f352"; -} -.tf-ion-social-usd:before { - content: "\f353"; -} -.tf-ion-social-vimeo-outline:before { - content: "\f244"; -} -.tf-ion-social-vimeo:before { - content: "\f245"; -} -.tf-ion-social-whatsapp-outline:before { - content: "\f4ef"; -} -.tf-ion-social-whatsapp:before { - content: "\f4f0"; -} -.tf-ion-social-windows-outline:before { - content: "\f246"; -} -.tf-ion-social-windows:before { - content: "\f247"; -} -.tf-ion-social-wordpress-outline:before { - content: "\f248"; -} -.tf-ion-social-wordpress:before { - content: "\f249"; -} -.tf-ion-social-yahoo-outline:before { - content: "\f24a"; -} -.tf-ion-social-yahoo:before { - content: "\f24b"; -} -.tf-ion-social-yen-outline:before { - content: "\f4f1"; -} -.tf-ion-social-yen:before { - content: "\f4f2"; -} -.tf-ion-social-youtube-outline:before { - content: "\f24c"; -} -.tf-ion-social-youtube:before { - content: "\f24d"; -} -.tf-ion-soup-can-outline:before { - content: "\f4f3"; -} -.tf-ion-soup-can:before { - content: "\f4f4"; -} -.tf-ion-speakerphone:before { - content: "\f2b2"; -} -.tf-ion-speedometer:before { - content: "\f2b3"; -} -.tf-ion-spoon:before { - content: "\f2b4"; -} -.tf-ion-star:before { - content: "\f24e"; -} -.tf-ion-stats-bars:before { - content: "\f2b5"; -} -.tf-ion-steam:before { - content: "\f30b"; -} -.tf-ion-stop:before { - content: "\f24f"; -} -.tf-ion-thermometer:before { - content: "\f2b6"; -} -.tf-ion-thumbsdown:before { - content: "\f250"; -} -.tf-ion-thumbsup:before { - content: "\f251"; -} -.tf-ion-toggle-filled:before { - content: "\f354"; -} -.tf-ion-toggle:before { - content: "\f355"; -} -.tf-ion-transgender:before { - content: "\f4f5"; -} -.tf-ion-trash-a:before { - content: "\f252"; -} -.tf-ion-trash-b:before { - content: "\f253"; -} -.tf-ion-trophy:before { - content: "\f356"; -} -.tf-ion-tshirt-outline:before { - content: "\f4f6"; -} -.tf-ion-tshirt:before { - content: "\f4f7"; -} -.tf-ion-umbrella:before { - content: "\f2b7"; -} -.tf-ion-university:before { - content: "\f357"; -} -.tf-ion-unlocked:before { - content: "\f254"; -} -.tf-ion-upload:before { - content: "\f255"; -} -.tf-ion-usb:before { - content: "\f2b8"; -} -.tf-ion-videocamera:before { - content: "\f256"; -} -.tf-ion-volume-high:before { - content: "\f257"; -} -.tf-ion-volume-low:before { - content: "\f258"; -} -.tf-ion-volume-medium:before { - content: "\f259"; -} -.tf-ion-volume-mute:before { - content: "\f25a"; -} -.tf-ion-wand:before { - content: "\f358"; -} -.tf-ion-waterdrop:before { - content: "\f25b"; -} -.tf-ion-wifi:before { - content: "\f25c"; -} -.tf-ion-wineglass:before { - content: "\f2b9"; -} -.tf-ion-woman:before { - content: "\f25d"; -} -.tf-ion-wrench:before { - content: "\f2ba"; -} -.tf-ion-xbox:before { - content: "\f30c"; -} -.tf-mobile:before { - content: "\e000"; -} -.tf-laptop:before { - content: "\e001"; -} -.tf-desktop:before { - content: "\e002"; -} -.tf-phone2:before { - content: "\e004"; -} -.tf-document3:before { - content: "\e005"; -} -.tf-documents5:before { - content: "\e006"; -} -.tf-search3:before { - content: "\e007"; -} -.tf-clipboard4:before { - content: "\e008"; -} -.tf-newspaper:before { - content: "\e009"; -} -.tf-notebook9:before { - content: "\e00a"; -} -.tf-book-open:before { - content: "\e00b"; -} -.tf-browser:before { - content: "\e00c"; -} -.tf-calendar2:before { - content: "\e00d"; -} -.tf-presentation:before { - content: "\e00e"; -} -.tf-picture:before { - content: "\e00f"; -} -.tf-pictures:before { - content: "\e010"; -} -.tf-video:before { - content: "\e011"; -} -.tf-camera2:before { - content: "\e012"; -} -.tf-printer:before { - content: "\e013"; -} -.tf-toolbox:before { - content: "\e014"; -} -.tf-briefcase2:before { - content: "\e015"; -} -.tf-wallet:before { - content: "\e016"; -} -.tf-gift2:before { - content: "\e017"; -} -.tf-bargraph:before { - content: "\e018"; -} -.tf-grid:before { - content: "\e019"; -} -.tf-expand2:before { - content: "\e01a"; -} -.tf-focus:before { - content: "\e01b"; -} -.tf-edit:before { - content: "\e01c"; -} -.tf-ribbon:before { - content: "\e01e"; -} -.tf-adjustments:before { - content: "\e01d"; -} -.tf-hourglass:before { - content: "\e01f"; -} -.tf-lock2:before { - content: "\e020"; -} -.tf-megaphone:before { - content: "\e021"; -} -.tf-shield2:before { - content: "\e022"; -} -.tf-trophy6:before { - content: "\e023"; -} -.tf-flag2:before { - content: "\e024"; -} -.tf-map2:before { - content: "\e025"; -} -.tf-puzzle:before { - content: "\e026"; -} -.tf-basket:before { - content: "\e027"; -} -.tf-envelope2:before { - content: "\e028"; -} -.tf-streetsign:before { - content: "\e029"; -} -.tf-telescope:before { - content: "\e02a"; -} -.tf-gears:before { - content: "\e02b"; -} -.tf-key:before { - content: "\e02c"; -} -.tf-paperclip4:before { - content: "\e02d"; -} -.tf-attachment:before { - content: "\e02e"; -} -.tf-pricetags:before { - content: "\e02f"; -} -.tf-lightbulb:before { - content: "\e030"; -} -.tf-layers:before { - content: "\e031"; -} -.tf-pencil2:before { - content: "\e032"; -} -.tf-tools:before { - content: "\e033"; -} -.tf-tools-2:before { - content: "\e034"; -} -.tf-scissors2:before { - content: "\e035"; -} -.tf-paintbrush:before { - content: "\e036"; -} -.tf-magnifying-glass:before { - content: "\e037"; -} -.tf-circle-compass:before { - content: "\e038"; -} -.tf-linegraph:before { - content: "\e039"; -} -.tf-mic:before { - content: "\e03a"; -} -.tf-strategy:before { - content: "\e03b"; -} -.tf-beaker:before { - content: "\e03c"; -} -.tf-caution:before { - content: "\e03d"; -} -.tf-recycle2:before { - content: "\e03e"; -} -.tf-anchor2:before { - content: "\e03f"; -} -.tf-profile-male:before { - content: "\e040"; -} -.tf-profile-female:before { - content: "\e041"; -} -.tf-bike:before { - content: "\e042"; -} -.tf-wine:before { - content: "\e043"; -} -.tf-hotairballoon:before { - content: "\e044"; -} -.tf-globe:before { - content: "\e045"; -} -.tf-genius:before { - content: "\e046"; -} -.tf-map-pin:before { - content: "\e047"; -} -.tf-dial:before { - content: "\e048"; -} -.tf-chat:before { - content: "\e049"; -} -.tf-heart2:before { - content: "\e04a"; -} -.tf-upload2:before { - content: "\e04c"; -} -.tf-download2:before { - content: "\e04d"; -} -.tf-target3:before { - content: "\e04e"; -} -.tf-hazardous:before { - content: "\e04f"; -} -.tf-piechart:before { - content: "\e050"; -} -.tf-speedometer:before { - content: "\e051"; -} -.tf-global:before { - content: "\e052"; -} -.tf-compass:before { - content: "\e053"; -} -.tf-lifesaver:before { - content: "\e054"; -} -.tf-clock:before { - content: "\e055"; -} -.tf-aperture:before { - content: "\e056"; -} -.tf-quote:before { - content: "\e057"; -} -.tf-scope:before { - content: "\e058"; -} -.tf-alarmclock:before { - content: "\e059"; -} -.tf-refresh:before { - content: "\e05a"; -} -.tf-happy:before { - content: "\e05b"; -} -.tf-facebook:before { - content: "\e05d"; -} -.tf-twitter:before { - content: "\e05e"; -} -.tf-googleplus:before { - content: "\e05f"; -} -.tf-rss:before { - content: "\e060"; -} -.tf-tumblr:before { - content: "\e061"; -} -.tf-linkedin:before { - content: "\e062"; -} -.tf-dribbble:before { - content: "\e063"; -} - diff --git a/static/js/bootstrap.min.js b/static/js/bootstrap.min.js deleted file mode 100755 index 99eba8367..000000000 --- a/static/js/bootstrap.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(e,t){'object'==typeof exports&&'undefined'!=typeof module?module.exports=t():'function'==typeof define&&define.amd?define(t):e.Popper=t()})(this,function(){'use strict';function e(e){return e&&'[object Function]'==={}.toString.call(e)}function t(e,t){if(1!==e.nodeType)return[];var o=getComputedStyle(e,null);return t?o[t]:o}function o(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function n(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ownerDocument.body;case'#document':return e.body;}var i=t(e),r=i.overflow,p=i.overflowX,s=i.overflowY;return/(auto|scroll|overlay)/.test(r+s+p)?e:n(o(e))}function r(e){return 11===e?re:10===e?pe:re||pe}function p(e){if(!e)return document.documentElement;for(var o=r(10)?document.body:null,n=e.offsetParent;n===o&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var i=n&&n.nodeName;return i&&'BODY'!==i&&'HTML'!==i?-1!==['TD','TABLE'].indexOf(n.nodeName)&&'static'===t(n,'position')?p(n):n:e?e.ownerDocument.documentElement:document.documentElement}function s(e){var t=e.nodeName;return'BODY'!==t&&('HTML'===t||p(e.firstElementChild)===e)}function d(e){return null===e.parentNode?e:d(e.parentNode)}function a(e,t){if(!e||!e.nodeType||!t||!t.nodeType)return document.documentElement;var o=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,n=o?e:t,i=o?t:e,r=document.createRange();r.setStart(n,0),r.setEnd(i,0);var l=r.commonAncestorContainer;if(e!==l&&t!==l||n.contains(i))return s(l)?l:p(l);var f=d(e);return f.host?a(f.host,t):a(e,d(t).host)}function l(e){var t=1=o.clientWidth&&n>=o.clientHeight}),l=0a[e]&&!t.escapeWithReference&&(n=J(f[o],a[e]-('right'===e?f.width:f.height))),ae({},o,n)}};return l.forEach(function(e){var t=-1===['left','top'].indexOf(e)?'secondary':'primary';f=le({},f,m[t](e))}),e.offsets.popper=f,e},priority:['left','right','top','bottom'],padding:5,boundariesElement:'scrollParent'},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,o=t.popper,n=t.reference,i=e.placement.split('-')[0],r=Z,p=-1!==['top','bottom'].indexOf(i),s=p?'right':'bottom',d=p?'left':'top',a=p?'width':'height';return o[s]r(n[s])&&(e.offsets.popper[d]=r(n[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,o){var n;if(!q(e.instance.modifiers,'arrow','keepTogether'))return e;var i=o.element;if('string'==typeof i){if(i=e.instance.popper.querySelector(i),!i)return e;}else if(!e.instance.popper.contains(i))return console.warn('WARNING: `arrow.element` must be child of its popper element!'),e;var r=e.placement.split('-')[0],p=e.offsets,s=p.popper,d=p.reference,a=-1!==['left','right'].indexOf(r),l=a?'height':'width',f=a?'Top':'Left',m=f.toLowerCase(),h=a?'left':'top',c=a?'bottom':'right',u=S(i)[l];d[c]-us[c]&&(e.offsets.popper[m]+=d[m]+u-s[c]),e.offsets.popper=g(e.offsets.popper);var b=d[m]+d[l]/2-u/2,y=t(e.instance.popper),w=parseFloat(y['margin'+f],10),E=parseFloat(y['border'+f+'Width'],10),v=b-e.offsets.popper[m]-w-E;return v=$(J(s[l]-u,v),0),e.arrowElement=i,e.offsets.arrow=(n={},ae(n,m,Q(v)),ae(n,h,''),n),e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(W(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var o=v(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed),n=e.placement.split('-')[0],i=T(n),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case he.FLIP:p=[n,i];break;case he.CLOCKWISE:p=z(n);break;case he.COUNTERCLOCKWISE:p=z(n,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(n!==s||p.length===d+1)return e;n=e.placement.split('-')[0],i=T(n);var a=e.offsets.popper,l=e.offsets.reference,f=Z,m='left'===n&&f(a.right)>f(l.left)||'right'===n&&f(a.left)f(l.top)||'bottom'===n&&f(a.top)f(o.right),g=f(a.top)f(o.bottom),b='left'===n&&h||'right'===n&&c||'top'===n&&g||'bottom'===n&&u,y=-1!==['top','bottom'].indexOf(n),w=!!t.flipVariations&&(y&&'start'===r&&h||y&&'end'===r&&c||!y&&'start'===r&&g||!y&&'end'===r&&u);(m||b||w)&&(e.flipped=!0,(m||b)&&(n=p[d+1]),w&&(r=G(r)),e.placement=n+(r?'-'+r:''),e.offsets.popper=le({},e.offsets.popper,C(e.instance.popper,e.offsets.reference,e.placement)),e=P(e.instance.modifiers,e,'flip'))}),e},behavior:'flip',padding:5,boundariesElement:'viewport'},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,o=t.split('-')[0],n=e.offsets,i=n.popper,r=n.reference,p=-1!==['left','right'].indexOf(o),s=-1===['top','left'].indexOf(o);return i[p?'left':'top']=r[o]-(s?i[p?'width':'height']:0),e.placement=T(t),e.offsets.popper=g(i),e}},hide:{order:800,enabled:!0,fn:function(e){if(!q(e.instance.modifiers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=D(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottomo.right||t.top>o.bottom||t.rightthis._items.length-1||t<0))if(this._isSliding)P(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!(_e={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"}),selector:!(de={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"}),placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},pe="out",ve={HIDE:"hide"+he,HIDDEN:"hidden"+he,SHOW:(me="show")+he,SHOWN:"shown"+he,INSERTED:"inserted"+he,CLICK:"click"+he,FOCUSIN:"focusin"+he,FOCUSOUT:"focusout"+he,MOUSEENTER:"mouseenter"+he,MOUSELEAVE:"mouseleave"+he},Ee="fade",ye="show",Te=".tooltip-inner",Ce=".arrow",Ie="hover",Ae="focus",De="click",be="manual",Se=function(){function i(t,e){if("undefined"==typeof c)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=oe(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),oe(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(oe(this.getTipElement()).hasClass(ye))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),oe.removeData(this.element,this.constructor.DATA_KEY),oe(this.element).off(this.constructor.EVENT_KEY),oe(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&oe(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===oe(this.element).css("display"))throw new Error("Please use show on visible elements");var t=oe.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){oe(this.element).trigger(t);var n=oe.contains(this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!n)return;var i=this.getTipElement(),r=Cn.getUID(this.constructor.NAME);i.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&oe(i).addClass(Ee);var s="function"==typeof this.config.placement?this.config.placement.call(this,i,this.element):this.config.placement,o=this._getAttachment(s);this.addAttachmentClass(o);var a=!1===this.config.container?document.body:oe(this.config.container);oe(i).data(this.constructor.DATA_KEY,this),oe.contains(this.element.ownerDocument.documentElement,this.tip)||oe(i).appendTo(a),oe(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new c(this.element,i,{placement:o,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:Ce},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),oe(i).addClass(ye),"ontouchstart"in document.documentElement&&oe(document.body).children().on("mouseover",null,oe.noop);var l=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,oe(e.element).trigger(e.constructor.Event.SHOWN),t===pe&&e._leave(null,e)};if(oe(this.tip).hasClass(Ee)){var h=Cn.getTransitionDurationFromElement(this.tip);oe(this.tip).one(Cn.TRANSITION_END,l).emulateTransitionEnd(h)}else l()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=oe.Event(this.constructor.Event.HIDE),r=function(){e._hoverState!==me&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),oe(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(oe(this.element).trigger(i),!i.isDefaultPrevented()){if(oe(n).removeClass(ye),"ontouchstart"in document.documentElement&&oe(document.body).children().off("mouseover",null,oe.noop),this._activeTrigger[De]=!1,this._activeTrigger[Ae]=!1,this._activeTrigger[Ie]=!1,oe(this.tip).hasClass(Ee)){var s=Cn.getTransitionDurationFromElement(n);oe(n).one(Cn.TRANSITION_END,r).emulateTransitionEnd(s)}else r();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){oe(this.getTipElement()).addClass(ue+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||oe(this.config.template)[0],this.tip},t.setContent=function(){var t=oe(this.getTipElement());this.setElementContent(t.find(Te),this.getTitle()),t.removeClass(Ee+" "+ye)},t.setElementContent=function(t,e){var n=this.config.html;"object"==typeof e&&(e.nodeType||e.jquery)?n?oe(e).parent().is(t)||t.empty().append(e):t.text(oe(e).text()):t[n?"html":"text"](e)},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getAttachment=function(t){return _e[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)oe(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==be){var e=t===Ie?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===Ie?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;oe(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}oe(i.element).closest(".modal").on("hide.bs.modal",function(){return i.hide()})}),this.config.selector?this.config=h({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||oe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),oe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Ae:Ie]=!0),oe(e.getTipElement()).hasClass(ye)||e._hoverState===me?e._hoverState=me:(clearTimeout(e._timeout),e._hoverState=me,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===me&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||oe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),oe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Ae:Ie]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=pe,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===pe&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){return"number"==typeof(t=h({},this.constructor.Default,oe(this.element).data(),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),Cn.typeCheckConfig(ae,t,this.constructor.DefaultType),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=oe(this.getTipElement()),e=t.attr("class").match(fe);null!==e&&0

'}),He=h({},Nn.DefaultType,{content:"(string|element|function)"}),We="fade",xe=".popover-header",Ue=".popover-body",Ke={HIDE:"hide"+ke,HIDDEN:"hidden"+ke,SHOW:(Me="show")+ke,SHOWN:"shown"+ke,INSERTED:"inserted"+ke,CLICK:"click"+ke,FOCUSIN:"focusin"+ke,FOCUSOUT:"focusout"+ke,MOUSEENTER:"mouseenter"+ke,MOUSELEAVE:"mouseleave"+ke},Fe=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var r=i.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){we(this.getTipElement()).addClass(Le+"-"+t)},r.getTipElement=function(){return this.tip=this.tip||we(this.config.template)[0],this.tip},r.setContent=function(){var t=we(this.getTipElement());this.setElementContent(t.find(xe),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(Ue),e),t.removeClass(We+" "+Me)},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=we(this.getTipElement()),e=t.attr("class").match(je);null!==e&&0=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||ta?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b) -},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); \ No newline at end of file diff --git a/static/plugins/bootstrap/bootstrap.min.css b/static/plugins/bootstrap/bootstrap.min.css new file mode 100644 index 000000000..f11897f8d --- /dev/null +++ b/static/plugins/bootstrap/bootstrap.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap v4.5.0 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} \ No newline at end of file diff --git a/static/plugins/bootstrap/bootstrap.min.js b/static/plugins/bootstrap/bootstrap.min.js new file mode 100644 index 000000000..a33a89dd8 --- /dev/null +++ b/static/plugins/bootstrap/bootstrap.min.js @@ -0,0 +1,6 @@ +/*! + * Bootstrap v4.5.0 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t=t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};c.jQueryDetection(),e.fn.emulateTransitionEnd=l,e.event.special[c.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var h="alert",u=e.fn[h],d=function(){function t(t){this._element=t}var n=t.prototype;return n.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},n.dispose=function(){e.removeData(this._element,"bs.alert"),this._element=null},n._getRootElement=function(t){var n=c.getSelectorFromElement(t),i=!1;return n&&(i=document.querySelector(n)),i||(i=e(t).closest(".alert")[0]),i},n._triggerCloseEvent=function(t){var n=e.Event("close.bs.alert");return e(t).trigger(n),n},n._removeElement=function(t){var n=this;if(e(t).removeClass("show"),e(t).hasClass("fade")){var i=c.getTransitionDurationFromElement(t);e(t).one(c.TRANSITION_END,(function(e){return n._destroyElement(t,e)})).emulateTransitionEnd(i)}else this._destroyElement(t)},n._destroyElement=function(t){e(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.alert");o||(o=new t(this),i.data("bs.alert",o)),"close"===n&&o[n](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},o(t,null,[{key:"VERSION",get:function(){return"4.5.0"}}]),t}();e(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',d._handleDismiss(new d)),e.fn[h]=d._jQueryInterface,e.fn[h].Constructor=d,e.fn[h].noConflict=function(){return e.fn[h]=u,d._jQueryInterface};var f=e.fn.button,g=function(){function t(t){this._element=t}var n=t.prototype;return n.toggle=function(){var t=!0,n=!0,i=e(this._element).closest('[data-toggle="buttons"]')[0];if(i){var o=this._element.querySelector('input:not([type="hidden"])');if(o){if("radio"===o.type)if(o.checked&&this._element.classList.contains("active"))t=!1;else{var s=i.querySelector(".active");s&&e(s).removeClass("active")}t&&("checkbox"!==o.type&&"radio"!==o.type||(o.checked=!this._element.classList.contains("active")),e(o).trigger("change")),o.focus(),n=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(n&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),t&&e(this._element).toggleClass("active"))},n.dispose=function(){e.removeData(this._element,"bs.button"),this._element=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.button");i||(i=new t(this),e(this).data("bs.button",i)),"toggle"===n&&i[n]()}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.0"}}]),t}();e(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=t.target,i=n;if(e(n).hasClass("btn")||(n=e(n).closest(".btn")[0]),!n||n.hasAttribute("disabled")||n.classList.contains("disabled"))t.preventDefault();else{var o=n.querySelector('input:not([type="hidden"])');if(o&&(o.hasAttribute("disabled")||o.classList.contains("disabled")))return void t.preventDefault();"LABEL"===i.tagName&&o&&"checkbox"===o.type&&t.preventDefault(),g._jQueryInterface.call(e(n),"toggle")}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=e(t.target).closest(".btn")[0];e(n).toggleClass("focus",/^focus(in)?$/.test(t.type))})),e(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var n=t.prototype;return n.next=function(){this._isSliding||this._slide("next")},n.nextWhenVisible=function(){!document.hidden&&e(this._element).is(":visible")&&"hidden"!==e(this._element).css("visibility")&&this.next()},n.prev=function(){this._isSliding||this._slide("prev")},n.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(c.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},n.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},n.to=function(t){var n=this;this._activeElement=this._element.querySelector(".active.carousel-item");var i=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)e(this._element).one("slid.bs.carousel",(function(){return n.to(t)}));else{if(i===t)return this.pause(),void this.cycle();var o=t>i?"next":"prev";this._slide(o,this._items[t])}},n.dispose=function(){e(this._element).off(p),e.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},n._getConfig=function(t){return t=a(a({},v),t),c.typeCheckConfig(m,t,b),t},n._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},n._addEventListeners=function(){var t=this;this._config.keyboard&&e(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&e(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},n._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var n=function(e){t._pointerEvent&&y[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},i=function(e){t._pointerEvent&&y[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};e(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(e(this._element).on("pointerdown.bs.carousel",(function(t){return n(t)})),e(this._element).on("pointerup.bs.carousel",(function(t){return i(t)})),this._element.classList.add("pointer-event")):(e(this._element).on("touchstart.bs.carousel",(function(t){return n(t)})),e(this._element).on("touchmove.bs.carousel",(function(e){return function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),e(this._element).on("touchend.bs.carousel",(function(t){return i(t)})))}},n._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},n._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},n._getItemByDirection=function(t,e){var n="next"===t,i="prev"===t,o=this._getItemIndex(e),s=this._items.length-1;if((i&&0===o||n&&o===s)&&!this._config.wrap)return e;var r=(o+("prev"===t?-1:1))%this._items.length;return-1===r?this._items[this._items.length-1]:this._items[r]},n._triggerSlideEvent=function(t,n){var i=this._getItemIndex(t),o=this._getItemIndex(this._element.querySelector(".active.carousel-item")),s=e.Event("slide.bs.carousel",{relatedTarget:t,direction:n,from:o,to:i});return e(this._element).trigger(s),s},n._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var n=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));e(n).removeClass("active");var i=this._indicatorsElement.children[this._getItemIndex(t)];i&&e(i).addClass("active")}},n._slide=function(t,n){var i,o,s,r=this,a=this._element.querySelector(".active.carousel-item"),l=this._getItemIndex(a),h=n||a&&this._getItemByDirection(t,a),u=this._getItemIndex(h),d=Boolean(this._interval);if("next"===t?(i="carousel-item-left",o="carousel-item-next",s="left"):(i="carousel-item-right",o="carousel-item-prev",s="right"),h&&e(h).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(h,s).isDefaultPrevented()&&a&&h){this._isSliding=!0,d&&this.pause(),this._setActiveIndicatorElement(h);var f=e.Event("slid.bs.carousel",{relatedTarget:h,direction:s,from:l,to:u});if(e(this._element).hasClass("slide")){e(h).addClass(o),c.reflow(h),e(a).addClass(i),e(h).addClass(i);var g=parseInt(h.getAttribute("data-interval"),10);g?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=g):this._config.interval=this._config.defaultInterval||this._config.interval;var m=c.getTransitionDurationFromElement(a);e(a).one(c.TRANSITION_END,(function(){e(h).removeClass(i+" "+o).addClass("active"),e(a).removeClass("active "+o+" "+i),r._isSliding=!1,setTimeout((function(){return e(r._element).trigger(f)}),0)})).emulateTransitionEnd(m)}else e(a).removeClass("active"),e(h).addClass("active"),this._isSliding=!1,e(this._element).trigger(f);d&&this.cycle()}},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.carousel"),o=a(a({},v),e(this).data());"object"==typeof n&&(o=a(a({},o),n));var s="string"==typeof n?n:o.slide;if(i||(i=new t(this,o),e(this).data("bs.carousel",i)),"number"==typeof n)i.to(n);else if("string"==typeof s){if("undefined"==typeof i[s])throw new TypeError('No method named "'+s+'"');i[s]()}else o.interval&&o.ride&&(i.pause(),i.cycle())}))},t._dataApiClickHandler=function(n){var i=c.getSelectorFromElement(this);if(i){var o=e(i)[0];if(o&&e(o).hasClass("carousel")){var s=a(a({},e(o).data()),e(this).data()),r=this.getAttribute("data-slide-to");r&&(s.interval=!1),t._jQueryInterface.call(e(o),s),r&&e(o).data("bs.carousel").to(r),n.preventDefault()}}},o(t,null,[{key:"VERSION",get:function(){return"4.5.0"}},{key:"Default",get:function(){return v}}]),t}();e(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",E._dataApiClickHandler),e(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),n=0,i=t.length;n0&&(this._selector=r,this._triggerArray.push(s))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var n=t.prototype;return n.toggle=function(){e(this._element).hasClass("show")?this.hide():this.show()},n.show=function(){var n,i,o=this;if(!this._isTransitioning&&!e(this._element).hasClass("show")&&(this._parent&&0===(n=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof o._config.parent?t.getAttribute("data-parent")===o._config.parent:t.classList.contains("collapse")}))).length&&(n=null),!(n&&(i=e(n).not(this._selector).data("bs.collapse"))&&i._isTransitioning))){var s=e.Event("show.bs.collapse");if(e(this._element).trigger(s),!s.isDefaultPrevented()){n&&(t._jQueryInterface.call(e(n).not(this._selector),"hide"),i||e(n).data("bs.collapse",null));var r=this._getDimension();e(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[r]=0,this._triggerArray.length&&e(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var a="scroll"+(r[0].toUpperCase()+r.slice(1)),l=c.getTransitionDurationFromElement(this._element);e(this._element).one(c.TRANSITION_END,(function(){e(o._element).removeClass("collapsing").addClass("collapse show"),o._element.style[r]="",o.setTransitioning(!1),e(o._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(l),this._element.style[r]=this._element[a]+"px"}}},n.hide=function(){var t=this;if(!this._isTransitioning&&e(this._element).hasClass("show")){var n=e.Event("hide.bs.collapse");if(e(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",c.reflow(this._element),e(this._element).addClass("collapsing").removeClass("collapse show");var o=this._triggerArray.length;if(o>0)for(var s=0;s0},i._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=a(a({},e.offsets),t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},i._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),a(a({},t),this._config.popperConfig)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.dropdown");if(i||(i=new t(this,"object"==typeof n?n:null),e(this).data("bs.dropdown",i)),"string"==typeof n){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},t._clearMenus=function(n){if(!n||3!==n.which&&("keyup"!==n.type||9===n.which))for(var i=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),o=0,s=i.length;o0&&r--,40===n.which&&rdocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},n._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},n._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:F,popperConfig:null},Y={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},$=function(){function t(t,e){if("undefined"==typeof n)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var i=t.prototype;return i.enable=function(){this._isEnabled=!0},i.disable=function(){this._isEnabled=!1},i.toggleEnabled=function(){this._isEnabled=!this._isEnabled},i.toggle=function(t){if(this._isEnabled)if(t){var n=this.constructor.DATA_KEY,i=e(t.currentTarget).data(n);i||(i=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(e(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},i.dispose=function(){clearTimeout(this._timeout),e.removeData(this.element,this.constructor.DATA_KEY),e(this.element).off(this.constructor.EVENT_KEY),e(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&e(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},i.show=function(){var t=this;if("none"===e(this.element).css("display"))throw new Error("Please use show on visible elements");var i=e.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){e(this.element).trigger(i);var o=c.findShadowRoot(this.element),s=e.contains(null!==o?o:this.element.ownerDocument.documentElement,this.element);if(i.isDefaultPrevented()||!s)return;var r=this.getTipElement(),a=c.getUID(this.constructor.NAME);r.setAttribute("id",a),this.element.setAttribute("aria-describedby",a),this.setContent(),this.config.animation&&e(r).addClass("fade");var l="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,h=this._getAttachment(l);this.addAttachmentClass(h);var u=this._getContainer();e(r).data(this.constructor.DATA_KEY,this),e.contains(this.element.ownerDocument.documentElement,this.tip)||e(r).appendTo(u),e(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,r,this._getPopperConfig(h)),e(r).addClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().on("mouseover",null,e.noop);var d=function(){t.config.animation&&t._fixTransition();var n=t._hoverState;t._hoverState=null,e(t.element).trigger(t.constructor.Event.SHOWN),"out"===n&&t._leave(null,t)};if(e(this.tip).hasClass("fade")){var f=c.getTransitionDurationFromElement(this.tip);e(this.tip).one(c.TRANSITION_END,d).emulateTransitionEnd(f)}else d()}},i.hide=function(t){var n=this,i=this.getTipElement(),o=e.Event(this.constructor.Event.HIDE),s=function(){"show"!==n._hoverState&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),e(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),t&&t()};if(e(this.element).trigger(o),!o.isDefaultPrevented()){if(e(i).removeClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().off("mouseover",null,e.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,e(this.tip).hasClass("fade")){var r=c.getTransitionDurationFromElement(i);e(i).one(c.TRANSITION_END,s).emulateTransitionEnd(r)}else s();this._hoverState=""}},i.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},i.isWithContent=function(){return Boolean(this.getTitle())},i.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-tooltip-"+t)},i.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},i.setContent=function(){var t=this.getTipElement();this.setElementContent(e(t.querySelectorAll(".tooltip-inner")),this.getTitle()),e(t).removeClass("fade show")},i.setElementContent=function(t,n){"object"!=typeof n||!n.nodeType&&!n.jquery?this.config.html?(this.config.sanitize&&(n=H(n,this.config.whiteList,this.config.sanitizeFn)),t.html(n)):t.text(n):this.config.html?e(n).parent().is(t)||t.empty().append(n):t.text(e(n).text())},i.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},i._getPopperConfig=function(t){var e=this;return a(a({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),this.config.popperConfig)},i._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=a(a({},e.offsets),t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},i._getContainer=function(){return!1===this.config.container?document.body:c.isElement(this.config.container)?e(this.config.container):e(document).find(this.config.container)},i._getAttachment=function(t){return K[t.toUpperCase()]},i._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(n){if("click"===n)e(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==n){var i="hover"===n?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,o="hover"===n?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;e(t.element).on(i,t.config.selector,(function(e){return t._enter(e)})).on(o,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},e(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=a(a({},this.config),{},{trigger:"manual",selector:""}):this._fixTitle()},i._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},i._enter=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e(n.getTipElement()).hasClass("show")||"show"===n._hoverState?n._hoverState="show":(clearTimeout(n._timeout),n._hoverState="show",n.config.delay&&n.config.delay.show?n._timeout=setTimeout((function(){"show"===n._hoverState&&n.show()}),n.config.delay.show):n.show())},i._leave=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusout"===t.type?"focus":"hover"]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState="out",n.config.delay&&n.config.delay.hide?n._timeout=setTimeout((function(){"out"===n._hoverState&&n.hide()}),n.config.delay.hide):n.hide())},i._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},i._getConfig=function(t){var n=e(this.element).data();return Object.keys(n).forEach((function(t){-1!==V.indexOf(t)&&delete n[t]})),"number"==typeof(t=a(a(a({},this.constructor.Default),n),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),c.typeCheckConfig(U,t,this.constructor.DefaultType),t.sanitize&&(t.template=H(t.template,t.whiteList,t.sanitizeFn)),t},i._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},i._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(W);null!==n&&n.length&&t.removeClass(n.join(""))},i._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},i._fixTransition=function(){var t=this.getTipElement(),n=this.config.animation;null===t.getAttribute("x-placement")&&(e(t).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.tooltip"),o="object"==typeof n&&n;if((i||!/dispose|hide/.test(n))&&(i||(i=new t(this,o),e(this).data("bs.tooltip",i)),"string"==typeof n)){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.0"}},{key:"Default",get:function(){return X}},{key:"NAME",get:function(){return U}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return Y}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return z}}]),t}();e.fn[U]=$._jQueryInterface,e.fn[U].Constructor=$,e.fn[U].noConflict=function(){return e.fn[U]=M,$._jQueryInterface};var J="popover",G=e.fn[J],Z=new RegExp("(^|\\s)bs-popover\\S+","g"),tt=a(a({},$.Default),{},{placement:"right",trigger:"click",content:"",template:''}),et=a(a({},$.DefaultType),{},{content:"(string|element|function)"}),nt={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},it=function(t){var n,i;function s(){return t.apply(this,arguments)||this}i=t,(n=s).prototype=Object.create(i.prototype),n.prototype.constructor=n,n.__proto__=i;var r=s.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-popover-"+t)},r.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},r.setContent=function(){var t=e(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(t.find(".popover-body"),n),t.removeClass("fade show")},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(Z);null!==n&&n.length>0&&t.removeClass(n.join(""))},s._jQueryInterface=function(t){return this.each((function(){var n=e(this).data("bs.popover"),i="object"==typeof t?t:null;if((n||!/dispose|hide/.test(t))&&(n||(n=new s(this,i),e(this).data("bs.popover",n)),"string"==typeof t)){if("undefined"==typeof n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},o(s,null,[{key:"VERSION",get:function(){return"4.5.0"}},{key:"Default",get:function(){return tt}},{key:"NAME",get:function(){return J}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return nt}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return et}}]),s}($);e.fn[J]=it._jQueryInterface,e.fn[J].Constructor=it,e.fn[J].noConflict=function(){return e.fn[J]=G,it._jQueryInterface};var ot="scrollspy",st=e.fn[ot],rt={offset:10,method:"auto",target:""},at={offset:"number",method:"string",target:"(string|element)"},lt=function(){function t(t,n){var i=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(n),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,e(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return i._process(t)})),this.refresh(),this._process()}var n=t.prototype;return n.refresh=function(){var t=this,n=this._scrollElement===this._scrollElement.window?"offset":"position",i="auto"===this._config.method?n:this._config.method,o="position"===i?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var n,s=c.getSelectorFromElement(t);if(s&&(n=document.querySelector(s)),n){var r=n.getBoundingClientRect();if(r.width||r.height)return[e(n)[i]().top+o,s]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},n.dispose=function(){e.removeData(this._element,"bs.scrollspy"),e(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},n._getConfig=function(t){if("string"!=typeof(t=a(a({},rt),"object"==typeof t&&t?t:{})).target&&c.isElement(t.target)){var n=e(t.target).attr("id");n||(n=c.getUID(ot),e(t.target).attr("id",n)),t.target="#"+n}return c.typeCheckConfig(ot,t,at),t},n._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},n._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},n._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},n._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active":".active";i=(i=e.makeArray(e(o).find(r)))[i.length-1]}var a=e.Event("hide.bs.tab",{relatedTarget:this._element}),l=e.Event("show.bs.tab",{relatedTarget:i});if(i&&e(i).trigger(a),e(this._element).trigger(l),!l.isDefaultPrevented()&&!a.isDefaultPrevented()){s&&(n=document.querySelector(s)),this._activate(this._element,o);var h=function(){var n=e.Event("hidden.bs.tab",{relatedTarget:t._element}),o=e.Event("shown.bs.tab",{relatedTarget:i});e(i).trigger(n),e(t._element).trigger(o)};n?this._activate(n,n.parentNode,h):h()}}},n.dispose=function(){e.removeData(this._element,"bs.tab"),this._element=null},n._activate=function(t,n,i){var o=this,s=(!n||"UL"!==n.nodeName&&"OL"!==n.nodeName?e(n).children(".active"):e(n).find("> li > .active"))[0],r=i&&s&&e(s).hasClass("fade"),a=function(){return o._transitionComplete(t,s,i)};if(s&&r){var l=c.getTransitionDurationFromElement(s);e(s).removeClass("show").one(c.TRANSITION_END,a).emulateTransitionEnd(l)}else a()},n._transitionComplete=function(t,n,i){if(n){e(n).removeClass("active");var o=e(n.parentNode).find("> .dropdown-menu .active")[0];o&&e(o).removeClass("active"),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(e(t).addClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),c.reflow(t),t.classList.contains("fade")&&t.classList.add("show"),t.parentNode&&e(t.parentNode).hasClass("dropdown-menu")){var s=e(t).closest(".dropdown")[0];if(s){var r=[].slice.call(s.querySelectorAll(".dropdown-toggle"));e(r).addClass("active")}t.setAttribute("aria-expanded",!0)}i&&i()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.tab");if(o||(o=new t(this),i.data("bs.tab",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.0"}}]),t}();e(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ht._jQueryInterface.call(e(this),"show")})),e.fn.tab=ht._jQueryInterface,e.fn.tab.Constructor=ht,e.fn.tab.noConflict=function(){return e.fn.tab=ct,ht._jQueryInterface};var ut=e.fn.toast,dt={animation:"boolean",autohide:"boolean",delay:"number"},ft={animation:!0,autohide:!0,delay:500},gt=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var n=t.prototype;return n.show=function(){var t=this,n=e.Event("show.bs.toast");if(e(this._element).trigger(n),!n.isDefaultPrevented()){this._config.animation&&this._element.classList.add("fade");var i=function(){t._element.classList.remove("showing"),t._element.classList.add("show"),e(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove("hide"),c.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var o=c.getTransitionDurationFromElement(this._element);e(this._element).one(c.TRANSITION_END,i).emulateTransitionEnd(o)}else i()}},n.hide=function(){if(this._element.classList.contains("show")){var t=e.Event("hide.bs.toast");e(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},n.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains("show")&&this._element.classList.remove("show"),e(this._element).off("click.dismiss.bs.toast"),e.removeData(this._element,"bs.toast"),this._element=null,this._config=null},n._getConfig=function(t){return t=a(a(a({},ft),e(this._element).data()),"object"==typeof t&&t?t:{}),c.typeCheckConfig("toast",t,this.constructor.DefaultType),t},n._setListeners=function(){var t=this;e(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return t.hide()}))},n._close=function(){var t=this,n=function(){t._element.classList.add("hide"),e(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var i=c.getTransitionDurationFromElement(this._element);e(this._element).one(c.TRANSITION_END,n).emulateTransitionEnd(i)}else n()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.toast");if(o||(o=new t(this,"object"==typeof n&&n),i.data("bs.toast",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n](this)}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.0"}},{key:"DefaultType",get:function(){return dt}},{key:"Default",get:function(){return ft}}]),t}();e.fn.toast=gt._jQueryInterface,e.fn.toast.Constructor=gt,e.fn.toast.noConflict=function(){return e.fn.toast=ut,gt._jQueryInterface},t.Alert=d,t.Button=g,t.Carousel=E,t.Collapse=D,t.Dropdown=j,t.Modal=R,t.Popover=it,t.Scrollspy=lt,t.Tab=ht,t.Toast=gt,t.Tooltip=$,t.Util=c,Object.defineProperty(t,"__esModule",{value:!0})})); \ No newline at end of file diff --git a/static/plugins/jquery/jquery.js b/static/plugins/jquery/jquery.js new file mode 100644 index 000000000..07c00cd22 --- /dev/null +++ b/static/plugins/jquery/jquery.js @@ -0,0 +1,2 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0 + + + + + Themefisher Font Demo + + + + + + + + + + +
+

Font Name: themefisher-font (Glyphs: 830)

+
+
+

Grid Size: Unknown

+
+
+ + + + tf-ion-alert-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-add-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-alarm-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-apps +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-back +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropdown-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropdown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropleft-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropleft +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropright-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropright +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropup-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-dropup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-attach +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-bicycle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-boat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-bulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-call +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-cancel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-car +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-chat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-checkbox-blank +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-checkbox-outline-blank +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-checkbox-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-checkbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-checkmark-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-cloud-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-cloud-done +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-cloud-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-color-palette +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-contact +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-contacts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-contract +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-create +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-delete +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-desktop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-done-all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-done +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-drafts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-exit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-expand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-favorite-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-favorite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-film +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-folder-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-funnel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-globe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-hand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-hangout +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-image +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-locate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-mail +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-microphone-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-microphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-more-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-more-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-navigate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-notifications-none +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-notifications-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-notifications +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-options +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-person-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-phone-landscape +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-phone-portrait +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-plane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-playstore +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-print +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-radio-button-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-radio-button-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-remove-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-restaurant +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-sad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-send +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-share-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-star-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-star-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-stopwatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-subway +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-sunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-sync +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-textsms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-train +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-unlock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-volume-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-volume-mute +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-volume-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-volume-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-walk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-warning +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-watch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-android-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-aperture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-down-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-down-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-down-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-expand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-graph-down-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-graph-down-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-graph-up-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-graph-up-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-left-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-left-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-left-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-move +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-resize +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-return-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-return-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-right-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-right-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-right-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-shrink +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-swap +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-up-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-up-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-arrow-up-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-asterisk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-at +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-backspace-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-backspace +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-bag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-battery-charging +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-battery-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-battery-full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-battery-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-battery-low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-beaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-beer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-bonfire +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-bowtie +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-bug +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-card +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-cash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chatbox-working +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chatbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chatboxes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chatbubble-working +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chatbubble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chatbubbles +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-checkmark-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-checkmark-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-checkmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chevron-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chevron-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chevron-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-chevron-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-close-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-close-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-closed-captioning +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-code-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-code-working +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-code +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-coffee +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-compose +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-connection-bars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-contrast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-crop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-cube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-disc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-document-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-drag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-earth +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-easel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-egg +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-eject +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-email-unread +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-email +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-erlenmeyer-flask-bubbles +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-erlenmeyer-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-eye-disabled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-female +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-filing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-film-marker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-fireball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-flame +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-flash-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-flash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-fork-repo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-fork +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-funnel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-gear-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-gear-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-hammer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-happy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-headphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-heart-broken +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-help-buoy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-help-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-help +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-icecream +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-image +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-images +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-information-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ionic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-alarm-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-alarm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-albums-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-albums +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-americanfootball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-americanfootball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-analytics-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-analytics +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-back +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-thin-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-thin-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-thin-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-thin-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-at-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-at +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-barcode-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-baseball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-baseball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-basketball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-basketball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-bell-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-bell +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-body-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-body +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-bolt-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-bolt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-book-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-bookmarks-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-bookmarks +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-box-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-box +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-briefcase-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-browsers-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-browsers +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-calculator-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-calendar-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-camera-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cart-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-chatboxes-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-chatboxes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-chatbubble-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-chatbubble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-checkmark-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-checkmark-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-checkmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-circle-filled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-circle-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-clock-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-close-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-close-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloud-download-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloud-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloud-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloud-upload-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloud-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloudy-night-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloudy-night +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloudy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cloudy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cog-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-cog +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-color-filter-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-color-filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-color-wand-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-color-wand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-compose-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-compose +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-contact-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-contact +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-copy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-crop-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-crop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-download-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-drag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-email-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-email +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-eye-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-fastforward-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-fastforward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-filing-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-filing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-film-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-film +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flag-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flame-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flame +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flask-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flower-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-flower +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-folder-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-football-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-football +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-game-controller-a-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-game-controller-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-game-controller-b-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-game-controller-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-gear-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-gear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-glasses-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-glasses +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-grid-view-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-grid-view +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-heart-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-help-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-help-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-help +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-home-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-infinite-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-infinite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-information-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-information-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-ionic-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-keypad-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-keypad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-lightbulb-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-lightbulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-list-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-location-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-locked-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-locked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-loop-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-medical-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-medical +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-medkit-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-medkit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-mic-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-mic-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-mic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-minus-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-minus-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-monitor-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-monitor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-moon-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-moon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-more-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-musical-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-musical-notes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-navigate-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-navigate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-nutrition-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-nutrition +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-paper-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-paper +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-paperplane-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-paperplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-partlysunny-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-partlysunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pause-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pause +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-paw-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-paw +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-people-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-person-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-personadd-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-personadd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-photos-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-photos +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pie-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pie +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pint-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-play-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-plus-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-plus-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pricetag-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pricetag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pricetags-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pricetags +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-printer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pulse-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-pulse +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-rainy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-rainy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-recording-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-recording +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-redo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-redo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-refresh-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-refresh-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-reload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-reverse-camera-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-reverse-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-rewind-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-rewind +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-rose-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-rose +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-search-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-settings-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-shuffle-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-shuffle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-skipbackward-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-skipbackward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-skipforward-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-skipforward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-snowy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-speedometer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-speedometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-star-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-star-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-stopwatch-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-stopwatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-sunny-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-sunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-telephone-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-telephone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-tennisball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-tennisball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-thunderstorm-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-thunderstorm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-time-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-timer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-toggle-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-toggle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-trash-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-undo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-undo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-unlocked-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-unlocked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-upload-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-videocam-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-videocam +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-volume-high +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-volume-low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-wineglass-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-wineglass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-world-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ios-world +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ipad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-iphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ipod +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-jet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-knife +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-leaf +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-levels +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-lightbulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-link +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-load-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-load-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-load-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-load-d +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-lock-combination +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-locked +
+
+ + +
+
+ liga: + +
+
+
+
+ + tf-ion-log-in +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-log-out +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-magnet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-male +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-man +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-medkit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-merge +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-mic-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-mic-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-mic-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-minus-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-minus-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-model-s +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-monitor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-music-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-navicon-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-navicon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-navigate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-network +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-no-smoking +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-nuclear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-outlet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-paintbrush +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-paintbucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-paper-airplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-paperclip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pause +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-person-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-person-stalker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pie-graph +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pinpoint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pizza +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-plane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-planet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-playstation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-plus-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-plus-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-podium +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pound +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-power +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pricetag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pricetags +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-pull-request +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-qr-scanner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-quote +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-radio-waves +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-record +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-reply-all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-reply +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ribbon-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-ribbon-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-sad-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-sad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-scissors +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-shuffle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-skip-backward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-skip-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-android-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-android +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-angular-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-angular +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-apple-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-apple +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-bitcoin-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-bitcoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-buffer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-buffer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-chrome-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-chrome +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-codepen-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-codepen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-css3-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-css3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-designernews-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-designernews +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-dribbble-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-dribbble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-dropbox-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-dropbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-euro-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-euro +
+
+ + +
+
+ liga: + +
+
+
+
+ + tf-ion-social-facebook-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + tf-ion-social-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-foursquare-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-foursquare +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-freebsd-devil +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-github-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-github +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-google-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-google +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-googleplus-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-googleplus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-hackernews-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-hackernews +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-html5-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-html5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-instagram-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-instagram +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-javascript-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-javascript +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-linkedin-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-linkedin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-markdown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-nodejs +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-octocat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-pinterest-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-pinterest +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-python +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-reddit-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-reddit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-rss-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-rss +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-sass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-skype-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-skype +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-snapchat-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-snapchat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-tumblr-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-tumblr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-tux +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-twitch-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-twitch +
+
+ + +
+
+ liga: + +
+
+
+
+ + tf-ion-social-twitter-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + tf-ion-social-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-usd-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-usd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-vimeo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-vimeo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-whatsapp-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-whatsapp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-windows-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-windows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-wordpress-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-wordpress +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-yahoo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-yahoo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-yen-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-yen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-youtube-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-social-youtube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-soup-can-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-soup-can +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-speakerphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-speedometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-spoon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-stats-bars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-steam +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-stop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-thermometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-thumbsdown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-thumbsup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-toggle-filled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-toggle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-transgender +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-trash-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-trash-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-trophy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-tshirt-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-tshirt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-umbrella +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-university +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-unlocked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-usb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-videocamera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-volume-high +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-volume-low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-volume-medium +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-volume-mute +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-wand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-waterdrop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-wineglass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-woman +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-wrench +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ion-xbox +
+
+ + +
+
+ liga: + +
+
+
+
+

Grid Size: 32

+
+
+ + + + tf-mobile +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-desktop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-phone2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-document3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-documents5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-search3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-clipboard4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-newspaper +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-notebook9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-book-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-browser +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-calendar2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-presentation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-picture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-pictures +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-camera2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-toolbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-briefcase2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-wallet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-gift2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-bargraph +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-expand2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-focus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-ribbon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-adjustments +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-hourglass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-lock2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-megaphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-shield2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-trophy6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-flag2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-map2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-puzzle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-envelope2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-streetsign +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-telescope +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-gears +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-paperclip4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-attachment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-pricetags +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-lightbulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-layers +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-pencil2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-tools +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-tools-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-scissors2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-paintbrush +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-magnifying-glass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-circle-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-linegraph +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-mic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-strategy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-beaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-caution +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-recycle2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-anchor2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-profile-male +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-profile-female +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-bike +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-wine +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-hotairballoon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-globe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-genius +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-map-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-dial +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-chat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-heart2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-upload2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-download2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-target3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-hazardous +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-piechart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-speedometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-global +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-lifesaver +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-aperture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-quote +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-scope +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-alarmclock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-googleplus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-rss +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-tumblr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-linkedin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + tf-dribbble +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + + \ No newline at end of file diff --git a/static/fonts/themefisher-font.eot b/static/plugins/themefisher-font/fonts/themefisher-font.eot old mode 100755 new mode 100644 similarity index 100% rename from static/fonts/themefisher-font.eot rename to static/plugins/themefisher-font/fonts/themefisher-font.eot diff --git a/static/fonts/themefisher-font.svg b/static/plugins/themefisher-font/fonts/themefisher-font.svg old mode 100755 new mode 100644 similarity index 100% rename from static/fonts/themefisher-font.svg rename to static/plugins/themefisher-font/fonts/themefisher-font.svg diff --git a/static/fonts/themefisher-font.ttf b/static/plugins/themefisher-font/fonts/themefisher-font.ttf old mode 100755 new mode 100644 similarity index 100% rename from static/fonts/themefisher-font.ttf rename to static/plugins/themefisher-font/fonts/themefisher-font.ttf diff --git a/static/fonts/themefisher-font.woff b/static/plugins/themefisher-font/fonts/themefisher-font.woff old mode 100755 new mode 100644 similarity index 100% rename from static/fonts/themefisher-font.woff rename to static/plugins/themefisher-font/fonts/themefisher-font.woff diff --git a/static/plugins/themefisher-font/themefisher-font.min.css b/static/plugins/themefisher-font/themefisher-font.min.css new file mode 100644 index 000000000..31514aa7c --- /dev/null +++ b/static/plugins/themefisher-font/themefisher-font.min.css @@ -0,0 +1 @@ +@font-face{font-family:themefisher-font;src:url(fonts/themefisher-font.eot?ug5hnh);src:url(fonts/themefisher-font.eot?ug5hnh#iefix) format('embedded-opentype'),url(fonts/themefisher-font.ttf?ug5hnh) format('truetype'),url(fonts/themefisher-font.woff?ug5hnh) format('woff'),url(fonts/themefisher-font.svg?ug5hnh#themefisher-font) format('svg');font-weight:400;font-style:normal}[class*=" tf-"],[class^=tf-]{font-family:themefisher-font!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tf-ion-alert-circled:before{content:"\f100"}.tf-ion-alert:before{content:"\f101"}.tf-ion-android-add-circle:before{content:"\f359"}.tf-ion-android-add:before{content:"\f2c7"}.tf-ion-android-alarm-clock:before{content:"\f35a"}.tf-ion-android-alert:before{content:"\f35b"}.tf-ion-android-apps:before{content:"\f35c"}.tf-ion-android-archive:before{content:"\f2c9"}.tf-ion-android-arrow-back:before{content:"\f2ca"}.tf-ion-android-arrow-down:before{content:"\f35d"}.tf-ion-android-arrow-dropdown-circle:before{content:"\f35e"}.tf-ion-android-arrow-dropdown:before{content:"\f35f"}.tf-ion-android-arrow-dropleft-circle:before{content:"\f360"}.tf-ion-android-arrow-dropleft:before{content:"\f361"}.tf-ion-android-arrow-dropright-circle:before{content:"\f362"}.tf-ion-android-arrow-dropright:before{content:"\f363"}.tf-ion-android-arrow-dropup-circle:before{content:"\f364"}.tf-ion-android-arrow-dropup:before{content:"\f365"}.tf-ion-android-arrow-forward:before{content:"\f30f"}.tf-ion-android-arrow-up:before{content:"\f366"}.tf-ion-android-attach:before{content:"\f367"}.tf-ion-android-bar:before{content:"\f368"}.tf-ion-android-bicycle:before{content:"\f369"}.tf-ion-android-boat:before{content:"\f36a"}.tf-ion-android-bookmark:before{content:"\f36b"}.tf-ion-android-bulb:before{content:"\f36c"}.tf-ion-android-bus:before{content:"\f36d"}.tf-ion-android-calendar:before{content:"\f2d1"}.tf-ion-android-call:before{content:"\f2d2"}.tf-ion-android-camera:before{content:"\f2d3"}.tf-ion-android-cancel:before{content:"\f36e"}.tf-ion-android-car:before{content:"\f36f"}.tf-ion-android-cart:before{content:"\f370"}.tf-ion-android-chat:before{content:"\f2d4"}.tf-ion-android-checkbox-blank:before{content:"\f371"}.tf-ion-android-checkbox-outline-blank:before{content:"\f372"}.tf-ion-android-checkbox-outline:before{content:"\f373"}.tf-ion-android-checkbox:before{content:"\f374"}.tf-ion-android-checkmark-circle:before{content:"\f375"}.tf-ion-android-clipboard:before{content:"\f376"}.tf-ion-android-close:before{content:"\f2d7"}.tf-ion-android-cloud-circle:before{content:"\f377"}.tf-ion-android-cloud-done:before{content:"\f378"}.tf-ion-android-cloud-outline:before{content:"\f379"}.tf-ion-android-cloud:before{content:"\f37a"}.tf-ion-android-color-palette:before{content:"\f37b"}.tf-ion-android-compass:before{content:"\f37c"}.tf-ion-android-contact:before{content:"\f2d8"}.tf-ion-android-contacts:before{content:"\f2d9"}.tf-ion-android-contract:before{content:"\f37d"}.tf-ion-android-create:before{content:"\f37e"}.tf-ion-android-delete:before{content:"\f37f"}.tf-ion-android-desktop:before{content:"\f380"}.tf-ion-android-document:before{content:"\f381"}.tf-ion-android-done-all:before{content:"\f382"}.tf-ion-android-done:before{content:"\f383"}.tf-ion-android-download:before{content:"\f2dd"}.tf-ion-android-drafts:before{content:"\f384"}.tf-ion-android-exit:before{content:"\f385"}.tf-ion-android-expand:before{content:"\f386"}.tf-ion-android-favorite-outline:before{content:"\f387"}.tf-ion-android-favorite:before{content:"\f388"}.tf-ion-android-film:before{content:"\f389"}.tf-ion-android-folder-open:before{content:"\f38a"}.tf-ion-android-folder:before{content:"\f2e0"}.tf-ion-android-funnel:before{content:"\f38b"}.tf-ion-android-globe:before{content:"\f38c"}.tf-ion-android-hand:before{content:"\f2e3"}.tf-ion-android-hangout:before{content:"\f38d"}.tf-ion-android-happy:before{content:"\f38e"}.tf-ion-android-home:before{content:"\f38f"}.tf-ion-android-image:before{content:"\f2e4"}.tf-ion-android-laptop:before{content:"\f390"}.tf-ion-android-list:before{content:"\f391"}.tf-ion-android-locate:before{content:"\f2e9"}.tf-ion-android-lock:before{content:"\f392"}.tf-ion-android-mail:before{content:"\f2eb"}.tf-ion-android-map:before{content:"\f393"}.tf-ion-android-menu:before{content:"\f394"}.tf-ion-android-microphone-off:before{content:"\f395"}.tf-ion-android-microphone:before{content:"\f2ec"}.tf-ion-android-more-horizontal:before{content:"\f396"}.tf-ion-android-more-vertical:before{content:"\f397"}.tf-ion-android-navigate:before{content:"\f398"}.tf-ion-android-notifications-none:before{content:"\f399"}.tf-ion-android-notifications-off:before{content:"\f39a"}.tf-ion-android-notifications:before{content:"\f39b"}.tf-ion-android-open:before{content:"\f39c"}.tf-ion-android-options:before{content:"\f39d"}.tf-ion-android-people:before{content:"\f39e"}.tf-ion-android-person-add:before{content:"\f39f"}.tf-ion-android-person:before{content:"\f3a0"}.tf-ion-android-phone-landscape:before{content:"\f3a1"}.tf-ion-android-phone-portrait:before{content:"\f3a2"}.tf-ion-android-pin:before{content:"\f3a3"}.tf-ion-android-plane:before{content:"\f3a4"}.tf-ion-android-playstore:before{content:"\f2f0"}.tf-ion-android-print:before{content:"\f3a5"}.tf-ion-android-radio-button-off:before{content:"\f3a6"}.tf-ion-android-radio-button-on:before{content:"\f3a7"}.tf-ion-android-refresh:before{content:"\f3a8"}.tf-ion-android-remove-circle:before{content:"\f3a9"}.tf-ion-android-remove:before{content:"\f2f4"}.tf-ion-android-restaurant:before{content:"\f3aa"}.tf-ion-android-sad:before{content:"\f3ab"}.tf-ion-android-search:before{content:"\f2f5"}.tf-ion-android-send:before{content:"\f2f6"}.tf-ion-android-settings:before{content:"\f2f7"}.tf-ion-android-share-alt:before{content:"\f3ac"}.tf-ion-android-share:before{content:"\f2f8"}.tf-ion-android-star-half:before{content:"\f3ad"}.tf-ion-android-star-outline:before{content:"\f3ae"}.tf-ion-android-star:before{content:"\f2fc"}.tf-ion-android-stopwatch:before{content:"\f2fd"}.tf-ion-android-subway:before{content:"\f3af"}.tf-ion-android-sunny:before{content:"\f3b0"}.tf-ion-android-sync:before{content:"\f3b1"}.tf-ion-android-textsms:before{content:"\f3b2"}.tf-ion-android-time:before{content:"\f3b3"}.tf-ion-android-train:before{content:"\f3b4"}.tf-ion-android-unlock:before{content:"\f3b5"}.tf-ion-android-upload:before{content:"\f3b6"}.tf-ion-android-volume-down:before{content:"\f3b7"}.tf-ion-android-volume-mute:before{content:"\f3b8"}.tf-ion-android-volume-off:before{content:"\f3b9"}.tf-ion-android-volume-up:before{content:"\f3ba"}.tf-ion-android-walk:before{content:"\f3bb"}.tf-ion-android-warning:before{content:"\f3bc"}.tf-ion-android-watch:before{content:"\f3bd"}.tf-ion-android-wifi:before{content:"\f305"}.tf-ion-aperture:before{content:"\f313"}.tf-ion-archive:before{content:"\f102"}.tf-ion-arrow-down-a:before{content:"\f103"}.tf-ion-arrow-down-b:before{content:"\f104"}.tf-ion-arrow-down-c:before{content:"\f105"}.tf-ion-arrow-expand:before{content:"\f25e"}.tf-ion-arrow-graph-down-left:before{content:"\f25f"}.tf-ion-arrow-graph-down-right:before{content:"\f260"}.tf-ion-arrow-graph-up-left:before{content:"\f261"}.tf-ion-arrow-graph-up-right:before{content:"\f262"}.tf-ion-arrow-left-a:before{content:"\f106"}.tf-ion-arrow-left-b:before{content:"\f107"}.tf-ion-arrow-left-c:before{content:"\f108"}.tf-ion-arrow-move:before{content:"\f263"}.tf-ion-arrow-resize:before{content:"\f264"}.tf-ion-arrow-return-left:before{content:"\f265"}.tf-ion-arrow-return-right:before{content:"\f266"}.tf-ion-arrow-right-a:before{content:"\f109"}.tf-ion-arrow-right-b:before{content:"\f10a"}.tf-ion-arrow-right-c:before{content:"\f10b"}.tf-ion-arrow-shrink:before{content:"\f267"}.tf-ion-arrow-swap:before{content:"\f268"}.tf-ion-arrow-up-a:before{content:"\f10c"}.tf-ion-arrow-up-b:before{content:"\f10d"}.tf-ion-arrow-up-c:before{content:"\f10e"}.tf-ion-asterisk:before{content:"\f314"}.tf-ion-at:before{content:"\f10f"}.tf-ion-backspace-outline:before{content:"\f3be"}.tf-ion-backspace:before{content:"\f3bf"}.tf-ion-bag:before{content:"\f110"}.tf-ion-battery-charging:before{content:"\f111"}.tf-ion-battery-empty:before{content:"\f112"}.tf-ion-battery-full:before{content:"\f113"}.tf-ion-battery-half:before{content:"\f114"}.tf-ion-battery-low:before{content:"\f115"}.tf-ion-beaker:before{content:"\f269"}.tf-ion-beer:before{content:"\f26a"}.tf-ion-bluetooth:before{content:"\f116"}.tf-ion-bonfire:before{content:"\f315"}.tf-ion-bookmark:before{content:"\f26b"}.tf-ion-bowtie:before{content:"\f3c0"}.tf-ion-briefcase:before{content:"\f26c"}.tf-ion-bug:before{content:"\f2be"}.tf-ion-calculator:before{content:"\f26d"}.tf-ion-calendar:before{content:"\f117"}.tf-ion-camera:before{content:"\f118"}.tf-ion-card:before{content:"\f119"}.tf-ion-cash:before{content:"\f316"}.tf-ion-chatbox-working:before{content:"\f11a"}.tf-ion-chatbox:before{content:"\f11b"}.tf-ion-chatboxes:before{content:"\f11c"}.tf-ion-chatbubble-working:before{content:"\f11d"}.tf-ion-chatbubble:before{content:"\f11e"}.tf-ion-chatbubbles:before{content:"\f11f"}.tf-ion-checkmark-circled:before{content:"\f120"}.tf-ion-checkmark-round:before{content:"\f121"}.tf-ion-checkmark:before{content:"\f122"}.tf-ion-chevron-down:before{content:"\f123"}.tf-ion-chevron-left:before{content:"\f124"}.tf-ion-chevron-right:before{content:"\f125"}.tf-ion-chevron-up:before{content:"\f126"}.tf-ion-clipboard:before{content:"\f127"}.tf-ion-clock:before{content:"\f26e"}.tf-ion-close-circled:before{content:"\f128"}.tf-ion-close-round:before{content:"\f129"}.tf-ion-close:before{content:"\f12a"}.tf-ion-closed-captioning:before{content:"\f317"}.tf-ion-cloud:before{content:"\f12b"}.tf-ion-code-download:before{content:"\f26f"}.tf-ion-code-working:before{content:"\f270"}.tf-ion-code:before{content:"\f271"}.tf-ion-coffee:before{content:"\f272"}.tf-ion-compass:before{content:"\f273"}.tf-ion-compose:before{content:"\f12c"}.tf-ion-connection-bars:before{content:"\f274"}.tf-ion-contrast:before{content:"\f275"}.tf-ion-crop:before{content:"\f3c1"}.tf-ion-cube:before{content:"\f318"}.tf-ion-disc:before{content:"\f12d"}.tf-ion-document-text:before{content:"\f12e"}.tf-ion-document:before{content:"\f12f"}.tf-ion-drag:before{content:"\f130"}.tf-ion-earth:before{content:"\f276"}.tf-ion-easel:before{content:"\f3c2"}.tf-ion-edit:before{content:"\f2bf"}.tf-ion-egg:before{content:"\f277"}.tf-ion-eject:before{content:"\f131"}.tf-ion-email-unread:before{content:"\f3c3"}.tf-ion-email:before{content:"\f132"}.tf-ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.tf-ion-erlenmeyer-flask:before{content:"\f3c5"}.tf-ion-eye-disabled:before{content:"\f306"}.tf-ion-eye:before{content:"\f133"}.tf-ion-female:before{content:"\f278"}.tf-ion-filing:before{content:"\f134"}.tf-ion-film-marker:before{content:"\f135"}.tf-ion-fireball:before{content:"\f319"}.tf-ion-flag:before{content:"\f279"}.tf-ion-flame:before{content:"\f31a"}.tf-ion-flash-off:before{content:"\f136"}.tf-ion-flash:before{content:"\f137"}.tf-ion-folder:before{content:"\f139"}.tf-ion-fork-repo:before{content:"\f2c0"}.tf-ion-fork:before{content:"\f27a"}.tf-ion-forward:before{content:"\f13a"}.tf-ion-funnel:before{content:"\f31b"}.tf-ion-gear-a:before{content:"\f13d"}.tf-ion-gear-b:before{content:"\f13e"}.tf-ion-grid:before{content:"\f13f"}.tf-ion-hammer:before{content:"\f27b"}.tf-ion-happy-outline:before{content:"\f3c6"}.tf-ion-happy:before{content:"\f31c"}.tf-ion-headphone:before{content:"\f140"}.tf-ion-heart-broken:before{content:"\f31d"}.tf-ion-heart:before{content:"\f141"}.tf-ion-help-buoy:before{content:"\f27c"}.tf-ion-help-circled:before{content:"\f142"}.tf-ion-help:before{content:"\f143"}.tf-ion-home:before{content:"\f144"}.tf-ion-icecream:before{content:"\f27d"}.tf-ion-image:before{content:"\f147"}.tf-ion-images:before{content:"\f148"}.tf-ion-information-circled:before{content:"\f149"}.tf-ion-information:before{content:"\f14a"}.tf-ion-ionic:before{content:"\f14b"}.tf-ion-ios-alarm-outline:before{content:"\f3c7"}.tf-ion-ios-alarm:before{content:"\f3c8"}.tf-ion-ios-albums-outline:before{content:"\f3c9"}.tf-ion-ios-albums:before{content:"\f3ca"}.tf-ion-ios-americanfootball-outline:before{content:"\f3cb"}.tf-ion-ios-americanfootball:before{content:"\f3cc"}.tf-ion-ios-analytics-outline:before{content:"\f3cd"}.tf-ion-ios-analytics:before{content:"\f3ce"}.tf-ion-ios-arrow-back:before{content:"\f3cf"}.tf-ion-ios-arrow-down:before{content:"\f3d0"}.tf-ion-ios-arrow-forward:before{content:"\f3d1"}.tf-ion-ios-arrow-left:before{content:"\f3d2"}.tf-ion-ios-arrow-right:before{content:"\f3d3"}.tf-ion-ios-arrow-thin-down:before{content:"\f3d4"}.tf-ion-ios-arrow-thin-left:before{content:"\f3d5"}.tf-ion-ios-arrow-thin-right:before{content:"\f3d6"}.tf-ion-ios-arrow-thin-up:before{content:"\f3d7"}.tf-ion-ios-arrow-up:before{content:"\f3d8"}.tf-ion-ios-at-outline:before{content:"\f3d9"}.tf-ion-ios-at:before{content:"\f3da"}.tf-ion-ios-barcode-outline:before{content:"\f3db"}.tf-ion-ios-barcode:before{content:"\f3dc"}.tf-ion-ios-baseball-outline:before{content:"\f3dd"}.tf-ion-ios-baseball:before{content:"\f3de"}.tf-ion-ios-basketball-outline:before{content:"\f3df"}.tf-ion-ios-basketball:before{content:"\f3e0"}.tf-ion-ios-bell-outline:before{content:"\f3e1"}.tf-ion-ios-bell:before{content:"\f3e2"}.tf-ion-ios-body-outline:before{content:"\f3e3"}.tf-ion-ios-body:before{content:"\f3e4"}.tf-ion-ios-bolt-outline:before{content:"\f3e5"}.tf-ion-ios-bolt:before{content:"\f3e6"}.tf-ion-ios-book-outline:before{content:"\f3e7"}.tf-ion-ios-book:before{content:"\f3e8"}.tf-ion-ios-bookmarks-outline:before{content:"\f3e9"}.tf-ion-ios-bookmarks:before{content:"\f3ea"}.tf-ion-ios-box-outline:before{content:"\f3eb"}.tf-ion-ios-box:before{content:"\f3ec"}.tf-ion-ios-briefcase-outline:before{content:"\f3ed"}.tf-ion-ios-briefcase:before{content:"\f3ee"}.tf-ion-ios-browsers-outline:before{content:"\f3ef"}.tf-ion-ios-browsers:before{content:"\f3f0"}.tf-ion-ios-calculator-outline:before{content:"\f3f1"}.tf-ion-ios-calculator:before{content:"\f3f2"}.tf-ion-ios-calendar-outline:before{content:"\f3f3"}.tf-ion-ios-calendar:before{content:"\f3f4"}.tf-ion-ios-camera-outline:before{content:"\f3f5"}.tf-ion-ios-camera:before{content:"\f3f6"}.tf-ion-ios-cart-outline:before{content:"\f3f7"}.tf-ion-ios-cart:before{content:"\f3f8"}.tf-ion-ios-chatboxes-outline:before{content:"\f3f9"}.tf-ion-ios-chatboxes:before{content:"\f3fa"}.tf-ion-ios-chatbubble-outline:before{content:"\f3fb"}.tf-ion-ios-chatbubble:before{content:"\f3fc"}.tf-ion-ios-checkmark-empty:before{content:"\f3fd"}.tf-ion-ios-checkmark-outline:before{content:"\f3fe"}.tf-ion-ios-checkmark:before{content:"\f3ff"}.tf-ion-ios-circle-filled:before{content:"\f400"}.tf-ion-ios-circle-outline:before{content:"\f401"}.tf-ion-ios-clock-outline:before{content:"\f402"}.tf-ion-ios-clock:before{content:"\f403"}.tf-ion-ios-close-empty:before{content:"\f404"}.tf-ion-ios-close-outline:before{content:"\f405"}.tf-ion-ios-close:before{content:"\f406"}.tf-ion-ios-cloud-download-outline:before{content:"\f407"}.tf-ion-ios-cloud-download:before{content:"\f408"}.tf-ion-ios-cloud-outline:before{content:"\f409"}.tf-ion-ios-cloud-upload-outline:before{content:"\f40a"}.tf-ion-ios-cloud-upload:before{content:"\f40b"}.tf-ion-ios-cloud:before{content:"\f40c"}.tf-ion-ios-cloudy-night-outline:before{content:"\f40d"}.tf-ion-ios-cloudy-night:before{content:"\f40e"}.tf-ion-ios-cloudy-outline:before{content:"\f40f"}.tf-ion-ios-cloudy:before{content:"\f410"}.tf-ion-ios-cog-outline:before{content:"\f411"}.tf-ion-ios-cog:before{content:"\f412"}.tf-ion-ios-color-filter-outline:before{content:"\f413"}.tf-ion-ios-color-filter:before{content:"\f414"}.tf-ion-ios-color-wand-outline:before{content:"\f415"}.tf-ion-ios-color-wand:before{content:"\f416"}.tf-ion-ios-compose-outline:before{content:"\f417"}.tf-ion-ios-compose:before{content:"\f418"}.tf-ion-ios-contact-outline:before{content:"\f419"}.tf-ion-ios-contact:before{content:"\f41a"}.tf-ion-ios-copy-outline:before{content:"\f41b"}.tf-ion-ios-copy:before{content:"\f41c"}.tf-ion-ios-crop-strong:before{content:"\f41d"}.tf-ion-ios-crop:before{content:"\f41e"}.tf-ion-ios-download-outline:before{content:"\f41f"}.tf-ion-ios-download:before{content:"\f420"}.tf-ion-ios-drag:before{content:"\f421"}.tf-ion-ios-email-outline:before{content:"\f422"}.tf-ion-ios-email:before{content:"\f423"}.tf-ion-ios-eye-outline:before{content:"\f424"}.tf-ion-ios-eye:before{content:"\f425"}.tf-ion-ios-fastforward-outline:before{content:"\f426"}.tf-ion-ios-fastforward:before{content:"\f427"}.tf-ion-ios-filing-outline:before{content:"\f428"}.tf-ion-ios-filing:before{content:"\f429"}.tf-ion-ios-film-outline:before{content:"\f42a"}.tf-ion-ios-film:before{content:"\f42b"}.tf-ion-ios-flag-outline:before{content:"\f42c"}.tf-ion-ios-flag:before{content:"\f42d"}.tf-ion-ios-flame-outline:before{content:"\f42e"}.tf-ion-ios-flame:before{content:"\f42f"}.tf-ion-ios-flask-outline:before{content:"\f430"}.tf-ion-ios-flask:before{content:"\f431"}.tf-ion-ios-flower-outline:before{content:"\f432"}.tf-ion-ios-flower:before{content:"\f433"}.tf-ion-ios-folder-outline:before{content:"\f434"}.tf-ion-ios-folder:before{content:"\f435"}.tf-ion-ios-football-outline:before{content:"\f436"}.tf-ion-ios-football:before{content:"\f437"}.tf-ion-ios-game-controller-a-outline:before{content:"\f438"}.tf-ion-ios-game-controller-a:before{content:"\f439"}.tf-ion-ios-game-controller-b-outline:before{content:"\f43a"}.tf-ion-ios-game-controller-b:before{content:"\f43b"}.tf-ion-ios-gear-outline:before{content:"\f43c"}.tf-ion-ios-gear:before{content:"\f43d"}.tf-ion-ios-glasses-outline:before{content:"\f43e"}.tf-ion-ios-glasses:before{content:"\f43f"}.tf-ion-ios-grid-view-outline:before{content:"\f440"}.tf-ion-ios-grid-view:before{content:"\f441"}.tf-ion-ios-heart-outline:before{content:"\f442"}.tf-ion-ios-heart:before{content:"\f443"}.tf-ion-ios-help-empty:before{content:"\f444"}.tf-ion-ios-help-outline:before{content:"\f445"}.tf-ion-ios-help:before{content:"\f446"}.tf-ion-ios-home-outline:before{content:"\f447"}.tf-ion-ios-home:before{content:"\f448"}.tf-ion-ios-infinite-outline:before{content:"\f449"}.tf-ion-ios-infinite:before{content:"\f44a"}.tf-ion-ios-information-empty:before{content:"\f44b"}.tf-ion-ios-information-outline:before{content:"\f44c"}.tf-ion-ios-information:before{content:"\f44d"}.tf-ion-ios-ionic-outline:before{content:"\f44e"}.tf-ion-ios-keypad-outline:before{content:"\f44f"}.tf-ion-ios-keypad:before{content:"\f450"}.tf-ion-ios-lightbulb-outline:before{content:"\f451"}.tf-ion-ios-lightbulb:before{content:"\f452"}.tf-ion-ios-list-outline:before{content:"\f453"}.tf-ion-ios-list:before{content:"\f454"}.tf-ion-ios-location-outline:before{content:"\f455"}.tf-ion-ios-location:before{content:"\f456"}.tf-ion-ios-locked-outline:before{content:"\f457"}.tf-ion-ios-locked:before{content:"\f458"}.tf-ion-ios-loop-strong:before{content:"\f459"}.tf-ion-ios-loop:before{content:"\f45a"}.tf-ion-ios-medical-outline:before{content:"\f45b"}.tf-ion-ios-medical:before{content:"\f45c"}.tf-ion-ios-medkit-outline:before{content:"\f45d"}.tf-ion-ios-medkit:before{content:"\f45e"}.tf-ion-ios-mic-off:before{content:"\f45f"}.tf-ion-ios-mic-outline:before{content:"\f460"}.tf-ion-ios-mic:before{content:"\f461"}.tf-ion-ios-minus-empty:before{content:"\f462"}.tf-ion-ios-minus-outline:before{content:"\f463"}.tf-ion-ios-minus:before{content:"\f464"}.tf-ion-ios-monitor-outline:before{content:"\f465"}.tf-ion-ios-monitor:before{content:"\f466"}.tf-ion-ios-moon-outline:before{content:"\f467"}.tf-ion-ios-moon:before{content:"\f468"}.tf-ion-ios-more-outline:before{content:"\f469"}.tf-ion-ios-more:before{content:"\f46a"}.tf-ion-ios-musical-note:before{content:"\f46b"}.tf-ion-ios-musical-notes:before{content:"\f46c"}.tf-ion-ios-navigate-outline:before{content:"\f46d"}.tf-ion-ios-navigate:before{content:"\f46e"}.tf-ion-ios-nutrition-outline:before{content:"\f46f"}.tf-ion-ios-nutrition:before{content:"\f470"}.tf-ion-ios-paper-outline:before{content:"\f471"}.tf-ion-ios-paper:before{content:"\f472"}.tf-ion-ios-paperplane-outline:before{content:"\f473"}.tf-ion-ios-paperplane:before{content:"\f474"}.tf-ion-ios-partlysunny-outline:before{content:"\f475"}.tf-ion-ios-partlysunny:before{content:"\f476"}.tf-ion-ios-pause-outline:before{content:"\f477"}.tf-ion-ios-pause:before{content:"\f478"}.tf-ion-ios-paw-outline:before{content:"\f479"}.tf-ion-ios-paw:before{content:"\f47a"}.tf-ion-ios-people-outline:before{content:"\f47b"}.tf-ion-ios-people:before{content:"\f47c"}.tf-ion-ios-person-outline:before{content:"\f47d"}.tf-ion-ios-person:before{content:"\f47e"}.tf-ion-ios-personadd-outline:before{content:"\f47f"}.tf-ion-ios-personadd:before{content:"\f480"}.tf-ion-ios-photos-outline:before{content:"\f481"}.tf-ion-ios-photos:before{content:"\f482"}.tf-ion-ios-pie-outline:before{content:"\f483"}.tf-ion-ios-pie:before{content:"\f484"}.tf-ion-ios-pint-outline:before{content:"\f485"}.tf-ion-ios-pint:before{content:"\f486"}.tf-ion-ios-play-outline:before{content:"\f487"}.tf-ion-ios-play:before{content:"\f488"}.tf-ion-ios-plus-empty:before{content:"\f489"}.tf-ion-ios-plus-outline:before{content:"\f48a"}.tf-ion-ios-plus:before{content:"\f48b"}.tf-ion-ios-pricetag-outline:before{content:"\f48c"}.tf-ion-ios-pricetag:before{content:"\f48d"}.tf-ion-ios-pricetags-outline:before{content:"\f48e"}.tf-ion-ios-pricetags:before{content:"\f48f"}.tf-ion-ios-printer-outline:before{content:"\f490"}.tf-ion-ios-printer:before{content:"\f491"}.tf-ion-ios-pulse-strong:before{content:"\f492"}.tf-ion-ios-pulse:before{content:"\f493"}.tf-ion-ios-rainy-outline:before{content:"\f494"}.tf-ion-ios-rainy:before{content:"\f495"}.tf-ion-ios-recording-outline:before{content:"\f496"}.tf-ion-ios-recording:before{content:"\f497"}.tf-ion-ios-redo-outline:before{content:"\f498"}.tf-ion-ios-redo:before{content:"\f499"}.tf-ion-ios-refresh-empty:before{content:"\f49a"}.tf-ion-ios-refresh-outline:before{content:"\f49b"}.tf-ion-ios-refresh:before{content:"\f49c"}.tf-ion-ios-reload:before{content:"\f49d"}.tf-ion-ios-reverse-camera-outline:before{content:"\f49e"}.tf-ion-ios-reverse-camera:before{content:"\f49f"}.tf-ion-ios-rewind-outline:before{content:"\f4a0"}.tf-ion-ios-rewind:before{content:"\f4a1"}.tf-ion-ios-rose-outline:before{content:"\f4a2"}.tf-ion-ios-rose:before{content:"\f4a3"}.tf-ion-ios-search-strong:before{content:"\f4a4"}.tf-ion-ios-search:before{content:"\f4a5"}.tf-ion-ios-settings-strong:before{content:"\f4a6"}.tf-ion-ios-settings:before{content:"\f4a7"}.tf-ion-ios-shuffle-strong:before{content:"\f4a8"}.tf-ion-ios-shuffle:before{content:"\f4a9"}.tf-ion-ios-skipbackward-outline:before{content:"\f4aa"}.tf-ion-ios-skipbackward:before{content:"\f4ab"}.tf-ion-ios-skipforward-outline:before{content:"\f4ac"}.tf-ion-ios-skipforward:before{content:"\f4ad"}.tf-ion-ios-snowy:before{content:"\f4ae"}.tf-ion-ios-speedometer-outline:before{content:"\f4af"}.tf-ion-ios-speedometer:before{content:"\f4b0"}.tf-ion-ios-star-half:before{content:"\f4b1"}.tf-ion-ios-star-outline:before{content:"\f4b2"}.tf-ion-ios-star:before{content:"\f4b3"}.tf-ion-ios-stopwatch-outline:before{content:"\f4b4"}.tf-ion-ios-stopwatch:before{content:"\f4b5"}.tf-ion-ios-sunny-outline:before{content:"\f4b6"}.tf-ion-ios-sunny:before{content:"\f4b7"}.tf-ion-ios-telephone-outline:before{content:"\f4b8"}.tf-ion-ios-telephone:before{content:"\f4b9"}.tf-ion-ios-tennisball-outline:before{content:"\f4ba"}.tf-ion-ios-tennisball:before{content:"\f4bb"}.tf-ion-ios-thunderstorm-outline:before{content:"\f4bc"}.tf-ion-ios-thunderstorm:before{content:"\f4bd"}.tf-ion-ios-time-outline:before{content:"\f4be"}.tf-ion-ios-time:before{content:"\f4bf"}.tf-ion-ios-timer-outline:before{content:"\f4c0"}.tf-ion-ios-timer:before{content:"\f4c1"}.tf-ion-ios-toggle-outline:before{content:"\f4c2"}.tf-ion-ios-toggle:before{content:"\f4c3"}.tf-ion-ios-trash-outline:before{content:"\f4c4"}.tf-ion-ios-trash:before{content:"\f4c5"}.tf-ion-ios-undo-outline:before{content:"\f4c6"}.tf-ion-ios-undo:before{content:"\f4c7"}.tf-ion-ios-unlocked-outline:before{content:"\f4c8"}.tf-ion-ios-unlocked:before{content:"\f4c9"}.tf-ion-ios-upload-outline:before{content:"\f4ca"}.tf-ion-ios-upload:before{content:"\f4cb"}.tf-ion-ios-videocam-outline:before{content:"\f4cc"}.tf-ion-ios-videocam:before{content:"\f4cd"}.tf-ion-ios-volume-high:before{content:"\f4ce"}.tf-ion-ios-volume-low:before{content:"\f4cf"}.tf-ion-ios-wineglass-outline:before{content:"\f4d0"}.tf-ion-ios-wineglass:before{content:"\f4d1"}.tf-ion-ios-world-outline:before{content:"\f4d2"}.tf-ion-ios-world:before{content:"\f4d3"}.tf-ion-ipad:before{content:"\f1f9"}.tf-ion-iphone:before{content:"\f1fa"}.tf-ion-ipod:before{content:"\f1fb"}.tf-ion-jet:before{content:"\f295"}.tf-ion-key:before{content:"\f296"}.tf-ion-knife:before{content:"\f297"}.tf-ion-laptop:before{content:"\f1fc"}.tf-ion-leaf:before{content:"\f1fd"}.tf-ion-levels:before{content:"\f298"}.tf-ion-lightbulb:before{content:"\f299"}.tf-ion-link:before{content:"\f1fe"}.tf-ion-load-a:before{content:"\f29a"}.tf-ion-load-b:before{content:"\f29b"}.tf-ion-load-c:before{content:"\f29c"}.tf-ion-load-d:before{content:"\f29d"}.tf-ion-location:before{content:"\f1ff"}.tf-ion-lock-combination:before{content:"\f4d4"}.tf-ion-locked:before{content:"\f200"}.tf-ion-log-in:before{content:"\f29e"}.tf-ion-log-out:before{content:"\f29f"}.tf-ion-loop:before{content:"\f201"}.tf-ion-magnet:before{content:"\f2a0"}.tf-ion-male:before{content:"\f2a1"}.tf-ion-man:before{content:"\f202"}.tf-ion-map:before{content:"\f203"}.tf-ion-medkit:before{content:"\f2a2"}.tf-ion-merge:before{content:"\f33f"}.tf-ion-mic-a:before{content:"\f204"}.tf-ion-mic-b:before{content:"\f205"}.tf-ion-mic-c:before{content:"\f206"}.tf-ion-minus-circled:before{content:"\f207"}.tf-ion-minus-round:before{content:"\f208"}.tf-ion-minus:before{content:"\f209"}.tf-ion-model-s:before{content:"\f2c1"}.tf-ion-monitor:before{content:"\f20a"}.tf-ion-more:before{content:"\f20b"}.tf-ion-mouse:before{content:"\f340"}.tf-ion-music-note:before{content:"\f20c"}.tf-ion-navicon-round:before{content:"\f20d"}.tf-ion-navicon:before{content:"\f20e"}.tf-ion-navigate:before{content:"\f2a3"}.tf-ion-network:before{content:"\f341"}.tf-ion-no-smoking:before{content:"\f2c2"}.tf-ion-nuclear:before{content:"\f2a4"}.tf-ion-outlet:before{content:"\f342"}.tf-ion-paintbrush:before{content:"\f4d5"}.tf-ion-paintbucket:before{content:"\f4d6"}.tf-ion-paper-airplane:before{content:"\f2c3"}.tf-ion-paperclip:before{content:"\f20f"}.tf-ion-pause:before{content:"\f210"}.tf-ion-person-add:before{content:"\f211"}.tf-ion-person-stalker:before{content:"\f212"}.tf-ion-person:before{content:"\f213"}.tf-ion-pie-graph:before{content:"\f2a5"}.tf-ion-pin:before{content:"\f2a6"}.tf-ion-pinpoint:before{content:"\f2a7"}.tf-ion-pizza:before{content:"\f2a8"}.tf-ion-plane:before{content:"\f214"}.tf-ion-planet:before{content:"\f343"}.tf-ion-play:before{content:"\f215"}.tf-ion-playstation:before{content:"\f30a"}.tf-ion-plus-circled:before{content:"\f216"}.tf-ion-plus-round:before{content:"\f217"}.tf-ion-plus:before{content:"\f218"}.tf-ion-podium:before{content:"\f344"}.tf-ion-pound:before{content:"\f219"}.tf-ion-power:before{content:"\f2a9"}.tf-ion-pricetag:before{content:"\f2aa"}.tf-ion-pricetags:before{content:"\f2ab"}.tf-ion-printer:before{content:"\f21a"}.tf-ion-pull-request:before{content:"\f345"}.tf-ion-qr-scanner:before{content:"\f346"}.tf-ion-quote:before{content:"\f347"}.tf-ion-radio-waves:before{content:"\f2ac"}.tf-ion-record:before{content:"\f21b"}.tf-ion-refresh:before{content:"\f21c"}.tf-ion-reply-all:before{content:"\f21d"}.tf-ion-reply:before{content:"\f21e"}.tf-ion-ribbon-a:before{content:"\f348"}.tf-ion-ribbon-b:before{content:"\f349"}.tf-ion-sad-outline:before{content:"\f4d7"}.tf-ion-sad:before{content:"\f34a"}.tf-ion-scissors:before{content:"\f34b"}.tf-ion-search:before{content:"\f21f"}.tf-ion-settings:before{content:"\f2ad"}.tf-ion-share:before{content:"\f220"}.tf-ion-shuffle:before{content:"\f221"}.tf-ion-skip-backward:before{content:"\f222"}.tf-ion-skip-forward:before{content:"\f223"}.tf-ion-social-android-outline:before{content:"\f224"}.tf-ion-social-android:before{content:"\f225"}.tf-ion-social-angular-outline:before{content:"\f4d8"}.tf-ion-social-angular:before{content:"\f4d9"}.tf-ion-social-apple-outline:before{content:"\f226"}.tf-ion-social-apple:before{content:"\f227"}.tf-ion-social-bitcoin-outline:before{content:"\f2ae"}.tf-ion-social-bitcoin:before{content:"\f2af"}.tf-ion-social-buffer-outline:before{content:"\f228"}.tf-ion-social-buffer:before{content:"\f229"}.tf-ion-social-chrome-outline:before{content:"\f4da"}.tf-ion-social-chrome:before{content:"\f4db"}.tf-ion-social-codepen-outline:before{content:"\f4dc"}.tf-ion-social-codepen:before{content:"\f4dd"}.tf-ion-social-css3-outline:before{content:"\f4de"}.tf-ion-social-css3:before{content:"\f4df"}.tf-ion-social-designernews-outline:before{content:"\f22a"}.tf-ion-social-designernews:before{content:"\f22b"}.tf-ion-social-dribbble-outline:before{content:"\f22c"}.tf-ion-social-dribbble:before{content:"\f22d"}.tf-ion-social-dropbox-outline:before{content:"\f22e"}.tf-ion-social-dropbox:before{content:"\f22f"}.tf-ion-social-euro-outline:before{content:"\f4e0"}.tf-ion-social-euro:before{content:"\f4e1"}.tf-ion-social-facebook-outline:before{content:"\f230"}.tf-ion-social-facebook:before{content:"\f231"}.tf-ion-social-foursquare-outline:before{content:"\f34c"}.tf-ion-social-foursquare:before{content:"\f34d"}.tf-ion-social-freebsd-devil:before{content:"\f2c4"}.tf-ion-social-github-outline:before{content:"\f232"}.tf-ion-social-github:before{content:"\f233"}.tf-ion-social-google-outline:before{content:"\f34e"}.tf-ion-social-google:before{content:"\f34f"}.tf-ion-social-googleplus-outline:before{content:"\f234"}.tf-ion-social-googleplus:before{content:"\f235"}.tf-ion-social-hackernews-outline:before{content:"\f236"}.tf-ion-social-hackernews:before{content:"\f237"}.tf-ion-social-html5-outline:before{content:"\f4e2"}.tf-ion-social-html5:before{content:"\f4e3"}.tf-ion-social-instagram-outline:before{content:"\f350"}.tf-ion-social-instagram:before{content:"\f351"}.tf-ion-social-javascript-outline:before{content:"\f4e4"}.tf-ion-social-javascript:before{content:"\f4e5"}.tf-ion-social-linkedin-outline:before{content:"\f238"}.tf-ion-social-linkedin:before{content:"\f239"}.tf-ion-social-markdown:before{content:"\f4e6"}.tf-ion-social-nodejs:before{content:"\f4e7"}.tf-ion-social-octocat:before{content:"\f4e8"}.tf-ion-social-pinterest-outline:before{content:"\f2b0"}.tf-ion-social-pinterest:before{content:"\f2b1"}.tf-ion-social-python:before{content:"\f4e9"}.tf-ion-social-reddit-outline:before{content:"\f23a"}.tf-ion-social-reddit:before{content:"\f23b"}.tf-ion-social-rss-outline:before{content:"\f23c"}.tf-ion-social-rss:before{content:"\f23d"}.tf-ion-social-sass:before{content:"\f4ea"}.tf-ion-social-skype-outline:before{content:"\f23e"}.tf-ion-social-skype:before{content:"\f23f"}.tf-ion-social-snapchat-outline:before{content:"\f4eb"}.tf-ion-social-snapchat:before{content:"\f4ec"}.tf-ion-social-tumblr-outline:before{content:"\f240"}.tf-ion-social-tumblr:before{content:"\f241"}.tf-ion-social-tux:before{content:"\f2c5"}.tf-ion-social-twitch-outline:before{content:"\f4ed"}.tf-ion-social-twitch:before{content:"\f4ee"}.tf-ion-social-twitter-outline:before{content:"\f242"}.tf-ion-social-twitter:before{content:"\f243"}.tf-ion-social-usd-outline:before{content:"\f352"}.tf-ion-social-usd:before{content:"\f353"}.tf-ion-social-vimeo-outline:before{content:"\f244"}.tf-ion-social-vimeo:before{content:"\f245"}.tf-ion-social-whatsapp-outline:before{content:"\f4ef"}.tf-ion-social-whatsapp:before{content:"\f4f0"}.tf-ion-social-windows-outline:before{content:"\f246"}.tf-ion-social-windows:before{content:"\f247"}.tf-ion-social-wordpress-outline:before{content:"\f248"}.tf-ion-social-wordpress:before{content:"\f249"}.tf-ion-social-yahoo-outline:before{content:"\f24a"}.tf-ion-social-yahoo:before{content:"\f24b"}.tf-ion-social-yen-outline:before{content:"\f4f1"}.tf-ion-social-yen:before{content:"\f4f2"}.tf-ion-social-youtube-outline:before{content:"\f24c"}.tf-ion-social-youtube:before{content:"\f24d"}.tf-ion-soup-can-outline:before{content:"\f4f3"}.tf-ion-soup-can:before{content:"\f4f4"}.tf-ion-speakerphone:before{content:"\f2b2"}.tf-ion-speedometer:before{content:"\f2b3"}.tf-ion-spoon:before{content:"\f2b4"}.tf-ion-star:before{content:"\f24e"}.tf-ion-stats-bars:before{content:"\f2b5"}.tf-ion-steam:before{content:"\f30b"}.tf-ion-stop:before{content:"\f24f"}.tf-ion-thermometer:before{content:"\f2b6"}.tf-ion-thumbsdown:before{content:"\f250"}.tf-ion-thumbsup:before{content:"\f251"}.tf-ion-toggle-filled:before{content:"\f354"}.tf-ion-toggle:before{content:"\f355"}.tf-ion-transgender:before{content:"\f4f5"}.tf-ion-trash-a:before{content:"\f252"}.tf-ion-trash-b:before{content:"\f253"}.tf-ion-trophy:before{content:"\f356"}.tf-ion-tshirt-outline:before{content:"\f4f6"}.tf-ion-tshirt:before{content:"\f4f7"}.tf-ion-umbrella:before{content:"\f2b7"}.tf-ion-university:before{content:"\f357"}.tf-ion-unlocked:before{content:"\f254"}.tf-ion-upload:before{content:"\f255"}.tf-ion-usb:before{content:"\f2b8"}.tf-ion-videocamera:before{content:"\f256"}.tf-ion-volume-high:before{content:"\f257"}.tf-ion-volume-low:before{content:"\f258"}.tf-ion-volume-medium:before{content:"\f259"}.tf-ion-volume-mute:before{content:"\f25a"}.tf-ion-wand:before{content:"\f358"}.tf-ion-waterdrop:before{content:"\f25b"}.tf-ion-wifi:before{content:"\f25c"}.tf-ion-wineglass:before{content:"\f2b9"}.tf-ion-woman:before{content:"\f25d"}.tf-ion-wrench:before{content:"\f2ba"}.tf-ion-xbox:before{content:"\f30c"}.tf-mobile:before{content:"\e000"}.tf-laptop:before{content:"\e001"}.tf-desktop:before{content:"\e002"}.tf-phone2:before{content:"\e004"}.tf-document3:before{content:"\e005"}.tf-documents5:before{content:"\e006"}.tf-search3:before{content:"\e007"}.tf-clipboard4:before{content:"\e008"}.tf-newspaper:before{content:"\e009"}.tf-notebook9:before{content:"\e00a"}.tf-book-open:before{content:"\e00b"}.tf-browser:before{content:"\e00c"}.tf-calendar2:before{content:"\e00d"}.tf-presentation:before{content:"\e00e"}.tf-picture:before{content:"\e00f"}.tf-pictures:before{content:"\e010"}.tf-video:before{content:"\e011"}.tf-camera2:before{content:"\e012"}.tf-printer:before{content:"\e013"}.tf-toolbox:before{content:"\e014"}.tf-briefcase2:before{content:"\e015"}.tf-wallet:before{content:"\e016"}.tf-gift2:before{content:"\e017"}.tf-bargraph:before{content:"\e018"}.tf-grid:before{content:"\e019"}.tf-expand2:before{content:"\e01a"}.tf-focus:before{content:"\e01b"}.tf-edit:before{content:"\e01c"}.tf-ribbon:before{content:"\e01e"}.tf-adjustments:before{content:"\e01d"}.tf-hourglass:before{content:"\e01f"}.tf-lock2:before{content:"\e020"}.tf-megaphone:before{content:"\e021"}.tf-shield2:before{content:"\e022"}.tf-trophy6:before{content:"\e023"}.tf-flag2:before{content:"\e024"}.tf-map2:before{content:"\e025"}.tf-puzzle:before{content:"\e026"}.tf-basket:before{content:"\e027"}.tf-envelope2:before{content:"\e028"}.tf-streetsign:before{content:"\e029"}.tf-telescope:before{content:"\e02a"}.tf-gears:before{content:"\e02b"}.tf-key:before{content:"\e02c"}.tf-paperclip4:before{content:"\e02d"}.tf-attachment:before{content:"\e02e"}.tf-pricetags:before{content:"\e02f"}.tf-lightbulb:before{content:"\e030"}.tf-layers:before{content:"\e031"}.tf-pencil2:before{content:"\e032"}.tf-tools:before{content:"\e033"}.tf-tools-2:before{content:"\e034"}.tf-scissors2:before{content:"\e035"}.tf-paintbrush:before{content:"\e036"}.tf-magnifying-glass:before{content:"\e037"}.tf-circle-compass:before{content:"\e038"}.tf-linegraph:before{content:"\e039"}.tf-mic:before{content:"\e03a"}.tf-strategy:before{content:"\e03b"}.tf-beaker:before{content:"\e03c"}.tf-caution:before{content:"\e03d"}.tf-recycle2:before{content:"\e03e"}.tf-anchor2:before{content:"\e03f"}.tf-profile-male:before{content:"\e040"}.tf-profile-female:before{content:"\e041"}.tf-bike:before{content:"\e042"}.tf-wine:before{content:"\e043"}.tf-hotairballoon:before{content:"\e044"}.tf-globe:before{content:"\e045"}.tf-genius:before{content:"\e046"}.tf-map-pin:before{content:"\e047"}.tf-dial:before{content:"\e048"}.tf-chat:before{content:"\e049"}.tf-heart2:before{content:"\e04a"}.tf-upload2:before{content:"\e04c"}.tf-download2:before{content:"\e04d"}.tf-target3:before{content:"\e04e"}.tf-hazardous:before{content:"\e04f"}.tf-piechart:before{content:"\e050"}.tf-speedometer:before{content:"\e051"}.tf-global:before{content:"\e052"}.tf-compass:before{content:"\e053"}.tf-lifesaver:before{content:"\e054"}.tf-clock:before{content:"\e055"}.tf-aperture:before{content:"\e056"}.tf-quote:before{content:"\e057"}.tf-scope:before{content:"\e058"}.tf-alarmclock:before{content:"\e059"}.tf-refresh:before{content:"\e05a"}.tf-happy:before{content:"\e05b"}.tf-facebook:before{content:"\e05d"}.tf-twitter:before{content:"\e05e"}.tf-googleplus:before{content:"\e05f"}.tf-rss:before{content:"\e060"}.tf-tumblr:before{content:"\e061"}.tf-linkedin:before{content:"\e062"}.tf-dribbble:before{content:"\e063"} \ No newline at end of file