diff options
| author | Mark Otto <[email protected]> | 2016-02-06 20:33:26 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-06 20:33:26 -0800 |
| commit | d7d0e186bdfb52856a455c438538582fe95324e6 (patch) | |
| tree | 43484b5b58471431662e0a8be2b3bb9eb7f00d31 /docs | |
| parent | f6ad665c26f8a376a806721feaf3f38ceadc7e79 (diff) | |
| parent | cb7b78087690e756e33b6f6abdb3548f73f8bb1b (diff) | |
| download | bootstrap-d7d0e186bdfb52856a455c438538582fe95324e6.tar.xz bootstrap-d7d0e186bdfb52856a455c438538582fe95324e6.zip | |
Merge branch 'v4-dev' into v4-split-buttons
Diffstat (limited to 'docs')
58 files changed, 1624 insertions, 954 deletions
diff --git a/docs/_data/browser-bugs.yml b/docs/_data/browser-bugs.yml index fe4129a7a..a610d1b56 100644 --- a/docs/_data/browser-bugs.yml +++ b/docs/_data/browser-bugs.yml @@ -40,6 +40,26 @@ - browser: > + Internet Explorer 11 & Microsoft Edge + summary: > + `@-ms-viewport{width: device-width;}` has side-effect of making scrollbars auto-hide + upstream_bug: > + IE#2256049 + origin: > + Bootstrap#18543 + +- + browser: > + Internet Explorer 11 & Microsoft Edge + summary: > + Background color from lower layer bleeds through transparent border in some cases + upstream_bug: > + IE#2263132 + origin: > + Bootstrap#18228 + +- + browser: > Firefox summary: > `.table-bordered` with an empty `<tbody>` is missing borders. @@ -200,16 +220,6 @@ - browser: > - Safari - summary: > - Incorrect placement of `position: fixed` element when it's a child of a `position: relative; left: X%;` element. - upstream_bug: > - WebKit#147284, Safari#21993128 - origin: > - Bootstrap#16814 - -- - browser: > Safari (OS X) summary: > Scrollbar clipped in `select[multiple]` with padding. @@ -312,13 +322,43 @@ - browser: > - Safari (iOS 9+) + Safari (iOS) + summary: > + `position:fixed` is incorrectly positioned when tab bar is visible on iPhone 6S+ Safari + upstream_bug: > + WebKit#153056 + origin: > + Bootstrap#18859 + +- + browser: > + Safari (iOS) + summary: > + Tapping into an `<input>` within a `position:fixed` element scrolls to the top of the page + upstream_bug: > + WebKit#153224, Safari#24235301 + origin: > + Bootstrap#17497 + +- + browser: > + Safari (iOS) + summary: > + `<body>` with `overflow:hidden` CSS is scrollable on iOS + upstream_bug: > + WebKit#153852 + origin: > + Bootstrap#14839 + +- + browser: > + Safari (iOS) summary: > - Sometimes excessive automatic zoom is applied after opening a modal, and the user isn't allowed to zoom out + Scroll gesture in text field in `position:fixed` element sometimes scrolls `<body>` instead of scrollable ancestor upstream_bug: > - WebKit#150715 + WebKit#153856 origin: > - WebKit#138201 + Bootstrap#14839 - browser: > diff --git a/docs/_data/nav.yml b/docs/_data/nav.yml index dac90c0d8..1fc97157e 100644 --- a/docs/_data/nav.yml +++ b/docs/_data/nav.yml @@ -2,16 +2,20 @@ pages: - title: Introduction - title: Download + - title: Contents - title: Browsers & devices + - title: JavaScript - title: Options - title: Flexbox - title: Build tools - title: Best practices + - title: Accessibility - title: Layout pages: - title: Overview - title: Grid + - title: Flexbox grid - title: Media object - title: Responsive utilities @@ -59,7 +63,6 @@ pages: - title: History - title: Team - - title: Accessibility - title: Brand - title: License - title: Translations diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html index 7bcaa3983..662ea1133 100644 --- a/docs/_includes/footer.html +++ b/docs/_includes/footer.html @@ -11,7 +11,7 @@ </div> </footer> -<script src="{{ site.cdn.jquery }}"></script> +<script src="{{ site.cdn.jquery }}" integrity="{{ site.cdn.jquery_hash }}" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="{{ site.baseurl }}/assets/js/vendor/jquery.min.js"><\/script>')</script> <script src="{{ site.baseurl }}/assets/js/vendor/tether.min.js"></script> diff --git a/docs/_includes/nav-docs.html b/docs/_includes/nav-docs.html index fa2984188..b4f4d1f9e 100644 --- a/docs/_includes/nav-docs.html +++ b/docs/_includes/nav-docs.html @@ -25,6 +25,7 @@ <ul class="nav bd-sidenav"> {% for doc in group.pages %} {% assign slug = doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' %} + {% capture slug %}/{{ slug }}{% endcapture %} {% assign active = nil %} {% if page.url contains slug %} diff --git a/docs/_includes/nav-home.html b/docs/_includes/nav-home.html index 9faa22f6c..a347a5f7c 100644 --- a/docs/_includes/nav-home.html +++ b/docs/_includes/nav-home.html @@ -1,59 +1,61 @@ <header class="navbar navbar-light navbar-static-top bd-navbar" role="banner"> - {% comment %} - <nav class="nav navbar-nav pull-xs-right"> - <div class="nav-item dropdown"> - <a class="nav-item nav-link dropdown-toggle" href="#" id="bd-versions" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> - v{{ site.current_version }} - </a> - <div class="dropdown-menu dropdown-menu-right" aria-labelledby="bd-versions"> - <a class="dropdown-item" href="#">v4.0.0-alpha.2</a> - <a class="dropdown-item" href="#">v3.3.5</a> - <a class="dropdown-item" href="#">v3.3.4</a> - <a class="dropdown-item" href="#">v3.3.2</a> - <a class="dropdown-item" href="#">v3.3.1</a> - <a class="dropdown-item" href="#">v3.3.0</a> - <a class="dropdown-item" href="#">v3.2.0</a> - <a class="dropdown-item" href="#">v3.1.1</a> - <a class="dropdown-item" href="#">v3.1.0</a> - <a class="dropdown-item" href="#">v3.0.3</a> - <a class="dropdown-item" href="#">v3.0.2</a> - <a class="dropdown-item" href="#">v3.0.1</a> - <a class="dropdown-item" href="#">v3.0.0</a> + <div class="container"> + {% comment %} + <nav class="nav navbar-nav pull-xs-right"> + <div class="nav-item dropdown"> + <a class="nav-item nav-link dropdown-toggle" href="#" id="bd-versions" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> + v{{ site.current_version }} + </a> + <div class="dropdown-menu dropdown-menu-right" aria-labelledby="bd-versions"> + <a class="dropdown-item" href="#">v4.0.0-alpha.2</a> + <a class="dropdown-item" href="#">v3.3.5</a> + <a class="dropdown-item" href="#">v3.3.4</a> + <a class="dropdown-item" href="#">v3.3.2</a> + <a class="dropdown-item" href="#">v3.3.1</a> + <a class="dropdown-item" href="#">v3.3.0</a> + <a class="dropdown-item" href="#">v3.2.0</a> + <a class="dropdown-item" href="#">v3.1.1</a> + <a class="dropdown-item" href="#">v3.1.0</a> + <a class="dropdown-item" href="#">v3.0.3</a> + <a class="dropdown-item" href="#">v3.0.2</a> + <a class="dropdown-item" href="#">v3.0.1</a> + <a class="dropdown-item" href="#">v3.0.0</a> + </div> </div> - </div> - </nav> - {% endcomment %} + </nav> + {% endcomment %} - <nav> - <div class="clearfix"> - <button class="navbar-toggler pull-xs-right hidden-sm-up" type="button" data-toggle="collapse" data-target="#bd-main-nav" aria-controls="bd-main-nav" aria-expanded="false" aria-label="Toggle navigation"> - ☰ - </button> - <a class="navbar-brand hidden-sm-up" href="{{ site.baseurl }}/"> - Bootstrap - </a> - </div> - <div class="collapse navbar-toggleable-xs" id="bd-main-nav"> - <ul class="nav navbar-nav"> - <li class="nav-item active"> - <a class="nav-item nav-link {% if page.layout == "home" %}active{% endif %}" href="{{ site.baseurl }}/" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Bootstrap');">Bootstrap</a> - </li> - <li class="nav-item"> - <a class="nav-item nav-link {% if page.layout == "docs" %}active{% endif %}" href="{{ site.baseurl }}/getting-started/introduction/" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Docs');">Documentation</a> - </li> - <li class="nav-item"> - <a class="nav-item nav-link {% if page.title == "Examples" %}active{% endif %}" href="{{ site.baseurl }}/examples/" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Examples');">Examples</a> - </li> - <li class="nav-item"> - <a class="nav-item nav-link" href="{{ site.themes }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Themes');">Themes</a> - </li> - <li class="nav-item"> - <a class="nav-item nav-link" href="{{ site.expo }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Expo');">Expo</a> - </li> - <li class="nav-item"> - <a class="nav-item nav-link" href="{{ site.blog }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Blog');">Blog</a> - </li> - </ul> - </div> - </nav> + <nav> + <div class="clearfix"> + <button class="navbar-toggler pull-xs-right hidden-sm-up" type="button" data-toggle="collapse" data-target="#bd-main-nav" aria-controls="bd-main-nav" aria-expanded="false" aria-label="Toggle navigation"> + ☰ + </button> + <a class="navbar-brand hidden-sm-up" href="{{ site.baseurl }}/"> + Bootstrap + </a> + </div> + <div class="collapse navbar-toggleable-xs" id="bd-main-nav"> + <ul class="nav navbar-nav"> + <li class="nav-item active"> + <a class="nav-item nav-link {% if page.layout == "home" %}active{% endif %}" href="{{ site.baseurl }}/" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Bootstrap');">Bootstrap</a> + </li> + <li class="nav-item"> + <a class="nav-item nav-link {% if page.layout == "docs" %}active{% endif %}" href="{{ site.baseurl }}/getting-started/introduction/" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Docs');">Documentation</a> + </li> + <li class="nav-item"> + <a class="nav-item nav-link {% if page.title == "Examples" %}active{% endif %}" href="{{ site.baseurl }}/examples/" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Examples');">Examples</a> + </li> + <li class="nav-item"> + <a class="nav-item nav-link" href="{{ site.themes }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Themes');">Themes</a> + </li> + <li class="nav-item"> + <a class="nav-item nav-link" href="{{ site.expo }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Expo');">Expo</a> + </li> + <li class="nav-item"> + <a class="nav-item nav-link" href="{{ site.blog }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Blog');">Blog</a> + </li> + </ul> + </div> + </nav> + </div> </header> diff --git a/docs/_layouts/docs.html b/docs/_layouts/docs.html index fc47e6f40..6e8cddf21 100644 --- a/docs/_layouts/docs.html +++ b/docs/_layouts/docs.html @@ -21,10 +21,10 @@ <div class="container"> <div class="row"> - <div class="col-md-3 col-md-push-9 bd-sidebar"> + <div class="col-xs-12 col-md-3 push-md-9 bd-sidebar"> {% include nav-docs.html %} </div> - <div class="col-md-9 col-md-pull-3 bd-content"> + <div class="col-xs-12 col-md-9 pull-md-3 bd-content"> <h1 class="bd-title" id="content">{{ page.title }}</h1> {{ content }} </div> diff --git a/docs/assets/css/docs.min.css b/docs/assets/css/docs.min.css index 6c70ee243..d7efbe4c4 100644 --- a/docs/assets/css/docs.min.css +++ b/docs/assets/css/docs.min.css @@ -3,5 +3,5 @@ * Copyright 2011-2016 Twitter, Inc. * Licensed under the Creative Commons Attribution 3.0 Unported License. For * details, see https://creativecommons.org/licenses/by/3.0/. - */.bd-booticon{display:block;width:9rem;height:9rem;font-size:6.5rem;line-height:9rem;color:#fff;text-align:center;cursor:default;background-color:#563d7c;border-radius:15%}.bd-booticon.inverse{color:#563d7c;background-color:#fff}.bd-booticon.outline{background-color:transparent;border:1px solid #cdbfe3}.bd-navbar{font-size:87.5%}.bd-navbar .navbar-nav .nav-link{color:#8e869d}.bd-navbar .navbar-nav .nav-link.active,.bd-navbar .navbar-nav .nav-link:focus,.bd-navbar .navbar-nav .nav-link:hover{color:#373a3c;background-color:transparent}.bd-navbar .navbar-nav .nav-link.active{color:#000}.bd-navbar .dropdown-menu{font-size:inherit}@media (max-width:767px){.bd-navbar .nav-link{float:none}.bd-navbar .nav-link+.nav-link{margin-left:0}}.bd-masthead{position:relative;padding:3rem .9375rem 2rem;color:#cdbfe3;text-align:center;background-image:-webkit-linear-gradient(315deg,#271b38,#563d7c,#7952b3);background-image:-o-linear-gradient(315deg,#271b38,#563d7c,#7952b3);background-image:linear-gradient(135deg,#271b38,#563d7c,#7952b3)}.bd-masthead .bd-booticon{margin:0 auto 2rem;color:#cdbfe3;border-color:#cdbfe3}.bd-masthead h1{font-weight:300;line-height:1}.bd-masthead .lead{margin-right:auto;margin-bottom:2rem;margin-left:auto;font-size:1.25rem;color:#fff}.bd-masthead .version{margin-top:-1rem;margin-bottom:2rem}.bd-masthead .btn{width:100%;padding:1rem 2rem;font-size:1.25rem;font-weight:500;color:#ffe484;border-color:#ffe484}.bd-masthead .btn:hover{color:#2a2730;background-color:#ffe484;border-color:#ffe484}.bd-masthead .carbonad{margin-bottom:-2rem!important}@media (min-width:544px){.bd-masthead{padding-top:8rem;padding-bottom:2rem}.bd-masthead .btn{width:auto}.bd-masthead .carbonad{margin-bottom:0!important}}@media (min-width:768px){.bd-masthead{padding-bottom:4rem}.bd-masthead .bd-header{margin-bottom:4rem}.bd-masthead h1{font-size:4rem}.bd-masthead .lead{font-size:1.5rem}.bd-masthead .carbonad{margin-top:3rem!important}}@media (min-width:992px){.bd-masthead .lead{width:85%;font-size:2rem}}.bd-featurette{padding-top:3rem;padding-bottom:3rem;font-size:1rem;line-height:1.5;color:#555;text-align:center;background-color:#fff;border-top:1px solid #eee}.bd-featurette .highlight{text-align:left}.bd-featurette .lead{margin-right:auto;margin-bottom:2rem;margin-left:auto;font-size:1rem;text-align:center}@media (min-width:544px){.bd-featurette{text-align:left}}@media (min-width:768px){.bd-featurette .col-sm-6:first-child{padding-right:2.8125rem}.bd-featurette .col-sm-6:last-child{padding-left:2.8125rem}}.bd-featurette-title{margin-bottom:.5rem;font-size:2rem;font-weight:400;color:#333;text-align:center}.half-rule{width:6rem;margin:2.5rem auto}@media (min-width:544px){.half-rule{margin-right:0;margin-left:0}}.bd-featurette h4{margin-top:1rem;margin-bottom:.5rem;font-weight:400;color:#333}.bd-featurette-img{display:block;margin-bottom:1.25rem;color:#333}.bd-featurette-img:hover{color:#0275d8;text-decoration:none}.bd-featurette-img img{display:block;margin-bottom:1rem}@media (min-width:480px){.bd-featurette .img-fluid{margin-top:2rem}}@media (min-width:768px){.bd-featurette{padding-top:6rem;padding-bottom:6rem}.bd-featurette-title{font-size:2.5rem}.bd-featurette-title+.lead{font-size:1.5rem}.bd-featurette .lead{max-width:80%}.bd-featurette .img-fluid{margin-top:0}}.bd-featured-sites{margin-right:-1px;margin-left:-1px}.bd-featured-sites .col-xs-6{padding:1px}.bd-featured-sites .img-fluid{margin-top:0}@media (min-width:768px){.bd-featured-sites .col-sm-3:first-child img{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.bd-featured-sites .col-sm-3:last-child img{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}}.carbonad{width:auto!important;height:auto!important;padding:1.25rem!important;margin:2rem -1.875rem -2rem!important;overflow:hidden;font-family:inherit!important;font-size:.8rem!important;line-height:1rem!important;color:#cdbfe3!important;text-align:left;background:#3e2c5a!important;border:0!important}.carbonad-img{margin:0!important}.carbonad-tag,.carbonad-text{display:block!important;float:none!important;width:auto!important;height:auto!important;margin-left:145px!important;font-family:inherit!important}.carbonad-text{padding-top:0!important}.carbonad-tag{color:inherit!important;text-align:left!important}.carbonad-tag a,.carbonad-text a{color:#cdbfe3!important}.carbonad-tag a:hover,.carbonad-text a:hover{color:#fff!important}@media (min-width:544px){.carbonad{width:330px!important;padding:1rem!important;margin-right:auto!important;margin-left:auto!important;border-radius:.25rem}}.bd-content>table{display:block;width:100%;max-width:100%;margin-bottom:1rem;overflow-y:auto}.bd-content>table>tbody>tr>td,.bd-content>table>tbody>tr>th,.bd-content>table>tfoot>tr>td,.bd-content>table>tfoot>tr>th,.bd-content>table>thead>tr>td,.bd-content>table>thead>tr>th{padding:.75rem;line-height:1.5;vertical-align:top;border:1px solid #eceeef}.bd-content>table>tbody>tr>td>p:last-child,.bd-content>table>tbody>tr>th>p:last-child,.bd-content>table>tfoot>tr>td>p:last-child,.bd-content>table>tfoot>tr>th>p:last-child,.bd-content>table>thead>tr>td>p:last-child,.bd-content>table>thead>tr>th>p:last-child{margin-bottom:0}.bd-content>table td:first-child>code{white-space:nowrap}.bd-content>h2:not(:first-child){margin-top:3rem}.bd-content>h3{margin-top:1.5rem}.bd-content>ol li,.bd-content>ul li{margin-bottom:.25rem}@media (min-width:544px){.bd-title{font-size:3rem}.bd-title+p{font-size:1.25rem;font-weight:300}}#markdown-toc>li:first-child{display:none}#markdown-toc ul{padding-left:2rem;margin-top:.25rem;margin-bottom:.25rem}.bd-pageheader{padding:2rem .9375rem;margin-bottom:1.5rem;color:#cdbfe3;text-align:center;background-color:#563d7c}.bd-pageheader .container{position:relative}.bd-pageheader h1{font-size:3rem;font-weight:400;color:#fff}.bd-pageheader p{margin-bottom:0;font-size:1.25rem;font-weight:300}@media (min-width:544px){.bd-pageheader{padding-top:4rem;padding-bottom:4rem;margin-bottom:3rem;text-align:left}.bd-pageheader .carbonad{margin:2rem 0 0!important}}@media (min-width:768px){.bd-pageheader h1{font-size:4rem}.bd-pageheader p{font-size:1.5rem}}@media (min-width:992px){.bd-pageheader h1,.bd-pageheader p{margin-right:380px}.bd-pageheader .carbonad{position:absolute;top:0;right:.75rem;margin:0!important}}#skippy{display:block;padding:1em;color:#fff;background-color:#563d7c;outline:0}#skippy .skiplink-text{padding:.5em;outline:1px dotted}@media (min-width:768px){.bd-sidebar{padding-left:1rem}}.bd-search{position:relative;margin-bottom:1.5rem}.bd-search .form-control{height:2.45rem;padding-top:.4rem;padding-bottom:.4rem;background-color:#fafafa}.bd-search .form-control:focus{background-color:#fff}.bd-search-results{right:0;display:block;padding:0;overflow:hidden;font-size:.9rem}.bd-search-results:empty{display:none}.bd-search-results .dropdown-item{padding-right:.75rem;padding-left:.75rem}.bd-search-results .dropdown-item:first-child{margin-top:.25rem}.bd-search-results .dropdown-item:last-child{margin-bottom:.25rem}.bd-search-results .no-results{padding:.75rem 1rem;color:#7a7a7a;text-align:center;white-space:normal}.bd-sidenav{display:none}.bd-toc-link{display:block;padding:.25rem .75rem;color:#55595c}.bd-toc-link:focus,.bd-toc-link:hover{color:#0275d8;text-decoration:none}.active>.bd-toc-link{font-weight:500;color:#373a3c}.active>.bd-sidenav{display:block}.bd-toc-item.active{margin-top:1rem;margin-bottom:1rem}.bd-toc-item:first-child{margin-top:0}.bd-toc-item:last-child{margin-bottom:2rem}.bd-sidebar .nav>li>a{display:block;padding:.25rem .75rem;font-size:90%;color:#99979c}.bd-sidebar .nav>li>a:focus,.bd-sidebar .nav>li>a:hover{color:#0275d8;text-decoration:none;background-color:transparent}.bd-sidebar .nav>.active:focus>a,.bd-sidebar .nav>.active:hover>a,.bd-sidebar .nav>.active>a{font-weight:500;color:#373a3c;background-color:transparent}.bd-footer{padding:4rem 0;margin-top:4rem;font-size:85%;text-align:center;background-color:#f7f7f7}.bd-footer a{font-weight:500;color:#55595c}.bd-footer a:hover{color:#0275d8}.bd-footer p{margin-bottom:0}@media (min-width:544px){.bd-footer{text-align:left}}.bd-footer-links{padding-left:0;margin-bottom:1rem}.bd-footer-links li{display:inline-block}.bd-footer-links li+li{margin-left:1rem}.bd-example-row .row{margin-bottom:1rem}.bd-example-row .row>[class^=col-]{padding-top:.75rem;padding-bottom:.75rem;background-color:rgba(86,61,124,.15);border:1px solid rgba(86,61,124,.2)}.bd-example-container{min-width:16rem;max-width:25rem;margin-right:auto;margin-left:auto}.bd-example-container-header{height:3rem;margin-bottom:.5rem;background-color:#daeeff;border-radius:.25rem}.bd-example-container-sidebar{float:right;width:4rem;height:8rem;background-color:#fae3c4;border-radius:.25rem}.bd-example-container-body{height:8rem;margin-right:4.5rem;background-color:#957bbe;border-radius:.25rem}.bd-example-container-fluid{max-width:none}.bd-example{position:relative;padding:1rem;margin:1rem -1rem;border:solid #f7f7f9;border-width:.2rem 0 0}.bd-example::after{content:"";display:table;clear:both}@media (min-width:544px){.bd-example{padding:1.5rem;margin-right:0;margin-bottom:0;margin-left:0;border-width:.2rem}}.bd-example+.clipboard+.highlight,.bd-example+.highlight{margin-top:0}.bd-example+p{margin-top:2rem}.bd-example .container{width:auto}.bd-example>.form-control+.form-control{margin-top:.5rem}.bd-example>.card{max-width:20rem}.bd-example>.alert+.alert,.bd-example>.nav+.nav,.bd-example>.navbar+.navbar,.bd-example>.progress+.btn,.bd-example>.progress+.progress{margin-top:1rem}.bd-example>.dropdown-menu:first-child{position:static;display:block}.bd-example>.close{float:none}.bd-example-type .table .type-info{color:#999;vertical-align:middle}.bd-example-type .table td{padding:1rem 0;border-color:#eee}.bd-example-type .table tr:first-child td{border-top:0}.bd-example-type h1,.bd-example-type h2,.bd-example-type h3,.bd-example-type h4,.bd-example-type h5,.bd-example-type h6{margin:0}.bd-example-bg-classes p{padding:1rem}.bd-example>img+img{margin-left:.5rem}.bd-example>.btn-group{margin-top:.25rem;margin-bottom:.25rem}.bd-example>.btn-toolbar+.btn-toolbar{margin-top:.5rem}.bd-example-control-sizing input[type=text]+input[type=text],.bd-example-control-sizing select{margin-top:.5rem}.bd-example-form .input-group{margin-bottom:.5rem}.bd-example>textarea.form-control{resize:vertical}.bd-example>.list-group{max-width:400px}.bd-example .navbar-fixed-top{position:static;margin:-1rem -1rem 1rem}.bd-example .navbar-fixed-bottom{position:static;margin:1rem -1rem -1rem}@media (min-width:544px){.bd-example .navbar-fixed-top{margin:-1.5rem -1.5rem 1rem}.bd-example .navbar-fixed-bottom{margin:1rem -1.5rem -1.5rem}}.bd-example .pagination{margin-top:.5rem;margin-bottom:.5rem}.bd-example>.pager{margin-top:0}.bd-example-modal{background-color:#f5f5f5}.bd-example-modal .modal{position:relative;top:auto;right:auto;bottom:auto;left:auto;z-index:1;display:block}.bd-example-modal .modal-dialog{left:auto;margin-right:auto;margin-left:auto}.bd-example>.dropdown>.dropdown-toggle{float:left}.bd-example>.dropdown>.dropdown-menu{position:static;display:block;margin-bottom:.25rem;clear:left}.bd-example-tabs .nav-tabs{margin-bottom:1rem}.bd-example-tooltips{text-align:center}.bd-example-tooltips>.btn{margin-top:.25rem;margin-bottom:.25rem}.bd-example-popover-static{padding-bottom:1.5rem;background-color:#f9f9f9}.bd-example-popover-static .popover{position:relative;display:block;float:left;width:260px;margin:1.25rem}.tooltip-demo a{white-space:nowrap}.bd-example-tooltip-static .tooltip{position:relative;display:inline-block;margin:10px 20px;opacity:1}.scrollspy-example{position:relative;height:200px;margin-top:.5rem;overflow:auto}.bd-example>.center-block:not(img){max-width:200px;padding:.5rem;background-color:#eee}.bd-example>.bg-danger:not(.navbar),.bd-example>.bg-info:not(.navbar),.bd-example>.bg-inverse:not(.navbar),.bd-example>.bg-primary:not(.navbar),.bd-example>.bg-success:not(.navbar),.bd-example>.bg-warning:not(.navbar){padding:.5rem;margin-top:.5rem;margin-bottom:.5rem}.highlight{padding:1rem;margin:1rem -.9375rem;background-color:#f7f7f9}@media (min-width:544px){.highlight{padding:1.5rem;margin-right:0;margin-left:0}}.highlight pre{padding:0;margin-top:0;margin-bottom:0;background-color:transparent;border:0}.highlight pre code{font-size:inherit;color:#373a3c}.table-responsive .highlight pre{white-space:normal}.bd-table th small,.responsive-utilities th small{display:block;font-weight:400;color:#999}.responsive-utilities tbody th{font-weight:400}.responsive-utilities td{text-align:center}.responsive-utilities td.is-visible{color:#468847;background-color:#dff0d8!important}.responsive-utilities td.is-hidden{color:#ccc;background-color:#f9f9f9!important}.responsive-utilities-test{margin-top:.25rem}.responsive-utilities-test .col-xs-6{margin-bottom:.5rem}.responsive-utilities-test span{display:block;padding:1rem .5rem;font-size:1rem;font-weight:700;line-height:1.1;text-align:center;border-radius:.25rem}.hidden-on .col-xs-6>.not-visible,.visible-on .col-xs-6>.not-visible{color:#999;border:1px solid #ddd}.hidden-on .col-xs-6 .visible,.visible-on .col-xs-6 .visible{color:#468847;background-color:#dff0d8;border:1px solid #d6e9c6}@media (max-width:543px){.hidden-xs-only{display:none!important}}@media (min-width:544px) and (max-width:767px){.hidden-sm-only{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-md-only{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-lg-only{display:none!important}}@media (min-width:1200px){.hidden-xl-only{display:none!important}}.btn-bs{font-weight:500;color:#7952b3;border-color:#7952b3}.btn-bs:active,.btn-bs:focus,.btn-bs:hover{color:#fff;background-color:#7952b3;border-color:#7952b3}.bd-callout{padding:1.25rem;margin-top:1.25rem;margin-bottom:1.25rem;border:1px solid #eee;border-left-width:.25rem;border-radius:.25rem}.bd-callout h4{margin-top:0;margin-bottom:.25rem}.bd-callout p:last-child{margin-bottom:0}.bd-callout code{border-radius:.25rem}.bd-callout+.bd-callout{margin-top:-.25rem}.bd-callout-info{border-left-color:#5bc0de}.bd-callout-info h4{color:#5bc0de}.bd-callout-warning{border-left-color:#f0ad4e}.bd-callout-warning h4{color:#f0ad4e}.bd-callout-danger{border-left-color:#d9534f}.bd-callout-danger h4{color:#d9534f}.bd-examples .img-thumbnail{margin-bottom:.75rem}.bd-examples h4{margin-bottom:.25rem}.bd-examples p{margin-bottom:1.25rem}@media (max-width:480px){.bd-examples{margin-right:-.75rem;margin-left:-.75rem}.bd-examples>[class^=col-]{padding-right:.75rem;padding-left:.75rem}}.bd-team{margin-bottom:1.5rem}.bd-team .team-member{line-height:2rem;color:#555}.bd-team .team-member:hover{color:#333;text-decoration:none}.bd-team .github-btn{float:right;width:180px;height:1.25rem;margin-top:.25rem;border:0}.bd-team img{float:left;width:2rem;margin-right:.5rem;border-radius:.25rem}.bd-browser-bugs td p{margin-bottom:0}.bd-browser-bugs th:first-child{width:18%}.bd-brand-logos{display:table;width:100%;margin-bottom:1rem;overflow:hidden;color:#563d7c;background-color:#f9f9f9;border-radius:.25rem}.bd-brand-item{padding:4rem 0;text-align:center}.bd-brand-item+.bd-brand-item{border-top:1px solid #fff}.bd-brand-logos .inverse{color:#fff;background-color:#563d7c}.bd-brand-item h1,.bd-brand-item h3{margin-top:0;margin-bottom:0}.bd-brand-item .bd-booticon{margin-right:auto;margin-left:auto}@media (min-width:768px){.bd-brand-item{display:table-cell;width:1%}.bd-brand-item+.bd-brand-item{border-top:0;border-left:1px solid #fff}.bd-brand-item h1{font-size:4rem}}.color-swatches{margin:0 -5px;overflow:hidden}.color-swatch{float:left;width:4rem;height:4rem;margin-right:.25rem;margin-left:.25rem;border-radius:.25rem}@media (min-width:768px){.color-swatch{width:6rem;height:6rem}}.color-swatches .bd-purple{background-color:#563d7c}.color-swatches .bd-purple-light{background-color:#cdbfe3}.color-swatches .bd-purple-lighter{background-color:#e5e1ea}.color-swatches .bd-gray{background-color:#f9f9f9}.bd-clipboard{position:relative;display:none;float:right}.bd-clipboard+.highlight{margin-top:0}.btn-clipboard{position:absolute;top:.5rem;right:.5rem;z-index:10;display:block;padding:.25rem .5rem;font-size:75%;color:#818a91;cursor:pointer;background-color:transparent;border-radius:.25rem}.btn-clipboard:hover{color:#fff;background-color:#027de7}@media (min-width:768px){.bd-clipboard{display:block}}.hll{background-color:#ffc}.c{color:#999}.err{color:#a00;background-color:#faa}.k{color:#069}.o{color:#555}.cm{color:#999}.cp{color:#099}.c1{color:#999}.cs{color:#999}.gd{background-color:#fcc;border:1px solid #c00}.ge{font-style:italic}.gr{color:red}.gh{color:#030}.gi{background-color:#cfc;border:1px solid #0c0}.go{color:#aaa}.gp{color:#009}.gu{color:#030}.gt{color:#9c6}.kc{color:#069}.kd{color:#069}.kn{color:#069}.kp{color:#069}.kr{color:#069}.kt{color:#078}.m{color:#f60}.s{color:#d44950}.na{color:#4f9fcf}.nb{color:#366}.nc{color:#0a8}.no{color:#360}.nd{color:#99f}.ni{color:#999}.ne{color:#c00}.nf{color:#c0f}.nl{color:#99f}.nn{color:#0cf}.nt{color:#2f6f9f}.nv{color:#033}.ow{color:#000}.w{color:#bbb}.mf{color:#f60}.mh{color:#f60}.mi{color:#f60}.mo{color:#f60}.sb{color:#c30}.sc{color:#c30}.sd{font-style:italic;color:#c30}.s2{color:#c30}.se{color:#c30}.sh{color:#c30}.si{color:#a00}.sx{color:#c30}.sr{color:#3aa}.s1{color:#c30}.ss{color:#fc3}.bp{color:#366}.vc{color:#033}.vg{color:#033}.vi{color:#033}.il{color:#f60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}.anchorjs-link{color:inherit}@media (max-width:480px){.anchorjs-link{display:none}}:hover>.anchorjs-link{opacity:.75;-webkit-transition:color .16s linear;-o-transition:color .16s linear;transition:color .16s linear}.anchorjs-link:focus,:hover>.anchorjs-link:hover{text-decoration:none;opacity:1} + */.bd-booticon{display:block;width:9rem;height:9rem;font-size:6.5rem;line-height:9rem;color:#fff;text-align:center;cursor:default;background-color:#563d7c;border-radius:15%}.bd-booticon.inverse{color:#563d7c;background-color:#fff}.bd-booticon.outline{background-color:transparent;border:1px solid #cdbfe3}.bd-navbar{font-size:87.5%}.bd-navbar .navbar-nav .nav-link{color:#8e869d}.bd-navbar .navbar-nav .nav-link.active,.bd-navbar .navbar-nav .nav-link:focus,.bd-navbar .navbar-nav .nav-link:hover{color:#373a3c;background-color:transparent}.bd-navbar .navbar-nav .nav-link.active{color:#000}.bd-navbar .dropdown-menu{font-size:inherit}@media (max-width:767px){.bd-navbar .nav-link{float:none}.bd-navbar .nav-link+.nav-link{margin-left:0}}.bd-masthead{position:relative;padding:3rem 15px 2rem;color:#cdbfe3;text-align:center;background-image:-webkit-linear-gradient(315deg,#271b38,#563d7c,#7952b3);background-image:-o-linear-gradient(315deg,#271b38,#563d7c,#7952b3);background-image:linear-gradient(135deg,#271b38,#563d7c,#7952b3)}.bd-masthead .bd-booticon{margin:0 auto 2rem;color:#cdbfe3;border-color:#cdbfe3}.bd-masthead h1{font-weight:300;line-height:1}.bd-masthead .lead{margin-right:auto;margin-bottom:2rem;margin-left:auto;font-size:1.25rem;color:#fff}.bd-masthead .version{margin-top:-1rem;margin-bottom:2rem}.bd-masthead .btn{width:100%;padding:1rem 2rem;font-size:1.25rem;font-weight:500;color:#ffe484;border-color:#ffe484}.bd-masthead .btn:hover{color:#2a2730;background-color:#ffe484;border-color:#ffe484}.bd-masthead .carbonad{margin-bottom:-2rem!important}@media (min-width:544px){.bd-masthead{padding-top:8rem;padding-bottom:2rem}.bd-masthead .btn{width:auto}.bd-masthead .carbonad{margin-bottom:0!important}}@media (min-width:768px){.bd-masthead{padding-bottom:4rem}.bd-masthead .bd-header{margin-bottom:4rem}.bd-masthead h1{font-size:4rem}.bd-masthead .lead{font-size:1.5rem}.bd-masthead .carbonad{margin-top:3rem!important}}@media (min-width:992px){.bd-masthead .lead{width:85%;font-size:2rem}}.bd-featurette{padding-top:3rem;padding-bottom:3rem;font-size:1rem;line-height:1.5;color:#555;text-align:center;background-color:#fff;border-top:1px solid #eee}.bd-featurette .highlight{text-align:left}.bd-featurette .lead{margin-right:auto;margin-bottom:2rem;margin-left:auto;font-size:1rem;text-align:center}@media (min-width:544px){.bd-featurette{text-align:left}}@media (min-width:768px){.bd-featurette .col-sm-6:first-child{padding-right:45px}.bd-featurette .col-sm-6:last-child{padding-left:45px}}.bd-featurette-title{margin-bottom:.5rem;font-size:2rem;font-weight:400;color:#333;text-align:center}.half-rule{width:6rem;margin:2.5rem auto}@media (min-width:544px){.half-rule{margin-right:0;margin-left:0}}.bd-featurette h4{margin-top:1rem;margin-bottom:.5rem;font-weight:400;color:#333}.bd-featurette-img{display:block;margin-bottom:1.25rem;color:#333}.bd-featurette-img:hover{color:#0275d8;text-decoration:none}.bd-featurette-img img{display:block;margin-bottom:1rem}@media (min-width:480px){.bd-featurette .img-fluid{margin-top:2rem}}@media (min-width:768px){.bd-featurette{padding-top:6rem;padding-bottom:6rem}.bd-featurette-title{font-size:2.5rem}.bd-featurette-title+.lead{font-size:1.5rem}.bd-featurette .lead{max-width:80%}.bd-featurette .img-fluid{margin-top:0}}.bd-featured-sites{margin-right:-1px;margin-left:-1px}.bd-featured-sites .col-xs-6{padding:1px}.bd-featured-sites .img-fluid{margin-top:0}@media (min-width:768px){.bd-featured-sites .col-sm-3:first-child img{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.bd-featured-sites .col-sm-3:last-child img{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}}.carbonad{width:auto!important;height:auto!important;padding:1.25rem!important;margin:2rem -30px -2rem!important;overflow:hidden;font-family:inherit!important;font-size:.8rem!important;line-height:1rem!important;color:#cdbfe3!important;text-align:left;background:#3e2c5a!important;border:0!important}.carbonad-img{margin:0!important}.carbonad-tag,.carbonad-text{display:block!important;float:none!important;width:auto!important;height:auto!important;margin-left:145px!important;font-family:inherit!important}.carbonad-text{padding-top:0!important}.carbonad-tag{color:inherit!important;text-align:left!important}.carbonad-tag a,.carbonad-text a{color:#cdbfe3!important}.carbonad-tag a:hover,.carbonad-text a:hover{color:#fff!important}@media (min-width:544px){.carbonad{width:330px!important;padding:1rem!important;margin-right:auto!important;margin-left:auto!important;border-radius:.25rem}}.bd-content>table{display:block;width:100%;max-width:100%;margin-bottom:1rem;overflow-y:auto}.bd-content>table>tbody>tr>td,.bd-content>table>tbody>tr>th,.bd-content>table>tfoot>tr>td,.bd-content>table>tfoot>tr>th,.bd-content>table>thead>tr>td,.bd-content>table>thead>tr>th{padding:.75rem;vertical-align:top;border:1px solid #eceeef}.bd-content>table>tbody>tr>td>p:last-child,.bd-content>table>tbody>tr>th>p:last-child,.bd-content>table>tfoot>tr>td>p:last-child,.bd-content>table>tfoot>tr>th>p:last-child,.bd-content>table>thead>tr>td>p:last-child,.bd-content>table>thead>tr>th>p:last-child{margin-bottom:0}.bd-content>table td:first-child>code{white-space:nowrap}.bd-content>h2:not(:first-child){margin-top:3rem}.bd-content>h3{margin-top:1.5rem}.bd-content>ol li,.bd-content>ul li{margin-bottom:.25rem}@media (min-width:544px){.bd-title{font-size:3rem}.bd-title+p{font-size:1.25rem;font-weight:300}}#markdown-toc>li:first-child{display:none}#markdown-toc ul{padding-left:2rem;margin-top:.25rem;margin-bottom:.25rem}.bd-pageheader{padding:2rem 15px;margin-bottom:1.5rem;color:#cdbfe3;text-align:center;background-color:#563d7c}.bd-pageheader .container{position:relative}.bd-pageheader h1{font-size:3rem;font-weight:400;color:#fff}.bd-pageheader p{margin-bottom:0;font-size:1.25rem;font-weight:300}@media (min-width:544px){.bd-pageheader{padding-top:4rem;padding-bottom:4rem;margin-bottom:3rem;text-align:left}.bd-pageheader .carbonad{margin:2rem 0 0!important}}@media (min-width:768px){.bd-pageheader h1{font-size:4rem}.bd-pageheader p{font-size:1.5rem}}@media (min-width:992px){.bd-pageheader h1,.bd-pageheader p{margin-right:380px}.bd-pageheader .carbonad{position:absolute;top:0;right:.75rem;margin:0!important}}#skippy{display:block;padding:1em;color:#fff;background-color:#563d7c;outline:0}#skippy .skiplink-text{padding:.5em;outline:1px dotted}@media (min-width:768px){.bd-sidebar{padding-left:1rem}}.bd-search{position:relative;margin-bottom:1.5rem}.bd-search .form-control{height:2.45rem;padding-top:.4rem;padding-bottom:.4rem;background-color:#fafafa}.bd-search .form-control:focus{background-color:#fff}.bd-search-results{right:0;display:block;padding:0;overflow:hidden;font-size:.9rem}.bd-search-results:empty{display:none}.bd-search-results .dropdown-item{padding-right:.75rem;padding-left:.75rem}.bd-search-results .dropdown-item:first-child{margin-top:.25rem}.bd-search-results .dropdown-item:last-child{margin-bottom:.25rem}.bd-search-results .no-results{padding:.75rem 1rem;color:#7a7a7a;text-align:center;white-space:normal}.bd-sidenav{display:none}.bd-toc-link{display:block;padding:.25rem .75rem;color:#55595c}.bd-toc-link:focus,.bd-toc-link:hover{color:#0275d8;text-decoration:none}.active>.bd-toc-link{font-weight:500;color:#373a3c}.active>.bd-sidenav{display:block}.bd-toc-item.active{margin-top:1rem;margin-bottom:1rem}.bd-toc-item:first-child{margin-top:0}.bd-toc-item:last-child{margin-bottom:2rem}.bd-sidebar .nav>li>a{display:block;padding:.25rem .75rem;font-size:90%;color:#99979c}.bd-sidebar .nav>li>a:focus,.bd-sidebar .nav>li>a:hover{color:#0275d8;text-decoration:none;background-color:transparent}.bd-sidebar .nav>.active:focus>a,.bd-sidebar .nav>.active:hover>a,.bd-sidebar .nav>.active>a{font-weight:500;color:#373a3c;background-color:transparent}.bd-footer{padding:4rem 0;margin-top:4rem;font-size:85%;text-align:center;background-color:#f7f7f7}.bd-footer a{font-weight:500;color:#55595c}.bd-footer a:hover{color:#0275d8}.bd-footer p{margin-bottom:0}@media (min-width:544px){.bd-footer{text-align:left}}.bd-footer-links{padding-left:0;margin-bottom:1rem}.bd-footer-links li{display:inline-block}.bd-footer-links li+li{margin-left:1rem}.bd-example-row .row+.row{margin-top:1rem}.bd-example-row .row>.col,.bd-example-row .row>[class^=col-]{padding-top:.75rem;padding-bottom:.75rem;background-color:rgba(86,61,124,.15);border:1px solid rgba(86,61,124,.2)}.bd-example-row .flex-items-xs-bottom,.bd-example-row .flex-items-xs-middle,.bd-example-row .flex-items-xs-top{min-height:6rem;background-color:rgba(255,0,0,.1)}.bd-example-row-flex-cols .row{min-height:10rem;background-color:rgba(255,0,0,.1)}.bd-example-container{min-width:16rem;max-width:25rem;margin-right:auto;margin-left:auto}.bd-example-container-header{height:3rem;margin-bottom:.5rem;background-color:#daeeff;border-radius:.25rem}.bd-example-container-sidebar{float:right;width:4rem;height:8rem;background-color:#fae3c4;border-radius:.25rem}.bd-example-container-body{height:8rem;margin-right:4.5rem;background-color:#957bbe;border-radius:.25rem}.bd-example-container-fluid{max-width:none}.bd-example{position:relative;padding:1rem;margin:1rem -1rem;border:solid #f7f7f9;border-width:.2rem 0 0}.bd-example::after{content:"";display:table;clear:both}@media (min-width:544px){.bd-example{padding:1.5rem;margin-right:0;margin-bottom:0;margin-left:0;border-width:.2rem}}.bd-example+.clipboard+.highlight,.bd-example+.highlight{margin-top:0}.bd-example+p{margin-top:2rem}.bd-example .container{width:auto}.bd-example>.form-control+.form-control{margin-top:.5rem}.bd-example>.card{max-width:20rem}.bd-example>.alert+.alert,.bd-example>.nav+.nav,.bd-example>.navbar+.navbar,.bd-example>.progress+.btn,.bd-example>.progress+.progress{margin-top:1rem}.bd-example>.dropdown-menu:first-child{position:static;display:block}.bd-example>.close{float:none}.bd-example-type .table .type-info{color:#999;vertical-align:middle}.bd-example-type .table td{padding:1rem 0;border-color:#eee}.bd-example-type .table tr:first-child td{border-top:0}.bd-example-type h1,.bd-example-type h2,.bd-example-type h3,.bd-example-type h4,.bd-example-type h5,.bd-example-type h6{margin:0}.bd-example-bg-classes p{padding:1rem}.bd-example>img+img{margin-left:.5rem}.bd-example>.btn-group{margin-top:.25rem;margin-bottom:.25rem}.bd-example>.btn-toolbar+.btn-toolbar{margin-top:.5rem}.bd-example-control-sizing input[type=text]+input[type=text],.bd-example-control-sizing select{margin-top:.5rem}.bd-example-form .input-group{margin-bottom:.5rem}.bd-example>textarea.form-control{resize:vertical}.bd-example>.list-group{max-width:400px}.bd-example .navbar-fixed-top{position:static;margin:-1rem -1rem 1rem}.bd-example .navbar-fixed-bottom{position:static;margin:1rem -1rem -1rem}@media (min-width:544px){.bd-example .navbar-fixed-top{margin:-1.5rem -1.5rem 1rem}.bd-example .navbar-fixed-bottom{margin:1rem -1.5rem -1.5rem}}.bd-example .pagination{margin-top:.5rem;margin-bottom:.5rem}.bd-example-modal{background-color:#f5f5f5}.bd-example-modal .modal{position:relative;top:auto;right:auto;bottom:auto;left:auto;z-index:1;display:block}.bd-example-modal .modal-dialog{left:auto;margin-right:auto;margin-left:auto}.bd-example>.dropdown>.dropdown-toggle{float:left}.bd-example>.dropdown>.dropdown-menu{position:static;display:block;margin-bottom:.25rem;clear:left}.bd-example-tabs .nav-tabs{margin-bottom:1rem}.bd-example-tooltips{text-align:center}.bd-example-tooltips>.btn{margin-top:.25rem;margin-bottom:.25rem}.bd-example-popover-static{padding-bottom:1.5rem;background-color:#f9f9f9}.bd-example-popover-static .popover{position:relative;display:block;float:left;width:260px;margin:1.25rem}.tooltip-demo a{white-space:nowrap}.bd-example-tooltip-static .tooltip{position:relative;display:inline-block;margin:10px 20px;opacity:1}.scrollspy-example{position:relative;height:200px;margin-top:.5rem;overflow:auto}.bd-example>.center-block:not(img){max-width:200px;padding:.5rem;background-color:#eee}.bd-example>.bg-danger:not(.navbar),.bd-example>.bg-info:not(.navbar),.bd-example>.bg-inverse:not(.navbar),.bd-example>.bg-primary:not(.navbar),.bd-example>.bg-success:not(.navbar),.bd-example>.bg-warning:not(.navbar){padding:.5rem;margin-top:.5rem;margin-bottom:.5rem}.highlight{padding:1rem;margin:1rem -15px;background-color:#f7f7f9}@media (min-width:544px){.highlight{padding:1.5rem;margin-right:0;margin-left:0}}.highlight pre{padding:0;margin-top:0;margin-bottom:0;background-color:transparent;border:0}.highlight pre code{font-size:inherit;color:#373a3c}.table-responsive .highlight pre{white-space:normal}.bd-table th small,.responsive-utilities th small{display:block;font-weight:400;color:#999}.responsive-utilities tbody th{font-weight:400}.responsive-utilities td{text-align:center}.responsive-utilities .is-visible{color:#468847;background-color:#dff0d8!important}.responsive-utilities .is-hidden{color:#ccc;background-color:#f9f9f9!important}.responsive-utilities-test{margin-top:.25rem}.responsive-utilities-test .col-xs-6{margin-bottom:.5rem}.responsive-utilities-test span{display:block;padding:1rem .5rem;font-size:1rem;font-weight:700;line-height:1.1;text-align:center;border-radius:.25rem}.hidden-on .col-xs-6>.not-visible,.visible-on .col-xs-6>.not-visible{color:#999;border:1px solid #ddd}.hidden-on .col-xs-6 .visible,.visible-on .col-xs-6 .visible{color:#468847;background-color:#dff0d8;border:1px solid #d6e9c6}@media (max-width:543px){.hidden-xs-only{display:none!important}}@media (min-width:544px) and (max-width:767px){.hidden-sm-only{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-md-only{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-lg-only{display:none!important}}@media (min-width:1200px){.hidden-xl-only{display:none!important}}.btn-bs{font-weight:500;color:#7952b3;border-color:#7952b3}.btn-bs:active,.btn-bs:focus,.btn-bs:hover{color:#fff;background-color:#7952b3;border-color:#7952b3}.bd-callout{padding:1.25rem;margin-top:1.25rem;margin-bottom:1.25rem;border:1px solid #eee;border-left-width:.25rem;border-radius:.25rem}.bd-callout h4{margin-top:0;margin-bottom:.25rem}.bd-callout p:last-child{margin-bottom:0}.bd-callout code{border-radius:.25rem}.bd-callout+.bd-callout{margin-top:-.25rem}.bd-callout-info{border-left-color:#5bc0de}.bd-callout-info h4{color:#5bc0de}.bd-callout-warning{border-left-color:#f0ad4e}.bd-callout-warning h4{color:#f0ad4e}.bd-callout-danger{border-left-color:#d9534f}.bd-callout-danger h4{color:#d9534f}.bd-examples .img-thumbnail{margin-bottom:.75rem}.bd-examples h4{margin-bottom:.25rem}.bd-examples p{margin-bottom:1.25rem}@media (max-width:480px){.bd-examples{margin-right:-.75rem;margin-left:-.75rem}.bd-examples>[class^=col-]{padding-right:.75rem;padding-left:.75rem}}.bd-team{margin-bottom:1.5rem}.bd-team .team-member{line-height:2rem;color:#555}.bd-team .team-member:hover{color:#333;text-decoration:none}.bd-team .github-btn{float:right;width:180px;height:1.25rem;margin-top:.25rem;border:0}.bd-team img{float:left;width:2rem;margin-right:.5rem;border-radius:.25rem}.bd-browser-bugs td p{margin-bottom:0}.bd-browser-bugs th:first-child{width:18%}.bd-brand-logos{display:table;width:100%;margin-bottom:1rem;overflow:hidden;color:#563d7c;background-color:#f9f9f9;border-radius:.25rem}.bd-brand-item{padding:4rem 0;text-align:center}.bd-brand-item+.bd-brand-item{border-top:1px solid #fff}.bd-brand-logos .inverse{color:#fff;background-color:#563d7c}.bd-brand-item h1,.bd-brand-item h3{margin-top:0;margin-bottom:0}.bd-brand-item .bd-booticon{margin-right:auto;margin-left:auto}@media (min-width:768px){.bd-brand-item{display:table-cell;width:1%}.bd-brand-item+.bd-brand-item{border-top:0;border-left:1px solid #fff}.bd-brand-item h1{font-size:4rem}}.color-swatches{margin:0 -5px;overflow:hidden}.color-swatch{float:left;width:4rem;height:4rem;margin-right:.25rem;margin-left:.25rem;border-radius:.25rem}@media (min-width:768px){.color-swatch{width:6rem;height:6rem}}.color-swatches .bd-purple{background-color:#563d7c}.color-swatches .bd-purple-light{background-color:#cdbfe3}.color-swatches .bd-purple-lighter{background-color:#e5e1ea}.color-swatches .bd-gray{background-color:#f9f9f9}.bd-clipboard{position:relative;display:none;float:right}.bd-clipboard+.highlight{margin-top:0}.btn-clipboard{position:absolute;top:.5rem;right:.5rem;z-index:10;display:block;padding:.25rem .5rem;font-size:75%;color:#818a91;cursor:pointer;background-color:transparent;border-radius:.25rem}.btn-clipboard:hover{color:#fff;background-color:#027de7}@media (min-width:768px){.bd-clipboard{display:block}}.hll{background-color:#ffc}.c{color:#999}.k{color:#069}.o{color:#555}.cm{color:#999}.cp{color:#099}.c1{color:#999}.cs{color:#999}.gd{background-color:#fcc;border:1px solid #c00}.ge{font-style:italic}.gr{color:red}.gh{color:#030}.gi{background-color:#cfc;border:1px solid #0c0}.go{color:#aaa}.gp{color:#009}.gu{color:#030}.gt{color:#9c6}.kc{color:#069}.kd{color:#069}.kn{color:#069}.kp{color:#069}.kr{color:#069}.kt{color:#078}.m{color:#f60}.s{color:#d44950}.na{color:#4f9fcf}.nb{color:#366}.nc{color:#0a8}.no{color:#360}.nd{color:#99f}.ni{color:#999}.ne{color:#c00}.nf{color:#c0f}.nl{color:#99f}.nn{color:#0cf}.nt{color:#2f6f9f}.nv{color:#033}.ow{color:#000}.w{color:#bbb}.mf{color:#f60}.mh{color:#f60}.mi{color:#f60}.mo{color:#f60}.sb{color:#c30}.sc{color:#c30}.sd{font-style:italic;color:#c30}.s2{color:#c30}.se{color:#c30}.sh{color:#c30}.si{color:#a00}.sx{color:#c30}.sr{color:#3aa}.s1{color:#c30}.ss{color:#fc3}.bp{color:#366}.vc{color:#033}.vg{color:#033}.vi{color:#033}.il{color:#f60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}.anchorjs-link{color:inherit}@media (max-width:480px){.anchorjs-link{display:none}}:hover>.anchorjs-link{opacity:.75;-webkit-transition:color .16s linear;-o-transition:color .16s linear;transition:color .16s linear}.anchorjs-link:focus,:hover>.anchorjs-link:hover{text-decoration:none;opacity:1} /*# sourceMappingURL=docs.min.css.map */
\ No newline at end of file diff --git a/docs/assets/css/docs.min.css.map b/docs/assets/css/docs.min.css.map index 83c3da23d..6f264db2a 100644 --- a/docs/assets/css/docs.min.css.map +++ b/docs/assets/css/docs.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["docs/assets/css/docs.min.css"],"names":[],"mappings":"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"}
\ No newline at end of file +{"version":3,"sources":["docs/assets/css/docs.min.css"],"names":[],"mappings":";;;;;AAKG,aAAa,QAAQ,MAAM,MAAM,KAAK,OAAO,KAAK,UAAU,OAAO,YAAY,KAAK,MAAM,KAAK,WAAW,OAAO,OAAO,QAAQ,iBAAiB,QAAQ,cAAc,IAAI,qBAAqB,MAAM,QAAQ,iBAAiB,KAAK,qBAAqB,iBAAiB,YAAY,OAAO,IAAI,MAAM,QAAQ,WAAW,UAAU,MAAM,iCAAiC,MAAM,QAAQ,wCAAwC,uCAAuC,uCAAuC,MAAM,QAAQ,iBAAiB,YAAY,wCAAwC,MAAM,KAAK,0BAA0B,UAAU,QAAQ,yBAAyB,qBAAqB,MAAM,KAAK,+BAA+B,YAAY,GAAG,aAAa,SAAS,SAAS,QAAQ,KAAK,KAAK,KAAK,MAAM,QAAQ,WAAW,OAAO,iBAAiB,wDAAwD,iBAAiB,mDAAmD,iBAAiB,gDAAgD,0BAA0B,OAAO,EAAE,KAAK,KAAK,MAAM,QAAQ,aAAa,QAAQ,gBAAgB,YAAY,IAAI,YAAY,EAAE,mBAAmB,aAAa,KAAK,cAAc,KAAK,YAAY,KAAK,UAAU,QAAQ,MAAM,KAAK,sBAAsB,WAAW,MAAM,cAAc,KAAK,kBAAkB,MAAM,KAAK,QAAQ,KAAK,KAAK,UAAU,QAAQ,YAAY,IAAI,MAAM,QAAQ,aAAa,QAAQ,wBAAwB,MAAM,QAAQ,iBAAiB,QAAQ,aAAa,QAAQ,uBAAuB,cAAc,gBAAgB,yBAAyB,aAAa,YAAY,KAAK,eAAe,KAAK,kBAAkB,MAAM,KAAK,uBAAuB,cAAc,aAAa,yBAAyB,aAAa,eAAe,KAAK,wBAAwB,cAAc,KAAK,gBAAgB,UAAU,KAAK,mBAAmB,UAAU,OAAO,uBAAuB,WAAW,gBAAgB,yBAAyB,mBAAmB,MAAM,IAAI,UAAU,MAAM,eAAe,YAAY,KAAK,eAAe,KAAK,UAAU,KAAK,YAAY,IAAI,MAAM,KAAK,WAAW,OAAO,iBAAiB,KAAK,WAAW,IAAI,MAAM,KAAK,0BAA0B,WAAW,KAAK,qBAAqB,aAAa,KAAK,cAAc,KAAK,YAAY,KAAK,UAAU,KAAK,WAAW,OAAO,yBAAyB,eAAe,WAAW,MAAM,yBAAyB,qCAAqC,cAAc,KAAK,oCAAoC,aAAa,MAAM,qBAAqB,cAAc,MAAM,UAAU,KAAK,YAAY,IAAI,MAAM,KAAK,WAAW,OAAO,WAAW,MAAM,KAAK,OAAO,OAAO,KAAK,yBAAyB,WAAW,aAAa,EAAE,YAAY,GAAG,kBAAkB,WAAW,KAAK,cAAc,MAAM,YAAY,IAAI,MAAM,KAAK,mBAAmB,QAAQ,MAAM,cAAc,QAAQ,MAAM,KAAK,yBAAyB,MAAM,QAAQ,gBAAgB,KAAK,uBAAuB,QAAQ,MAAM,cAAc,KAAK,yBAAyB,0BAA0B,WAAW,MAAM,yBAAyB,eAAe,YAAY,KAAK,eAAe,KAAK,qBAAqB,UAAU,OAAO,2BAA2B,UAAU,OAAO,qBAAqB,UAAU,IAAI,0BAA0B,WAAW,GAAG,mBAAmB,aAAa,KAAK,YAAY,KAAK,6BAA6B,QAAQ,IAAI,8BAA8B,WAAW,EAAE,yBAAyB,6CAA6C,uBAAuB,OAAO,0BAA0B,OAAO,4CAA4C,wBAAwB,OAAO,2BAA2B,QAAQ,UAAU,MAAM,eAAe,OAAO,eAAe,QAAQ,kBAAkB,OAAO,KAAK,MAAM,gBAAgB,SAAS,OAAO,YAAY,kBAAkB,UAAU,gBAAgB,YAAY,eAAe,MAAM,kBAAkB,WAAW,KAAK,WAAW,kBAAkB,OAAO,YAAY,cAAc,OAAO,YAAY,cAAc,eAAe,QAAQ,gBAAgB,MAAM,eAAe,MAAM,eAAe,OAAO,eAAe,YAAY,gBAAgB,YAAY,kBAAkB,eAAe,YAAY,YAAY,cAAc,MAAM,kBAAkB,WAAW,eAAe,gBAAgB,iBAAiB,MAAM,kBAAkB,sBAAsB,uBAAuB,MAAM,eAAe,yBAAyB,UAAU,MAAM,gBAAgB,QAAQ,eAAe,aAAa,eAAe,YAAY,eAAe,cAAc,QAAQ,kBAAkB,QAAQ,MAAM,MAAM,KAAK,UAAU,KAAK,cAAc,KAAK,WAAW,KAAK,8BAA8B,8BAA8B,8BAA8B,8BAA8B,8BAA8B,8BAA8B,QAAQ,OAAO,eAAe,IAAI,OAAO,IAAI,MAAM,QAAQ,2CAA2C,2CAA2C,2CAA2C,2CAA2C,2CAA2C,2CAA2C,cAAc,EAAE,sCAAsC,YAAY,OAAO,iCAAiC,WAAW,KAAK,eAAe,WAAW,OAAO,kBAAkB,kBAAkB,cAAc,OAAO,yBAAyB,UAAU,UAAU,KAAK,YAAY,UAAU,QAAQ,YAAY,KAAK,6BAA6B,QAAQ,KAAK,iBAAiB,aAAa,KAAK,WAAW,OAAO,cAAc,OAAO,eAAe,QAAQ,KAAK,KAAK,cAAc,OAAO,MAAM,QAAQ,WAAW,OAAO,iBAAiB,QAAQ,0BAA0B,SAAS,SAAS,kBAAkB,UAAU,KAAK,YAAY,IAAI,MAAM,KAAK,iBAAiB,cAAc,EAAE,UAAU,QAAQ,YAAY,IAAI,yBAAyB,eAAe,YAAY,KAAK,eAAe,KAAK,cAAc,KAAK,WAAW,KAAK,yBAAyB,OAAO,KAAK,EAAE,aAAa,yBAAyB,kBAAkB,UAAU,KAAK,iBAAiB,UAAU,QAAQ,yBAAyB,kBAAkB,iBAAiB,aAAa,MAAM,yBAAyB,SAAS,SAAS,IAAI,EAAE,MAAM,OAAO,OAAO,aAAa,QAAQ,QAAQ,MAAM,QAAQ,IAAI,MAAM,KAAK,iBAAiB,QAAQ,QAAQ,EAAE,uBAAuB,QAAQ,KAAK,QAAQ,IAAI,OAAO,yBAAyB,YAAY,aAAa,MAAM,WAAW,SAAS,SAAS,cAAc,OAAO,yBAAyB,OAAO,QAAQ,YAAY,MAAM,eAAe,MAAM,iBAAiB,QAAQ,+BAA+B,iBAAiB,KAAK,mBAAmB,MAAM,EAAE,QAAQ,MAAM,QAAQ,EAAE,SAAS,OAAO,UAAU,MAAM,yBAAyB,QAAQ,KAAK,kCAAkC,cAAc,OAAO,aAAa,OAAO,8CAA8C,WAAW,OAAO,6CAA6C,cAAc,OAAO,+BAA+B,QAAQ,OAAO,KAAK,MAAM,QAAQ,WAAW,OAAO,YAAY,OAAO,YAAY,QAAQ,KAAK,aAAa,QAAQ,MAAM,QAAQ,OAAO,OAAO,MAAM,QAAQ,mBAAmB,mBAAmB,MAAM,QAAQ,gBAAgB,KAAK,qBAAqB,YAAY,IAAI,MAAM,QAAQ,oBAAoB,QAAQ,MAAM,oBAAoB,WAAW,KAAK,cAAc,KAAK,yBAAyB,WAAW,EAAE,wBAAwB,cAAc,KAAK,sBAAsB,QAAQ,MAAM,QAAQ,OAAO,OAAO,UAAU,IAAI,MAAM,QAAQ,4BAA4B,4BAA4B,MAAM,QAAQ,gBAAgB,KAAK,iBAAiB,YAAY,iCAAiC,iCAAiC,2BAA2B,YAAY,IAAI,MAAM,QAAQ,iBAAiB,YAAY,WAAW,QAAQ,KAAK,EAAE,WAAW,KAAK,UAAU,IAAI,WAAW,OAAO,iBAAiB,QAAQ,aAAa,YAAY,IAAI,MAAM,QAAQ,mBAAmB,MAAM,QAAQ,aAAa,cAAc,EAAE,yBAAyB,WAAW,WAAW,MAAM,iBAAiB,aAAa,EAAE,cAAc,KAAK,oBAAoB,QAAQ,aAAa,uBAAuB,YAAY,KAAK,0BAA0B,WAAW,KAAK,0BAA0B,mCAAmC,YAAY,OAAO,eAAe,OAAO,iBAAiB,oBAAoB,OAAO,IAAI,MAAM,mBAAmB,sCAAsC,sCAAsC,mCAAmC,WAAW,KAAK,iBAAiB,iBAAiB,+BAA+B,WAAW,MAAM,iBAAiB,iBAAiB,sBAAsB,UAAU,MAAM,UAAU,MAAM,aAAa,KAAK,YAAY,KAAK,6BAA6B,OAAO,KAAK,cAAc,MAAM,iBAAiB,QAAQ,cAAc,OAAO,8BAA8B,MAAM,MAAM,MAAM,KAAK,OAAO,KAAK,iBAAiB,QAAQ,cAAc,OAAO,2BAA2B,OAAO,KAAK,aAAa,OAAO,iBAAiB,QAAQ,cAAc,OAAO,4BAA4B,UAAU,KAAK,YAAY,SAAS,SAAS,QAAQ,KAAK,OAAO,KAAK,MAAM,OAAO,MAAM,QAAQ,aAAa,MAAM,EAAE,EAAE,mBAAmB,QAAQ,GAAG,QAAQ,MAAM,MAAM,KAAK,yBAAyB,YAAY,QAAQ,OAAO,aAAa,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,OAAO,kCAAkC,uBAAuB,WAAW,EAAE,cAAc,WAAW,KAAK,uBAAuB,MAAM,KAAK,wCAAwC,WAAW,MAAM,kBAAkB,UAAU,MAAM,0BAA0B,sBAAsB,4BAA4B,2BAA2B,gCAAgC,WAAW,KAAK,uCAAuC,SAAS,OAAO,QAAQ,MAAM,mBAAmB,MAAM,KAAK,mCAAmC,MAAM,KAAK,eAAe,OAAO,2BAA2B,QAAQ,KAAK,EAAE,aAAa,KAAK,0CAA0C,WAAW,EAAE,oBAAoB,oBAAoB,oBAAoB,oBAAoB,oBAAoB,oBAAoB,OAAO,EAAE,yBAAyB,QAAQ,KAAK,oBAAoB,YAAY,MAAM,uBAAuB,WAAW,OAAO,cAAc,OAAO,sCAAsC,WAAW,MAAM,6DAA6D,kCAAkC,WAAW,MAAM,8BAA8B,cAAc,MAAM,kCAAkC,OAAO,SAAS,wBAAwB,UAAU,MAAM,8BAA8B,SAAS,OAAO,OAAO,MAAM,MAAM,KAAK,iCAAiC,SAAS,OAAO,OAAO,KAAK,MAAM,MAAM,yBAAyB,8BAA8B,OAAO,QAAQ,QAAQ,KAAK,iCAAiC,OAAO,KAAK,QAAQ,SAAS,wBAAwB,WAAW,MAAM,cAAc,MAAM,kBAAkB,iBAAiB,QAAQ,yBAAyB,SAAS,SAAS,IAAI,KAAK,MAAM,KAAK,OAAO,KAAK,KAAK,KAAK,QAAQ,EAAE,QAAQ,MAAM,gCAAgC,KAAK,KAAK,aAAa,KAAK,YAAY,KAAK,uCAAuC,MAAM,KAAK,qCAAqC,SAAS,OAAO,QAAQ,MAAM,cAAc,OAAO,MAAM,KAAK,2BAA2B,cAAc,KAAK,qBAAqB,WAAW,OAAO,0BAA0B,WAAW,OAAO,cAAc,OAAO,2BAA2B,eAAe,OAAO,iBAAiB,QAAQ,oCAAoC,SAAS,SAAS,QAAQ,MAAM,MAAM,KAAK,MAAM,MAAM,OAAO,QAAQ,gBAAgB,YAAY,OAAO,oCAAoC,SAAS,SAAS,QAAQ,aAAa,OAAO,KAAK,KAAK,QAAQ,EAAE,mBAAmB,SAAS,SAAS,OAAO,MAAM,WAAW,MAAM,SAAS,KAAK,mCAAmC,UAAU,MAAM,QAAQ,MAAM,iBAAiB,KAAK,oCAAoC,kCAAkC,qCAAqC,qCAAqC,qCAAqC,qCAAqC,QAAQ,MAAM,WAAW,MAAM,cAAc,MAAM,WAAW,QAAQ,KAAK,OAAO,KAAK,MAAM,iBAAiB,QAAQ,yBAAyB,WAAW,QAAQ,OAAO,aAAa,EAAE,YAAY,GAAG,eAAe,QAAQ,EAAE,WAAW,EAAE,cAAc,EAAE,iBAAiB,YAAY,OAAO,EAAE,oBAAoB,UAAU,QAAQ,MAAM,QAAQ,iCAAiC,YAAY,OAAO,mBAAmB,+BAA+B,QAAQ,MAAM,YAAY,IAAI,MAAM,KAAK,+BAA+B,YAAY,IAAI,yBAAyB,WAAW,OAAO,kCAAkC,MAAM,QAAQ,iBAAiB,kBAAkB,iCAAiC,MAAM,KAAK,iBAAiB,kBAAkB,2BAA2B,WAAW,OAAO,qCAAqC,cAAc,MAAM,gCAAgC,QAAQ,MAAM,QAAQ,KAAK,MAAM,UAAU,KAAK,YAAY,IAAI,YAAY,IAAI,WAAW,OAAO,cAAc,OAAO,kCAAkC,mCAAmC,MAAM,KAAK,OAAO,IAAI,MAAM,KAAK,8BAA8B,+BAA+B,MAAM,QAAQ,iBAAiB,QAAQ,OAAO,IAAI,MAAM,QAAQ,yBAAyB,gBAAgB,QAAQ,gBAAgB,+CAA+C,gBAAgB,QAAQ,gBAAgB,+CAA+C,gBAAgB,QAAQ,gBAAgB,gDAAgD,gBAAgB,QAAQ,gBAAgB,0BAA0B,gBAAgB,QAAQ,gBAAgB,QAAQ,YAAY,IAAI,MAAM,QAAQ,aAAa,QAAQ,eAAe,cAAc,cAAc,MAAM,KAAK,iBAAiB,QAAQ,aAAa,QAAQ,YAAY,QAAQ,QAAQ,WAAW,QAAQ,cAAc,QAAQ,OAAO,IAAI,MAAM,KAAK,kBAAkB,OAAO,cAAc,OAAO,eAAe,WAAW,EAAE,cAAc,OAAO,yBAAyB,cAAc,EAAE,iBAAiB,cAAc,OAAO,wBAAwB,WAAW,QAAQ,iBAAiB,kBAAkB,QAAQ,oBAAoB,MAAM,QAAQ,oBAAoB,kBAAkB,QAAQ,uBAAuB,MAAM,QAAQ,mBAAmB,kBAAkB,QAAQ,sBAAsB,MAAM,QAAQ,4BAA4B,cAAc,OAAO,gBAAgB,cAAc,OAAO,eAAe,cAAc,QAAQ,yBAAyB,aAAa,aAAa,QAAQ,YAAY,QAAQ,2BAA2B,cAAc,OAAO,aAAa,QAAQ,SAAS,cAAc,OAAO,sBAAsB,YAAY,KAAK,MAAM,KAAK,4BAA4B,MAAM,KAAK,gBAAgB,KAAK,qBAAqB,MAAM,MAAM,MAAM,MAAM,OAAO,QAAQ,WAAW,OAAO,OAAO,EAAE,aAAa,MAAM,KAAK,MAAM,KAAK,aAAa,MAAM,cAAc,OAAO,sBAAsB,cAAc,EAAE,gCAAgC,MAAM,IAAI,gBAAgB,QAAQ,MAAM,MAAM,KAAK,cAAc,KAAK,SAAS,OAAO,MAAM,QAAQ,iBAAiB,QAAQ,cAAc,OAAO,eAAe,QAAQ,KAAK,EAAE,WAAW,OAAO,8BAA8B,WAAW,IAAI,MAAM,KAAK,yBAAyB,MAAM,KAAK,iBAAiB,QAAQ,kBAAkB,kBAAkB,WAAW,EAAE,cAAc,EAAE,4BAA4B,aAAa,KAAK,YAAY,KAAK,yBAAyB,eAAe,QAAQ,WAAW,MAAM,GAAG,8BAA8B,WAAW,EAAE,YAAY,IAAI,MAAM,KAAK,kBAAkB,UAAU,MAAM,gBAAgB,OAAO,EAAE,KAAK,SAAS,OAAO,cAAc,MAAM,KAAK,MAAM,KAAK,OAAO,KAAK,aAAa,OAAO,YAAY,OAAO,cAAc,OAAO,yBAAyB,cAAc,MAAM,KAAK,OAAO,MAAM,2BAA2B,iBAAiB,QAAQ,iCAAiC,iBAAiB,QAAQ,mCAAmC,iBAAiB,QAAQ,yBAAyB,iBAAiB,QAAQ,cAAc,SAAS,SAAS,QAAQ,KAAK,MAAM,MAAM,yBAAyB,WAAW,EAAE,eAAe,SAAS,SAAS,IAAI,MAAM,MAAM,MAAM,QAAQ,GAAG,QAAQ,MAAM,QAAQ,OAAO,MAAM,UAAU,IAAI,MAAM,QAAQ,OAAO,QAAQ,iBAAiB,YAAY,cAAc,OAAO,qBAAqB,MAAM,KAAK,iBAAiB,QAAQ,yBAAyB,cAAc,QAAQ,OAAO,KAAK,iBAAiB,KAAK,GAAG,MAAM,KAAK,GAAG,MAAM,KAAK,GAAG,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,iBAAiB,KAAK,OAAO,IAAI,MAAM,KAAK,IAAI,WAAW,OAAO,IAAI,MAAM,IAAI,IAAI,MAAM,KAAK,IAAI,iBAAiB,KAAK,OAAO,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,GAAG,MAAM,KAAK,GAAG,MAAM,QAAQ,IAAI,MAAM,QAAQ,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,QAAQ,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,GAAG,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,WAAW,OAAO,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,IAAI,MAAM,KAAK,aAAa,QAAQ,YAAY,MAAM,KAAK,eAAe,MAAM,QAAQ,yBAAyB,eAAe,QAAQ,MAAM,sBAAsB,QAAQ,IAAI,mBAAmB,MAAM,KAAK,OAAO,cAAc,MAAM,KAAK,OAAO,WAAW,MAAM,KAAK,OAAO,qBAAqB,4BAA4B,gBAAgB,KAAK,QAAQ"}
\ No newline at end of file diff --git a/docs/assets/js/docs.min.js b/docs/assets/js/docs.min.js index 8fadce90f..1b03a5438 100644 --- a/docs/assets/js/docs.min.js +++ b/docs/assets/js/docs.min.js @@ -20,7 +20,7 @@ Issues: https://github.com/imsky/holder/issues License: MIT */ -!function(a){if(a.document){var b=a.document;b.querySelectorAll||(b.querySelectorAll=function(c){var d,e=b.createElement("style"),f=[];for(b.documentElement.firstChild.appendChild(e),b._qsa=[],e.styleSheet.cssText=c+"{x-qsa:expression(document._qsa && document._qsa.push(this))}",a.scrollBy(0,0),e.parentNode.removeChild(e);b._qsa.length;)d=b._qsa.shift(),d.style.removeAttribute("x-qsa"),f.push(d);return b._qsa=null,f}),b.querySelector||(b.querySelector=function(a){var c=b.querySelectorAll(a);return c.length?c[0]:null}),b.getElementsByClassName||(b.getElementsByClassName=function(a){return a=String(a).replace(/^|\s+/g,"."),b.querySelectorAll(a)}),Object.keys||(Object.keys=function(a){if(a!==Object(a))throw TypeError("Object.keys called on non-object");var b,c=[];for(b in a)Object.prototype.hasOwnProperty.call(a,b)&&c.push(b);return c}),Array.prototype.forEach||(Array.prototype.forEach=function(a){if(void 0===this||null===this)throw TypeError();var b=Object(this),c=b.length>>>0;if("function"!=typeof a)throw TypeError();var d,e=arguments[1];for(d=0;c>d;d++)d in b&&a.call(e,b[d],d,b)}),function(a){var b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";a.atob=a.atob||function(a){a=String(a);var c,d=0,e=[],f=0,g=0;if(a=a.replace(/\s/g,""),a.length%4===0&&(a=a.replace(/=+$/,"")),a.length%4===1)throw Error("InvalidCharacterError");if(/[^+/0-9A-Za-z]/.test(a))throw Error("InvalidCharacterError");for(;d<a.length;)c=b.indexOf(a.charAt(d)),f=f<<6|c,g+=6,24===g&&(e.push(String.fromCharCode(f>>16&255)),e.push(String.fromCharCode(f>>8&255)),e.push(String.fromCharCode(255&f)),g=0,f=0),d+=1;return 12===g?(f>>=4,e.push(String.fromCharCode(255&f))):18===g&&(f>>=2,e.push(String.fromCharCode(f>>8&255)),e.push(String.fromCharCode(255&f))),e.join("")},a.btoa=a.btoa||function(a){a=String(a);var c,d,e,f,g,h,i,j=0,k=[];if(/[^\x00-\xFF]/.test(a))throw Error("InvalidCharacterError");for(;j<a.length;)c=a.charCodeAt(j++),d=a.charCodeAt(j++),e=a.charCodeAt(j++),f=c>>2,g=(3&c)<<4|d>>4,h=(15&d)<<2|e>>6,i=63&e,j===a.length+2?(h=64,i=64):j===a.length+1&&(i=64),k.push(b.charAt(f),b.charAt(g),b.charAt(h),b.charAt(i));return k.join("")}}(a),Object.prototype.hasOwnProperty||(Object.prototype.hasOwnProperty=function(a){var b=this.__proto__||this.constructor.prototype;return a in this&&(!(a in b)||b[a]!==this[a])}),function(){if("performance"in a==0&&(a.performance={}),Date.now=Date.now||function(){return(new Date).getTime()},"now"in a.performance==0){var b=Date.now();performance.timing&&performance.timing.navigationStart&&(b=performance.timing.navigationStart),a.performance.now=function(){return Date.now()-b}}}(),a.requestAnimationFrame||(a.webkitRequestAnimationFrame?!function(a){a.requestAnimationFrame=function(b){return webkitRequestAnimationFrame(function(){b(a.performance.now())})},a.cancelAnimationFrame=webkitCancelAnimationFrame}(a):a.mozRequestAnimationFrame?!function(a){a.requestAnimationFrame=function(b){return mozRequestAnimationFrame(function(){b(a.performance.now())})},a.cancelAnimationFrame=mozCancelAnimationFrame}(a):!function(a){a.requestAnimationFrame=function(b){return a.setTimeout(b,1e3/60)},a.cancelAnimationFrame=a.clearTimeout}(a))}}(this),function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):"object"==typeof exports?exports.Holder=b():a.Holder=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){a.exports=c(1)},function(a,b,c){(function(b){function d(a,b,c,d){var g=e(c.substr(c.lastIndexOf(a.domain)),a);g&&f({mode:null,el:d,flags:g,engineSettings:b})}function e(a,b){var c={theme:z(D.settings.themes.gray,null),stylesheets:b.stylesheets,instanceOptions:b},d=a.split("?"),e=d[0].split("/");c.holderURL=a;var f=e[1],g=f.match(/([\d]+p?)x([\d]+p?)/);if(!g)return!1;if(c.fluid=-1!==f.indexOf("p"),c.dimensions={width:g[1].replace("p","%"),height:g[2].replace("p","%")},2===d.length){var h=r.parse(d[1]);if(h.bg&&(c.theme.background=t.parseColor(h.bg)),h.fg&&(c.theme.foreground=t.parseColor(h.fg)),h.bg&&!h.fg&&(c.autoFg=!0),h.theme&&c.instanceOptions.themes.hasOwnProperty(h.theme)&&(c.theme=z(c.instanceOptions.themes[h.theme],null)),h.text&&(c.text=h.text),h.textmode&&(c.textmode=h.textmode),h.size&&(c.size=h.size),h.font&&(c.font=h.font),h.align&&(c.align=h.align),c.nowrap=t.truthy(h.nowrap),c.auto=t.truthy(h.auto),c.outline=t.truthy(h.outline),t.truthy(h.random)){D.vars.cache.themeKeys=D.vars.cache.themeKeys||Object.keys(c.instanceOptions.themes);var i=D.vars.cache.themeKeys[0|Math.random()*D.vars.cache.themeKeys.length];c.theme=z(c.instanceOptions.themes[i],null)}}return c}function f(a){var b=a.mode,c=a.el,d=a.flags,e=a.engineSettings,f=d.dimensions,h=d.theme,i=f.width+"x"+f.height;if(b=null==b?d.fluid?"fluid":"image":b,null!=d.text&&(h.text=d.text,"object"===c.nodeName.toLowerCase())){for(var l=h.text.split("\\n"),m=0;m<l.length;m++)l[m]=t.encodeHtmlEntity(l[m]);h.text=l.join("\\n")}var n=d.holderURL,o=z(e,null);if(d.font&&(h.font=d.font,!o.noFontFallback&&"img"===c.nodeName.toLowerCase()&&D.setup.supportsCanvas&&"svg"===o.renderer&&(o=z(o,{renderer:"canvas"}))),d.font&&"canvas"==o.renderer&&(o.reRender=!0),"background"==b)null==c.getAttribute("data-background-src")&&v.setAttr(c,{"data-background-src":n});else{var p={};p[D.vars.dataAttr]=n,v.setAttr(c,p)}d.theme=h,c.holderData={flags:d,engineSettings:o},("image"==b||"fluid"==b)&&v.setAttr(c,{alt:h.text?h.text+" ["+i+"]":i});var q={mode:b,el:c,holderSettings:{dimensions:f,theme:h,flags:d},engineSettings:o};"image"==b?(d.auto||(c.style.width=f.width+"px",c.style.height=f.height+"px"),"html"==o.renderer?c.style.backgroundColor=h.background:(g(q),"exact"==d.textmode&&(c.holderData.resizeUpdate=!0,D.vars.resizableImages.push(c),j(c)))):"background"==b&&"html"!=o.renderer?g(q):"fluid"==b&&(c.holderData.resizeUpdate=!0,"%"==f.height.slice(-1)?c.style.height=f.height:null!=d.auto&&d.auto||(c.style.height=f.height+"px"),"%"==f.width.slice(-1)?c.style.width=f.width:null!=d.auto&&d.auto||(c.style.width=f.width+"px"),("inline"==c.style.display||""===c.style.display||"none"==c.style.display)&&(c.style.display="block"),k(c),"html"==o.renderer?c.style.backgroundColor=h.background:(D.vars.resizableImages.push(c),j(c)))}function g(a){function c(){var b=null;switch(i.renderer){case"canvas":b=F(k,a);break;case"svg":b=y(k,a);break;default:throw"Holder: invalid renderer: "+i.renderer}return b}var d=null,e=a.mode,f=a.el,g=a.holderSettings,i=a.engineSettings;switch(i.renderer){case"svg":if(!D.setup.supportsSVG)return;break;case"canvas":if(!D.setup.supportsCanvas)return;break;default:return}var j={width:g.dimensions.width,height:g.dimensions.height,theme:g.theme,flags:g.flags},k=h(j);if(d=c(),null==d)throw"Holder: couldn't render placeholder";"background"==e?(f.style.backgroundImage="url("+d+")",f.style.backgroundSize=j.width+"px "+j.height+"px"):("img"===f.nodeName.toLowerCase()?v.setAttr(f,{src:d}):"object"===f.nodeName.toLowerCase()&&(v.setAttr(f,{data:d}),v.setAttr(f,{type:"image/svg+xml"})),i.reRender&&b.setTimeout(function(){var a=c();if(null==a)throw"Holder: couldn't render placeholder";"img"===f.nodeName.toLowerCase()?v.setAttr(f,{src:a}):"object"===f.nodeName.toLowerCase()&&(v.setAttr(f,{data:a}),v.setAttr(f,{type:"image/svg+xml"}))},150)),v.setAttr(f,{"data-holder-rendered":!0})}function h(a){function b(a,b,c,d){b.width=c,b.height=d,a.width=Math.max(a.width,b.width),a.height+=b.height}var c=D.defaults.size;switch(parseFloat(a.theme.size)?c=a.theme.size:parseFloat(a.flags.size)&&(c=a.flags.size),a.font={family:a.theme.font?a.theme.font:"Arial, Helvetica, Open Sans, sans-serif",size:i(a.width,a.height,c,D.defaults.scale),units:a.theme.units?a.theme.units:D.defaults.units,weight:a.theme.fontweight?a.theme.fontweight:"bold"},a.text=a.theme.text||Math.floor(a.width)+"x"+Math.floor(a.height),a.noWrap=a.theme.nowrap||a.flags.nowrap,a.align=a.theme.align||a.flags.align||"center",a.flags.textmode){case"literal":a.text=a.flags.dimensions.width+"x"+a.flags.dimensions.height;break;case"exact":if(!a.flags.exactDimensions)break;a.text=Math.floor(a.flags.exactDimensions.width)+"x"+Math.floor(a.flags.exactDimensions.height)}var d=new s({width:a.width,height:a.height}),e=d.Shape,f=new e.Rect("holderBg",{fill:a.theme.background});if(f.resize(a.width,a.height),d.root.add(f),a.flags.outline){var g=new w(f.properties.fill);g=g.lighten(g.lighterThan("7f7f7f")?-.1:.1),f.properties.outline={fill:g.toHex(!0),width:2}}var h=a.theme.foreground;if(a.flags.autoFg){var j=new w(f.properties.fill),k=new w("fff"),l=new w("000",{alpha:.285714});h=j.blendAlpha(j.lighterThan("7f7f7f")?l:k).toHex(!0)}var m=new e.Group("holderTextGroup",{text:a.text,align:a.align,font:a.font,fill:h});m.moveTo(null,null,1),d.root.add(m);var n=m.textPositionData=E(d);if(!n)throw"Holder: staging fallback not supported yet.";m.properties.leading=n.boundingBox.height;var o=null,p=null,q=a.width*D.vars.lineWrapRatio,r=q;if(n.lineCount>1){var t,u=0,v=0,x=0;p=new e.Group("line"+x),("left"===a.align||"right"===a.align)&&(r=a.width*(1-2*(1-D.vars.lineWrapRatio)));for(var y=0;y<n.words.length;y++){var z=n.words[y];o=new e.Text(z.text);var A="\\n"==z.text;!a.noWrap&&(u+z.width>=r||A===!0)&&(b(m,p,u,m.properties.leading),m.add(p),u=0,v+=m.properties.leading,x+=1,p=new e.Group("line"+x),p.y=v),A!==!0&&(o.moveTo(u,0),u+=n.spaceWidth+z.width,p.add(o))}if(b(m,p,u,m.properties.leading),m.add(p),"left"===a.align)m.moveTo(a.width-q,null,null);else if("right"===a.align){for(t in m.children)p=m.children[t],p.moveTo(a.width-p.width,null,null);m.moveTo(0-(a.width-q),null,null)}else{for(t in m.children)p=m.children[t],p.moveTo((m.width-p.width)/2,null,null);m.moveTo((a.width-m.width)/2,null,null)}m.moveTo(null,(a.height-m.height)/2,null),(a.height-m.height)/2<0&&m.moveTo(null,0,null)}else o=new e.Text(a.text),p=new e.Group("line0"),p.add(o),m.add(p),"left"===a.align?m.moveTo(a.width-q,null,null):"right"===a.align?m.moveTo(0-(a.width-q),null,null):m.moveTo((a.width-n.boundingBox.width)/2,null,null),m.moveTo(null,(a.height-n.boundingBox.height)/2,null);return d}function i(a,b,c,d){var e=parseInt(a,10),f=parseInt(b,10),g=Math.max(e,f),h=Math.min(e,f),i=.8*Math.min(h,g*d);return Math.round(Math.max(c,i))}function j(a){var b;b=null==a||null==a.nodeType?D.vars.resizableImages:[a];for(var c=0,d=b.length;d>c;c++){var e=b[c];if(e.holderData){var f=e.holderData.flags,h=A(e);if(h){if(!e.holderData.resizeUpdate)continue;if(f.fluid&&f.auto){var i=e.holderData.fluidConfig;switch(i.mode){case"width":h.height=h.width/i.ratio;break;case"height":h.width=h.height*i.ratio}}var j={mode:"image",holderSettings:{dimensions:h,theme:f.theme,flags:f},el:e,engineSettings:e.holderData.engineSettings};"exact"==f.textmode&&(f.exactDimensions=h,j.holderSettings.dimensions=f.dimensions),g(j)}else n(e)}}}function k(a){if(a.holderData){var b=A(a);if(b){var c=a.holderData.flags,d={fluidHeight:"%"==c.dimensions.height.slice(-1),fluidWidth:"%"==c.dimensions.width.slice(-1),mode:null,initialDimensions:b};d.fluidWidth&&!d.fluidHeight?(d.mode="width",d.ratio=d.initialDimensions.width/parseFloat(c.dimensions.height)):!d.fluidWidth&&d.fluidHeight&&(d.mode="height",d.ratio=parseFloat(c.dimensions.width)/d.initialDimensions.height),a.holderData.fluidConfig=d}else n(a)}}function l(){var a,c=[],d=Object.keys(D.vars.invisibleImages);d.forEach(function(b){a=D.vars.invisibleImages[b],A(a)&&"img"==a.nodeName.toLowerCase()&&(c.push(a),delete D.vars.invisibleImages[b])}),c.length&&C.run({images:c}),setTimeout(function(){b.requestAnimationFrame(l)},10)}function m(){D.vars.visibilityCheckStarted||(b.requestAnimationFrame(l),D.vars.visibilityCheckStarted=!0)}function n(a){a.holderData.invisibleId||(D.vars.invisibleId+=1,D.vars.invisibleImages["i"+D.vars.invisibleId]=a,a.holderData.invisibleId=D.vars.invisibleId)}function o(a){D.vars.debounceTimer||a.call(this),D.vars.debounceTimer&&b.clearTimeout(D.vars.debounceTimer),D.vars.debounceTimer=b.setTimeout(function(){D.vars.debounceTimer=null,a.call(this)},D.setup.debounce)}function p(){o(function(){j(null)})}var q=c(2),r=c(3),s=c(4),t=c(5),u=c(6),v=c(7),w=c(8),x=c(9),y=c(10),z=t.extend,A=t.dimensionCheck,B=x.svg_ns,C={version:x.version,addTheme:function(a,b){return null!=a&&null!=b&&(D.settings.themes[a]=b),delete D.vars.cache.themeKeys,this},addImage:function(a,b){var c=v.getNodeArray(b);return c.forEach(function(b){var c=v.newEl("img"),d={};d[D.setup.dataAttr]=a,v.setAttr(c,d),b.appendChild(c)}),this},setResizeUpdate:function(a,b){a.holderData&&(a.holderData.resizeUpdate=!!b,a.holderData.resizeUpdate&&j(a))},run:function(a){a=a||{};var c={},g=z(D.settings,a);D.vars.preempted=!0,D.vars.dataAttr=g.dataAttr||D.setup.dataAttr,D.vars.lineWrapRatio=g.lineWrapRatio||D.setup.lineWrapRatio,c.renderer=g.renderer?g.renderer:D.setup.renderer,-1===D.setup.renderers.join(",").indexOf(c.renderer)&&(c.renderer=D.setup.supportsSVG?"svg":D.setup.supportsCanvas?"canvas":"html");var h=v.getNodeArray(g.images),i=v.getNodeArray(g.bgnodes),j=v.getNodeArray(g.stylenodes),k=v.getNodeArray(g.objects);return c.stylesheets=[],c.svgXMLStylesheet=!0,c.noFontFallback=g.noFontFallback?g.noFontFallback:!1,j.forEach(function(a){if(a.attributes.rel&&a.attributes.href&&"stylesheet"==a.attributes.rel.value){var b=a.attributes.href.value,d=v.newEl("a");d.href=b;var e=d.protocol+"//"+d.host+d.pathname+d.search;c.stylesheets.push(e)}}),i.forEach(function(a){if(b.getComputedStyle){var d=b.getComputedStyle(a,null).getPropertyValue("background-image"),h=a.getAttribute("data-background-src"),i=h||d,j=null,k=g.domain+"/",l=i.indexOf(k);if(0===l)j=i;else if(1===l&&"?"===i[0])j=i.slice(1);else{var m=i.substr(l).match(/([^\"]*)"?\)/);if(null!==m)j=m[1];else if(0===i.indexOf("url("))throw"Holder: unable to parse background URL: "+i}if(null!=j){var n=e(j,g);n&&f({mode:"background",el:a,flags:n,engineSettings:c})}}}),k.forEach(function(a){var b={};try{b.data=a.getAttribute("data"),b.dataSrc=a.getAttribute(D.vars.dataAttr)}catch(e){}var f=null!=b.data&&0===b.data.indexOf(g.domain),h=null!=b.dataSrc&&0===b.dataSrc.indexOf(g.domain);f?d(g,c,b.data,a):h&&d(g,c,b.dataSrc,a)}),h.forEach(function(a){var b={};try{b.src=a.getAttribute("src"),b.dataSrc=a.getAttribute(D.vars.dataAttr),b.rendered=a.getAttribute("data-holder-rendered")}catch(e){}var f=null!=b.src,h=null!=b.dataSrc&&0===b.dataSrc.indexOf(g.domain),i=null!=b.rendered&&"true"==b.rendered;f?0===b.src.indexOf(g.domain)?d(g,c,b.src,a):h&&(i?d(g,c,b.dataSrc,a):!function(a,b,c,e,f){t.imageExists(a,function(a){a||d(b,c,e,f)})}(b.src,g,c,b.dataSrc,a)):h&&d(g,c,b.dataSrc,a)}),this}},D={settings:{domain:"holder.js",images:"img",objects:"object",bgnodes:"body .holderjs",stylenodes:"head link.holderjs",themes:{gray:{background:"#EEEEEE",foreground:"#AAAAAA"},social:{background:"#3a5a97",foreground:"#FFFFFF"},industrial:{background:"#434A52",foreground:"#C2F200"},sky:{background:"#0D8FDB",foreground:"#FFFFFF"},vine:{background:"#39DBAC",foreground:"#1E292C"},lava:{background:"#F8591A",foreground:"#1C2846"}}},defaults:{size:10,units:"pt",scale:1/16}},E=function(){var a=null,b=null,c=null;return function(d){var e=d.root;if(D.setup.supportsSVG){var f=!1,g=function(a){return document.createTextNode(a)};(null==a||a.parentNode!==document.body)&&(f=!0),a=u.initSVG(a,e.properties.width,e.properties.height),a.style.display="block",f&&(b=v.newEl("text",B),c=g(null),v.setAttr(b,{x:0}),b.appendChild(c),a.appendChild(b),document.body.appendChild(a),a.style.visibility="hidden",a.style.position="absolute",a.style.top="-100%",a.style.left="-100%");var h=e.children.holderTextGroup,i=h.properties;v.setAttr(b,{y:i.font.size,style:t.cssProps({"font-weight":i.font.weight,"font-size":i.font.size+i.font.units,"font-family":i.font.family})}),c.nodeValue=i.text;var j=b.getBBox(),k=Math.ceil(j.width/(e.properties.width*D.vars.lineWrapRatio)),l=i.text.split(" "),m=i.text.match(/\\n/g);k+=null==m?0:m.length,c.nodeValue=i.text.replace(/[ ]+/g,"");var n=b.getComputedTextLength(),o=j.width-n,p=Math.round(o/Math.max(1,l.length-1)),q=[];if(k>1){c.nodeValue="";for(var r=0;r<l.length;r++)if(0!==l[r].length){c.nodeValue=t.decodeHtmlEntity(l[r]);var s=b.getBBox();q.push({text:l[r],width:s.width})}}return a.style.display="none",{spaceWidth:p,lineCount:k,boundingBox:j,words:q}}return!1}}(),F=function(){var a=v.newEl("canvas"),b=null;return function(c){null==b&&(b=a.getContext("2d"));var d=c.root;a.width=D.dpr(d.properties.width),a.height=D.dpr(d.properties.height),b.textBaseline="middle";var e=d.children.holderBg,f=D.dpr(e.width),g=D.dpr(e.height),h=2,i=h/2;b.fillStyle=e.properties.fill,b.fillRect(0,0,f,g),e.properties.outline&&(b.strokeStyle=e.properties.outline.fill,b.lineWidth=e.properties.outline.width,b.moveTo(i,i),b.lineTo(f-i,i),b.lineTo(f-i,g-i),b.lineTo(i,g-i),b.lineTo(i,i),b.moveTo(0,i),b.lineTo(f,g-i),b.moveTo(0,g-i),b.lineTo(f,i),b.stroke());var j=d.children.holderTextGroup;b.font=j.properties.font.weight+" "+D.dpr(j.properties.font.size)+j.properties.font.units+" "+j.properties.font.family+", monospace",b.fillStyle=j.properties.fill;for(var k in j.children){var l=j.children[k];for(var m in l.children){var n=l.children[m],o=D.dpr(j.x+l.x+n.x),p=D.dpr(j.y+l.y+n.y+j.properties.leading/2);b.fillText(n.properties.text,o,p)}}return a.toDataURL("image/png")}}();for(var G in D.flags)D.flags.hasOwnProperty(G)&&(D.flags[G].match=function(a){return a.match(this.regex)});D.setup={renderer:"html",debounce:100,ratio:1,supportsCanvas:!1,supportsSVG:!1,lineWrapRatio:.9,dataAttr:"data-src",renderers:["html","canvas","svg"]},D.dpr=function(a){return a*D.setup.ratio},D.vars={preempted:!1,resizableImages:[],invisibleImages:{},invisibleId:0,visibilityCheckStarted:!1,debounceTimer:null,cache:{}},function(){var a=1,c=1,d=v.newEl("canvas"),e=null;d.getContext&&-1!=d.toDataURL("image/png").indexOf("data:image/png")&&(D.setup.renderer="canvas",e=d.getContext("2d"),D.setup.supportsCanvas=!0),D.setup.supportsCanvas&&(a=b.devicePixelRatio||1,c=e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1),D.setup.ratio=a/c,document.createElementNS&&document.createElementNS(B,"svg").createSVGRect&&(D.setup.renderer="svg",D.setup.supportsSVG=!0)}(),m(),q&&q(function(){D.vars.preempted||C.run(),b.addEventListener?(b.addEventListener("resize",p,!1),b.addEventListener("orientationchange",p,!1)):b.attachEvent("onresize",p),"object"==typeof b.Turbolinks&&b.document.addEventListener("page:change",function(){C.run()})}),a.exports=C}).call(b,function(){return this}())},function(a,b,c){function d(a){function b(a){if(!v){if(!g.body)return e(b);for(v=!0;a=w.shift();)e(a)}}function c(a){(t||a.type===i||g[m]===l)&&(d(),b())}function d(){t?(g[s](q,c,j),a[s](i,c,j)):(g[o](r,c),a[o](k,c))}function e(a,b){setTimeout(a,+b>=0?b:1)}function f(a){v?e(a):w.push(a)}null==document.readyState&&document.addEventListener&&(document.addEventListener("DOMContentLoaded",function y(){document.removeEventListener("DOMContentLoaded",y,!1),document.readyState="complete"},!1),document.readyState="loading");var g=a.document,h=g.documentElement,i="load",j=!1,k="on"+i,l="complete",m="readyState",n="attachEvent",o="detachEvent",p="addEventListener",q="DOMContentLoaded",r="onreadystatechange",s="removeEventListener",t=p in g,u=j,v=j,w=[];if(g[m]===l)e(b);else if(t)g[p](q,c,j),a[p](i,c,j);else{g[n](r,c),a[n](k,c);try{u=null==a.frameElement&&h}catch(x){}u&&u.doScroll&&!function z(){if(!v){try{u.doScroll("left")}catch(a){return e(z,50)}d(),b()}}()}return f.version="1.4.0",f.isReady=function(){return v},f}a.exports="undefined"!=typeof window&&d(window)},function(a,b,c){var d=encodeURIComponent,e=decodeURIComponent,f=c(11),g=c(12),h=/(\w+)\[(\d+)\]/,i=/\w+\.\w+/;b.parse=function(a){if("string"!=typeof a)return{};if(a=f(a),""===a)return{};"?"===a.charAt(0)&&(a=a.slice(1));for(var b={},c=a.split("&"),d=0;d<c.length;d++){var g,j,k,l=c[d].split("="),m=e(l[0]);if(g=h.exec(m))b[g[1]]=b[g[1]]||[],b[g[1]][g[2]]=e(l[1]);else if(g=i.test(m)){for(g=m.split("."),j=b;g.length;)if(k=g.shift(),k.length){if(j[k]){if(j[k]&&"object"!=typeof j[k])break}else j[k]={};g.length||(j[k]=e(l[1])),j=j[k]}}else b[l[0]]=null==l[1]?"":e(l[1])}return b},b.stringify=function(a){if(!a)return"";var b=[];for(var c in a){var e=a[c];if("array"!=g(e))b.push(d(c)+"="+d(a[c]));else for(var f=0;f<e.length;++f)b.push(d(c+"["+f+"]")+"="+d(e[f]))}return b.join("&")}},function(a,b,c){var d=function(a){function b(a,b){for(var c in b)a[c]=b[c];return a}var c=1,d=function(a){c++,this.parent=null,this.children={},this.id=c,this.name="n"+c,"undefined"!=typeof a&&(this.name=a),this.x=this.y=this.z=0,this.width=this.height=0};d.prototype.resize=function(a,b){null!=a&&(this.width=a),null!=b&&(this.height=b)},d.prototype.moveTo=function(a,b,c){this.x=null!=a?a:this.x,this.y=null!=b?b:this.y,this.z=null!=c?c:this.z},d.prototype.add=function(a){var b=a.name;if("undefined"!=typeof this.children[b])throw"SceneGraph: child already exists: "+b;this.children[b]=a,a.parent=this};var e=function(){d.call(this,"root"),this.properties=a};e.prototype=new d;var f=function(a,c){if(d.call(this,a),this.properties={fill:"#000000"},"undefined"!=typeof c)b(this.properties,c);else if("undefined"!=typeof a&&"string"!=typeof a)throw"SceneGraph: invalid node name"};f.prototype=new d;var g=function(){f.apply(this,arguments),this.type="group"};g.prototype=new f;var h=function(){f.apply(this,arguments),this.type="rect"};h.prototype=new f;var i=function(a){f.call(this),this.type="text",this.properties.text=a};i.prototype=new f;var j=new e;return this.Shape={Rect:h,Text:i,Group:g},this.root=j,this};a.exports=d},function(a,b,c){b.extend=function(a,b){var c={};for(var d in a)a.hasOwnProperty(d)&&(c[d]=a[d]);if(null!=b)for(var e in b)b.hasOwnProperty(e)&&(c[e]=b[e]);return c},b.cssProps=function(a){var b=[];for(var c in a)a.hasOwnProperty(c)&&b.push(c+":"+a[c]);return b.join(";")},b.encodeHtmlEntity=function(a){for(var b=[],c=0,d=a.length-1;d>=0;d--)c=a.charCodeAt(d),b.unshift(c>128?["&#",c,";"].join(""):a[d]);return b.join("")},b.imageExists=function(a,b){var c=new Image;c.onerror=function(){b.call(this,!1)},c.onload=function(){b.call(this,!0)},c.src=a},b.decodeHtmlEntity=function(a){return a.replace(/&#(\d+);/g,function(a,b){return String.fromCharCode(b)})},b.dimensionCheck=function(a){var b={height:a.clientHeight,width:a.clientWidth};return b.height&&b.width?b:!1},b.truthy=function(a){return"string"==typeof a?"true"===a||"yes"===a||"1"===a||"on"===a||"✓"===a:!!a},b.parseColor=function(a){var b,c=/(^(?:#?)[0-9a-f]{6}$)|(^(?:#?)[0-9a-f]{3}$)/i,d=/^rgb\((\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)$/,e=/^rgba\((\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(0\.\d{1,}|1)\)$/,f=a.match(c);return null!==f?(b=f[1]||f[2],"#"!==b[0]?"#"+b:b):(f=a.match(d),null!==f?b="rgb("+f.slice(1).join(",")+")":(f=a.match(e),null!==f?b="rgba("+f.slice(1).join(",")+")":null))}},function(a,b,c){(function(a){var d=c(7),e="http://www.w3.org/2000/svg",f=8;b.initSVG=function(a,b,c){var g,h,i=!1;a&&a.querySelector?(h=a.querySelector("style"),null===h&&(i=!0)):(a=d.newEl("svg",e),i=!0),i&&(g=d.newEl("defs",e),h=d.newEl("style",e),d.setAttr(h,{type:"text/css"}),g.appendChild(h),a.appendChild(g)),a.webkitMatchesSelector&&a.setAttribute("xmlns",e);for(var j=0;j<a.childNodes.length;j++)a.childNodes[j].nodeType===f&&a.removeChild(a.childNodes[j]);for(;h.childNodes.length;)h.removeChild(h.childNodes[0]);return d.setAttr(a,{width:b,height:c,viewBox:"0 0 "+b+" "+c,preserveAspectRatio:"none"}),a},b.svgStringToDataURI=function(){var b="data:image/svg+xml;charset=UTF-8,",c="data:image/svg+xml;charset=UTF-8;base64,";return function(d,e){return e?c+btoa(a.unescape(encodeURIComponent(d))):b+encodeURIComponent(d)}}(),b.serializeSVG=function(b,c){if(a.XMLSerializer){var e=new XMLSerializer,f="",g=c.stylesheets;if(c.svgXMLStylesheet){for(var h=d.createXML(),i=g.length-1;i>=0;i--){var j=h.createProcessingInstruction("xml-stylesheet",'href="'+g[i]+'" rel="stylesheet"');h.insertBefore(j,h.firstChild)}h.removeChild(h.documentElement),f=e.serializeToString(h)}var k=e.serializeToString(b);return k=k.replace(/\&(\#[0-9]{2,}\;)/g,"&$1"),f+k}}}).call(b,function(){return this}())},function(a,b,c){(function(a){b.newEl=function(b,c){return a.document?null==c?a.document.createElement(b):a.document.createElementNS(c,b):void 0},b.setAttr=function(a,b){for(var c in b)a.setAttribute(c,b[c])},b.createXML=function(){return a.DOMParser?(new DOMParser).parseFromString("<xml />","application/xml"):void 0},b.getNodeArray=function(b){var c=null;return"string"==typeof b?c=document.querySelectorAll(b):a.NodeList&&b instanceof a.NodeList?c=b:a.Node&&b instanceof a.Node?c=[b]:a.HTMLCollection&&b instanceof a.HTMLCollection?c=b:b instanceof Array?c=b:null===b&&(c=[]),c=Array.prototype.slice.call(c)}}).call(b,function(){return this}())},function(a,b,c){var d=function(a,b){"string"==typeof a&&(this.original=a,"#"===a.charAt(0)&&(a=a.slice(1)),/[^a-f0-9]+/i.test(a)||(3===a.length&&(a=a.replace(/./g,"$&$&")),6===a.length&&(this.alpha=1,b&&b.alpha&&(this.alpha=b.alpha),this.set(parseInt(a,16)))))};d.rgb2hex=function(a,b,c){function d(a){var b=(0|a).toString(16);return 16>a&&(b="0"+b),b}return[a,b,c].map(d).join("")},d.hsl2rgb=function(a,b,c){var d=a/60,e=(1-Math.abs(2*c-1))*b,f=e*(1-Math.abs(parseInt(d)%2-1)),g=c-e/2,h=0,i=0,j=0;return d>=0&&1>d?(h=e,i=f):d>=1&&2>d?(h=f,i=e):d>=2&&3>d?(i=e,j=f):d>=3&&4>d?(i=f,j=e):d>=4&&5>d?(h=f,j=e):d>=5&&6>d&&(h=e,j=f),h+=g,i+=g,j+=g,h=parseInt(255*h),i=parseInt(255*i),j=parseInt(255*j),[h,i,j]},d.prototype.set=function(a){this.raw=a;var b=(16711680&this.raw)>>16,c=(65280&this.raw)>>8,d=255&this.raw,e=.2126*b+.7152*c+.0722*d,f=-.09991*b-.33609*c+.436*d,g=.615*b-.55861*c-.05639*d;return this.rgb={r:b,g:c,b:d},this.yuv={y:e,u:f,v:g},this},d.prototype.lighten=function(a){var b=Math.min(1,Math.max(0,Math.abs(a)))*(0>a?-1:1),c=255*b|0,e=Math.min(255,Math.max(0,this.rgb.r+c)),f=Math.min(255,Math.max(0,this.rgb.g+c)),g=Math.min(255,Math.max(0,this.rgb.b+c)),h=d.rgb2hex(e,f,g);return new d(h)},d.prototype.toHex=function(a){return(a?"#":"")+this.raw.toString(16)},d.prototype.lighterThan=function(a){return a instanceof d||(a=new d(a)),this.yuv.y>a.yuv.y},d.prototype.blendAlpha=function(a){a instanceof d||(a=new d(a));var b=a,c=this,e=b.alpha*b.rgb.r+(1-b.alpha)*c.rgb.r,f=b.alpha*b.rgb.g+(1-b.alpha)*c.rgb.g,g=b.alpha*b.rgb.b+(1-b.alpha)*c.rgb.b;return new d(d.rgb2hex(e,f,g))},a.exports=d},function(a,b,c){a.exports={version:"2.8.2",svg_ns:"http://www.w3.org/2000/svg"}},function(a,b,c){(function(b){var d=c(6),e=c(7),f=c(5),g=c(9),h=g.svg_ns,i="\nCreated with Holder.js "+g.version+".\nLearn more at http://holderjs.com\n(c) 2012-2015 Ivan Malopinsky - http://imsky.co\n";a.exports=function(){if(b.XMLSerializer){var a=e.createXML(),c=d.initSVG(null,0,0),g=e.newEl("rect",h);return c.appendChild(g),function(b,j){var k=b.root;d.initSVG(c,k.properties.width,k.properties.height);for(var l=c.querySelectorAll("g"),m=0;m<l.length;m++)l[m].parentNode.removeChild(l[m]);var n=j.holderSettings.flags.holderURL,o="holder_"+(Number(new Date)+32768+(0|32768*Math.random())).toString(16),p=e.newEl("g",h),q=k.children.holderTextGroup,r=q.properties,s=e.newEl("g",h),t=q.textPositionData,u="#"+o+" text { "+f.cssProps({fill:r.fill,"font-weight":r.font.weight,"font-family":r.font.family+", monospace","font-size":r.font.size+r.font.units})+" } ",v=a.createComment("\nSource URL: "+n+i),w=a.createCDATASection(u),x=c.querySelector("style"),y=k.children.holderBg;if(e.setAttr(p,{id:o}),c.insertBefore(v,c.firstChild),x.appendChild(w),p.appendChild(g),y.properties.outline){var z=e.newEl("path",h),A=y.properties.outline.width,B=A/2;e.setAttr(z,{d:["M",B,B,"H",y.width-B,"V",y.height-B,"H",B,"V",0,"M",0,B,"L",y.width,y.height-B,"M",0,y.height-B,"L",y.width,B].join(" "),"stroke-width":y.properties.outline.width,stroke:y.properties.outline.fill,fill:"none"}),p.appendChild(z)}p.appendChild(s),c.appendChild(p),e.setAttr(g,{width:y.width,height:y.height,fill:y.properties.fill}),q.y+=.8*t.boundingBox.height;for(var C in q.children){var D=q.children[C];for(var E in D.children){var F=D.children[E],G=q.x+D.x+F.x,H=q.y+D.y+F.y,I=e.newEl("text",h),J=document.createTextNode(null);e.setAttr(I,{x:G,y:H}),J.nodeValue=F.properties.text,I.appendChild(J),s.appendChild(I)}}var K=d.svgStringToDataURI(d.serializeSVG(c,j.engineSettings),"background"===j.mode);return K}}}()}).call(b,function(){return this}())},function(a,b,c){function d(a){return a.replace(/^\s*|\s*$/g,"")}b=a.exports=d,b.left=function(a){return a.replace(/^\s*/,"")},b.right=function(a){return a.replace(/\s*$/,"")}},function(a,b,c){var d=Object.prototype.toString;a.exports=function(a){switch(d.call(a)){case"[object Date]":return"date";case"[object RegExp]":return"regexp";case"[object Arguments]":return"arguments";case"[object Array]":return"array";case"[object Error]":return"error"}return null===a?"null":void 0===a?"undefined":a!==a?"nan":a&&1===a.nodeType?"element":(a=a.valueOf?a.valueOf():Object.prototype.valueOf.apply(a),typeof a)}}])}),function(a,b){b&&(Holder=a.Holder)}(this,"undefined"!=typeof Meteor&&"undefined"!=typeof Package),/*! +!function(a){if(a.document){var b=a.document;b.querySelectorAll||(b.querySelectorAll=function(c){var d,e=b.createElement("style"),f=[];for(b.documentElement.firstChild.appendChild(e),b._qsa=[],e.styleSheet.cssText=c+"{x-qsa:expression(document._qsa && document._qsa.push(this))}",a.scrollBy(0,0),e.parentNode.removeChild(e);b._qsa.length;)d=b._qsa.shift(),d.style.removeAttribute("x-qsa"),f.push(d);return b._qsa=null,f}),b.querySelector||(b.querySelector=function(a){var c=b.querySelectorAll(a);return c.length?c[0]:null}),b.getElementsByClassName||(b.getElementsByClassName=function(a){return a=String(a).replace(/^|\s+/g,"."),b.querySelectorAll(a)}),Object.keys||(Object.keys=function(a){if(a!==Object(a))throw TypeError("Object.keys called on non-object");var b,c=[];for(b in a)Object.prototype.hasOwnProperty.call(a,b)&&c.push(b);return c}),Array.prototype.forEach||(Array.prototype.forEach=function(a){if(void 0===this||null===this)throw TypeError();var b=Object(this),c=b.length>>>0;if("function"!=typeof a)throw TypeError();var d,e=arguments[1];for(d=0;c>d;d++)d in b&&a.call(e,b[d],d,b)}),function(a){var b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";a.atob=a.atob||function(a){a=String(a);var c,d=0,e=[],f=0,g=0;if(a=a.replace(/\s/g,""),a.length%4===0&&(a=a.replace(/=+$/,"")),a.length%4===1)throw Error("InvalidCharacterError");if(/[^+\/0-9A-Za-z]/.test(a))throw Error("InvalidCharacterError");for(;d<a.length;)c=b.indexOf(a.charAt(d)),f=f<<6|c,g+=6,24===g&&(e.push(String.fromCharCode(f>>16&255)),e.push(String.fromCharCode(f>>8&255)),e.push(String.fromCharCode(255&f)),g=0,f=0),d+=1;return 12===g?(f>>=4,e.push(String.fromCharCode(255&f))):18===g&&(f>>=2,e.push(String.fromCharCode(f>>8&255)),e.push(String.fromCharCode(255&f))),e.join("")},a.btoa=a.btoa||function(a){a=String(a);var c,d,e,f,g,h,i,j=0,k=[];if(/[^\x00-\xFF]/.test(a))throw Error("InvalidCharacterError");for(;j<a.length;)c=a.charCodeAt(j++),d=a.charCodeAt(j++),e=a.charCodeAt(j++),f=c>>2,g=(3&c)<<4|d>>4,h=(15&d)<<2|e>>6,i=63&e,j===a.length+2?(h=64,i=64):j===a.length+1&&(i=64),k.push(b.charAt(f),b.charAt(g),b.charAt(h),b.charAt(i));return k.join("")}}(a),Object.prototype.hasOwnProperty||(Object.prototype.hasOwnProperty=function(a){var b=this.__proto__||this.constructor.prototype;return a in this&&(!(a in b)||b[a]!==this[a])}),function(){if("performance"in a==0&&(a.performance={}),Date.now=Date.now||function(){return(new Date).getTime()},"now"in a.performance==0){var b=Date.now();performance.timing&&performance.timing.navigationStart&&(b=performance.timing.navigationStart),a.performance.now=function(){return Date.now()-b}}}(),a.requestAnimationFrame||(a.webkitRequestAnimationFrame?!function(a){a.requestAnimationFrame=function(b){return webkitRequestAnimationFrame(function(){b(a.performance.now())})},a.cancelAnimationFrame=webkitCancelAnimationFrame}(a):a.mozRequestAnimationFrame?!function(a){a.requestAnimationFrame=function(b){return mozRequestAnimationFrame(function(){b(a.performance.now())})},a.cancelAnimationFrame=mozCancelAnimationFrame}(a):!function(a){a.requestAnimationFrame=function(b){return a.setTimeout(b,1e3/60)},a.cancelAnimationFrame=a.clearTimeout}(a))}}(this),function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):"object"==typeof exports?exports.Holder=b():a.Holder=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){a.exports=c(1)},function(a,b,c){(function(b){function d(a,b,c,d){var g=e(c.substr(c.lastIndexOf(a.domain)),a);g&&f({mode:null,el:d,flags:g,engineSettings:b})}function e(a,b){var c={theme:z(D.settings.themes.gray,null),stylesheets:b.stylesheets,instanceOptions:b},d=a.split("?"),e=d[0].split("/");c.holderURL=a;var f=e[1],g=f.match(/([\d]+p?)x([\d]+p?)/);if(!g)return!1;if(c.fluid=-1!==f.indexOf("p"),c.dimensions={width:g[1].replace("p","%"),height:g[2].replace("p","%")},2===d.length){var h=r.parse(d[1]);if(h.bg&&(c.theme.background=t.parseColor(h.bg)),h.fg&&(c.theme.foreground=t.parseColor(h.fg)),h.bg&&!h.fg&&(c.autoFg=!0),h.theme&&c.instanceOptions.themes.hasOwnProperty(h.theme)&&(c.theme=z(c.instanceOptions.themes[h.theme],null)),h.text&&(c.text=h.text),h.textmode&&(c.textmode=h.textmode),h.size&&(c.size=h.size),h.font&&(c.font=h.font),h.align&&(c.align=h.align),c.nowrap=t.truthy(h.nowrap),c.auto=t.truthy(h.auto),c.outline=t.truthy(h.outline),t.truthy(h.random)){D.vars.cache.themeKeys=D.vars.cache.themeKeys||Object.keys(c.instanceOptions.themes);var i=D.vars.cache.themeKeys[0|Math.random()*D.vars.cache.themeKeys.length];c.theme=z(c.instanceOptions.themes[i],null)}}return c}function f(a){var b=a.mode,c=a.el,d=a.flags,e=a.engineSettings,f=d.dimensions,h=d.theme,i=f.width+"x"+f.height;if(b=null==b?d.fluid?"fluid":"image":b,null!=d.text&&(h.text=d.text,"object"===c.nodeName.toLowerCase())){for(var l=h.text.split("\\n"),m=0;m<l.length;m++)l[m]=t.encodeHtmlEntity(l[m]);h.text=l.join("\\n")}var n=d.holderURL,o=z(e,null);if(d.font&&(h.font=d.font,!o.noFontFallback&&"img"===c.nodeName.toLowerCase()&&D.setup.supportsCanvas&&"svg"===o.renderer&&(o=z(o,{renderer:"canvas"}))),d.font&&"canvas"==o.renderer&&(o.reRender=!0),"background"==b)null==c.getAttribute("data-background-src")&&v.setAttr(c,{"data-background-src":n});else{var p={};p[D.vars.dataAttr]=n,v.setAttr(c,p)}d.theme=h,c.holderData={flags:d,engineSettings:o},("image"==b||"fluid"==b)&&v.setAttr(c,{alt:h.text?h.text+" ["+i+"]":i});var q={mode:b,el:c,holderSettings:{dimensions:f,theme:h,flags:d},engineSettings:o};"image"==b?(d.auto||(c.style.width=f.width+"px",c.style.height=f.height+"px"),"html"==o.renderer?c.style.backgroundColor=h.background:(g(q),"exact"==d.textmode&&(c.holderData.resizeUpdate=!0,D.vars.resizableImages.push(c),j(c)))):"background"==b&&"html"!=o.renderer?g(q):"fluid"==b&&(c.holderData.resizeUpdate=!0,"%"==f.height.slice(-1)?c.style.height=f.height:null!=d.auto&&d.auto||(c.style.height=f.height+"px"),"%"==f.width.slice(-1)?c.style.width=f.width:null!=d.auto&&d.auto||(c.style.width=f.width+"px"),("inline"==c.style.display||""===c.style.display||"none"==c.style.display)&&(c.style.display="block"),k(c),"html"==o.renderer?c.style.backgroundColor=h.background:(D.vars.resizableImages.push(c),j(c)))}function g(a){function c(){var b=null;switch(i.renderer){case"canvas":b=F(k,a);break;case"svg":b=y(k,a);break;default:throw"Holder: invalid renderer: "+i.renderer}return b}var d=null,e=a.mode,f=a.el,g=a.holderSettings,i=a.engineSettings;switch(i.renderer){case"svg":if(!D.setup.supportsSVG)return;break;case"canvas":if(!D.setup.supportsCanvas)return;break;default:return}var j={width:g.dimensions.width,height:g.dimensions.height,theme:g.theme,flags:g.flags},k=h(j);if(d=c(),null==d)throw"Holder: couldn't render placeholder";"background"==e?(f.style.backgroundImage="url("+d+")",f.style.backgroundSize=j.width+"px "+j.height+"px"):("img"===f.nodeName.toLowerCase()?v.setAttr(f,{src:d}):"object"===f.nodeName.toLowerCase()&&(v.setAttr(f,{data:d}),v.setAttr(f,{type:"image/svg+xml"})),i.reRender&&b.setTimeout(function(){var a=c();if(null==a)throw"Holder: couldn't render placeholder";"img"===f.nodeName.toLowerCase()?v.setAttr(f,{src:a}):"object"===f.nodeName.toLowerCase()&&(v.setAttr(f,{data:a}),v.setAttr(f,{type:"image/svg+xml"}))},150)),v.setAttr(f,{"data-holder-rendered":!0})}function h(a){function b(a,b,c,d){b.width=c,b.height=d,a.width=Math.max(a.width,b.width),a.height+=b.height}var c=D.defaults.size;switch(parseFloat(a.theme.size)?c=a.theme.size:parseFloat(a.flags.size)&&(c=a.flags.size),a.font={family:a.theme.font?a.theme.font:"Arial, Helvetica, Open Sans, sans-serif",size:i(a.width,a.height,c,D.defaults.scale),units:a.theme.units?a.theme.units:D.defaults.units,weight:a.theme.fontweight?a.theme.fontweight:"bold"},a.text=a.theme.text||Math.floor(a.width)+"x"+Math.floor(a.height),a.noWrap=a.theme.nowrap||a.flags.nowrap,a.align=a.theme.align||a.flags.align||"center",a.flags.textmode){case"literal":a.text=a.flags.dimensions.width+"x"+a.flags.dimensions.height;break;case"exact":if(!a.flags.exactDimensions)break;a.text=Math.floor(a.flags.exactDimensions.width)+"x"+Math.floor(a.flags.exactDimensions.height)}var d=new s({width:a.width,height:a.height}),e=d.Shape,f=new e.Rect("holderBg",{fill:a.theme.background});if(f.resize(a.width,a.height),d.root.add(f),a.flags.outline){var g=new w(f.properties.fill);g=g.lighten(g.lighterThan("7f7f7f")?-.1:.1),f.properties.outline={fill:g.toHex(!0),width:2}}var h=a.theme.foreground;if(a.flags.autoFg){var j=new w(f.properties.fill),k=new w("fff"),l=new w("000",{alpha:.285714});h=j.blendAlpha(j.lighterThan("7f7f7f")?l:k).toHex(!0)}var m=new e.Group("holderTextGroup",{text:a.text,align:a.align,font:a.font,fill:h});m.moveTo(null,null,1),d.root.add(m);var n=m.textPositionData=E(d);if(!n)throw"Holder: staging fallback not supported yet.";m.properties.leading=n.boundingBox.height;var o=null,p=null,q=a.width*D.vars.lineWrapRatio,r=q;if(n.lineCount>1){var t,u=0,v=0,x=0;p=new e.Group("line"+x),("left"===a.align||"right"===a.align)&&(r=a.width*(1-2*(1-D.vars.lineWrapRatio)));for(var y=0;y<n.words.length;y++){var z=n.words[y];o=new e.Text(z.text);var A="\\n"==z.text;!a.noWrap&&(u+z.width>=r||A===!0)&&(b(m,p,u,m.properties.leading),m.add(p),u=0,v+=m.properties.leading,x+=1,p=new e.Group("line"+x),p.y=v),A!==!0&&(o.moveTo(u,0),u+=n.spaceWidth+z.width,p.add(o))}if(b(m,p,u,m.properties.leading),m.add(p),"left"===a.align)m.moveTo(a.width-q,null,null);else if("right"===a.align){for(t in m.children)p=m.children[t],p.moveTo(a.width-p.width,null,null);m.moveTo(0-(a.width-q),null,null)}else{for(t in m.children)p=m.children[t],p.moveTo((m.width-p.width)/2,null,null);m.moveTo((a.width-m.width)/2,null,null)}m.moveTo(null,(a.height-m.height)/2,null),(a.height-m.height)/2<0&&m.moveTo(null,0,null)}else o=new e.Text(a.text),p=new e.Group("line0"),p.add(o),m.add(p),"left"===a.align?m.moveTo(a.width-q,null,null):"right"===a.align?m.moveTo(0-(a.width-q),null,null):m.moveTo((a.width-n.boundingBox.width)/2,null,null),m.moveTo(null,(a.height-n.boundingBox.height)/2,null);return d}function i(a,b,c,d){var e=parseInt(a,10),f=parseInt(b,10),g=Math.max(e,f),h=Math.min(e,f),i=.8*Math.min(h,g*d);return Math.round(Math.max(c,i))}function j(a){var b;b=null==a||null==a.nodeType?D.vars.resizableImages:[a];for(var c=0,d=b.length;d>c;c++){var e=b[c];if(e.holderData){var f=e.holderData.flags,h=A(e);if(h){if(!e.holderData.resizeUpdate)continue;if(f.fluid&&f.auto){var i=e.holderData.fluidConfig;switch(i.mode){case"width":h.height=h.width/i.ratio;break;case"height":h.width=h.height*i.ratio}}var j={mode:"image",holderSettings:{dimensions:h,theme:f.theme,flags:f},el:e,engineSettings:e.holderData.engineSettings};"exact"==f.textmode&&(f.exactDimensions=h,j.holderSettings.dimensions=f.dimensions),g(j)}else n(e)}}}function k(a){if(a.holderData){var b=A(a);if(b){var c=a.holderData.flags,d={fluidHeight:"%"==c.dimensions.height.slice(-1),fluidWidth:"%"==c.dimensions.width.slice(-1),mode:null,initialDimensions:b};d.fluidWidth&&!d.fluidHeight?(d.mode="width",d.ratio=d.initialDimensions.width/parseFloat(c.dimensions.height)):!d.fluidWidth&&d.fluidHeight&&(d.mode="height",d.ratio=parseFloat(c.dimensions.width)/d.initialDimensions.height),a.holderData.fluidConfig=d}else n(a)}}function l(){var a,c=[],d=Object.keys(D.vars.invisibleImages);d.forEach(function(b){a=D.vars.invisibleImages[b],A(a)&&"img"==a.nodeName.toLowerCase()&&(c.push(a),delete D.vars.invisibleImages[b])}),c.length&&C.run({images:c}),setTimeout(function(){b.requestAnimationFrame(l)},10)}function m(){D.vars.visibilityCheckStarted||(b.requestAnimationFrame(l),D.vars.visibilityCheckStarted=!0)}function n(a){a.holderData.invisibleId||(D.vars.invisibleId+=1,D.vars.invisibleImages["i"+D.vars.invisibleId]=a,a.holderData.invisibleId=D.vars.invisibleId)}function o(a){D.vars.debounceTimer||a.call(this),D.vars.debounceTimer&&b.clearTimeout(D.vars.debounceTimer),D.vars.debounceTimer=b.setTimeout(function(){D.vars.debounceTimer=null,a.call(this)},D.setup.debounce)}function p(){o(function(){j(null)})}var q=c(2),r=c(3),s=c(4),t=c(5),u=c(6),v=c(7),w=c(8),x=c(9),y=c(10),z=t.extend,A=t.dimensionCheck,B=x.svg_ns,C={version:x.version,addTheme:function(a,b){return null!=a&&null!=b&&(D.settings.themes[a]=b),delete D.vars.cache.themeKeys,this},addImage:function(a,b){var c=v.getNodeArray(b);return c.forEach(function(b){var c=v.newEl("img"),d={};d[D.setup.dataAttr]=a,v.setAttr(c,d),b.appendChild(c)}),this},setResizeUpdate:function(a,b){a.holderData&&(a.holderData.resizeUpdate=!!b,a.holderData.resizeUpdate&&j(a))},run:function(a){a=a||{};var c={},g=z(D.settings,a);D.vars.preempted=!0,D.vars.dataAttr=g.dataAttr||D.setup.dataAttr,D.vars.lineWrapRatio=g.lineWrapRatio||D.setup.lineWrapRatio,c.renderer=g.renderer?g.renderer:D.setup.renderer,-1===D.setup.renderers.join(",").indexOf(c.renderer)&&(c.renderer=D.setup.supportsSVG?"svg":D.setup.supportsCanvas?"canvas":"html");var h=v.getNodeArray(g.images),i=v.getNodeArray(g.bgnodes),j=v.getNodeArray(g.stylenodes),k=v.getNodeArray(g.objects);return c.stylesheets=[],c.svgXMLStylesheet=!0,c.noFontFallback=g.noFontFallback?g.noFontFallback:!1,j.forEach(function(a){if(a.attributes.rel&&a.attributes.href&&"stylesheet"==a.attributes.rel.value){var b=a.attributes.href.value,d=v.newEl("a");d.href=b;var e=d.protocol+"//"+d.host+d.pathname+d.search;c.stylesheets.push(e)}}),i.forEach(function(a){if(b.getComputedStyle){var d=b.getComputedStyle(a,null).getPropertyValue("background-image"),h=a.getAttribute("data-background-src"),i=h||d,j=null,k=g.domain+"/",l=i.indexOf(k);if(0===l)j=i;else if(1===l&&"?"===i[0])j=i.slice(1);else{var m=i.substr(l).match(/([^\"]*)"?\)/);if(null!==m)j=m[1];else if(0===i.indexOf("url("))throw"Holder: unable to parse background URL: "+i}if(null!=j){var n=e(j,g);n&&f({mode:"background",el:a,flags:n,engineSettings:c})}}}),k.forEach(function(a){var b={};try{b.data=a.getAttribute("data"),b.dataSrc=a.getAttribute(D.vars.dataAttr)}catch(e){}var f=null!=b.data&&0===b.data.indexOf(g.domain),h=null!=b.dataSrc&&0===b.dataSrc.indexOf(g.domain);f?d(g,c,b.data,a):h&&d(g,c,b.dataSrc,a)}),h.forEach(function(a){var b={};try{b.src=a.getAttribute("src"),b.dataSrc=a.getAttribute(D.vars.dataAttr),b.rendered=a.getAttribute("data-holder-rendered")}catch(e){}var f=null!=b.src,h=null!=b.dataSrc&&0===b.dataSrc.indexOf(g.domain),i=null!=b.rendered&&"true"==b.rendered;f?0===b.src.indexOf(g.domain)?d(g,c,b.src,a):h&&(i?d(g,c,b.dataSrc,a):!function(a,b,c,e,f){t.imageExists(a,function(a){a||d(b,c,e,f)})}(b.src,g,c,b.dataSrc,a)):h&&d(g,c,b.dataSrc,a)}),this}},D={settings:{domain:"holder.js",images:"img",objects:"object",bgnodes:"body .holderjs",stylenodes:"head link.holderjs",themes:{gray:{background:"#EEEEEE",foreground:"#AAAAAA"},social:{background:"#3a5a97",foreground:"#FFFFFF"},industrial:{background:"#434A52",foreground:"#C2F200"},sky:{background:"#0D8FDB",foreground:"#FFFFFF"},vine:{background:"#39DBAC",foreground:"#1E292C"},lava:{background:"#F8591A",foreground:"#1C2846"}}},defaults:{size:10,units:"pt",scale:1/16}},E=function(){var a=null,b=null,c=null;return function(d){var e=d.root;if(D.setup.supportsSVG){var f=!1,g=function(a){return document.createTextNode(a)};(null==a||a.parentNode!==document.body)&&(f=!0),a=u.initSVG(a,e.properties.width,e.properties.height),a.style.display="block",f&&(b=v.newEl("text",B),c=g(null),v.setAttr(b,{x:0}),b.appendChild(c),a.appendChild(b),document.body.appendChild(a),a.style.visibility="hidden",a.style.position="absolute",a.style.top="-100%",a.style.left="-100%");var h=e.children.holderTextGroup,i=h.properties;v.setAttr(b,{y:i.font.size,style:t.cssProps({"font-weight":i.font.weight,"font-size":i.font.size+i.font.units,"font-family":i.font.family})}),c.nodeValue=i.text;var j=b.getBBox(),k=Math.ceil(j.width/(e.properties.width*D.vars.lineWrapRatio)),l=i.text.split(" "),m=i.text.match(/\\n/g);k+=null==m?0:m.length,c.nodeValue=i.text.replace(/[ ]+/g,"");var n=b.getComputedTextLength(),o=j.width-n,p=Math.round(o/Math.max(1,l.length-1)),q=[];if(k>1){c.nodeValue="";for(var r=0;r<l.length;r++)if(0!==l[r].length){c.nodeValue=t.decodeHtmlEntity(l[r]);var s=b.getBBox();q.push({text:l[r],width:s.width})}}return a.style.display="none",{spaceWidth:p,lineCount:k,boundingBox:j,words:q}}return!1}}(),F=function(){var a=v.newEl("canvas"),b=null;return function(c){null==b&&(b=a.getContext("2d"));var d=c.root;a.width=D.dpr(d.properties.width),a.height=D.dpr(d.properties.height),b.textBaseline="middle";var e=d.children.holderBg,f=D.dpr(e.width),g=D.dpr(e.height),h=2,i=h/2;b.fillStyle=e.properties.fill,b.fillRect(0,0,f,g),e.properties.outline&&(b.strokeStyle=e.properties.outline.fill,b.lineWidth=e.properties.outline.width,b.moveTo(i,i),b.lineTo(f-i,i),b.lineTo(f-i,g-i),b.lineTo(i,g-i),b.lineTo(i,i),b.moveTo(0,i),b.lineTo(f,g-i),b.moveTo(0,g-i),b.lineTo(f,i),b.stroke());var j=d.children.holderTextGroup;b.font=j.properties.font.weight+" "+D.dpr(j.properties.font.size)+j.properties.font.units+" "+j.properties.font.family+", monospace",b.fillStyle=j.properties.fill;for(var k in j.children){var l=j.children[k];for(var m in l.children){var n=l.children[m],o=D.dpr(j.x+l.x+n.x),p=D.dpr(j.y+l.y+n.y+j.properties.leading/2);b.fillText(n.properties.text,o,p)}}return a.toDataURL("image/png")}}();for(var G in D.flags)D.flags.hasOwnProperty(G)&&(D.flags[G].match=function(a){return a.match(this.regex)});D.setup={renderer:"html",debounce:100,ratio:1,supportsCanvas:!1,supportsSVG:!1,lineWrapRatio:.9,dataAttr:"data-src",renderers:["html","canvas","svg"]},D.dpr=function(a){return a*D.setup.ratio},D.vars={preempted:!1,resizableImages:[],invisibleImages:{},invisibleId:0,visibilityCheckStarted:!1,debounceTimer:null,cache:{}},function(){var a=1,c=1,d=v.newEl("canvas"),e=null;d.getContext&&-1!=d.toDataURL("image/png").indexOf("data:image/png")&&(D.setup.renderer="canvas",e=d.getContext("2d"),D.setup.supportsCanvas=!0),D.setup.supportsCanvas&&(a=b.devicePixelRatio||1,c=e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1),D.setup.ratio=a/c,document.createElementNS&&document.createElementNS(B,"svg").createSVGRect&&(D.setup.renderer="svg",D.setup.supportsSVG=!0)}(),m(),q&&q(function(){D.vars.preempted||C.run(),b.addEventListener?(b.addEventListener("resize",p,!1),b.addEventListener("orientationchange",p,!1)):b.attachEvent("onresize",p),"object"==typeof b.Turbolinks&&b.document.addEventListener("page:change",function(){C.run()})}),a.exports=C}).call(b,function(){return this}())},function(a,b,c){function d(a){function b(a){if(!v){if(!g.body)return e(b);for(v=!0;a=w.shift();)e(a)}}function c(a){(t||a.type===i||g[m]===l)&&(d(),b())}function d(){t?(g[s](q,c,j),a[s](i,c,j)):(g[o](r,c),a[o](k,c))}function e(a,b){setTimeout(a,+b>=0?b:1)}function f(a){v?e(a):w.push(a)}null==document.readyState&&document.addEventListener&&(document.addEventListener("DOMContentLoaded",function y(){document.removeEventListener("DOMContentLoaded",y,!1),document.readyState="complete"},!1),document.readyState="loading");var g=a.document,h=g.documentElement,i="load",j=!1,k="on"+i,l="complete",m="readyState",n="attachEvent",o="detachEvent",p="addEventListener",q="DOMContentLoaded",r="onreadystatechange",s="removeEventListener",t=p in g,u=j,v=j,w=[];if(g[m]===l)e(b);else if(t)g[p](q,c,j),a[p](i,c,j);else{g[n](r,c),a[n](k,c);try{u=null==a.frameElement&&h}catch(x){}u&&u.doScroll&&!function z(){if(!v){try{u.doScroll("left")}catch(a){return e(z,50)}d(),b()}}()}return f.version="1.4.0",f.isReady=function(){return v},f}a.exports="undefined"!=typeof window&&d(window)},function(a,b,c){var d=encodeURIComponent,e=decodeURIComponent,f=c(11),g=c(12),h=/(\w+)\[(\d+)\]/,i=/\w+\.\w+/;b.parse=function(a){if("string"!=typeof a)return{};if(a=f(a),""===a)return{};"?"===a.charAt(0)&&(a=a.slice(1));for(var b={},c=a.split("&"),d=0;d<c.length;d++){var g,j,k,l=c[d].split("="),m=e(l[0]);if(g=h.exec(m))b[g[1]]=b[g[1]]||[],b[g[1]][g[2]]=e(l[1]);else if(g=i.test(m)){for(g=m.split("."),j=b;g.length;)if(k=g.shift(),k.length){if(j[k]){if(j[k]&&"object"!=typeof j[k])break}else j[k]={};g.length||(j[k]=e(l[1])),j=j[k]}}else b[l[0]]=null==l[1]?"":e(l[1])}return b},b.stringify=function(a){if(!a)return"";var b=[];for(var c in a){var e=a[c];if("array"!=g(e))b.push(d(c)+"="+d(a[c]));else for(var f=0;f<e.length;++f)b.push(d(c+"["+f+"]")+"="+d(e[f]))}return b.join("&")}},function(a,b,c){var d=function(a){function b(a,b){for(var c in b)a[c]=b[c];return a}var c=1,d=function(a){c++,this.parent=null,this.children={},this.id=c,this.name="n"+c,"undefined"!=typeof a&&(this.name=a),this.x=this.y=this.z=0,this.width=this.height=0};d.prototype.resize=function(a,b){null!=a&&(this.width=a),null!=b&&(this.height=b)},d.prototype.moveTo=function(a,b,c){this.x=null!=a?a:this.x,this.y=null!=b?b:this.y,this.z=null!=c?c:this.z},d.prototype.add=function(a){var b=a.name;if("undefined"!=typeof this.children[b])throw"SceneGraph: child already exists: "+b;this.children[b]=a,a.parent=this};var e=function(){d.call(this,"root"),this.properties=a};e.prototype=new d;var f=function(a,c){if(d.call(this,a),this.properties={fill:"#000000"},"undefined"!=typeof c)b(this.properties,c);else if("undefined"!=typeof a&&"string"!=typeof a)throw"SceneGraph: invalid node name"};f.prototype=new d;var g=function(){f.apply(this,arguments),this.type="group"};g.prototype=new f;var h=function(){f.apply(this,arguments),this.type="rect"};h.prototype=new f;var i=function(a){f.call(this),this.type="text",this.properties.text=a};i.prototype=new f;var j=new e;return this.Shape={Rect:h,Text:i,Group:g},this.root=j,this};a.exports=d},function(a,b,c){b.extend=function(a,b){var c={};for(var d in a)a.hasOwnProperty(d)&&(c[d]=a[d]);if(null!=b)for(var e in b)b.hasOwnProperty(e)&&(c[e]=b[e]);return c},b.cssProps=function(a){var b=[];for(var c in a)a.hasOwnProperty(c)&&b.push(c+":"+a[c]);return b.join(";")},b.encodeHtmlEntity=function(a){for(var b=[],c=0,d=a.length-1;d>=0;d--)c=a.charCodeAt(d),b.unshift(c>128?["&#",c,";"].join(""):a[d]);return b.join("")},b.imageExists=function(a,b){var c=new Image;c.onerror=function(){b.call(this,!1)},c.onload=function(){b.call(this,!0)},c.src=a},b.decodeHtmlEntity=function(a){return a.replace(/&#(\d+);/g,function(a,b){return String.fromCharCode(b)})},b.dimensionCheck=function(a){var b={height:a.clientHeight,width:a.clientWidth};return b.height&&b.width?b:!1},b.truthy=function(a){return"string"==typeof a?"true"===a||"yes"===a||"1"===a||"on"===a||"✓"===a:!!a},b.parseColor=function(a){var b,c=/(^(?:#?)[0-9a-f]{6}$)|(^(?:#?)[0-9a-f]{3}$)/i,d=/^rgb\((\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)$/,e=/^rgba\((\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(0\.\d{1,}|1)\)$/,f=a.match(c);return null!==f?(b=f[1]||f[2],"#"!==b[0]?"#"+b:b):(f=a.match(d),null!==f?b="rgb("+f.slice(1).join(",")+")":(f=a.match(e),null!==f?b="rgba("+f.slice(1).join(",")+")":null))}},function(a,b,c){(function(a){var d=c(7),e="http://www.w3.org/2000/svg",f=8;b.initSVG=function(a,b,c){var g,h,i=!1;a&&a.querySelector?(h=a.querySelector("style"),null===h&&(i=!0)):(a=d.newEl("svg",e),i=!0),i&&(g=d.newEl("defs",e),h=d.newEl("style",e),d.setAttr(h,{type:"text/css"}),g.appendChild(h),a.appendChild(g)),a.webkitMatchesSelector&&a.setAttribute("xmlns",e);for(var j=0;j<a.childNodes.length;j++)a.childNodes[j].nodeType===f&&a.removeChild(a.childNodes[j]);for(;h.childNodes.length;)h.removeChild(h.childNodes[0]);return d.setAttr(a,{width:b,height:c,viewBox:"0 0 "+b+" "+c,preserveAspectRatio:"none"}),a},b.svgStringToDataURI=function(){var b="data:image/svg+xml;charset=UTF-8,",c="data:image/svg+xml;charset=UTF-8;base64,";return function(d,e){return e?c+btoa(a.unescape(encodeURIComponent(d))):b+encodeURIComponent(d)}}(),b.serializeSVG=function(b,c){if(a.XMLSerializer){var e=new XMLSerializer,f="",g=c.stylesheets;if(c.svgXMLStylesheet){for(var h=d.createXML(),i=g.length-1;i>=0;i--){var j=h.createProcessingInstruction("xml-stylesheet",'href="'+g[i]+'" rel="stylesheet"');h.insertBefore(j,h.firstChild)}h.removeChild(h.documentElement),f=e.serializeToString(h)}var k=e.serializeToString(b);return k=k.replace(/\&(\#[0-9]{2,}\;)/g,"&$1"),f+k}}}).call(b,function(){return this}())},function(a,b,c){(function(a){b.newEl=function(b,c){return a.document?null==c?a.document.createElement(b):a.document.createElementNS(c,b):void 0},b.setAttr=function(a,b){for(var c in b)a.setAttribute(c,b[c])},b.createXML=function(){return a.DOMParser?(new DOMParser).parseFromString("<xml />","application/xml"):void 0},b.getNodeArray=function(b){var c=null;return"string"==typeof b?c=document.querySelectorAll(b):a.NodeList&&b instanceof a.NodeList?c=b:a.Node&&b instanceof a.Node?c=[b]:a.HTMLCollection&&b instanceof a.HTMLCollection?c=b:b instanceof Array?c=b:null===b&&(c=[]),c=Array.prototype.slice.call(c)}}).call(b,function(){return this}())},function(a,b,c){var d=function(a,b){"string"==typeof a&&(this.original=a,"#"===a.charAt(0)&&(a=a.slice(1)),/[^a-f0-9]+/i.test(a)||(3===a.length&&(a=a.replace(/./g,"$&$&")),6===a.length&&(this.alpha=1,b&&b.alpha&&(this.alpha=b.alpha),this.set(parseInt(a,16)))))};d.rgb2hex=function(a,b,c){function d(a){var b=(0|a).toString(16);return 16>a&&(b="0"+b),b}return[a,b,c].map(d).join("")},d.hsl2rgb=function(a,b,c){var d=a/60,e=(1-Math.abs(2*c-1))*b,f=e*(1-Math.abs(parseInt(d)%2-1)),g=c-e/2,h=0,i=0,j=0;return d>=0&&1>d?(h=e,i=f):d>=1&&2>d?(h=f,i=e):d>=2&&3>d?(i=e,j=f):d>=3&&4>d?(i=f,j=e):d>=4&&5>d?(h=f,j=e):d>=5&&6>d&&(h=e,j=f),h+=g,i+=g,j+=g,h=parseInt(255*h),i=parseInt(255*i),j=parseInt(255*j),[h,i,j]},d.prototype.set=function(a){this.raw=a;var b=(16711680&this.raw)>>16,c=(65280&this.raw)>>8,d=255&this.raw,e=.2126*b+.7152*c+.0722*d,f=-.09991*b-.33609*c+.436*d,g=.615*b-.55861*c-.05639*d;return this.rgb={r:b,g:c,b:d},this.yuv={y:e,u:f,v:g},this},d.prototype.lighten=function(a){var b=Math.min(1,Math.max(0,Math.abs(a)))*(0>a?-1:1),c=255*b|0,e=Math.min(255,Math.max(0,this.rgb.r+c)),f=Math.min(255,Math.max(0,this.rgb.g+c)),g=Math.min(255,Math.max(0,this.rgb.b+c)),h=d.rgb2hex(e,f,g);return new d(h)},d.prototype.toHex=function(a){return(a?"#":"")+this.raw.toString(16)},d.prototype.lighterThan=function(a){return a instanceof d||(a=new d(a)),this.yuv.y>a.yuv.y},d.prototype.blendAlpha=function(a){a instanceof d||(a=new d(a));var b=a,c=this,e=b.alpha*b.rgb.r+(1-b.alpha)*c.rgb.r,f=b.alpha*b.rgb.g+(1-b.alpha)*c.rgb.g,g=b.alpha*b.rgb.b+(1-b.alpha)*c.rgb.b;return new d(d.rgb2hex(e,f,g))},a.exports=d},function(a,b,c){a.exports={version:"2.8.2",svg_ns:"http://www.w3.org/2000/svg"}},function(a,b,c){(function(b){var d=c(6),e=c(7),f=c(5),g=c(9),h=g.svg_ns,i="\nCreated with Holder.js "+g.version+".\nLearn more at http://holderjs.com\n(c) 2012-2015 Ivan Malopinsky - http://imsky.co\n";a.exports=function(){if(b.XMLSerializer){var a=e.createXML(),c=d.initSVG(null,0,0),g=e.newEl("rect",h);return c.appendChild(g),function(b,j){var k=b.root;d.initSVG(c,k.properties.width,k.properties.height);for(var l=c.querySelectorAll("g"),m=0;m<l.length;m++)l[m].parentNode.removeChild(l[m]);var n=j.holderSettings.flags.holderURL,o="holder_"+(Number(new Date)+32768+(0|32768*Math.random())).toString(16),p=e.newEl("g",h),q=k.children.holderTextGroup,r=q.properties,s=e.newEl("g",h),t=q.textPositionData,u="#"+o+" text { "+f.cssProps({fill:r.fill,"font-weight":r.font.weight,"font-family":r.font.family+", monospace","font-size":r.font.size+r.font.units})+" } ",v=a.createComment("\nSource URL: "+n+i),w=a.createCDATASection(u),x=c.querySelector("style"),y=k.children.holderBg;if(e.setAttr(p,{id:o}),c.insertBefore(v,c.firstChild),x.appendChild(w),p.appendChild(g),y.properties.outline){var z=e.newEl("path",h),A=y.properties.outline.width,B=A/2;e.setAttr(z,{d:["M",B,B,"H",y.width-B,"V",y.height-B,"H",B,"V",0,"M",0,B,"L",y.width,y.height-B,"M",0,y.height-B,"L",y.width,B].join(" "),"stroke-width":y.properties.outline.width,stroke:y.properties.outline.fill,fill:"none"}),p.appendChild(z)}p.appendChild(s),c.appendChild(p),e.setAttr(g,{width:y.width,height:y.height,fill:y.properties.fill}),q.y+=.8*t.boundingBox.height;for(var C in q.children){var D=q.children[C];for(var E in D.children){var F=D.children[E],G=q.x+D.x+F.x,H=q.y+D.y+F.y,I=e.newEl("text",h),J=document.createTextNode(null);e.setAttr(I,{x:G,y:H}),J.nodeValue=F.properties.text,I.appendChild(J),s.appendChild(I)}}var K=d.svgStringToDataURI(d.serializeSVG(c,j.engineSettings),"background"===j.mode);return K}}}()}).call(b,function(){return this}())},function(a,b,c){function d(a){return a.replace(/^\s*|\s*$/g,"")}b=a.exports=d,b.left=function(a){return a.replace(/^\s*/,"")},b.right=function(a){return a.replace(/\s*$/,"")}},function(a,b,c){var d=Object.prototype.toString;a.exports=function(a){switch(d.call(a)){case"[object Date]":return"date";case"[object RegExp]":return"regexp";case"[object Arguments]":return"arguments";case"[object Array]":return"array";case"[object Error]":return"error"}return null===a?"null":void 0===a?"undefined":a!==a?"nan":a&&1===a.nodeType?"element":(a=a.valueOf?a.valueOf():Object.prototype.valueOf.apply(a),typeof a)}}])}),function(a,b){b&&(Holder=a.Holder)}(this,"undefined"!=typeof Meteor&&"undefined"!=typeof Package),/*! * JavaScript for Bootstrap's docs (http://getbootstrap.com) * Copyright 2011-2016 Twitter, Inc. * Licensed under the Creative Commons Attribution 3.0 Unported License. For diff --git a/docs/assets/scss/_ads.scss b/docs/assets/scss/_ads.scss index 8876e5bfb..405cac30a 100644 --- a/docs/assets/scss/_ads.scss +++ b/docs/assets/scss/_ads.scss @@ -1,3 +1,5 @@ +// scss-lint:disable ImportantRule + // // Carbon ads // diff --git a/docs/assets/scss/_callouts.scss b/docs/assets/scss/_callouts.scss index 0ba52fd84..401bfd6f5 100644 --- a/docs/assets/scss/_callouts.scss +++ b/docs/assets/scss/_callouts.scss @@ -10,13 +10,16 @@ border-left-width: .25rem; border-radius: .25rem; } + .bd-callout h4 { margin-top: 0; margin-bottom: .25rem; } + .bd-callout p:last-child { margin-bottom: 0; } + .bd-callout code { border-radius: .25rem; } @@ -31,6 +34,7 @@ h4 { color: $color; } } -.bd-callout-info { @include bs-callout-variant($bd-info); } + +.bd-callout-info { @include bs-callout-variant($bd-info); } .bd-callout-warning { @include bs-callout-variant($bd-warning); } -.bd-callout-danger { @include bs-callout-variant($bd-danger); } +.bd-callout-danger { @include bs-callout-variant($bd-danger); } diff --git a/docs/assets/scss/_component-examples.scss b/docs/assets/scss/_component-examples.scss index 5fbb7453c..b952d7517 100644 --- a/docs/assets/scss/_component-examples.scss +++ b/docs/assets/scss/_component-examples.scss @@ -1,11 +1,16 @@ +// scss-lint:disable QualifyingElement + // // Grid examples // .bd-example-row { - .row { - margin-bottom: 1rem; + .row + .row { + margin-top: 1rem; + } + .row { + > .col, > [class^="col-"] { padding-top: .75rem; padding-bottom: .75rem; @@ -13,6 +18,18 @@ border: 1px solid rgba(86,61,124,.2); } } + + .flex-items-xs-top, + .flex-items-xs-middle, + .flex-items-xs-bottom { + min-height: 6rem; + background-color: rgba(255,0,0,.1); + } +} + +.bd-example-row-flex-cols .row { + min-height: 10rem; + background-color: rgba(255,0,0,.1); } @@ -203,11 +220,6 @@ margin-bottom: .5rem; } -// Pager -.bd-example > .pager { - margin-top: 0; -} - // Example modals .bd-example-modal { background-color: #f5f5f5; diff --git a/docs/assets/scss/_content.scss b/docs/assets/scss/_content.scss index 70ca83375..28f4cd442 100644 --- a/docs/assets/scss/_content.scss +++ b/docs/assets/scss/_content.scss @@ -1,4 +1,4 @@ -// scss-lint:disable IdSelector +// scss-lint:disable IdSelector, NestingDepth, SelectorDepth // // Automatically style Markdown-based tables like a Bootstrap `.table`. @@ -20,7 +20,6 @@ > th, > td { padding: $table-cell-padding; - line-height: $line-height; vertical-align: top; border: 1px solid $table-border-color; diff --git a/docs/assets/scss/_masthead.scss b/docs/assets/scss/_masthead.scss index efbd5c649..f0ebe9363 100644 --- a/docs/assets/scss/_masthead.scss +++ b/docs/assets/scss/_masthead.scss @@ -1,3 +1,5 @@ +// scss-lint:disable ImportantRule + .bd-masthead { position: relative; padding: 3rem ($grid-gutter-width / 2) 2rem; diff --git a/docs/assets/scss/_page-header.scss b/docs/assets/scss/_page-header.scss index 2934460a9..457d3fbef 100644 --- a/docs/assets/scss/_page-header.scss +++ b/docs/assets/scss/_page-header.scss @@ -1,3 +1,5 @@ +// scss-lint:disable ImportantRule + .bd-pageheader { padding: 2rem ($grid-gutter-width / 2); margin-bottom: 1.5rem; diff --git a/docs/assets/scss/_responsive-tests.scss b/docs/assets/scss/_responsive-tests.scss index 0bdd6632d..79fe721bb 100644 --- a/docs/assets/scss/_responsive-tests.scss +++ b/docs/assets/scss/_responsive-tests.scss @@ -1,3 +1,5 @@ +// scss-lint:disable ImportantRule + // // Responsive tests // @@ -20,11 +22,11 @@ .responsive-utilities td { text-align: center; } -.responsive-utilities td.is-visible { +.responsive-utilities .is-visible { color: #468847; background-color: #dff0d8 !important; } -.responsive-utilities td.is-hidden { +.responsive-utilities .is-hidden { color: #ccc; background-color: #f9f9f9 !important; } diff --git a/docs/assets/scss/_syntax.scss b/docs/assets/scss/_syntax.scss index 83aab0f4d..ac08f818d 100644 --- a/docs/assets/scss/_syntax.scss +++ b/docs/assets/scss/_syntax.scss @@ -1,6 +1,5 @@ .hll { background-color: #ffc; } .c { color: #999; } -.err { color: #a00; background-color: #faa; } .k { color: #069; } .o { color: #555; } .cm { color: #999; } diff --git a/docs/assets/scss/docs.scss b/docs/assets/scss/docs.scss index 3a77e3faf..0362198fd 100644 --- a/docs/assets/scss/docs.scss +++ b/docs/assets/scss/docs.scss @@ -13,7 +13,7 @@ // Doing so gives us access to the same core utilities provided by Bootstrap. // For example, consistent media queries through those mixins. // -// - Bootstrap's **docs variables** are prefixed with `%bd-`. +// - Bootstrap's **docs variables** are prefixed with `$bd-`. // These custom colors avoid collision with the components Bootstrap provides. // // - Classes are prefixed with `.bd-`. diff --git a/docs/components/alerts.md b/docs/components/alerts.md index e27109768..c269c3d8f 100644 --- a/docs/components/alerts.md +++ b/docs/components/alerts.md @@ -49,6 +49,19 @@ Use the `.alert-link` utility class to quickly provide matching colored links wi </div> {% endexample %} +### Additional content + +Alerts can also contain additional HTML elements like headings and paragraphs. + +{% example html %} +<div class="alert alert-success" role="alert"> + <h4 class="alert-heading">Well done!</h4> + <p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p> + <p class="m-b-0">Whenever you need to, be sure to use a margin utilities to keep things nice and tidy.</p> +</div> +{% endexample %} + + ### Dismissing Using the alert JavaScript plugin, it's possible to dismiss any alert inline. Here's how: diff --git a/docs/components/buttons.md b/docs/components/buttons.md index e3a4b26a8..9ec1c23f1 100644 --- a/docs/components/buttons.md +++ b/docs/components/buttons.md @@ -116,7 +116,11 @@ Make buttons look inactive by adding the `disabled` boolean attribute to any `<b <button type="button" class="btn btn-secondary btn-lg" disabled>Button</button> {% endexample %} -As `<a>` elements don't support the `disabled` attribute, you must add the `.disabled` class to fake it. In addition, include the `aria-disabled="true"` attribute, to indicate the state of the element to assistive technologies. +Disabled buttons using the `<a>` element behave a bit different: + +- `<a>`s don't support the `disabled` attribute, so you must add the `.disabled` class to make it visually appear disabled. +- Some future-friendly styles are included to disable all `pointer-events` on anchor buttons. For browsers that support that proper, you won't see the disabled cursor at all. +- Disabled buttons should include the `aria-disabled="true"` attribute to indicate the state of the element to assistive technologies. {% example html %} <a href="#" class="btn btn-primary btn-lg disabled" role="button" aria-disabled="true">Primary link</a> diff --git a/docs/components/card.md b/docs/components/card.md index 159fa42be..53580d667 100644 --- a/docs/components/card.md +++ b/docs/components/card.md @@ -211,6 +211,56 @@ Add an optional header and/or footer within a card. </div> {% endexample %} +## Header nav + +Use Bootstrap's nav pills or tabs within a card header. Be sure to always include a `.pull-*-*` utility class for proper alignment. + +{% example html %} +<div class="card text-xs-center"> + <div class="card-header"> + <ul class="nav nav-tabs card-header-tabs pull-xs-left"> + <li class="nav-item"> + <a class="nav-link active" href="#">Active</a> + </li> + <li class="nav-item"> + <a class="nav-link" href="#">Link</a> + </li> + <li class="nav-item"> + <a class="nav-link disabled" href="#">Disabled</a> + </li> + </ul> + </div> + <div class="card-block"> + <h4 class="card-title">Special title treatment</h4> + <p class="card-text">With supporting text below as a natural lead-in to additional content.</p> + <a href="#" class="btn btn-primary">Go somewhere</a> + </div> +</div> +{% endexample %} + +{% example html %} +<div class="card text-xs-center"> + <div class="card-header"> + <ul class="nav nav-pills card-header-pills pull-xs-left"> + <li class="nav-item"> + <a class="nav-link active" href="#">Active</a> + </li> + <li class="nav-item"> + <a class="nav-link" href="#">Link</a> + </li> + <li class="nav-item"> + <a class="nav-link disabled" href="#">Disabled</a> + </li> + </ul> + </div> + <div class="card-block"> + <h4 class="card-title">Special title treatment</h4> + <p class="card-text">With supporting text below as a natural lead-in to additional content.</p> + <a href="#" class="btn btn-primary">Go somewhere</a> + </div> +</div> +{% endexample %} + ## Image caps Similar to headers and footers, cards include top and bottom image caps. diff --git a/docs/components/forms.md b/docs/components/forms.md index ce0124f1a..fed3ba399 100644 --- a/docs/components/forms.md +++ b/docs/components/forms.md @@ -84,7 +84,7 @@ Remember, since Bootstrap utilizes the HTML5 doctype, **all inputs must have a ` </form> {% endexample %} -Below is a complete list of the specific from controls supported by Bootstrap and the classes that customize them. Additional documentation is available for each group. +Below is a complete list of the specific form controls supported by Bootstrap and the classes that customize them. Additional documentation is available for each group. <table> <thead> @@ -271,7 +271,7 @@ The `.form-group` class is the easiest way to add some structure to forms. Its o ### Inline forms -Use the `.form-inline` class to to display a series of labels, form controls, and buttons on a single horizontal row. Form controls within inline forms behave differently: +Use the `.form-inline` class to display a series of labels, form controls, and buttons on a single horizontal row. Form controls within inline forms behave differently: - Controls are `display: inline-block` to provide alignment control via `vertical-align` and `margin`. - Controls receive `width: auto` to override the Bootstrap default `width: 100%`. @@ -634,7 +634,12 @@ Block help text—for below inputs or for longer lines of help text—can be eas ## Validation -Bootstrap includes validation styles for danger, warning, and success states on form controls. To use, add `.has-warning`, `.has-danger`, or `.has-success` to the parent element. Any `.form-control-label`, `.form-control`, and `.text-help` within that element will receive the validation styles. +Bootstrap includes validation styles for danger, warning, and success states on form controls. + +- To use, add `.has-warning`, `.has-danger`, or `.has-success` to the parent element. Any `.form-control-label`, `.form-control`, and `.text-help` within that element will receive the validation styles. +- Validation icons are `url()`s configured via Sass variables that are applied to `background-image` declarations for each state. +- You may use your own base64 PNGs or SVGs by updating the Sass variables and recompiling. +- Icons can also be disabled entirely by changing the variables to `non` or commenting out the source Sass. {% comment %} {% callout warning %} diff --git a/docs/components/list-group.md b/docs/components/list-group.md index 5dbcca2d5..c3d466d5f 100644 --- a/docs/components/list-group.md +++ b/docs/components/list-group.md @@ -12,7 +12,7 @@ List groups are a flexible and powerful component for displaying not only simple {:toc} ## Basic example -<p>The most basic list group is simply an unordered list with list items, and the proper classes. Build upon it with the options that follow, or your own CSS as needed.</p> +The most basic list group is simply an unordered list with list items, and the proper classes. Build upon it with the options that follow, or your own CSS as needed. {% example html %} <ul class="list-group"> @@ -45,13 +45,13 @@ Add labels to any list group item to show unread counts, activity, etc. </ul> {% endexample %} -## Linked items +## Disabled items -Linkify list group items by using anchor tags instead of list items (that also means a parent `<div>` instead of an `<ul>`). No need for individual parents around each element. +Add `.disabled` to a `.list-group-item` to gray it out to appear disabled. {% example html %} <div class="list-group"> - <a href="#" class="list-group-item active"> + <a href="#" class="list-group-item disabled"> Cras justo odio </a> <a href="#" class="list-group-item">Dapibus ac facilisis in</a> @@ -61,33 +61,33 @@ Linkify list group items by using anchor tags instead of list items (that also m </div> {% endexample %} -## Button items +## Anchors and buttons + +Use anchors or buttons to create actionable list group items with hover, disabled, and active states by adding `.list-group-item-action`. This separate class contains a few overrides to add compatibility for `<a>`s and `<button>`s, as well as the hover and focus states. -List group items may be buttons instead of list items (that also means a parent `<div>` instead of an `<ul>`). No need for individual parents around each element. **Don't use the standard `.btn` classes here.** +Be sure to **not use the standard `.btn` classes here**. {% example html %} <div class="list-group"> - <button type="button" class="list-group-item">Cras justo odio</button> - <button type="button" class="list-group-item">Dapibus ac facilisis in</button> - <button type="button" class="list-group-item">Morbi leo risus</button> - <button type="button" class="list-group-item">Porta ac consectetur ac</button> - <button type="button" class="list-group-item">Vestibulum at eros</button> + <a href="#" class="list-group-item active"> + Cras justo odio + </a> + <a href="#" class="list-group-item list-group-item-action">Dapibus ac facilisis in</a> + <a href="#" class="list-group-item list-group-item-action">Morbi leo risus</a> + <a href="#" class="list-group-item list-group-item-action">Porta ac consectetur ac</a> + <a href="#" class="list-group-item list-group-item-action disabled">Vestibulum at eros</a> </div> {% endexample %} -## Disabled items - -Add `.disabled` to a `.list-group-item` to gray it out to appear disabled. - {% example html %} <div class="list-group"> - <a href="#" class="list-group-item disabled"> + <button type="button" class="list-group-item list-group-item-action active"> Cras justo odio - </a> - <a href="#" class="list-group-item">Dapibus ac facilisis in</a> - <a href="#" class="list-group-item">Morbi leo risus</a> - <a href="#" class="list-group-item">Porta ac consectetur ac</a> - <a href="#" class="list-group-item">Vestibulum at eros</a> + </button> + <button type="button" class="list-group-item list-group-item-action">Dapibus ac facilisis in</button> + <button type="button" class="list-group-item list-group-item-action">Morbi leo risus</button> + <button type="button" class="list-group-item list-group-item-action">Porta ac consectetur ac</button> + <button type="button" class="list-group-item list-group-item-action disabled">Vestibulum at eros</button> </div> {% endexample %} @@ -96,17 +96,11 @@ Add `.disabled` to a `.list-group-item` to gray it out to appear disabled. Use contextual classes to style list items, default or linked. Also includes `.active` state. {% example html %} -<ul class="list-group"> - <li class="list-group-item list-group-item-success">Dapibus ac facilisis in</li> - <li class="list-group-item list-group-item-info">Cras sit amet nibh libero</li> - <li class="list-group-item list-group-item-warning">Porta ac consectetur ac</li> - <li class="list-group-item list-group-item-danger">Vestibulum at eros</li> -</ul> <div class="list-group"> - <a href="#" class="list-group-item list-group-item-success">Dapibus ac facilisis in</a> - <a href="#" class="list-group-item list-group-item-info">Cras sit amet nibh libero</a> - <a href="#" class="list-group-item list-group-item-warning">Porta ac consectetur ac</a> - <a href="#" class="list-group-item list-group-item-danger">Vestibulum at eros</a> + <a href="#" class="list-group-item list-group-item-action list-group-item-success">Dapibus ac facilisis in</a> + <a href="#" class="list-group-item list-group-item-action list-group-item-info">Cras sit amet nibh libero</a> + <a href="#" class="list-group-item list-group-item-action list-group-item-warning">Porta ac consectetur ac</a> + <a href="#" class="list-group-item list-group-item-action list-group-item-danger">Vestibulum at eros</a> </div> {% endexample %} @@ -116,16 +110,16 @@ Add nearly any HTML within, even for linked list groups like the one below. {% example html %} <div class="list-group"> - <a href="#" class="list-group-item active"> - <h4 class="list-group-item-heading">List group item heading</h4> + <a href="#" class="list-group-item list-group-item-action active"> + <h5 class="list-group-item-heading">List group item heading</h5> <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> </a> - <a href="#" class="list-group-item"> - <h4 class="list-group-item-heading">List group item heading</h4> + <a href="#" class="list-group-item list-group-item-action"> + <h5 class="list-group-item-heading">List group item heading</h5> <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> </a> - <a href="#" class="list-group-item"> - <h4 class="list-group-item-heading">List group item heading</h4> + <a href="#" class="list-group-item list-group-item-action"> + <h5 class="list-group-item-heading">List group item heading</h5> <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> </a> </div> diff --git a/docs/components/modal.md b/docs/components/modal.md index e8627fe68..a8b1b4850 100644 --- a/docs/components/modal.md +++ b/docs/components/modal.md @@ -181,7 +181,7 @@ Embedding YouTube videos in modals requires additional JavaScript not in Bootstr ## Optional sizes -Modals have two optional sizes, available via modifier classes to be placed on a `.modal-dialog`. +Modals have two optional sizes, available via modifier classes to be placed on a `.modal-dialog`. These size kick in at certain breakpoints to avoid horizontal scrollbars on narrower viewports. <div class="bd-example"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bd-example-modal-lg">Large modal</button> diff --git a/docs/components/pagination.md b/docs/components/pagination.md index 9804da83f..ed5bcd543 100644 --- a/docs/components/pagination.md +++ b/docs/components/pagination.md @@ -4,7 +4,7 @@ title: Pagination group: components --- -Provide pagination links for your site or app with the multi-page pagination component, or the simpler [pager alternative](#pager). +Provide pagination links for your site or app with the multi-page pagination component. ## Contents diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 9621bb7d8..727189083 100644 --- a/docs/components/popovers.md +++ b/docs/components/popovers.md @@ -268,7 +268,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap <td>offsets</td> <td>string</td> <td>'0 0'</td> - <td>Offset of the popover relative to its target. For more information refer to Tether's <a href="http://github.hubspot.com/tether/#constraints">offset docs</a>.</td> + <td>Offset of the popover relative to its target. For more information refer to Tether's <a href="http://github.hubspot.com/tether/#offset">offset docs</a>.</td> </tr> </tbody> </table> diff --git a/docs/components/utilities.md b/docs/components/utilities.md index 1a8ceb361..e59869fcd 100644 --- a/docs/components/utilities.md +++ b/docs/components/utilities.md @@ -60,8 +60,19 @@ Here are some representative examples of these classes: } {% endhighlight %} -Additionally, Bootstrap also includes an `.m-x-auto` class which sets the horizontal margins to `auto`. +Additionally, Bootstrap also includes an `.m-x-auto` class for centering fixed-width block level content by setting the horizontal margins to `auto`. +<div class="bd-example"> + <div class="m-x-auto" style="width: 200px; background-color: rgba(86,61,124,.15);"> + Centered element + </div> +</div> + +{% highlight html %} +<div class="m-x-auto" style="width: 200px;""> + Centered element +</div> +{% endhighlight %} ## Text alignment @@ -191,27 +202,7 @@ Two similar non-responsive mixins (`pull-left` and `pull-right`) are also availa } {% endhighlight %} -## Center content - -Set an element to `display: block;` and center via `margin`. Available as a mixin and class. - -{% example html %} -<div class="center-block">Centered block</div> -{% endexample %} - -{% highlight scss %} -// Class -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} - -// Usage as a mixin -.element { - @include center-block; -} -{% endhighlight %} +## Clearfix Easily clear `float`s by adding `.clearfix` **to the parent element**. Utilizes [the micro clearfix](http://nicolasgallagher.com/micro-clearfix-hack/) as popularized by Nicolas Gallagher. Can also be used as a mixin. @@ -254,7 +245,7 @@ The `.invisible` class can be used to toggle only the visibility of an element, // Usage as a mixin .element { - .invisible(); + @include invisible; } {% endhighlight %} diff --git a/docs/content/reboot.md b/docs/content/reboot.md index d55230e59..2c65e6e21 100644 --- a/docs/content/reboot.md +++ b/docs/content/reboot.md @@ -32,6 +32,30 @@ The `<html>` and `<body>` elements are updated to provide better page-wide defau - The `<body>` also sets a global `font-family` and `line-height`. This is inherited later by some form elements to prevent font inconsistencies. - For safety, the `<body>` has a declared `background-color`, defaulting to `#fff`. +## Native font stack + +The default web (Helvetica Neue, Helvetica, and Arial) fonts have been dropped in Bootstrap 4 and replaced with a "native font stack" for optimum text rendering on every device and OS. Read more about [native font stacks in this Smashing Magazine article](https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/). + +{% highlight sass %} +$font-family-sans-serif: + // Safari for OS X and iOS (San Francisco) + -apple-system, + // Chrome for OS X (San Francisco) and Windows (Segoe UI) + BlinkMacSystemFont, + // Windows + "Segoe UI", + // Android + "Roboto", + // Linux distros + "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", + // Older Android + "Droid Sans", + // Basic web fallback + "Helvetica Neue", Arial, sans-serif !default; +{% endhighlight %} + +This `font-family` is applied to the `<body>` and automatically inherited globally throughout Bootstrap. To switch the global `font-family`, update `$font-family-base` and recompile Bootstrap. + ## Headings and paragraphs All heading elements—e.g., `<h1>`—and `<p>` are reset to have their `margin-top` removed. Headings have `margin-bottom: .5rem` added and paragraphs `margin-bottom: 1rem` for easy spacing. diff --git a/docs/content/typography.md b/docs/content/typography.md index 30b9ca0de..0c6d53aa2 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -15,13 +15,13 @@ Bootstrap includes simple and easily customized typography for headings, body te Bootstrap sets basic global display, typography, and link styles. Specifically, we: -- Use `$body-bg` to set a `background-color` on the `<body>` (`#fff` by default) -- Use the `$font-family-base`, `$font-size-base`, and `$line-height-base` attributes as our typographic base -- Set the global link color via `$link-color` and apply link underlines only on `:hover` +- Use a [native font stack](/content/reboot/#native-font-stack) that selects the best `font-family` for each OS and device. +- Use the `$font-family-base`, `$font-size-base`, and `$line-height-base` attributes as our typographic base applied to the `<body>`. +- Set the global link color via `$link-color` and apply link underlines only on `:hover`. +- Use `$body-bg` to set a `background-color` on the `<body>` (`#fff` by default). These styles can be found within `_reboot.scss`, and the global variables are defined in `_variables.scss`. - ## Headings All HTML headings, `<h1>` through `<h6>`, are available. `.h1` through `.h6` classes are also available, for when you want to match the font styling of a heading but still want your text to be displayed inline. @@ -132,8 +132,14 @@ Styling for common inline HTML5 elements. <p><em>This line rendered as italicized text.</em></p> {% endexample %} +`.mark` and `.small` classes are also available to apply the same styles as `<mark>` and `<small>` while avoiding any unwanted semantic implications that the tags would bring. + While not shown above, feel free to use `<b>` and `<i>` in HTML5. `<b>` is meant to highlight words or phrases without conveying additional importance while `<i>` is mostly for voice, technical terms, etc. +## Text utilities + +Change text alignment, transform, style, weight, and color with our [text utilities](http://localhost:9001/components/utilities/#text-alignment). + ## Abbreviations Stylized implementation of HTML's `<abbr>` element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a `title` attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover and to users of assistive technologies. @@ -226,7 +232,7 @@ Align terms and descriptions horizontally by using our grid system's predefined <dt class="col-sm-3">Euismod</dt> <dd class="col-sm-9">Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd> - <dd class="col-sm-9 col-sm-offset-3">Donec id elit non mi porta gravida at eget metus.</dd> + <dd class="col-sm-9 offset-sm-3">Donec id elit non mi porta gravida at eget metus.</dd> <dt class="col-sm-3">Malesuada porta</dt> <dd class="col-sm-9">Etiam porta sem malesuada magna mollis euismod.</dd> @@ -237,8 +243,8 @@ Align terms and descriptions horizontally by using our grid system's predefined <dt class="col-sm-3">Nesting</dt> <dd class="col-sm-9"> <dl class="row"> - <dt class="col-sm-3">Nested definition list</dt> - <dd class="col-sm-9">Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc.</dd> + <dt class="col-sm-4">Nested definition list</dt> + <dd class="col-sm-8">Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc.</dd> </dl> </dd> </dl> diff --git a/docs/dist/css/bootstrap.css b/docs/dist/css/bootstrap.css index dca5c46d4..bfebc39b0 100644 --- a/docs/dist/css/bootstrap.css +++ b/docs/dist/css/bootstrap.css @@ -3,11 +3,11 @@ * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +/*! normalize.css commit fe56763 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; + -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; } body { @@ -21,7 +21,6 @@ figcaption, figure, footer, header, -hgroup, main, menu, nav, @@ -74,13 +73,13 @@ dfn { } h1 { - margin: .67em 0; font-size: 2em; + margin: 0.67em 0; } mark { - color: #000; background: #ff0; + color: #000; } small { @@ -89,18 +88,18 @@ small { sub, sup { - position: relative; font-size: 75%; line-height: 0; + position: relative; vertical-align: baseline; } sup { - top: -.5em; + top: -0.5em; } sub { - bottom: -.25em; + bottom: -0.25em; } img { @@ -116,9 +115,9 @@ figure { } hr { - height: 0; -webkit-box-sizing: content-box; box-sizing: content-box; + height: 0; } pre { @@ -138,9 +137,9 @@ input, optgroup, select, textarea { - margin: 0; - font: inherit; color: inherit; + font: inherit; + margin: 0; } button { @@ -167,8 +166,8 @@ html input[disabled] { button::-moz-focus-inner, input::-moz-focus-inner { - padding: 0; border: 0; + padding: 0; } input { @@ -188,8 +187,6 @@ input[type="number"]::-webkit-outer-spin-button { } input[type="search"] { - -webkit-box-sizing: content-box; - box-sizing: content-box; -webkit-appearance: textfield; } @@ -199,14 +196,14 @@ input[type="search"]::-webkit-search-decoration { } fieldset { - padding: .35em .625em .75em; - margin: 0 2px; border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; } legend { - padding: 0; border: 0; + padding: 0; } textarea { @@ -218,8 +215,8 @@ optgroup { } table { - border-spacing: 0; border-collapse: collapse; + border-spacing: 0; } td, @@ -230,7 +227,9 @@ th { @media print { *, *::before, - *::after { + *::after, + *::first-letter, + *::first-line { text-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; @@ -245,7 +244,6 @@ th { pre, blockquote { border: 1px solid #999; - page-break-inside: avoid; } thead { @@ -255,9 +253,6 @@ th { img { page-break-inside: avoid; } - img { - max-width: 100% !important; - } p, h2, h3 { @@ -303,31 +298,18 @@ html { box-sizing: inherit; } -@-moz-viewport { - width: device-width; -} - @-ms-viewport { width: device-width; } -@-webkit-viewport { - width: device-width; -} - -@viewport { - width: device-width; -} - html { - -ms-overflow-style: scrollbar; font-size: 16px; - + -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: transparent; } body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; font-size: 1rem; line-height: 1.5; color: #373a3c; @@ -438,8 +420,8 @@ table { } caption { - padding-top: .75rem; - padding-bottom: .75rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; color: #818a91; text-align: left; caption-side: bottom; @@ -489,8 +471,6 @@ legend { } input[type="search"] { - -webkit-box-sizing: inherit; - box-sizing: inherit; -webkit-appearance: none; } @@ -504,58 +484,34 @@ output { h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: .5rem; + margin-bottom: 0.5rem; font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } -h1 { - font-size: 2.5rem; -} - -h2 { - font-size: 2rem; -} - -h3 { - font-size: 1.75rem; -} - -h4 { - font-size: 1.5rem; -} - -h5 { - font-size: 1.25rem; -} - -h6 { - font-size: 1rem; -} - -.h1 { +h1, .h1 { font-size: 2.5rem; } -.h2 { +h2, .h2 { font-size: 2rem; } -.h3 { +h3, .h3 { font-size: 1.75rem; } -.h4 { +h4, .h4 { font-size: 1.5rem; } -.h5 { +h5, .h5 { font-size: 1.25rem; } -.h6 { +h6, .h6 { font-size: 1rem; } @@ -588,7 +544,7 @@ hr { margin-top: 1rem; margin-bottom: 1rem; border: 0; - border-top: 1px solid rgba(0, 0, 0, .1); + border-top: 1px solid rgba(0, 0, 0, 0.1); } small, @@ -627,16 +583,15 @@ mark, } .blockquote { - padding: .5rem 1rem; + padding: 0.5rem 1rem; margin-bottom: 1rem; font-size: 1.25rem; - border-left: .25rem solid #eceeef; + border-left: 0.25rem solid #eceeef; } .blockquote-footer { display: block; font-size: 80%; - line-height: 1.5; color: #818a91; } @@ -648,7 +603,7 @@ mark, padding-right: 1rem; padding-left: 0; text-align: right; - border-right: .25rem solid #eceeef; + border-right: 0.25rem solid #eceeef; border-left: 0; } @@ -660,6 +615,10 @@ mark, content: "\00A0 \2014"; } +dl.row > dd + dt { + clear: left; +} + .img-fluid, .carousel-inner > .carousel-item > img, .carousel-inner > .carousel-item > a > img { display: block; @@ -668,21 +627,20 @@ mark, } .img-rounded { - border-radius: .3rem; + border-radius: 0.3rem; } .img-thumbnail { - display: inline-block; - max-width: 100%; - height: auto; - padding: .25rem; - line-height: 1.5; + padding: 0.25rem; background-color: #fff; border: 1px solid #ddd; - border-radius: .25rem; + border-radius: 0.25rem; -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; } .img-circle { @@ -694,7 +652,7 @@ mark, } .figure-img { - margin-bottom: .5rem; + margin-bottom: 0.5rem; line-height: 1; } @@ -707,7 +665,7 @@ code, kbd, pre, samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } code { @@ -715,7 +673,7 @@ code { font-size: 90%; color: #bd4147; background-color: #f7f7f9; - border-radius: .25rem; + border-radius: 0.25rem; } kbd { @@ -723,7 +681,7 @@ kbd { font-size: 90%; color: #fff; background-color: #333; - border-radius: .2rem; + border-radius: 0.2rem; } kbd kbd { @@ -737,7 +695,6 @@ pre { margin-top: 0; margin-bottom: 1rem; font-size: 90%; - line-height: 1.5; color: #373a3c; } @@ -755,16 +712,16 @@ pre code { } .container { - padding-right: .9375rem; - padding-left: .9375rem; - margin-right: auto; margin-left: auto; + margin-right: auto; + padding-left: 15px; + padding-right: 15px; } .container::after { + content: ""; display: table; clear: both; - content: ""; } @media (min-width: 544px) { @@ -792,856 +749,1133 @@ pre code { } .container-fluid { - padding-right: .9375rem; - padding-left: .9375rem; - margin-right: auto; margin-left: auto; + margin-right: auto; + padding-left: 15px; + padding-right: 15px; } .container-fluid::after { + content: ""; display: table; clear: both; - content: ""; } .row { - margin-right: -.9375rem; - margin-left: -.9375rem; + margin-left: -15px; + margin-right: -15px; } .row::after { + content: ""; display: table; clear: both; - content: ""; } -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .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-10, .col-sm-11, .col-sm-12, .col-md-1, .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-10, .col-md-11, .col-md-12, .col-lg-1, .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-10, .col-lg-11, .col-lg-12, .col-xl-1, .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-10, .col-xl-11, .col-xl-12 { +.col-xs-1 { position: relative; min-height: 1px; - padding-right: .9375rem; - padding-left: .9375rem; -} - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + padding-right: 15px; + padding-left: 15px; float: left; -} - -.col-xs-1 { width: 8.333333%; } .col-xs-2 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 16.666667%; } .col-xs-3 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 25%; } .col-xs-4 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 33.333333%; } .col-xs-5 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 41.666667%; } .col-xs-6 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 50%; } .col-xs-7 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 58.333333%; } .col-xs-8 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 66.666667%; } .col-xs-9 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 75%; } .col-xs-10 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 83.333333%; } .col-xs-11 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 91.666667%; } .col-xs-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 100%; } -.col-xs-pull-0 { +.pull-xs-0 { right: auto; } -.col-xs-pull-1 { +.pull-xs-1 { right: 8.333333%; } -.col-xs-pull-2 { +.pull-xs-2 { right: 16.666667%; } -.col-xs-pull-3 { +.pull-xs-3 { right: 25%; } -.col-xs-pull-4 { +.pull-xs-4 { right: 33.333333%; } -.col-xs-pull-5 { +.pull-xs-5 { right: 41.666667%; } -.col-xs-pull-6 { +.pull-xs-6 { right: 50%; } -.col-xs-pull-7 { +.pull-xs-7 { right: 58.333333%; } -.col-xs-pull-8 { +.pull-xs-8 { right: 66.666667%; } -.col-xs-pull-9 { +.pull-xs-9 { right: 75%; } -.col-xs-pull-10 { +.pull-xs-10 { right: 83.333333%; } -.col-xs-pull-11 { +.pull-xs-11 { right: 91.666667%; } -.col-xs-pull-12 { +.pull-xs-12 { right: 100%; } -.col-xs-push-0 { +.push-xs-0 { left: auto; } -.col-xs-push-1 { +.push-xs-1 { left: 8.333333%; } -.col-xs-push-2 { +.push-xs-2 { left: 16.666667%; } -.col-xs-push-3 { +.push-xs-3 { left: 25%; } -.col-xs-push-4 { +.push-xs-4 { left: 33.333333%; } -.col-xs-push-5 { +.push-xs-5 { left: 41.666667%; } -.col-xs-push-6 { +.push-xs-6 { left: 50%; } -.col-xs-push-7 { +.push-xs-7 { left: 58.333333%; } -.col-xs-push-8 { +.push-xs-8 { left: 66.666667%; } -.col-xs-push-9 { +.push-xs-9 { left: 75%; } -.col-xs-push-10 { +.push-xs-10 { left: 83.333333%; } -.col-xs-push-11 { +.push-xs-11 { left: 91.666667%; } -.col-xs-push-12 { +.push-xs-12 { left: 100%; } -.col-xs-offset-1 { +.offset-xs-1 { margin-left: 8.333333%; } -.col-xs-offset-2 { +.offset-xs-2 { margin-left: 16.666667%; } -.col-xs-offset-3 { +.offset-xs-3 { margin-left: 25%; } -.col-xs-offset-4 { +.offset-xs-4 { margin-left: 33.333333%; } -.col-xs-offset-5 { +.offset-xs-5 { margin-left: 41.666667%; } -.col-xs-offset-6 { +.offset-xs-6 { margin-left: 50%; } -.col-xs-offset-7 { +.offset-xs-7 { margin-left: 58.333333%; } -.col-xs-offset-8 { +.offset-xs-8 { margin-left: 66.666667%; } -.col-xs-offset-9 { +.offset-xs-9 { margin-left: 75%; } -.col-xs-offset-10 { +.offset-xs-10 { margin-left: 83.333333%; } -.col-xs-offset-11 { +.offset-xs-11 { margin-left: 91.666667%; } @media (min-width: 544px) { - .col-sm-1, .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-10, .col-sm-11, .col-sm-12 { - float: left; - } .col-sm-1 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 8.333333%; } .col-sm-2 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 16.666667%; } .col-sm-3 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 25%; } .col-sm-4 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 33.333333%; } .col-sm-5 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 41.666667%; } .col-sm-6 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 50%; } .col-sm-7 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 58.333333%; } .col-sm-8 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 66.666667%; } .col-sm-9 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 75%; } .col-sm-10 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 83.333333%; } .col-sm-11 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 91.666667%; } .col-sm-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 100%; } - .col-sm-pull-0 { + .pull-sm-0 { right: auto; } - .col-sm-pull-1 { + .pull-sm-1 { right: 8.333333%; } - .col-sm-pull-2 { + .pull-sm-2 { right: 16.666667%; } - .col-sm-pull-3 { + .pull-sm-3 { right: 25%; } - .col-sm-pull-4 { + .pull-sm-4 { right: 33.333333%; } - .col-sm-pull-5 { + .pull-sm-5 { right: 41.666667%; } - .col-sm-pull-6 { + .pull-sm-6 { right: 50%; } - .col-sm-pull-7 { + .pull-sm-7 { right: 58.333333%; } - .col-sm-pull-8 { + .pull-sm-8 { right: 66.666667%; } - .col-sm-pull-9 { + .pull-sm-9 { right: 75%; } - .col-sm-pull-10 { + .pull-sm-10 { right: 83.333333%; } - .col-sm-pull-11 { + .pull-sm-11 { right: 91.666667%; } - .col-sm-pull-12 { + .pull-sm-12 { right: 100%; } - .col-sm-push-0 { + .push-sm-0 { left: auto; } - .col-sm-push-1 { + .push-sm-1 { left: 8.333333%; } - .col-sm-push-2 { + .push-sm-2 { left: 16.666667%; } - .col-sm-push-3 { + .push-sm-3 { left: 25%; } - .col-sm-push-4 { + .push-sm-4 { left: 33.333333%; } - .col-sm-push-5 { + .push-sm-5 { left: 41.666667%; } - .col-sm-push-6 { + .push-sm-6 { left: 50%; } - .col-sm-push-7 { + .push-sm-7 { left: 58.333333%; } - .col-sm-push-8 { + .push-sm-8 { left: 66.666667%; } - .col-sm-push-9 { + .push-sm-9 { left: 75%; } - .col-sm-push-10 { + .push-sm-10 { left: 83.333333%; } - .col-sm-push-11 { + .push-sm-11 { left: 91.666667%; } - .col-sm-push-12 { + .push-sm-12 { left: 100%; } - .col-sm-offset-0 { - margin-left: 0; + .offset-sm-0 { + margin-left: 0%; } - .col-sm-offset-1 { + .offset-sm-1 { margin-left: 8.333333%; } - .col-sm-offset-2 { + .offset-sm-2 { margin-left: 16.666667%; } - .col-sm-offset-3 { + .offset-sm-3 { margin-left: 25%; } - .col-sm-offset-4 { + .offset-sm-4 { margin-left: 33.333333%; } - .col-sm-offset-5 { + .offset-sm-5 { margin-left: 41.666667%; } - .col-sm-offset-6 { + .offset-sm-6 { margin-left: 50%; } - .col-sm-offset-7 { + .offset-sm-7 { margin-left: 58.333333%; } - .col-sm-offset-8 { + .offset-sm-8 { margin-left: 66.666667%; } - .col-sm-offset-9 { + .offset-sm-9 { margin-left: 75%; } - .col-sm-offset-10 { + .offset-sm-10 { margin-left: 83.333333%; } - .col-sm-offset-11 { + .offset-sm-11 { margin-left: 91.666667%; } } @media (min-width: 768px) { - .col-md-1, .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-10, .col-md-11, .col-md-12 { - float: left; - } .col-md-1 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 8.333333%; } .col-md-2 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 16.666667%; } .col-md-3 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 25%; } .col-md-4 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 33.333333%; } .col-md-5 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 41.666667%; } .col-md-6 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 50%; } .col-md-7 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 58.333333%; } .col-md-8 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 66.666667%; } .col-md-9 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 75%; } .col-md-10 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 83.333333%; } .col-md-11 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 91.666667%; } .col-md-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 100%; } - .col-md-pull-0 { + .pull-md-0 { right: auto; } - .col-md-pull-1 { + .pull-md-1 { right: 8.333333%; } - .col-md-pull-2 { + .pull-md-2 { right: 16.666667%; } - .col-md-pull-3 { + .pull-md-3 { right: 25%; } - .col-md-pull-4 { + .pull-md-4 { right: 33.333333%; } - .col-md-pull-5 { + .pull-md-5 { right: 41.666667%; } - .col-md-pull-6 { + .pull-md-6 { right: 50%; } - .col-md-pull-7 { + .pull-md-7 { right: 58.333333%; } - .col-md-pull-8 { + .pull-md-8 { right: 66.666667%; } - .col-md-pull-9 { + .pull-md-9 { right: 75%; } - .col-md-pull-10 { + .pull-md-10 { right: 83.333333%; } - .col-md-pull-11 { + .pull-md-11 { right: 91.666667%; } - .col-md-pull-12 { + .pull-md-12 { right: 100%; } - .col-md-push-0 { + .push-md-0 { left: auto; } - .col-md-push-1 { + .push-md-1 { left: 8.333333%; } - .col-md-push-2 { + .push-md-2 { left: 16.666667%; } - .col-md-push-3 { + .push-md-3 { left: 25%; } - .col-md-push-4 { + .push-md-4 { left: 33.333333%; } - .col-md-push-5 { + .push-md-5 { left: 41.666667%; } - .col-md-push-6 { + .push-md-6 { left: 50%; } - .col-md-push-7 { + .push-md-7 { left: 58.333333%; } - .col-md-push-8 { + .push-md-8 { left: 66.666667%; } - .col-md-push-9 { + .push-md-9 { left: 75%; } - .col-md-push-10 { + .push-md-10 { left: 83.333333%; } - .col-md-push-11 { + .push-md-11 { left: 91.666667%; } - .col-md-push-12 { + .push-md-12 { left: 100%; } - .col-md-offset-0 { - margin-left: 0; + .offset-md-0 { + margin-left: 0%; } - .col-md-offset-1 { + .offset-md-1 { margin-left: 8.333333%; } - .col-md-offset-2 { + .offset-md-2 { margin-left: 16.666667%; } - .col-md-offset-3 { + .offset-md-3 { margin-left: 25%; } - .col-md-offset-4 { + .offset-md-4 { margin-left: 33.333333%; } - .col-md-offset-5 { + .offset-md-5 { margin-left: 41.666667%; } - .col-md-offset-6 { + .offset-md-6 { margin-left: 50%; } - .col-md-offset-7 { + .offset-md-7 { margin-left: 58.333333%; } - .col-md-offset-8 { + .offset-md-8 { margin-left: 66.666667%; } - .col-md-offset-9 { + .offset-md-9 { margin-left: 75%; } - .col-md-offset-10 { + .offset-md-10 { margin-left: 83.333333%; } - .col-md-offset-11 { + .offset-md-11 { margin-left: 91.666667%; } } @media (min-width: 992px) { - .col-lg-1, .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-10, .col-lg-11, .col-lg-12 { - float: left; - } .col-lg-1 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 8.333333%; } .col-lg-2 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 16.666667%; } .col-lg-3 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 25%; } .col-lg-4 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 33.333333%; } .col-lg-5 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 41.666667%; } .col-lg-6 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 50%; } .col-lg-7 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 58.333333%; } .col-lg-8 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 66.666667%; } .col-lg-9 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 75%; } .col-lg-10 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 83.333333%; } .col-lg-11 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 91.666667%; } .col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 100%; } - .col-lg-pull-0 { + .pull-lg-0 { right: auto; } - .col-lg-pull-1 { + .pull-lg-1 { right: 8.333333%; } - .col-lg-pull-2 { + .pull-lg-2 { right: 16.666667%; } - .col-lg-pull-3 { + .pull-lg-3 { right: 25%; } - .col-lg-pull-4 { + .pull-lg-4 { right: 33.333333%; } - .col-lg-pull-5 { + .pull-lg-5 { right: 41.666667%; } - .col-lg-pull-6 { + .pull-lg-6 { right: 50%; } - .col-lg-pull-7 { + .pull-lg-7 { right: 58.333333%; } - .col-lg-pull-8 { + .pull-lg-8 { right: 66.666667%; } - .col-lg-pull-9 { + .pull-lg-9 { right: 75%; } - .col-lg-pull-10 { + .pull-lg-10 { right: 83.333333%; } - .col-lg-pull-11 { + .pull-lg-11 { right: 91.666667%; } - .col-lg-pull-12 { + .pull-lg-12 { right: 100%; } - .col-lg-push-0 { + .push-lg-0 { left: auto; } - .col-lg-push-1 { + .push-lg-1 { left: 8.333333%; } - .col-lg-push-2 { + .push-lg-2 { left: 16.666667%; } - .col-lg-push-3 { + .push-lg-3 { left: 25%; } - .col-lg-push-4 { + .push-lg-4 { left: 33.333333%; } - .col-lg-push-5 { + .push-lg-5 { left: 41.666667%; } - .col-lg-push-6 { + .push-lg-6 { left: 50%; } - .col-lg-push-7 { + .push-lg-7 { left: 58.333333%; } - .col-lg-push-8 { + .push-lg-8 { left: 66.666667%; } - .col-lg-push-9 { + .push-lg-9 { left: 75%; } - .col-lg-push-10 { + .push-lg-10 { left: 83.333333%; } - .col-lg-push-11 { + .push-lg-11 { left: 91.666667%; } - .col-lg-push-12 { + .push-lg-12 { left: 100%; } - .col-lg-offset-0 { - margin-left: 0; + .offset-lg-0 { + margin-left: 0%; } - .col-lg-offset-1 { + .offset-lg-1 { margin-left: 8.333333%; } - .col-lg-offset-2 { + .offset-lg-2 { margin-left: 16.666667%; } - .col-lg-offset-3 { + .offset-lg-3 { margin-left: 25%; } - .col-lg-offset-4 { + .offset-lg-4 { margin-left: 33.333333%; } - .col-lg-offset-5 { + .offset-lg-5 { margin-left: 41.666667%; } - .col-lg-offset-6 { + .offset-lg-6 { margin-left: 50%; } - .col-lg-offset-7 { + .offset-lg-7 { margin-left: 58.333333%; } - .col-lg-offset-8 { + .offset-lg-8 { margin-left: 66.666667%; } - .col-lg-offset-9 { + .offset-lg-9 { margin-left: 75%; } - .col-lg-offset-10 { + .offset-lg-10 { margin-left: 83.333333%; } - .col-lg-offset-11 { + .offset-lg-11 { margin-left: 91.666667%; } } @media (min-width: 1200px) { - .col-xl-1, .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-10, .col-xl-11, .col-xl-12 { - float: left; - } .col-xl-1 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 8.333333%; } .col-xl-2 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 16.666667%; } .col-xl-3 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 25%; } .col-xl-4 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 33.333333%; } .col-xl-5 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 41.666667%; } .col-xl-6 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 50%; } .col-xl-7 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 58.333333%; } .col-xl-8 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 66.666667%; } .col-xl-9 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 75%; } .col-xl-10 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 83.333333%; } .col-xl-11 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 91.666667%; } .col-xl-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + float: left; width: 100%; } - .col-xl-pull-0 { + .pull-xl-0 { right: auto; } - .col-xl-pull-1 { + .pull-xl-1 { right: 8.333333%; } - .col-xl-pull-2 { + .pull-xl-2 { right: 16.666667%; } - .col-xl-pull-3 { + .pull-xl-3 { right: 25%; } - .col-xl-pull-4 { + .pull-xl-4 { right: 33.333333%; } - .col-xl-pull-5 { + .pull-xl-5 { right: 41.666667%; } - .col-xl-pull-6 { + .pull-xl-6 { right: 50%; } - .col-xl-pull-7 { + .pull-xl-7 { right: 58.333333%; } - .col-xl-pull-8 { + .pull-xl-8 { right: 66.666667%; } - .col-xl-pull-9 { + .pull-xl-9 { right: 75%; } - .col-xl-pull-10 { + .pull-xl-10 { right: 83.333333%; } - .col-xl-pull-11 { + .pull-xl-11 { right: 91.666667%; } - .col-xl-pull-12 { + .pull-xl-12 { right: 100%; } - .col-xl-push-0 { + .push-xl-0 { left: auto; } - .col-xl-push-1 { + .push-xl-1 { left: 8.333333%; } - .col-xl-push-2 { + .push-xl-2 { left: 16.666667%; } - .col-xl-push-3 { + .push-xl-3 { left: 25%; } - .col-xl-push-4 { + .push-xl-4 { left: 33.333333%; } - .col-xl-push-5 { + .push-xl-5 { left: 41.666667%; } - .col-xl-push-6 { + .push-xl-6 { left: 50%; } - .col-xl-push-7 { + .push-xl-7 { left: 58.333333%; } - .col-xl-push-8 { + .push-xl-8 { left: 66.666667%; } - .col-xl-push-9 { + .push-xl-9 { left: 75%; } - .col-xl-push-10 { + .push-xl-10 { left: 83.333333%; } - .col-xl-push-11 { + .push-xl-11 { left: 91.666667%; } - .col-xl-push-12 { + .push-xl-12 { left: 100%; } - .col-xl-offset-0 { - margin-left: 0; + .offset-xl-0 { + margin-left: 0%; } - .col-xl-offset-1 { + .offset-xl-1 { margin-left: 8.333333%; } - .col-xl-offset-2 { + .offset-xl-2 { margin-left: 16.666667%; } - .col-xl-offset-3 { + .offset-xl-3 { margin-left: 25%; } - .col-xl-offset-4 { + .offset-xl-4 { margin-left: 33.333333%; } - .col-xl-offset-5 { + .offset-xl-5 { margin-left: 41.666667%; } - .col-xl-offset-6 { + .offset-xl-6 { margin-left: 50%; } - .col-xl-offset-7 { + .offset-xl-7 { margin-left: 58.333333%; } - .col-xl-offset-8 { + .offset-xl-8 { margin-left: 66.666667%; } - .col-xl-offset-9 { + .offset-xl-9 { margin-left: 75%; } - .col-xl-offset-10 { + .offset-xl-10 { margin-left: 83.333333%; } - .col-xl-offset-11 { + .offset-xl-11 { margin-left: 91.666667%; } } @@ -1654,8 +1888,7 @@ pre code { .table th, .table td { - padding: .75rem; - line-height: 1.5; + padding: 0.75rem; vertical-align: top; border-top: 1px solid #eceeef; } @@ -1675,7 +1908,7 @@ pre code { .table-sm th, .table-sm td { - padding: .3rem; + padding: 0.3rem; } .table-bordered { @@ -1849,14 +2082,13 @@ pre code { .form-control { display: block; width: 100%; - padding: .375rem .75rem; + padding: 0.375rem 0.75rem; font-size: 1rem; - line-height: 1.5; color: #55595c; background-color: #fff; background-image: none; border: 1px solid #ccc; - border-radius: .25rem; + border-radius: 0.25rem; } .form-control::-ms-expand { @@ -1898,55 +2130,66 @@ pre code { cursor: not-allowed; } +select.form-control:not([size], [multiple]) { + height: 2.25rem; +} + .form-control-file, .form-control-range { display: block; } .form-control-label { - padding: .375rem .75rem; + padding: 0.375rem 0.75rem; margin-bottom: 0; } -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"].form-control, - input[type="time"].form-control, - input[type="datetime-local"].form-control, - input[type="month"].form-control { - line-height: 2.25rem; - } - input[type="date"].input-sm, - .input-group-sm input[type="date"].form-control, - input[type="time"].input-sm, - .input-group-sm - input[type="time"].form-control, - input[type="datetime-local"].input-sm, - .input-group-sm - input[type="datetime-local"].form-control, - input[type="month"].input-sm, - .input-group-sm - input[type="month"].form-control { - line-height: 1.8625rem; - } - input[type="date"].input-lg, - .input-group-lg input[type="date"].form-control, - input[type="time"].input-lg, - .input-group-lg - input[type="time"].form-control, - input[type="datetime-local"].input-lg, - .input-group-lg - input[type="datetime-local"].form-control, - input[type="month"].input-lg, - .input-group-lg - input[type="month"].form-control { - line-height: 3.166667rem; - } +_::-webkit-full-page-media.form-control, +input[type="date"].form-control, +input[type="time"].form-control, +input[type="datetime-local"].form-control, +input[type="month"].form-control { + line-height: 2.25rem; +} + +_::-webkit-full-page-media.input-sm, +.input-group-sm _::-webkit-full-page-media.form-control, +input[type="date"].input-sm, +.input-group-sm +input[type="date"].form-control, +input[type="time"].input-sm, +.input-group-sm +input[type="time"].form-control, +input[type="datetime-local"].input-sm, +.input-group-sm +input[type="datetime-local"].form-control, +input[type="month"].input-sm, +.input-group-sm +input[type="month"].form-control { + line-height: 1.8625rem; +} + +_::-webkit-full-page-media.input-lg, +.input-group-lg _::-webkit-full-page-media.form-control, +input[type="date"].input-lg, +.input-group-lg +input[type="date"].form-control, +input[type="time"].input-lg, +.input-group-lg +input[type="time"].form-control, +input[type="datetime-local"].input-lg, +.input-group-lg +input[type="datetime-local"].form-control, +input[type="month"].input-lg, +.input-group-lg +input[type="month"].form-control { + line-height: 3.166667rem; } .form-control-static { min-height: 2.25rem; - padding-top: .375rem; - padding-bottom: .375rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; margin-bottom: 0; } @@ -1962,19 +2205,19 @@ pre code { .form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { - padding: .275rem .75rem; - font-size: .875rem; + padding: 0.275rem 0.75rem; + font-size: 0.875rem; line-height: 1.5; - border-radius: .2rem; + border-radius: 0.2rem; } .form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { - padding: .75rem 1.25rem; + padding: 0.75rem 1.25rem; font-size: 1.25rem; line-height: 1.333333; - border-radius: .3rem; + border-radius: 0.3rem; } .form-group { @@ -1985,7 +2228,7 @@ pre code { .checkbox { position: relative; display: block; - margin-bottom: .75rem; + margin-bottom: 0.75rem; } .radio label, @@ -2051,9 +2294,9 @@ input[type="checkbox"].disabled { .form-control-danger { padding-right: 2.25rem; background-repeat: no-repeat; - background-position: center right .5625rem; - -webkit-background-size: 1.4625rem 1.4625rem; - background-size: 1.4625rem 1.4625rem; + background-position: center right 0.5625rem; + -webkit-background-size: 1.125rem 1.125rem; + background-size: 1.125rem 1.125rem; } .has-success .text-help, @@ -2075,8 +2318,8 @@ input[type="checkbox"].disabled { .has-success .input-group-addon { color: #5cb85c; - background-color: #eaf6ea; border-color: #5cb85c; + background-color: #eaf6ea; } .has-success .form-control-feedback { @@ -2084,7 +2327,7 @@ input[type="checkbox"].disabled { } .has-success .form-control-success { - background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg=="); + 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='%235cb85c' 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"); } .has-warning .text-help, @@ -2106,8 +2349,8 @@ input[type="checkbox"].disabled { .has-warning .input-group-addon { color: #f0ad4e; - background-color: white; border-color: #f0ad4e; + background-color: white; } .has-warning .form-control-feedback { @@ -2115,7 +2358,7 @@ input[type="checkbox"].disabled { } .has-warning .form-control-warning { - background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+"); + 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='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); } .has-danger .text-help, @@ -2137,8 +2380,8 @@ input[type="checkbox"].disabled { .has-danger .input-group-addon { color: #d9534f; - background-color: #fdf7f7; border-color: #d9534f; + background-color: #fdf7f7; } .has-danger .form-control-feedback { @@ -2146,7 +2389,7 @@ input[type="checkbox"].disabled { } .has-danger .form-control-danger { - background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4="); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); } @media (min-width: 544px) { @@ -2202,10 +2445,7 @@ input[type="checkbox"].disabled { .btn { display: inline-block; - padding: .375rem 1rem; - font-size: 1rem; font-weight: normal; - line-height: 1.5; text-align: center; white-space: nowrap; vertical-align: middle; @@ -2215,7 +2455,9 @@ input[type="checkbox"].disabled { -ms-user-select: none; user-select: none; border: 1px solid transparent; - border-radius: .25rem; + padding: 0.375rem 1rem; + font-size: 1rem; + border-radius: 0.25rem; } .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { @@ -2269,8 +2511,8 @@ fieldset[disabled] a.btn { .open > .btn-primary.dropdown-toggle { color: #fff; background-color: #025aa5; - background-image: none; border-color: #01549b; + background-image: none; } .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, @@ -2314,8 +2556,8 @@ fieldset[disabled] a.btn { .open > .btn-secondary.dropdown-toggle { color: #373a3c; background-color: #e6e6e6; - background-image: none; border-color: #adadad; + background-image: none; } .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus, @@ -2359,8 +2601,8 @@ fieldset[disabled] a.btn { .open > .btn-info.dropdown-toggle { color: #fff; background-color: #31b0d5; - background-image: none; border-color: #2aabd2; + background-image: none; } .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, @@ -2404,8 +2646,8 @@ fieldset[disabled] a.btn { .open > .btn-success.dropdown-toggle { color: #fff; background-color: #449d44; - background-image: none; border-color: #419641; + background-image: none; } .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, @@ -2449,8 +2691,8 @@ fieldset[disabled] a.btn { .open > .btn-warning.dropdown-toggle { color: #fff; background-color: #ec971f; - background-image: none; border-color: #eb9316; + background-image: none; } .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, @@ -2494,8 +2736,8 @@ fieldset[disabled] a.btn { .open > .btn-danger.dropdown-toggle { color: #fff; background-color: #c9302c; - background-image: none; border-color: #c12e2a; + background-image: none; } .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, @@ -2519,8 +2761,8 @@ fieldset[disabled] a.btn { .btn-outline-primary { color: #0275d8; - background-color: transparent; background-image: none; + background-color: transparent; border-color: #0275d8; } @@ -2547,8 +2789,8 @@ fieldset[disabled] a.btn { .btn-outline-secondary { color: #ccc; - background-color: transparent; background-image: none; + background-color: transparent; border-color: #ccc; } @@ -2575,8 +2817,8 @@ fieldset[disabled] a.btn { .btn-outline-info { color: #5bc0de; - background-color: transparent; background-image: none; + background-color: transparent; border-color: #5bc0de; } @@ -2603,8 +2845,8 @@ fieldset[disabled] a.btn { .btn-outline-success { color: #5cb85c; - background-color: transparent; background-image: none; + background-color: transparent; border-color: #5cb85c; } @@ -2631,8 +2873,8 @@ fieldset[disabled] a.btn { .btn-outline-warning { color: #f0ad4e; - background-color: transparent; background-image: none; + background-color: transparent; border-color: #f0ad4e; } @@ -2659,8 +2901,8 @@ fieldset[disabled] a.btn { .btn-outline-danger { color: #d9534f; - background-color: transparent; background-image: none; + background-color: transparent; border-color: #d9534f; } @@ -2715,17 +2957,15 @@ fieldset[disabled] a.btn { } .btn-lg, .btn-group-lg > .btn { - padding: .75rem 1.25rem; + padding: 0.75rem 1.25rem; font-size: 1.25rem; - line-height: 1.333333; - border-radius: .3rem; + border-radius: 0.3rem; } .btn-sm, .btn-group-sm > .btn { - padding: .25rem .75rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem; + padding: 0.25rem 0.75rem; + font-size: 0.875rem; + border-radius: 0.2rem; } .btn-block { @@ -2746,8 +2986,8 @@ input[type="button"].btn-block { .fade { opacity: 0; -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; - transition: opacity .15s linear; + -o-transition: opacity .15s linear; + transition: opacity .15s linear; } .fade.in { @@ -2773,8 +3013,8 @@ input[type="button"].btn-block { -o-transition-duration: .35s; transition-duration: .35s; -webkit-transition-property: height; - -o-transition-property: height; - transition-property: height; + -o-transition-property: height; + transition-property: height; } .dropup, @@ -2790,9 +3030,9 @@ input[type="button"].btn-block { margin-left: .25rem; vertical-align: middle; content: ""; - border-top: .3em solid; - border-right: .3em solid transparent; - border-left: .3em solid transparent; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-left: 0.3em solid transparent; } .dropdown-toggle:focus { @@ -2801,7 +3041,7 @@ input[type="button"].btn-block { .dropup .dropdown-toggle::after { border-top: 0; - border-bottom: .3em solid; + border-bottom: 0.3em solid; } .dropdown-menu { @@ -2821,13 +3061,13 @@ input[type="button"].btn-block { background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: .25rem; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; } .dropdown-divider { height: 1px; - margin: .5rem 0; + margin: 0.5rem 0; overflow: hidden; background-color: #e5e5e5; } @@ -2838,7 +3078,6 @@ input[type="button"].btn-block { padding: 3px 20px; clear: both; font-weight: normal; - line-height: 1.5; color: #373a3c; text-align: inherit; white-space: nowrap; @@ -2891,9 +3130,8 @@ input[type="button"].btn-block { .dropdown-header { display: block; - padding: 3px 20px; - font-size: .875rem; - line-height: 1.5; + padding: 5px 20px; + font-size: 0.875rem; color: #818a91; white-space: nowrap; } @@ -2916,7 +3154,7 @@ input[type="button"].btn-block { .navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; - border-bottom: .3em solid; + border-bottom: 0.3em solid; } .dropup .dropdown-menu, @@ -2963,9 +3201,9 @@ input[type="button"].btn-block { } .btn-toolbar::after { + content: ""; display: table; clear: both; - content: ""; } .btn-toolbar .btn-group, @@ -2988,14 +3226,14 @@ input[type="button"].btn-block { } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; border-bottom-right-radius: 0; + border-top-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; border-bottom-left-radius: 0; + border-top-left-radius: 0; } .btn-group > .btn-group { @@ -3008,13 +3246,13 @@ input[type="button"].btn-block { .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; border-bottom-right-radius: 0; + border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; border-bottom-left-radius: 0; + border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, @@ -3037,12 +3275,12 @@ input[type="button"].btn-block { } .btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: .3em .3em 0; + border-width: 0.3em 0.3em 0; border-bottom-width: 0; } .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 .3em .3em; + border-width: 0 0.3em 0.3em; } .btn-group-vertical > .btn, @@ -3055,9 +3293,9 @@ input[type="button"].btn-block { } .btn-group-vertical > .btn-group::after { + content: ""; display: table; clear: both; - content: ""; } .btn-group-vertical > .btn-group > .btn { @@ -3077,15 +3315,13 @@ input[type="button"].btn-block { } .btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-right-radius: .25rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; border-top-right-radius: 0; - border-bottom-left-radius: .25rem; + border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { @@ -3099,8 +3335,8 @@ input[type="button"].btn-block { } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; border-top-right-radius: 0; + border-top-left-radius: 0; } [data-toggle="buttons"] > .btn input[type="radio"], @@ -3150,31 +3386,32 @@ input[type="button"].btn-block { } .input-group-addon { - padding: .375rem .75rem; + padding: 0.375rem 0.75rem; + margin-bottom: 0; font-size: 1rem; font-weight: normal; - line-height: 1; + line-height: 1.5; color: #55595c; text-align: center; background-color: #eceeef; border: 1px solid #ccc; - border-radius: .25rem; + border-radius: 0.25rem; } .input-group-addon.form-control-sm, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: .275rem .75rem; - font-size: .875rem; - border-radius: .2rem; + padding: 0.275rem 0.75rem; + font-size: 0.875rem; + border-radius: 0.2rem; } .input-group-addon.form-control-lg, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: .75rem 1.25rem; + padding: 0.75rem 1.25rem; font-size: 1.25rem; - border-radius: .3rem; + border-radius: 0.3rem; } .input-group-addon input[type="radio"], @@ -3189,8 +3426,8 @@ input[type="button"].btn-block { .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; border-bottom-right-radius: 0; + border-top-right-radius: 0; } .input-group-addon:first-child { @@ -3204,8 +3441,8 @@ input[type="button"].btn-block { .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; border-bottom-left-radius: 0; + border-top-left-radius: 0; } .input-group-addon:last-child { @@ -3252,7 +3489,6 @@ input[type="button"].btn-block { position: relative; display: inline; padding-left: 1.5rem; - color: #555; } .custom-control + .custom-control { @@ -3271,8 +3507,8 @@ input[type="button"].btn-block { } .custom-control-input:focus ~ .custom-control-indicator { - -webkit-box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9; - box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9; + -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9; + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9; } .custom-control-input:active ~ .custom-control-indicator { @@ -3297,10 +3533,7 @@ input[type="button"].btn-block { display: block; width: 1rem; height: 1rem; - font-size: 65%; - line-height: 1rem; - color: #eee; - text-align: center; + pointer-events: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3313,16 +3546,16 @@ input[type="button"].btn-block { } .custom-checkbox .custom-control-indicator { - border-radius: .25rem; + border-radius: 0.25rem; } .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator { - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=); + 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-indicator { background-color: #0074d9; - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K); + 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-radio .custom-control-indicator { @@ -3330,7 +3563,7 @@ input[type="button"].btn-block { } .custom-radio .custom-control-input:checked ~ .custom-control-indicator { - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==); + 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-controls-stacked .custom-control { @@ -3339,7 +3572,7 @@ input[type="button"].btn-block { .custom-controls-stacked .custom-control::after { display: block; - margin-bottom: .25rem; + margin-bottom: 0.25rem; content: ""; } @@ -3350,19 +3583,18 @@ input[type="button"].btn-block { .custom-select { display: inline-block; max-width: 100%; - -webkit-appearance: none; - padding: .375rem 1.75rem .375rem .75rem; - padding-right: .75rem \9; + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + padding-right: 0.75rem \9; color: #55595c; vertical-align: middle; - background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center; + 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='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; background-image: none \9; -webkit-background-size: 8px 10px; background-size: 8px 10px; border: 1px solid #ccc; - border-radius: .25rem; - - -moz-appearance: none; + border-radius: 0.25rem; + -moz-appearance: none; + -webkit-appearance: none; } .custom-select:focus { @@ -3375,14 +3607,9 @@ input[type="button"].btn-block { } .custom-select-sm { - padding-top: 3px; - padding-bottom: 3px; - font-size: 12px; -} - -.custom-select-sm:not([multiple]) { - height: 26px; - min-height: 26px; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; } .custom-file { @@ -3408,7 +3635,7 @@ input[type="button"].btn-block { left: 0; z-index: 5; height: 2.5rem; - padding: .5rem 1rem; + padding: 0.5rem 1rem; line-height: 1.5; color: #555; -webkit-user-select: none; @@ -3417,7 +3644,7 @@ input[type="button"].btn-block { user-select: none; background-color: #fff; border: 1px solid #ddd; - border-radius: .25rem; + border-radius: 0.25rem; } .custom-file-control::after { @@ -3426,19 +3653,19 @@ input[type="button"].btn-block { .custom-file-control::before { position: absolute; - top: -.075rem; - right: -.075rem; - bottom: -.075rem; + top: -1px; + right: -1px; + bottom: -1px; z-index: 6; display: block; height: 2.5rem; - padding: .5rem 1rem; + padding: 0.5rem 1rem; line-height: 1.5; color: #555; content: "Browse"; background-color: #eee; border: 1px solid #ddd; - border-radius: 0 .25rem .25rem 0; + border-radius: 0 0.25rem 0.25rem 0; } .nav { @@ -3479,9 +3706,9 @@ input[type="button"].btn-block { } .nav-tabs::after { + content: ""; display: table; clear: both; - content: ""; } .nav-tabs .nav-item { @@ -3490,14 +3717,14 @@ input[type="button"].btn-block { } .nav-tabs .nav-item + .nav-item { - margin-left: .2rem; + margin-left: 0.2rem; } .nav-tabs .nav-link { display: block; - padding: .5em 1em; + padding: 0.5em 1em; border: 1px solid transparent; - border-radius: .25rem .25rem 0 0; + border-radius: 0.25rem 0.25rem 0 0; } .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover { @@ -3521,14 +3748,14 @@ input[type="button"].btn-block { .nav-tabs .dropdown-menu { margin-top: -1px; - border-top-left-radius: 0; border-top-right-radius: 0; + border-top-left-radius: 0; } .nav-pills::after { + content: ""; display: table; clear: both; - content: ""; } .nav-pills .nav-item { @@ -3536,13 +3763,13 @@ input[type="button"].btn-block { } .nav-pills .nav-item + .nav-item { - margin-left: .2rem; + margin-left: 0.2rem; } .nav-pills .nav-link { display: block; - padding: .5em 1em; - border-radius: .25rem; + padding: 0.5em 1em; + border-radius: 0.25rem; } .nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover, @@ -3560,7 +3787,7 @@ input[type="button"].btn-block { } .nav-stacked .nav-item + .nav-item { - margin-top: .2rem; + margin-top: 0.2rem; margin-left: 0; } @@ -3574,18 +3801,18 @@ input[type="button"].btn-block { .navbar { position: relative; - padding: .5rem 1rem; + padding: 0.5rem 1rem; } .navbar::after { + content: ""; display: table; clear: both; - content: ""; } @media (min-width: 544px) { .navbar { - border-radius: .25rem; + border-radius: 0.25rem; } } @@ -3624,7 +3851,7 @@ input[type="button"].btn-block { .navbar-sticky-top { position: -webkit-sticky; - position: sticky; + position: sticky; top: 0; z-index: 1030; width: 100%; @@ -3672,7 +3899,7 @@ input[type="button"].btn-block { line-height: 1; background: none; border: 1px solid transparent; - border-radius: .25rem; + border-radius: 0.25rem; } .navbar-toggler:focus, .navbar-toggler:hover { @@ -3716,19 +3943,19 @@ input[type="button"].btn-block { } .navbar-light .navbar-brand { - color: rgba(0, 0, 0, .8); + color: rgba(0, 0, 0, 0.8); } .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover { - color: rgba(0, 0, 0, .8); + color: rgba(0, 0, 0, 0.8); } .navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, .3); + color: rgba(0, 0, 0, 0.3); } .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover { - color: rgba(0, 0, 0, .6); + color: rgba(0, 0, 0, 0.6); } .navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover, @@ -3741,11 +3968,11 @@ input[type="button"].btn-block { .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.active:focus, .navbar-light .navbar-nav .nav-link.active:hover { - color: rgba(0, 0, 0, .8); + color: rgba(0, 0, 0, 0.8); } .navbar-light .navbar-divider { - background-color: rgba(0, 0, 0, .075); + background-color: rgba(0, 0, 0, 0.075); } .navbar-dark .navbar-brand { @@ -3757,11 +3984,11 @@ input[type="button"].btn-block { } .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, .5); + color: rgba(255, 255, 255, 0.5); } .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover { - color: rgba(255, 255, 255, .75); + color: rgba(255, 255, 255, 0.75); } .navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover, @@ -3778,16 +4005,17 @@ input[type="button"].btn-block { } .navbar-dark .navbar-divider { - background-color: rgba(255, 255, 255, .075); + background-color: rgba(255, 255, 255, 0.075); } .card { position: relative; display: block; - margin-bottom: .75rem; + margin-bottom: 0.75rem; background-color: #fff; - border: 1px solid #e5e5e5; - border-radius: .25rem; + border-radius: 0.25rem; + -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125); } .card-block { @@ -3795,17 +4023,17 @@ input[type="button"].btn-block { } .card-block::after { + content: ""; display: table; clear: both; - content: ""; } .card-title { - margin-bottom: .75rem; + margin-bottom: 0.75rem; } .card-subtitle { - margin-top: -.375rem; + margin-top: -0.375rem; margin-bottom: 0; } @@ -3822,43 +4050,61 @@ input[type="button"].btn-block { } .card > .list-group:first-child .list-group-item:first-child { - border-radius: .25rem .25rem 0 0; + border-radius: 0.25rem 0.25rem 0 0; } .card > .list-group:last-child .list-group-item:last-child { - border-radius: 0 0 .25rem .25rem; + border-radius: 0 0 0.25rem 0.25rem; } .card-header { - padding: .75rem 1.25rem; + padding: 0.75rem 1.25rem; background-color: #f5f5f5; - border-bottom: 1px solid #e5e5e5; + -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125); } .card-header::after { + content: ""; display: table; clear: both; - content: ""; } .card-header:first-child { - border-radius: .25rem .25rem 0 0; + border-radius: 0.25rem 0.25rem 0 0; } .card-footer { - padding: .75rem 1.25rem; + padding: 0.75rem 1.25rem; background-color: #f5f5f5; - border-top: 1px solid #e5e5e5; + -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125); } .card-footer::after { + content: ""; display: table; clear: both; - content: ""; } .card-footer:last-child { - border-radius: 0 0 .25rem .25rem; + border-radius: 0 0 0.25rem 0.25rem; +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-tabs .nav-item { + margin-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; } .card-primary { @@ -3918,7 +4164,7 @@ input[type="button"].btn-block { .card-inverse .card-header, .card-inverse .card-footer { - border-bottom: 1px solid rgba(255, 255, 255, .2); + border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .card-inverse .card-header, @@ -3931,7 +4177,7 @@ input[type="button"].btn-block { .card-inverse .card-link, .card-inverse .card-text, .card-inverse .card-blockquote > footer { - color: rgba(255, 255, 255, .65); + color: rgba(255, 255, 255, 0.65); } .card-inverse .card-link:focus, .card-inverse .card-link:hover { @@ -3945,7 +4191,7 @@ input[type="button"].btn-block { } .card-img { - border-radius: .25rem; + border-radius: 0.25rem; } .card-img-overlay { @@ -3958,11 +4204,11 @@ input[type="button"].btn-block { } .card-img-top { - border-radius: .25rem .25rem 0 0; + border-radius: 0.25rem 0.25rem 0 0; } .card-img-bottom { - border-radius: 0 0 .25rem .25rem; + border-radius: 0 0 0.25rem 0.25rem; } @media (min-width: 544px) { @@ -3997,8 +4243,8 @@ input[type="button"].btn-block { border-left: 0; } .card-group .card:first-child { - border-top-right-radius: 0; border-bottom-right-radius: 0; + border-top-right-radius: 0; } .card-group .card:first-child .card-img-top { border-top-right-radius: 0; @@ -4007,8 +4253,8 @@ input[type="button"].btn-block { border-bottom-right-radius: 0; } .card-group .card:last-child { - border-top-left-radius: 0; border-bottom-left-radius: 0; + border-top-left-radius: 0; } .card-group .card:last-child .card-img-top { border-top-left-radius: 0; @@ -4041,17 +4287,17 @@ input[type="button"].btn-block { } .breadcrumb { - padding: .75rem 1rem; + padding: 0.75rem 1rem; margin-bottom: 1rem; list-style: none; background-color: #eceeef; - border-radius: .25rem; + border-radius: 0.25rem; } .breadcrumb::after { + content: ""; display: table; clear: both; - content: ""; } .breadcrumb-item { @@ -4059,12 +4305,21 @@ input[type="button"].btn-block { } .breadcrumb-item + .breadcrumb-item::before { - padding-right: .5rem; - padding-left: .5rem; + display: inline-block; + padding-right: 0.5rem; + padding-left: 0.5rem; color: #818a91; content: "/"; } +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + .breadcrumb-item.active { color: #818a91; } @@ -4074,7 +4329,7 @@ input[type="button"].btn-block { padding-left: 0; margin-top: 1rem; margin-bottom: 1rem; - border-radius: .25rem; + border-radius: 0.25rem; } .page-item { @@ -4083,13 +4338,13 @@ input[type="button"].btn-block { .page-item:first-child .page-link { margin-left: 0; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem; + border-bottom-left-radius: 0.25rem; + border-top-left-radius: 0.25rem; } .page-item:last-child .page-link { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem; + border-bottom-right-radius: 0.25rem; + border-top-right-radius: 0.25rem; } .page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover { @@ -4111,9 +4366,8 @@ input[type="button"].btn-block { .page-link { position: relative; float: left; - padding: .5rem .75rem; + padding: 0.5rem 0.75rem; margin-left: -1px; - line-height: 1.5; color: #0275d8; text-decoration: none; background-color: #fff; @@ -4127,35 +4381,33 @@ input[type="button"].btn-block { } .pagination-lg .page-link { - padding: .75rem 1.5rem; + padding: 0.75rem 1.5rem; font-size: 1.25rem; - line-height: 1.333333; } .pagination-lg .page-item:first-child .page-link { - border-top-left-radius: .3rem; - border-bottom-left-radius: .3rem; + border-bottom-left-radius: 0.3rem; + border-top-left-radius: 0.3rem; } .pagination-lg .page-item:last-child .page-link { - border-top-right-radius: .3rem; - border-bottom-right-radius: .3rem; + border-bottom-right-radius: 0.3rem; + border-top-right-radius: 0.3rem; } .pagination-sm .page-link { - padding: .275rem .75rem; - font-size: .875rem; - line-height: 1.5; + padding: 0.275rem 0.75rem; + font-size: 0.875rem; } .pagination-sm .page-item:first-child .page-link { - border-top-left-radius: .2rem; - border-bottom-left-radius: .2rem; + border-bottom-left-radius: 0.2rem; + border-top-left-radius: 0.2rem; } .pagination-sm .page-item:last-child .page-link { - border-top-right-radius: .2rem; - border-bottom-right-radius: .2rem; + border-bottom-right-radius: 0.2rem; + border-top-right-radius: 0.2rem; } .label { @@ -4168,7 +4420,7 @@ input[type="button"].btn-block { text-align: center; white-space: nowrap; vertical-align: baseline; - border-radius: .25rem; + border-radius: 0.25rem; } .label:empty { @@ -4244,7 +4496,7 @@ a.label:focus, a.label:hover { padding: 2rem 1rem; margin-bottom: 2rem; background-color: #eceeef; - border-radius: .3rem; + border-radius: 0.3rem; } @media (min-width: 544px) { @@ -4267,16 +4519,7 @@ a.label:focus, a.label:hover { padding: 15px; margin-bottom: 1rem; border: 1px solid transparent; - border-radius: .25rem; -} - -.alert > p, -.alert > ul { - margin-bottom: 0; -} - -.alert > p + p { - margin-top: 5px; + border-radius: 0.25rem; } .alert-heading { @@ -4299,9 +4542,9 @@ a.label:focus, a.label:hover { } .alert-success { - color: #3c763d; background-color: #dff0d8; border-color: #d0e9c6; + color: #3c763d; } .alert-success hr { @@ -4313,9 +4556,9 @@ a.label:focus, a.label:hover { } .alert-info { - color: #31708f; background-color: #d9edf7; border-color: #bcdff1; + color: #31708f; } .alert-info hr { @@ -4327,9 +4570,9 @@ a.label:focus, a.label:hover { } .alert-warning { - color: #8a6d3b; background-color: #fcf8e3; border-color: #faf2cc; + color: #8a6d3b; } .alert-warning hr { @@ -4341,9 +4584,9 @@ a.label:focus, a.label:hover { } .alert-danger { - color: #a94442; background-color: #f2dede; border-color: #ebcccc; + color: #a94442; } .alert-danger hr { @@ -4389,13 +4632,12 @@ a.label:focus, a.label:hover { } .progress[value] { - -webkit-appearance: none; background-color: #eee; border: 0; - border-radius: .25rem; - + -webkit-appearance: none; -moz-appearance: none; appearance: none; + border-radius: 0.25rem; } .progress[value]::-ms-fill { @@ -4405,78 +4647,78 @@ a.label:focus, a.label:hover { .progress[value]::-moz-progress-bar { background-color: #0074d9; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem; + border-bottom-left-radius: 0.25rem; + border-top-left-radius: 0.25rem; } .progress[value]::-webkit-progress-value { background-color: #0074d9; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem; + border-bottom-left-radius: 0.25rem; + border-top-left-radius: 0.25rem; } .progress[value="100"]::-moz-progress-bar { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem; + border-bottom-right-radius: 0.25rem; + border-top-right-radius: 0.25rem; } .progress[value="100"]::-webkit-progress-value { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem; + border-bottom-right-radius: 0.25rem; + border-top-right-radius: 0.25rem; } .progress[value]::-webkit-progress-bar { background-color: #eee; - border-radius: .25rem; + border-radius: 0.25rem; } base::-moz-progress-bar, .progress[value] { background-color: #eee; - border-radius: .25rem; + border-radius: 0.25rem; } @media screen and (min-width: 0\0) { .progress { background-color: #eee; - border-radius: .25rem; + border-radius: 0.25rem; } .progress-bar { display: inline-block; height: 1rem; text-indent: -999rem; background-color: #0074d9; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem; + border-bottom-left-radius: 0.25rem; + border-top-left-radius: 0.25rem; } .progress[width="100%"] { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem; + border-bottom-right-radius: 0.25rem; + border-top-right-radius: 0.25rem; } } .progress-striped[value]::-webkit-progress-value { - background-image: -webkit-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-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-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -webkit-background-size: 1rem 1rem; background-size: 1rem 1rem; } .progress-striped[value]::-moz-progress-bar { - 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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } .progress-striped[value]::-ms-fill { - 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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } @media screen and (min-width: 0\0) { .progress-bar-striped { - background-image: -webkit-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-image: -o-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-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-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -webkit-background-size: 1rem 1rem; background-size: 1rem 1rem; } @@ -4644,47 +4886,14 @@ base::-moz-progress-bar, } .list-group-item:first-child { - border-top-left-radius: .25rem; - border-top-right-radius: .25rem; + border-top-right-radius: 0.25rem; + border-top-left-radius: 0.25rem; } .list-group-item:last-child { margin-bottom: 0; - border-bottom-right-radius: .25rem; - border-bottom-left-radius: .25rem; -} - -.list-group-flush .list-group-item { - border-width: 1px 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; -} - -a.list-group-item, -button.list-group-item { - width: 100%; - color: #555; - text-align: inherit; -} - -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} - -a.list-group-item:focus, a.list-group-item:hover, -button.list-group-item:focus, -button.list-group-item:hover { - color: #555; - text-decoration: none; - background-color: #f5f5f5; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } .list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover { @@ -4704,6 +4913,7 @@ button.list-group-item:hover { .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover { z-index: 2; color: #fff; + text-decoration: none; background-color: #0275d8; border-color: #0275d8; } @@ -4722,6 +4932,26 @@ button.list-group-item:hover { color: #a8d6fe; } +.list-group-flush .list-group-item { + border-radius: 0; +} + +.list-group-item-action { + width: 100%; + color: #555; + text-align: inherit; +} + +.list-group-item-action .list-group-item-heading { + color: #333; +} + +.list-group-item-action:focus, .list-group-item-action:hover { + color: #555; + text-decoration: none; + background-color: #f5f5f5; +} + .list-group-item-success { color: #3c763d; background-color: #dff0d8; @@ -4912,11 +5142,11 @@ button.list-group-item-danger.active:hover { } button.close { - -webkit-appearance: none; padding: 0; cursor: pointer; background: transparent; border: 0; + -webkit-appearance: none; } .modal-open { @@ -4932,16 +5162,16 @@ button.close { z-index: 1050; display: none; overflow: hidden; - -webkit-overflow-scrolling: touch; outline: 0; + -webkit-overflow-scrolling: touch; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; - -o-transition: transform .3s ease-out, -o-transform .3s ease-out; - transition: -webkit-transform .3s ease-out; - transition: transform .3s ease-out; - transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out; + transition: -webkit-transform .3s ease-out; + -o-transition: transform .3s ease-out, -o-transform .3s ease-out; + transition: transform .3s ease-out; + transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); @@ -4971,8 +5201,8 @@ button.close { background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; outline: 0; } @@ -4991,7 +5221,7 @@ button.close { } .modal-backdrop.in { - opacity: .5; + opacity: 0.5; } .modal-header { @@ -5000,9 +5230,9 @@ button.close { } .modal-header::after { + content: ""; display: table; clear: both; - content: ""; } .modal-header .close { @@ -5026,9 +5256,9 @@ button.close { } .modal-footer::after { + content: ""; display: table; clear: both; - content: ""; } .modal-footer .btn + .btn { @@ -5054,17 +5284,17 @@ button.close { @media (min-width: 544px) { .modal-dialog { - width: 600px; + max-width: 600px; margin: 30px auto; } .modal-sm { - width: 300px; + max-width: 300px; } } -@media (min-width: 768px) { +@media (min-width: 992px) { .modal-lg { - width: 900px; + max-width: 900px; } } @@ -5072,28 +5302,27 @@ button.close { position: absolute; z-index: 1070; display: block; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: .875rem; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; font-style: normal; font-weight: normal; + letter-spacing: normal; + line-break: auto; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; - letter-spacing: normal; + white-space: normal; word-break: normal; word-spacing: normal; - word-wrap: normal; - white-space: normal; + font-size: 0.875rem; + word-wrap: break-word; opacity: 0; - - line-break: auto; } .tooltip.in { - opacity: .9; + opacity: 0.9; } .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom { @@ -5154,7 +5383,7 @@ button.close { color: #fff; text-align: center; background-color: #000; - border-radius: .25rem; + border-radius: 0.25rem; } .tooltip-arrow { @@ -5173,28 +5402,27 @@ button.close { display: block; max-width: 276px; padding: 1px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: .875rem; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; font-style: normal; font-weight: normal; + letter-spacing: normal; + line-break: auto; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; - letter-spacing: normal; + white-space: normal; word-break: normal; word-spacing: normal; - word-wrap: normal; - white-space: normal; + font-size: 0.875rem; + word-wrap: break-word; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem; - - line-break: auto; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; } .popover.popover-top, .popover.bs-tether-element-attached-bottom { @@ -5205,7 +5433,7 @@ button.close { bottom: -11px; left: 50%; margin-left: -11px; - border-top-color: rgba(0, 0, 0, .25); + border-top-color: rgba(0, 0, 0, 0.25); border-bottom-width: 0; } @@ -5225,7 +5453,7 @@ button.close { top: 50%; left: -11px; margin-top: -11px; - border-right-color: rgba(0, 0, 0, .25); + border-right-color: rgba(0, 0, 0, 0.25); border-left-width: 0; } @@ -5246,7 +5474,7 @@ button.close { left: 50%; margin-left: -11px; border-top-width: 0; - border-bottom-color: rgba(0, 0, 0, .25); + border-bottom-color: rgba(0, 0, 0, 0.25); } .popover.popover-bottom .popover-arrow::after, .popover.bs-tether-element-attached-top .popover-arrow::after { @@ -5266,7 +5494,7 @@ button.close { right: -11px; margin-top: -11px; border-right-width: 0; - border-left-color: rgba(0, 0, 0, .25); + border-left-color: rgba(0, 0, 0, 0.25); } .popover.popover-left .popover-arrow::after, .popover.bs-tether-element-attached-right .popover-arrow::after { @@ -5283,7 +5511,7 @@ button.close { font-size: 1rem; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; - border-radius: .2375rem .2375rem 0 0; + border-radius: 0.2375rem 0.2375rem 0 0; } .popover-content { @@ -5322,8 +5550,8 @@ button.close { position: relative; display: none; -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; + -o-transition: .6s ease-in-out left; + transition: .6s ease-in-out left; } .carousel-inner > .carousel-item > img, @@ -5334,11 +5562,10 @@ button.close { @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .carousel-item { -webkit-transition: -webkit-transform .6s ease-in-out; - -o-transition: transform .6s ease-in-out, -o-transform .6s ease-in-out; - 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, -o-transform .6s ease-in-out; - + transition: -webkit-transform .6s ease-in-out; + -o-transition: transform .6s ease-in-out, -o-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; @@ -5408,28 +5635,28 @@ button.close { font-size: 20px; color: #fff; text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); - opacity: .5; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + opacity: 0.5; } .carousel-control.left { - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); } .carousel-control.right { right: 0; left: auto; - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); } .carousel-control:focus, .carousel-control:hover { @@ -5511,7 +5738,7 @@ button.close { padding-bottom: 20px; color: #fff; text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } .carousel-caption .btn { @@ -5596,16 +5823,10 @@ a.bg-danger:focus, a.bg-danger:hover { background-color: #c9302c !important; } -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} - .clearfix::after { + content: ""; display: table; clear: both; - content: ""; } .pull-xs-left { @@ -6040,7 +6261,11 @@ a.bg-danger:focus, a.bg-danger:hover { } .text-muted { - color: #818a91; + color: #818a91 !important; +} + +a.text-muted:focus, a.text-muted:hover { + color: #687077; } .text-primary { @@ -6186,4 +6411,4 @@ a.text-danger:focus, a.text-danger:hover { display: none !important; } } -/*# sourceMappingURL=bootstrap.css.map */ +/*# sourceMappingURL=bootstrap.css.map */
\ No newline at end of file diff --git a/docs/dist/css/bootstrap.css.map b/docs/dist/css/bootstrap.css.map index 9e16c7cef..32e8a04e6 100644 --- a/docs/dist/css/bootstrap.css.map +++ b/docs/dist/css/bootstrap.css.map @@ -1 +1 @@ -{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_normalize.scss","bootstrap.css","../../scss/_print.scss","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_hover.scss","../../scss/mixins/_tab-focus.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_clearfix.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_forms.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_animation.scss","../../scss/_dropdown.scss","../../scss/mixins/_nav-divider.scss","../../scss/mixins/_reset-filter.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/mixins/_cards.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_labels.scss","../../scss/mixins/_label.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/mixins/_gradients.scss","../../scss/mixins/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_responsive-embed.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_background.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_center-block.scss","../../scss/mixins/_center-block.scss","../../scss/utilities/_clearfix.scss","../../scss/utilities/_pulls.scss","../../scss/mixins/_pulls.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss"],"names":[],"mappings":"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R,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,YAA+B;GGtBtB;EAFD;IHoBR,WAAsD;GGlB7C;EAFD;IHoBR,gBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,WAA8B;GGlBrB;EAMD;IHQR,gBAAuB;GGNd;EAFD;IHQR,uBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;ChBkmCV;;AermCG;EChBI;IAHA,YAAY;GACb;EAEC;IHoBJ,iBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,YAAiB;GGfZ;EAIC;IHwBR,YAAuD;GGtB9C;EAFD;IHwBR,iBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,YAA+B;GGtBtB;EAFD;IHoBR,WAAsD;GGlB7C;EAFD;IHoBR,gBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,WAA8B;GGlBrB;EAMD;IHQR,gBAAuB;GGNd;EAFD;IHQR,uBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;ChB8vCV;;AejwCG;EChBI;IAHA,YAAY;GACb;EAEC;IHoBJ,iBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,YAAiB;GGfZ;EAIC;IHwBR,YAAuD;GGtB9C;EAFD;IHwBR,iBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,WAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,kBAA+B;GGtBtB;EAFD;IHwBR,YAA+B;GGtBtB;EAFD;IHoBR,WAAsD;GGlB7C;EAFD;IHoBR,gBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,UAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,iBAA8B;GGlBrB;EAFD;IHoBR,WAA8B;GGlBrB;EAMD;IHQR,gBAAuB;GGNd;EAFD;IHQR,uBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,iBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;EAFD;IHQR,wBAAuB;GGNd;ChB05CV;;Ae75CG;EChBI;IAHA,YAAY;GACb;EAEC;IHoBJ,iBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,WAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,kBAAiB;GGfZ;EALD;IHoBJ,YAAiB;GGfZ;EAIC;IHwBR,YAAuD;GG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;AA1BH;EA8BI,uBAAuB;EACvB,WAAW;CAEZ;;AAjCH;EAqCI,oBlByRwC;EkBxRxC,aAAa;CAEd;;AAIH;;EAEE,qBAAqB;CACtB;;AAOD;ECjDE,YnB4OmC;EmB3OnC,0BnBwBiC;EmBvBjC,sBnBuBiC;CkB0BlC;;AAFD;EC3CI,YnBsOiC;EmBrOjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiBiDzB;ECpCI,YnB+NiC;EmB9NjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADiCH;;EC5BI,YnBuNiC;EmBtNjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADcH;;;;EClBM,YnB6M+B;EmB5M/B,0BAAwB;EACpB,sBAAoB;CACzB;;ADeL;ECRM,0BnBhB6B;EmBiBzB,sBnBjByB;CmBkB9B;;ADML;ECJM,0BnBpB6B;EmBqBzB,sBnBrByB;CCzBV;;AiBoDzB;ECpDE,enBmBiC;EmBlBjC,uBnBgPmC;EmB/OnC,mBnBgPmC;CkB5LpC;;AAFD;EC9CI,enBa+B;EmBZ/B,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiBoDzB;ECvCI,enBM+B;EmBL/B,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADoCH;;EC/BI,enBF+B;EmBG/B,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADiBH;;;;ECrBM,enBZ6B;EmBa7B,0BAAwB;EACpB,sBAAoB;CACzB;;ADkBL;ECXM,uBnBwM+B;EmBvM3B,mBnBwM2B;CmBvMhC;;ADSL;ECPM,uBnBoM+B;EmBnM3B,mBnBoM2B;CClPZ;;AiBuDzB;ECvDE,YnBoPmC;EmBnPnC,0BnB0BiC;EmBzBjC,sBnByBiC;CkB8BlC;;AAFD;ECjDI,YnB8OiC;EmB7OjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiBuDzB;EC1CI,YnBuOiC;EmBtOjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADuCH;;EClCI,YnB+NiC;EmB9NjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADoBH;;;;ECxBM,YnBqN+B;EmBpN/B,0BAAwB;EACpB,sBAAoB;CACzB;;ADqBL;ECdM,0BnBd6B;EmBezB,sBnBfyB;CmBgB9B;;ADYL;ECVM,0BnBlB6B;EmBmBzB,sBnBnByB;CC3BV;;AiB0DzB;EC1DE,YnBwPmC;EmBvPnC,0BnByBiC;EmBxBjC,sBnBwBiC;CkBkClC;;AAFD;ECpDI,YnBkPiC;EmBjPjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiB0DzB;EC7CI,YnB2OiC;EmB1OjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;AD0CH;;ECrCI,YnBmOiC;EmBlOjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADuBH;;;;EC3BM,YnByN+B;EmBxN/B,0BAAwB;EACpB,sBAAoB;CACzB;;ADwBL;ECjBM,0BnBf6B;EmBgBzB,sBnBhByB;CmBiB9B;;ADeL;ECbM,0BnBnB6B;EmBoBzB,sBnBpByB;CC1BV;;AiB6DzB;EC7DE,YnB4PmC;EmB3PnC,0BnB2BiC;EmB1BjC,sBnB0BiC;CkBmClC;;AAFD;ECvDI,YnBsPiC;EmBrPjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiB6DzB;EChDI,YnB+OiC;EmB9OjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;AD6CH;;ECxCI,YnBuOiC;EmBtOjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;AD0BH;;;;EC9BM,YnB6N+B;EmB5N/B,0BAAwB;EACpB,sBAAoB;CACzB;;AD2BL;ECpBM,0BnBb6B;EmBczB,sBnBdyB;CmBe9B;;ADkBL;EChBM,0BnBjB6B;EmBkBzB,sBnBlByB;CC5BV;;AiBgEzB;EChEE,YnBgQmC;EmB/PnC,0BnB4BiC;EmB3BjC,sBnB2BiC;CkBqClC;;AAFD;EC1DI,YnB0PiC;EmBzPjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiBgEzB;ECnDI,YnBmPiC;EmBlPjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADgDH;;EC3CI,YnB2OiC;EmB1OjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;AD6BH;;;;ECjCM,YnBiO+B;EmBhO/B,0BAAwB;EACpB,sBAAoB;CACzB;;AD8BL;ECvBM,0BnBZ6B;EmBazB,sBnBbyB;CmBc9B;;ADqBL;ECnBM,0BnBhB6B;EmBiBzB,sBnBjByB;CC7BV;;AiBqEzB;ECjBE,enB3BiC;EmB4BjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB9BiC;CkB8ClC;;AAFD;;ECPI,YAAY;EACZ,0BnBtC+B;EmBuC3B,sBnBvC2B;CmBwChC;;ADIH;ECFI,YAAY;EACZ,0BnB3C+B;EmB4C3B,sBnB5C2B;CCzBV;;AiBqEzB;ECOM,sBAAqB;CACtB;;ADRL;ECUM,sBAAqB;ClB/EF;;AiBwEzB;ECpBE,YnB8LmC;EmB7LnC,uBAAuB;EACvB,8BAA8B;EAC9B,mBnB2LmC;CkBxKpC;;AAFD;;ECVI,YAAY;EACZ,uBnBmLiC;EmBlL7B,mBnBkL6B;CmBjLlC;;ADOH;ECLI,YAAY;EACZ,uBnB8KiC;EmB7K7B,mBnB6K6B;CClPZ;;AiBwEzB;ECIM,oBAAqB;CACtB;;ADLL;ECOM,oBAAqB;ClB/EF;;AiB2EzB;ECvBE,enBzBiC;EmB0BjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB5BiC;CkBkDlC;;AAFD;;ECbI,YAAY;EACZ,0BnBpC+B;EmBqC3B,sBnBrC2B;CmBsChC;;ADUH;ECRI,YAAY;EACZ,0BnBzC+B;EmB0C3B,sBnB1C2B;CC3BV;;AiB2EzB;ECCM,sBAAqB;CACtB;;ADFL;ECIM,sBAAqB;ClB/EF;;AiB8EzB;EC1BE,enB1BiC;EmB2BjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB7BiC;CkBsDlC;;AAFD;;EChBI,YAAY;EACZ,0BnBrC+B;EmBsC3B,sBnBtC2B;CmBuChC;;ADaH;ECXI,YAAY;EACZ,0BnB1C+B;EmB2C3B,sBnB3C2B;CC1BV;;AiB8EzB;ECFM,sBAAqB;CACtB;;ADCL;ECCM,sBAAqB;ClB/EF;;AiBiFzB;EC7BE,enBxBiC;EmByBjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB3BiC;CkBuDlC;;AAFD;;ECnBI,YAAY;EACZ,0BnBnC+B;EmBoC3B,sBnBpC2B;CmBqChC;;ADgBH;ECdI,YAAY;EACZ,0BnBxC+B;EmByC3B,sBnBzC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;CCzWnC;;A2B8IL;;;;;;;;;;EAuBQ,0B5BqMgC;CCzVnC;;A2B6HL;EA6BI,uCAAsB;CACvB;;AAIH;EAEI,a5BmLoC;C4B9KrC;;AAPH;EAKM,a5BgLkC;CCrWnC;;A2BgLL;EAWM,gC5BwKkC;C4BnKnC;;AAhBL;EAcQ,iC5BsKgC;CCpWnC;;A2BgLL;;;;;;;;;;EAuBQ,a5B8JgC;CCpVnC;;A2B+JL;EA6BI,6CAAsB;CACvB;;AChOH;EACE,mBAAmB;EACnB,eAAe;EACf,uB7B8c+B;E6B7c/B,uB7Bmd6B;E6Bld7B,0B7B+cgC;EOpd9B,uBP8M2B;C6BvM9B;;AAED;EAEE,iB7BqcgC;C6BpcjC;;AAHD;ElBXI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;AkBaH;EACE,uB7Bkc+B;C6BjchC;;AAED;EACE,sBAA4B;EAC5B,iBAAiB;CAClB;;AAED;EACE,iBAAiB;CAClB;;AAUD;EAEI,sBAAsB;C5BhCD;;A4B8BzB;EAMI,qB7Bua8B;C6Bta/B;;AAID;EAGM,mCAA0D;CAC3D;;AAJL;EASM,mC7BuJuB;C6BtJxB;;AAUP;EAEE,yB7B4YgC;E6B3YhC,0B7BiZgC;E6BhZhC,iC7B8YgC;C6BzYjC;;AATD;ElBpEI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;AkBiEH;EtBlEI,mCsByE8E;CAC/E;;AAGH;EAEE,yB7BiYgC;E6BhYhC,0B7BsYgC;E6BrYhC,8B7BmYgC;C6B9XjC;;AATD;ElB/EI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;AkB4EH;EtB7EI,mCP8M2B;C6BzH5B;;AAQH;EC9FE,0B9B+BiC;E8B9BjC,sB9B8BiC;C6BiElC;;AACD;ECjGE,0B9BgCiC;E8B/BjC,sB9B+BiC;C6BmElC;;AACD;ECpGE,0B9BiCiC;E8BhCjC,sB9BgCiC;C6BqElC;;AACD;ECvGE,0B9BkCiC;E8BjCjC,sB9BiCiC;C6BuElC;;AACD;EC1GE,0B9BmCiC;E8BlCjC,sB9BkCiC;C6ByElC;;AAGD;EC1GE,8BAA8B;EAC9B,sB9ByBiC;C6BkFlC;;AACD;EC7GE,8BAA8B;EAC9B,mB9BkPmC;C6BpIpC;;AACD;EChHE,8BAA8B;EAC9B,sB9B2BiC;C6BsFlC;;AACD;ECnHE,8BAA8B;EAC9B,sB9B0BiC;C6B0FlC;;AACD;ECtHE,8BAA8B;EAC9B,sB9B4BiC;C6B2FlC;;AACD;ECzHE,8BAA8B;EAC9B,sB9B6BiC;C6B6FlC;;AAMD;;ECtHI,kDAA4C;CAC7C;;ADqHH;;;;EChHI,YAAY;CACb;;AD+GH;;;EC3GI,iCAAW;CACZ;;AD0GH;ECvGM,Y9B2byB;CCvc1B;;A4B2HL;EACE,WAAW;EACX,iBAAiB;EACjB,eAAe;CAChB;;AAGD;EtBpJI,uBsBsJ2B;CAC9B;;AACD;EACE,mBAAmB;EACnB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,iBAAiB;CAClB;;AAKD;EtBpKI,mCsBqK4E;CAC/E;;AACD;EtBvKI,mCP8M2B;C6BrC9B;;AjBhIG;EiByJA;IACE,eAAe;IACf,oBAAoB;IACpB,0BAAsC;GAOvC;EAVD;IAMI,oBAAoB;IACpB,UAAU;IACV,oBAAoB;GACrB;EAEH;IACE,uBAbsB;IActB,sBAdsB;GAevB;ChC2oHJ;;AelzHG;EiBgLF;IAKI,eAAe;IACf,YAAY;IACZ,oBAAoB;GAiDvB;EAxDD;IAcM,oBAAoB;IACpB,oBAAoB;GAwCvB;EAvDH;IAmBM,eAAe;IACf,eAAe;GAChB;EArBL;ItB5ME,8BsBsOoC;ItBrOpC,2BsBqOoC;GAQ/B;EAlCP;IA6BU,2BAA2B;GAC5B;EA9BT;IAgCU,8BAA8B;GAC/B;EAjCT;ItB9LE,6BsBkOmC;ItBjOnC,0BsBiOmC;GAQ9B;EA5CP;IAuCU,0BAA0B;GAC3B;EAxCT;IA0CU,6BAA6B;GAC9B;EA3CT;IA+CQ,iBAAiB;GAMlB;EArDP;;IAmDU,iBAAiB;GAClB;ChCynHV;;Ae71HG;EiBiPF;IACE,wBAAgB;OAAhB,qBAAgB;YAAhB,gBAAgB;IAChB,4BAAoB;OAApB,yBAAoB;YAApB,oBAAoB;GAMrB;EARD;IAKI,sBAAsB;IACtB,YAAY;GACb;ChCgnHJ;;AkCr5HD;EACE,sB/BwmBkC;E+BvmBlC,oB/ByD+B;E+BxD/B,iBAAiB;EACjB,0B/B2BiC;EO3B/B,uBP8M2B;C+B3M9B;;AAPD;EpBEI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;AoBIH;EACE,YAAY;CAYb;;AAbD;EAII,sB/B6lBiC;E+B5lBjC,qB/B4lBiC;E+B3lBjC,e/Be+B;E+Bd/B,aAAiC;CAClC;;AARH;EAWI,e/BU+B;C+BThC;;ACrBH;EACE,sBAAsB;EACtB,gBAAgB;EAChB,iBhCwD+B;EgCvD/B,oBhCuD+B;EOvD7B,uBP8M2B;CgC5M9B;;AAED;EACE,gBAAgB;CAiCjB;;AAlCD;EAKM,eAAe;EzBkBjB,mCPmL2B;EOlL3B,gCPkL2B;CgCnM1B;;AAPL;EzBSI,oCPiM2B;EOhM3B,iCPgM2B;CgC9L1B;;AAZL;EAiBM,WAAW;EACX,YhCqZqC;EgCpZrC,gBAAgB;EAChB,0BhCM6B;EgCL7B,sBhCK6B;CCK9B;;A+B/BL;EA2BM,ehCL6B;EgCM7B,qBAAqB;EACrB,oBhC6RsC;EgC5RtC,uBhC8YqC;EgC7YrC,mBhC8YqC;CC9YtC;;A+BKL;EACE,mBAAmB;EACnB,YAAY;EACZ,wBhC+W0C;EgC9W1C,kBAAkB;EAClB,iBhC6H8B;EgC5H9B,ehChBiC;EgCiBjC,sBAAsB;EACtB,uBhCmXyC;EgClXzC,uBhCoXyC;CgC7W1C;;AAhBD;EAYI,ehCyC+B;EgCxC/B,0BhC1B+B;EgC2B/B,mBhCmXuC;CCvZtC;;A+B6CL;EC/DI,wBjC8ZwC;EiC7ZxC,mBjCoJgC;EiCnJhC,sBjCyMuB;CiCxMxB;;AD4DH;EzBpCI,kCPoL0B;EOnL1B,+BPmL0B;CiCtMvB;;ADsDP;EzBlDI,mCPkM0B;EOjM1B,gCPiM0B;CiCjMvB;;ADqDP;ECnEI,0BjC4ZwC;EiC3ZxC,oBjCqJgC;EiCpJhC,iBjC0MwB;CiCzMzB;;ADgEH;EzBxCI,kCPqL0B;EOpL1B,+BPoL0B;CiCvMvB;;AD0DP;EzBtDI,mCPmM0B;EOlM1B,gCPkM0B;CiClMvB;;ACbP;EACE,sBAAsB;EACtB,oBAAoB;EACpB,eAAe;EACf,kBlC+fgC;EkC9fhC,eAAe;EACf,YlC2fgC;EkC1fhC,mBAAmB;EACnB,oBAAoB;EACpB,yBAAyB;E3BVvB,uBP8M2B;CkC7L9B;;AAhBD;EAcI,cAAc;CACf;;AAIH;EACE,mBAAmB;EACnB,UAAU;CACX;;AAGD;EAEI,YlCue8B;EkCte9B,sBAAsB;EACtB,gBAAgB;CjCZf;;AiCoBL;EACE,oBAAoB;EACpB,mBAAmB;E3BxCjB,qB2B2C0B;CAC7B;;AAMD;ECnDE,0BnC2BiC;CkC0BlC;;AAFD;EC/CM,0BAAwB;ClCezB;;AiCoCL;ECvDE,0BnC+BiC;CkC0BlC;;AAFD;ECnDM,0BAAwB;ClCezB;;AiCwCL;EC3DE,0BnCgCiC;CkC6BlC;;AAFD;ECvDM,0BAAwB;ClCezB;;AiC4CL;EC/DE,0BnCiCiC;CkCgClC;;AAFD;EC3DM,0BAAwB;ClCezB;;AiCgDL;ECnEE,0BnCkCiC;CkCmClC;;AAFD;EC/DM,0BAAwB;ClCezB;;AiCoDL;ECvEE,0BnCmCiC;CkCsClC;;AAFD;ECnEM,0BAAwB;ClCezB;;AmCtBL;EACE,mBAA+C;EAC/C,oBpCwbmC;EoCvbnC,0BpC4BiC;EO3B/B,sBP+M0B;CoC1M7B;;AxBoCG;EwB7CJ;IAOI,mBpCmbiC;GoCjbpC;CvCimIA;;AuC/lID;EACE,0BAAwB;CACzB;;AAED;EACE,iBAAiB;EACjB,gBAAgB;E7Bbd,iB6BcsB;CACzB;;ACfD;EACE,crC+hBgC;EqC9hBhC,oBrCqD+B;EqCpD/B,8BAA6C;E9BH3C,uBP8M2B;CqChM9B;;AAdD;;EASI,iBAAiB;CAClB;;AAVH;EAYI,gBAAgB;CACjB;;AAIH;EAEE,eAAe;CAChB;;AAGD;EACE,kBrC0gBgC;CqCzgBjC;;AAOD;EACE,oBAA8B;CAS/B;;AAVD;EAKI,mBAAmB;EACnB,UAAU;EACV,aAAa;EACb,eAAe;CAChB;;AAQH;EClDE,0BtCgcsC;EsC/btC,sBtCgcqC;EsC/brC,etC6bsC;CqC3YvC;;AAFD;EC7CI,0BAAwB;CACzB;;AD4CH;EC1CI,eAAa;CACd;;AD4CH;ECrDE,0BtCocsC;EsCnctC,sBtCocqC;EsCncrC,etCicsC;CqC5YvC;;AAFD;EChDI,0BAAwB;CACzB;;AD+CH;EC7CI,eAAa;CACd;;AD+CH;ECxDE,0BtCwcsC;EsCvctC,sBtCwcqC;EsCvcrC,etCqcsC;CqC7YvC;;AAFD;ECnDI,0BAAwB;CACzB;;ADkDH;EChDI,eAAa;CACd;;ADkDH;EC3DE,0BtC4csC;EsC3ctC,sBtC4cqC;EsC3crC,etCycsC;CqC9YvC;;AAFD;ECtDI,0BAAwB;CACzB;;ADqDH;ECnDI,eAAa;CACd;;ACRH;EACE;IAAQ,4BAAgC;G1C+sIvC;E0C9sID;IAAQ,yBAAyB;G1CitIhC;CACF;;A0CptID;EACE;IAAQ,4BAAgC;G1C+sIvC;E0C9sID;IAAQ,yBAAyB;G1CitIhC;CACF;;A0CptID;EACE;IAAQ,4BAAgC;G1C+sIvC;E0C9sID;IAAQ,yBAAyB;G1CitIhC;CACF;;A0C1sID;EACE,eAAe;EACf,YAAY;EACZ,avC0C+B;EuCzC/B,oBvCyC+B;CuCxChC;;AACD;EAEE,uBvCsiBgC;EuCpiBhC,UAAU;EAEV,yBAAiB;KAAjB,sBAAiB;UAAjB,iBAAiB;EhCtBf,uBP8M2B;CuCrL9B;;AAGD;EACE,0BvC4hBmC;EuC1hBnC,UAAU;CACX;;AACD;EACE,0BvCuhBmC;EuCthBnC,gCvC2K6B;EuC1K7B,mCvC0K6B;CuCzK9B;;AACD;EACE,0BvCkhBmC;EuCjhBnC,gCvCsK6B;EuCrK7B,mCvCqK6B;CuCpK9B;;AAED;EACE,iCvCiK6B;EuChK7B,oCvCgK6B;CuC/J9B;;AACD;EACE,iCvC6J6B;EuC5J7B,oCvC4J6B;CuC3J9B;;AAGD;EACE,uBvCigBgC;EOxjB9B,uBP8M2B;CuCpJ9B;;AACD;;EAEE,uBvC2fgC;EOxjB9B,uBP8M2B;CuC9I9B;;AAGD;EACE;IACE,uBvCmf8B;IOxjB9B,uBP8M2B;GuCtI5B;EACD;IACE,sBAAsB;IACtB,avCpB6B;IuCqB7B,qBAAqB;IACrB,0BvC4eiC;IuC3ejC,gCvCgI2B;IuC/H3B,mCvC+H2B;GuC9H5B;EACD;IACE,iCvC4H2B;IuC3H3B,oCvC2H2B;GuC1H5B;C1CusIF;;A0C/rID;ECvDE,8MAAiC;EAAjC,sMAAiC;EDyDjC,mCvCvC+B;UuCuC/B,2BvCvC+B;CuCwChC;;AACD;EC3DE,sMAAiC;ED6DjC,2BvC3C+B;CuC4ChC;;AACD;EC/DE,sMAAiC;EDiEjC,2BvC/C+B;CuCgDhC;;AAED;EACE;ICrEA,8MAAiC;IAAjC,yMAAiC;IAAjC,sMAAiC;IDuE/B,mCvCrD6B;YuCqD7B,2BvCrD6B;GuCsD9B;C1CosIF;;A0C5rID;EACE,2DAAmD;UAAnD,mDAAmD;CACpD;;AACD;EACE,mDAAmD;CACpD;;AAED;EACE;IACE,2DAAmD;SAAnD,sDAAmD;YAAnD,mDAAmD;GACpD;C1CgsIF;;A0CxrID;EEvII,0BzC+B+B;CyC9BhC;;AFsIH;EEnII,0BzC2B+B;CyC1BhC;;AFkIH;EE9HI,0BzCsB+B;CyCrBhC;;AAGD;EF0HF;IExHM,0BzCgB6B;GyCf9B;C5Ci0IJ;;A0CvsID;EE1II,0BzCgC+B;CyC/BhC;;AFyIH;EEtII,0BzC4B+B;CyC3BhC;;AFqIH;EEjII,0BzCuB+B;CyCtBhC;;AAGD;EF6HF;IE3HM,0BzCiB6B;GyChB9B;C5Cm1IJ;;A0CttID;EE7II,0BzCiC+B;CyChChC;;AF4IH;EEzII,0BzC6B+B;CyC5BhC;;AFwIH;EEpII,0BzCwB+B;CyCvBhC;;AAGD;EFgIF;IE9HM,0BzCkB6B;GyCjB9B;C5Cq2IJ;;A0CruID;EEhJI,0BzCkC+B;CyCjChC;;AF+IH;EE5II,0BzC8B+B;CyC7BhC;;AF2IH;EEvII,0BzCyB+B;CyCxBhC;;AAGD;EFmIF;IEjIM,0BzCmB6B;GyClB9B;C5Cu3IJ;;A6C53IC;EACE,iBAAiB;CAKlB;;AAND;EAII,cAAc;CACf;;AAEH;;EAEE,iBAAiB;CAClB;;AACD;EACE,eAAe;CAChB;;AACD;;;EAGE,oBAAoB;EACpB,oBAAoB;CACrB;;AACD;EACE,uBAAuB;CACxB;;AACD;EACE,uBAAuB;CACxB;;AAQH;EACE,eAAe;CAMhB;;AAPD;EAKI,gBAAgB;CACjB;;AAQH;EACE,mBAAmB;CACpB;;AAED;EACE,oBAAoB;CACrB;;AAOD;EACE,cAAc;EACd,mBAAmB;CACpB;;AAOD;EACE,gBAAgB;EAChB,iBAAiB;CAClB;;ACpFD;EAEE,gBAAgB;EAChB,iBAAiB;CAClB;;AAOD;EACE,mBAAmB;EACnB,eAAe;EACf,wBAAwB;EAExB,oB3C4D8B;E2C3D9B,uB3CojBkC;E2CnjBlC,uB3CojBkC;C2C1iBnC;;AAjBD;EpCLI,iCPwM2B;EOvM3B,gCPuM2B;C2CvL5B;;AAZH;EAcI,iBAAiB;EpCLjB,oCP0L2B;EOzL3B,mCPyL2B;C2CnL5B;;AAGH;EAEI,oBAAwC;EACxC,iBAAiB;CAClB;;AAJH;EAQM,cAAc;CACf;;AATL;EAcM,iBAAiB;CAClB;;AAUL;;EAEE,YAAY;EACZ,Y3C0hBkC;E2CzhBlC,oBAAoB;CAYrB;;AAhBD;;EAOI,Y3CwhBgC;C2CvhBjC;;AARH;;;EAYI,Y3CihBgC;E2ChhBhC,sBAAsB;EACtB,0B3CqgBmC;CCxjBlC;;A0CuDL;EAIM,e3CnD6B;E2CoD7B,oB3CgPsC;E2C/OtC,0B3CpD6B;CCQ9B;;A0CsCL;EAUQ,eAAe;CAChB;;AAXP;EAaQ,e3C5D2B;C2C6D5B;;AAdP;EAqBM,WAAW;EACX,Y3CmHuB;E2ClHvB,0B3ClE6B;E2CmE7B,sB3CnE6B;CCK9B;;A0CsCL;;;;;;;EA8BQ,eAAe;CAChB;;AA/BP;EAiCQ,e3Coe+B;C2CnehC;;AC5GL;EACE,e5C8boC;E4C7bpC,0B5C8boC;C4C7brC;;AAED;;EACE,e5CyboC;C4CvarC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5CkbkC;E4CjblC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5C2agC;E4C1ahC,sB5C0agC;CC3ZnC;;A2CpCH;EACE,e5CkcoC;E4CjcpC,0B5CkcoC;C4CjcrC;;AAED;;EACE,e5C6boC;C4C3arC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5CsbkC;E4CrblC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5C+agC;E4C9ahC,sB5C8agC;CC/ZnC;;A2CpCH;EACE,e5CscoC;E4CrcpC,0B5CscoC;C4CrcrC;;AAED;;EACE,e5CicoC;C4C/arC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5C0bkC;E4CzblC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5CmbgC;E4ClbhC,sB5CkbgC;CCnanC;;A2CpCH;EACE,e5C0coC;E4CzcpC,0B5C0coC;C4CzcrC;;AAED;;EACE,e5CqcoC;C4CnbrC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5C8bkC;E4C7blC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5CubgC;E4CtbhC,sB5CsbgC;CCvanC;;A0C6FL;EACE,cAAc;EACd,mBAAmB;CACpB;;AACD;EACE,iBAAiB;EACjB,iBAAiB;CAClB;;AEzID;EACE,mBAAmB;EACnB,eAAe;EACf,UAAU;EACV,WAAW;EACX,iBAAiB;CAelB;;AApBD;;;;;EAYI,mBAAmB;EACnB,OAAO;EACP,UAAU;EACV,QAAQ;EACR,YAAY;EACZ,aAAa;EACb,UAAU;CACX;;AAGH;EACE,2BAA0B;CAC3B;;AAED;EACE,uBAA0B;CAC3B;;AAED;EACE,oBAA0B;CAC3B;;AAED;EACE,qBAA0B;CAC3B;;ACtCD;EACE,aAAa;EACb,kBAA2B;EAC3B,kB9CgoBgC;E8C/nBhC,eAAe;EACf,Y9C+nBgC;E8C9nBhC,0B9C+nBwC;E8C9nBxC,YAAY;CAQb;;AAfD;EAUI,Y9C0nB8B;E8CznB9B,sBAAsB;EACtB,gBAAgB;EAChB,YAAY;C7CSX;;A6CDL;EACE,WAAW;EACX,gBAAgB;EAChB,wBAAwB;EACxB,UAAU;EACV,yBAAyB;CAC1B;;ACpBD;EACE,iBAAiB;CAClB;;AAGD;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,c/C8V6B;E+C7V7B,cAAc;EACd,iBAAiB;EAGjB,WAAW;EACX,kCAAkC;CAQnC;;AApBD;EAgBI,mDAAmC;EAAnC,2CAAmC;EAAnC,iEAAmC;EAAnC,mCAAmC;EAAnC,8FAAmC;EACnC,sCAAoB;MAApB,kCAAoB;OAApB,iCAAoB;UAApB,8BAAoB;CACrB;;AAlBH;EAmBuB,mCAAoB;MAApB,+BAAoB;OAApB,8BAAoB;UAApB,2BAAoB;CAAU;;AAErD;EACE,mBAAmB;EACnB,iBAAiB;CAClB;;AAGD;EACE,mBAAmB;EACnB,YAAY;EACZ,aAAa;CACd;;AAGD;EACE,mBAAmB;EACnB,uB/CmeiD;E+ClejD,qCAA6B;UAA7B,6BAA6B;EAC7B,qC/CkeiD;E+CjejD,sB/CgK4B;E+C7J5B,WAAW;CACZ;;AAGD;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,c/C+S6B;E+C9S7B,uB/CqdgC;C+ChdjC;;AAZD;EAUW,WAAW;CAAI;;AAV1B;EAWS,a/CkduB;C+Clda;;AAK7C;EACE,c/CqcgC;E+CpchC,iC/C4cmC;C+C1cpC;;AAJD;EpCxEI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;AoC2EH;EACE,iBAAiB;CAClB;;AAGD;EACE,UAAU;EACV,iB/CuF8B;C+CtF/B;;AAID;EACE,mBAAmB;EACnB,c/CgbgC;C+C/ajC;;AAGD;EACE,c/C2agC;E+C1ahC,kBAAkB;EAClB,8B/CmbmC;C+CnapC;;AAnBD;EpChGI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;AoC6FH;EAQI,iBAAiB;EACjB,iBAAiB;CAClB;;AAVH;EAaI,kBAAkB;CACnB;;AAdH;EAiBI,eAAe;CAChB;;AAIH;EACE,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,aAAa;EACb,iBAAiB;CAClB;;AnCjFG;EmCsFF;IACE,a/CwZ+B;I+CvZ/B,kBAAkB;GACnB;EAMD;IAAY,a/CiZqB;G+CjZD;ClD+tJjC;;Ae9zJG;EmCmGF;IAAY,a/C2YqB;G+C3YD;ClDiuJjC;;AmDh3JD;EACE,mBAAmB;EACnB,chDyW6B;EgDxW7B,eAAe;ECHf,4DjD+IyE;EiD7IzE,mBAAmB;EACnB,oBAAoB;EACpB,uBAAuB;EACvB,iBAAiB;EACjB,iBjDuK8B;EiDtK9B,iBAAiB;EACjB,kBAAkB;EAClB,sBAAsB;EACtB,kBAAkB;EAClB,qBAAqB;EACrB,oBAAoB;EACpB,mBAAmB;EACnB,qBAAqB;EACrB,kBAAkB;EDRlB,oBhDkJkC;EgDjJlC,WAAW;CAwDZ;;AAhED;EAUS,ahD4duB;CgD5dM;;AAVtC;EAcI,eAA+B;EAC/B,iBAAiB;CASlB;;AAxBH;EAkBM,UAAU;EACV,UAAU;EACV,kBhDod2B;EgDnd3B,wBAAyD;EACzD,uBhD+c4B;CgD9c7B;;AAvBL;EA2BI,ehD6c6B;EgD5c7B,iBAAiB;CASlB;;AArCH;EA+BM,SAAS;EACT,QAAQ;EACR,iBhDuc2B;EgDtc3B,4BAA8E;EAC9E,yBhDkc4B;CgDjc7B;;AApCL;EAwCI,eAA+B;EAC/B,gBAAgB;CASjB;;AAlDH;EA4CM,OAAO;EACP,UAAU;EACV,kBhD0b2B;EgDzb3B,wBhDyb2B;EgDxb3B,0BhDqb4B;CgDpb7B;;AAjDL;EAqDI,ehDmb6B;EgDlb7B,kBAAkB;CASnB;;AA/DH;EAyDM,SAAS;EACT,SAAS;EACT,iBhD6a2B;EgD5a3B,4BhD4a2B;EgD3a3B,wBhDwa4B;CgDva7B;;AAKL;EACE,iBhD+ZiC;EgD9ZjC,iBAAiB;EACjB,YhD8ZgC;EgD7ZhC,mBAAmB;EACnB,uBhD6ZgC;EOle9B,uBP8M2B;CgDvI9B;;AAGD;EACE,mBAAmB;EACnB,SAAS;EACT,UAAU;EACV,0BAA0B;EAC1B,oBAAoB;CACrB;;AEpFD;EACE,mBAAmB;EACnB,OAAO;EACP,QAAQ;EACR,clDuW6B;EkDtW7B,eAAe;EACf,iBlD0eyC;EkDzezC,aAAa;EDNb,4DjD+IyE;EiD7IzE,mBAAmB;EACnB,oBAAoB;EACpB,uBAAuB;EACvB,iBAAiB;EACjB,iBjDuK8B;EiDtK9B,iBAAiB;EACjB,kBAAkB;EAClB,sBAAsB;EACtB,kBAAkB;EAClB,qBAAqB;EACrB,oBAAoB;EACpB,mBAAmB;EACnB,qBAAqB;EACrB,kBAAkB;ECLlB,oBlD+IkC;EkD9IlC,uBlDmewC;EkDlexC,qCAA6B;UAA7B,6BAA6B;EAC7B,qClDoewC;EO9etC,sBP+M0B;CkD/G7B;;AApGD;EAuBI,kBlD+dsC;CkD/cvC;;AAvCH;EA0BM,clD+dqD;EkD9drD,UAAU;EACV,mBlD6dqD;EkD5drD,sClD6duC;EkD5dvC,uBAAuB;CAQxB;;AAtCL;EAgCQ,YAAY;EACZ,mBlDqdkC;EkDpdlC,YAAY;EACZ,uBlD4ckC;EkD3clC,uBAAuB;CACxB;;AArCP;EA2CI,kBlD2csC;CkD3bvC;;AA3DH;EA8CM,SAAS;EACT,YlD0cqD;EkDzcrD,kBlDycqD;EkDxcrD,wClDycuC;EkDxcvC,qBAAqB;CAQtB;;AA1DL;EAoDQ,clDkckC;EkDjclC,UAAU;EACV,YAAY;EACZ,yBlDwbkC;EkDvblC,qBAAqB;CACtB;;AAzDP;EA+DI,iBlDubsC;CkDvavC;;AA/EH;EAkEM,WlDubqD;EkDtbrD,UAAU;EACV,mBlDqbqD;EkDpbrD,oBAAoB;EACpB,yClDobuC;CkD5axC;;AA9EL;EAwEQ,SAAS;EACT,mBlD6akC;EkD5alC,YAAY;EACZ,oBAAoB;EACpB,0BlDmakC;CkDlanC;;AA7EP;EAmFI,mBlDmasC;CkDnZvC;;AAnGH;EAsFM,SAAS;EACT,alDkaqD;EkDjarD,kBlDiaqD;EkDharD,sBAAsB;EACtB,uClDgauC;CkDxZxC;;AAlGL;EA4FQ,WAAW;EACX,clDyZkC;EkDxZlC,YAAY;EACZ,sBAAsB;EACtB,wBlD+YkC;CkD9YnC;;AAOP;EACE,kBAAkB;EAClB,UAAU;EACV,gBlD6C+B;EkD5C/B,0BlDwY0C;EkDvY1C,iCAAiD;E3CzG/C,uC2C2G8G;CACjH;;AAED;EACE,kBAAkB;CACnB;;AAOD;EAGI,mBAAmB;EACnB,eAAe;EACf,SAAS;EACT,UAAU;EACV,0BAA0B;EAC1B,oBAAoB;CACrB;;AAEH;EACE,mBlDkXyD;CkDjX1D;;AACD;EACE,YAAY;EACZ,mBlD2WwC;CkD1WzC;;AC3ID;EACE,mBAAmB;CACpB;;AAED;EACE,mBAAmB;EACnB,YAAY;EACZ,iBAAiB;CAyElB;;AA5ED;EAMI,mBAAmB;EACnB,cAAc;EACd,yCAAiC;EAAjC,oCAAiC;EAAjC,iCAAiC;CAgClC;;AAxCH;;EAcM,eAAe;CAChB;;AAGD;EAlBJ;IAmBM,sDAAsC;IAAtC,8CAAsC;IAAtC,uEAAsC;IAAtC,sCAAsC;IAAtC,uGAAsC;IACtC,oCAA4B;YAA5B,4BAA4B;IAC5B,4BAAoB;YAApB,oBAAoB;GAmBvB;EAxCH;IAyBQ,QAAQ;IACR,2CAAsB;YAAtB,mCAAsB;GACvB;EA3BP;IA8BQ,QAAQ;IACR,4CAAsB;YAAtB,oCAAsB;GACvB;EAhCP;IAoCQ,QAAQ;IACR,wCAAsB;YAAtB,gCAAsB;GACvB;CtD4lKN;;AsDloKD;;;EA6CI,eAAe;CAChB;;AA9CH;EAiDI,QAAQ;CACT;;AAlDH;;EAsDI,mBAAmB;EACnB,OAAO;EACP,YAAY;CACb;;AAzDH;EA4DI,WAAW;CACZ;;AA7DH;EA+DI,YAAY;CACb;;AAhEH;;EAmEI,QAAQ;CACT;;AApEH;EAuEI,YAAY;CACb;;AAxEH;EA0EI,WAAW;CACZ;;AAQH;EACE,mBAAmB;EACnB,OAAO;EACP,UAAU;EACV,QAAQ;EACR,WnD0hB+C;EmDzhB/C,gBnD2hBgD;EmD1hBhD,YnDuhBgD;EmDthBhD,mBAAmB;EACnB,0CnDmhB0D;EmDlhB1D,anDshB8C;CmDhe/C;;AAhED;EXjFE,qHAAiC;EAAjC,mGAAiC;EAAjC,8FAAiC;EAAjC,+FAAiC;EACjC,4BAA4B;EAC5B,uHAAwJ;CWgGvJ;;AAjBH;EAmBI,SAAS;EACT,WAAW;EXrGb,qHAAiC;EAAjC,mGAAiC;EAAjC,8FAAiC;EAAjC,+FAAiC;EACjC,4BAA4B;EAC5B,uHAAwJ;CWqGvJ;;AAtBH;EA0BI,YnDogB8C;EmDngB9C,sBAAsB;EACtB,WAAW;EACX,YAAY;ClD/FX;;AkDkEL;;EAmCI,mBAAmB;EACnB,SAAS;EACT,WAAW;EACX,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,mBAAmB;EACnB,eAAe;CAChB;;AA5CH;EA8CI,UAAU;EACV,mBAAmB;CACpB;;AAhDH;EAkDI,WAAW;EACX,oBAAoB;CACrB;;AApDH;EAwDM,iBAAiB;CAClB;;AAzDL;EA6DM,iBAAiB;CAClB;;AAUL;EACE,mBAAmB;EACnB,aAAa;EACb,UAAU;EACV,YAAY;EACZ,WAAW;EACX,gBAAgB;EAChB,kBAAkB;EAClB,mBAAmB;EACnB,iBAAiB;CAwBlB;;AAjCD;EAYI,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,YAAY;EACZ,oBAAoB;EACpB,gBAAgB;EAMhB,8BAAsB;EACtB,uBnDoc8C;EmDnc9C,oBAAoB;CACrB;;AA1BH;EA4BI,YAAY;EACZ,aAAa;EACb,UAAU;EACV,uBnD4b8C;CmD3b/C;;AAQH;EACE,mBAAmB;EACnB,WAAW;EACX,aAAa;EACb,UAAU;EACV,YAAY;EACZ,kBAAkB;EAClB,qBAAqB;EACrB,YnD8agD;EmD7ahD,mBAAmB;EACnB,0CnDka0D;CmD7Z3D;;AAfD;EAaI,kBAAkB;CACnB;;AvCzKC;EuCmLF;;IAGI,YAAY;IACZ,aAAa;IACb,kBAAkB;IAClB,gBAAgB;GACjB;EAPH;IASI,mBAAmB;GACpB;EAVH;IAYI,oBAAoB;GACrB;EAIH;IACE,WAAW;IACX,UAAU;IACV,qBAAqB;GACtB;EAGD;IACE,aAAa;GACd;CtD4jKF;;AuDhzKD;EACE,epDwBiC;EoDvBjC,0BpDoBiC;CoDnBlC;;AAED;EACE,0BpDoBiC;CoDnBlC;;ACVC;EACE,uBAAuB;EACvB,qCAAmC;CACpC;;AACD;EAEI,qCAAgD;CpDajD;;AoDnBH;EACE,uBAAuB;EACvB,qCAAmC;CACpC;;AACD;EAEI,qCAAgD;CpDajD;;AoDnBH;EACE,uBAAuB;EACvB,qCAAmC;CACpC;;AACD;EAEI,qCAAgD;CpDajD;;AoDnBH;EACE,uBAAuB;EACvB,qCAAmC;CACpC;;AACD;EAEI,qCAAgD;CpDajD;;AoDnBH;EACE,uBAAuB;EACvB,qCAAmC;CACpC;;AACD;EAEI,qCAAgD;CpDajD;;AqDtBL;ECGE,eAAe;EACf,kBAAkB;EAClB,mBAAmB;CDHpB;;AEFD;E7CEI,YAAY;EACZ,eAAe;EACf,YAAY;CACb;;A8CHC;ECDF,uBAAuB;CDGpB;;AACD;ECDF,wBAAwB;CDGrB;;AACD;EACE,uBAAuB;CACxB;;A7CmCD;E6C3CA;ICDF,uBAAuB;GDGpB;EACD;ICDF,wBAAwB;GDGrB;EACD;IACE,uBAAuB;GACxB;C5Ds4KJ;;Aen2KG;E6C3CA;ICDF,uBAAuB;GDGpB;EACD;ICDF,wBAAwB;GDGrB;EACD;IACE,uBAAuB;GACxB;C5Dk5KJ;;Ae/2KG;E6C3CA;ICDF,uBAAuB;GDGpB;EACD;ICDF,wBAAwB;GDGrB;EACD;IACE,uBAAuB;GACxB;C5D85KJ;;Ae33KG;E6C3CA;ICDF,uBAAuB;GDGpB;EACD;ICDF,wBAAwB;GDGrB;EACD;IACE,uBAAuB;GACxB;C5D06KJ;;A8Dh7KD;ECCE,mBAAmB;EACnB,WAAW;EACX,YAAY;EACZ,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,uBAAU;EACV,UAAU;CDNX;;AAED;ECgBI,iBAAiB;EACjB,YAAY;EACZ,aAAa;EACb,UAAU;EACV,kBAAkB;EAClB,WAAW;CACZ;;AC5BH;EACE,8BAA8B;EAC9B,6BAA8B;CAC/B;;AAOG;EAAE,uBAA+C;CAAI;;AACrD;EAAE,yBAAyC;CAAI;;AAC/C;EAAE,2BAA2C;CAAI;;AACjD;EAAE,4BAA4C;CAAI;;AAClD;EAAE,0BAA0C;CAAI;;AAGhD;EACE,2BAA2C;EAC3C,0BAA0C;CAC3C;;AACD;EACE,yBAAyC;EACzC,4BAA4C;CAC7C;;AAdD;EAAE,6BAA+C;CAAI;;AACrD;EAAE,4BAAyC;CAAI;;AAC/C;EAAE,8BAA2C;CAAI;;AACjD;EAAE,+BAA4C;CAAI;;AAClD;EAAE,6BAA0C;CAAI;;AAGhD;EACE,8BAA2C;EAC3C,6BAA0C;CAC3C;;AACD;EACE,4BAAyC;EACzC,+BAA4C;CAC7C;;AAdD;EAAE,iCAA+C;CAAI;;AACrD;EAAE,8BAAyC;CAAI;;AAC/C;EAAE,gCAA2C;CAAI;;AACjD;EAAE,iCAA4C;CAAI;;AAClD;EAAE,+BAA0C;CAAI;;AAGhD;EACE,gCAA2C;EAC3C,+BAA0C;CAC3C;;AACD;EACE,8BAAyC;EACzC,iCAA4C;CAC7C;;AAdD;EAAE,6BAA+C;CAAI;;AACrD;EAAE,4BAAyC;CAAI;;AAC/C;EAAE,8BAA2C;CAAI;;AACjD;EAAE,+BAA4C;CAAI;;AAClD;EAAE,6BAA0C;CAAI;;AAGhD;EACE,8BAA2C;EAC3C,6BAA0C;CAC3C;;AACD;EACE,4BAAyC;EACzC,+BAA4C;CAC7C;;AAdD;EAAE,wBAA+C;CAAI;;AACrD;EAAE,0BAAyC;CAAI;;AAC/C;EAAE,4BAA2C;CAAI;;AACjD;EAAE,6BAA4C;CAAI;;AAClD;EAAE,2BAA0C;CAAI;;AAGhD;EACE,4BAA2C;EAC3C,2BAA0C;CAC3C;;AACD;EACE,0BAAyC;EACzC,6BAA4C;CAC7C;;AAdD;EAAE,8BAA+C;CAAI;;AACrD;EAAE,6BAAyC;CAAI;;AAC/C;EAAE,+BAA2C;CAAI;;AACjD;EAAE,gCAA4C;CAAI;;AAClD;EAAE,8BAA0C;CAAI;;AAGhD;EACE,+BAA2C;EAC3C,8BAA0C;CAC3C;;AACD;EACE,6BAAyC;EACzC,gCAA4C;CAC7C;;AAdD;EAAE,kCAA+C;CAAI;;AACrD;EAAE,+BAAyC;CAAI;;AAC/C;EAAE,iCAA2C;CAAI;;AACjD;EAAE,kCAA4C;CAAI;;AAClD;EAAE,gCAA0C;CAAI;;AAGhD;EACE,iCAA2C;EAC3C,gCAA0C;CAC3C;;AACD;EACE,+BAAyC;EACzC,kCAA4C;CAC7C;;AAdD;EAAE,8BAA+C;CAAI;;AACrD;EAAE,6BAAyC;CAAI;;AAC/C;EAAE,+BAA2C;CAAI;;AACjD;EAAE,gCAA4C;CAAI;;AAClD;EAAE,8BAA0C;CAAI;;AAGhD;EACE,+BAA2C;EAC3C,8BAA0C;CAC3C;;AACD;EACE,6BAAyC;EACzC,gCAA4C;CAC7C;;AAML;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,QAAQ;EACR,c7DwU6B;C6DvU9B;;AChCD;EAAuB,+BAA+B;CAAI;;AAC1D;EAAuB,+BAA+B;CAAI;;AAC1D;ECJE,iBAAiB;EACjB,wBAAwB;EACxB,oBAAoB;CDE2B;;AAM7C;EAAE,4BAA4B;CAAI;;AAClC;EAAE,6BAA6B;CAAI;;AACnC;EAAE,8BAA8B;CAAI;;AlD6BpC;EkD/BA;IAAE,4BAA4B;GAAI;EAClC;IAAE,6BAA6B;GAAI;EACnC;IAAE,8BAA8B;GAAI;CjE2tLvC;;Ae9rLG;EkD/BA;IAAE,4BAA4B;GAAI;EAClC;IAAE,6BAA6B;GAAI;EACnC;IAAE,8BAA8B;GAAI;CjEuuLvC;;Ae1sLG;EkD/BA;IAAE,4BAA4B;GAAI;EAClC;IAAE,6BAA6B;GAAI;EACnC;IAAE,8BAA8B;GAAI;CjEmvLvC;;AettLG;EkD/BA;IAAE,4BAA4B;GAAI;EAClC;IAAE,6BAA6B;GAAI;EACnC;IAAE,8BAA8B;GAAI;CjE+vLvC;;AiEzvLD;EAAuB,qCAAqC;CAAI;;AAChE;EAAuB,qCAAqC;CAAI;;AAChE;EAAuB,sCAAsC;CAAI;;AAIjE;EAAuB,oBAAoB;CAAI;;AAC/C;EAAuB,kBAAkB;CAAI;;AAC7C;EAAuB,mBAAmB;CAAI;;AAI9C;EACE,e9DLiC;C8DMlC;;AEjCC;EACE,0BAAwB;CACzB;;AACD;EAEI,eAAa;C/Dcd;;A+DnBH;EACE,0BAAwB;CACzB;;AACD;EAEI,eAAa;C/Dcd;;A+DnBH;EACE,0BAAwB;CACzB;;AACD;EAEI,eAAa;C/Dcd;;A+DnBH;EACE,0BAAwB;CACzB;;AACD;EAEI,eAAa;C/Dcd;;A+DnBH;EACE,0BAAwB;CACzB;;AACD;EAEI,eAAa;C/Dcd;;A6D4BL;EGhDE,YAAY;EACZ,mBAAmB;EACnB,kBAAkB;EAClB,8BAA8B;EAC9B,UAAU;CH8CX;;AIhDD;EACE,8BAA8B;CAC/B;;AAKC;EAEI,yBAAyB;CAE5B;;AtD2CC;EsD1CF;IAEI,yBAAyB;GAE5B;CrEq1LF;;Ae5zLG;EsDlCF;IAEI,yBAAyB;GAE5B;CrEg2LF;;AerzLG;EsD1CF;IAEI,yBAAyB;GAE5B;CrEi2LF;;Aex0LG;EsDlCF;IAEI,yBAAyB;GAE5B;CrE42LF;;Aej0LG;EsD1CF;IAEI,yBAAyB;GAE5B;CrE62LF;;Aep1LG;EsDlCF;IAEI,yBAAyB;GAE5B;CrEw3LF;;Ae70LG;EsD1CF;IAEI,yBAAyB;GAE5B;CrEy3LF;;Aeh2LG;EsDlCF;IAEI,yBAAyB;GAE5B;CrEo4LF;;AqEn4LC;EAEI,yBAAyB;CAE5B;;AAQH;EACE,yBAAyB;CAK1B;;AAHC;EAHF;IAII,0BAA0B;GAE7B;CrE+3LA;;AqE93LD;EACE,yBAAyB;CAK1B;;AAHC;EAHF;IAII,2BAA2B;GAE9B;CrEk4LA;;AqEj4LD;EACE,yBAAyB;CAK1B;;AAHC;EAHF;IAII,iCAAiC;GAEpC;CrEq4LA;;AqEl4LC;EADF;IAEI,yBAAyB;GAE5B;CrEq4LA","file":"bootstrap.css"}
\ No newline at end of file +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_normalize.scss","bootstrap.css","../../scss/_print.scss","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_hover.scss","../../scss/mixins/_tab-focus.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_clearfix.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_forms.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_animation.scss","../../scss/_dropdown.scss","../../scss/mixins/_nav-divider.scss","../../scss/mixins/_reset-filter.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/mixins/_cards.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_labels.scss","../../scss/mixins/_label.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/mixins/_gradients.scss","../../scss/mixins/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_responsive-embed.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_background.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_clearfix.scss","../../scss/utilities/_pulls.scss","../../scss/mixins/_pulls.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss"],"names":[],"mappings":"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iBL;ECVM,0BnBhB6B;EmBiBzB,sBnBjByB;CmBkB9B;;ADQL;ECNM,0BnBpB6B;EmBqBzB,sBnBrByB;CCzBV;;AiBsDzB;ECtDE,enBmBiC;EmBlBjC,uBnB+OmC;EmB9OnC,mBnB+OmC;CkBzLpC;;AAFD;EChDI,enBa+B;EmBZ/B,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiBsDzB;ECzCI,enBM+B;EmBL/B,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADsCH;;ECjCI,enBF+B;EmBG/B,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADmBH;;;;ECvBM,enBZ6B;EmBa7B,0BAAwB;EACpB,sBAAoB;CACzB;;ADoBL;ECbM,uBnBuM+B;EmBtM3B,mBnBuM2B;CmBtMhC;;ADWL;ECTM,uBnBmM+B;EmBlM3B,mBnBmM2B;CCjPZ;;AiByDzB;ECzDE,YnBmPmC;EmBlPnC,0BnB0BiC;EmBzBjC,sBnByBiC;CkBgClC;;AAFD;ECnDI,YnB6OiC;EmB5OjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiByDzB;EC5CI,YnBsOiC;EmBrOjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADyCH;;ECpCI,YnB8NiC;EmB7NjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADsBH;;;;EC1BM,YnBoN+B;EmBnN/B,0BAAwB;EACpB,sBAAoB;CACzB;;ADuBL;EChBM,0BnBd6B;EmBezB,sBnBfyB;CmBgB9B;;ADcL;ECZM,0BnBlB6B;EmBmBzB,sBnBnByB;CC3BV;;AiB4DzB;EC5DE,YnBuPmC;EmBtPnC,0BnByBiC;EmBxBjC,sBnBwBiC;CkBoClC;;AAFD;ECtDI,YnBiPiC;EmBhPjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiB4DzB;EC/CI,YnB0OiC;EmBzOjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;AD4CH;;ECvCI,YnBkOiC;EmBjOjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;ADyBH;;;;EC7BM,YnBwN+B;EmBvN/B,0BAAwB;EACpB,sBAAoB;CACzB;;AD0BL;ECnBM,0BnBf6B;EmBgBzB,sBnBhByB;CmBiB9B;;ADiBL;ECfM,0BnBnB6B;EmBoBzB,sBnBpByB;CC1BV;;AiB+DzB;EC/DE,YnB2PmC;EmB1PnC,0BnB2BiC;EmB1BjC,sBnB0BiC;CkBqClC;;AAFD;ECzDI,YnBqPiC;EmBpPjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiB+DzB;EClDI,YnB8OiC;EmB7OjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;AD+CH;;EC1CI,YnBsOiC;EmBrOjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;AD4BH;;;;EChCM,YnB4N+B;EmB3N/B,0BAAwB;EACpB,sBAAoB;CACzB;;AD6BL;ECtBM,0BnBb6B;EmBczB,sBnBdyB;CmBe9B;;ADoBL;EClBM,0BnBjB6B;EmBkBzB,sBnBlByB;CC5BV;;AiBkEzB;EClEE,YnB+PmC;EmB9PnC,0BnB4BiC;EmB3BjC,sBnB2BiC;CkBuClC;;AAFD;EC5DI,YnByPiC;EmBxPjC,0BAVwB;EAWpB,sBAVgB;ClBEC;;AiBkEzB;ECrDI,YnBkPiC;EmBjPjC,0BAjBwB;EAkBpB,sBAjBgB;CAkBrB;;ADkDH;;EC7CI,YnB0OiC;EmBzOjC,0BAzBwB;EA0BpB,sBAzBgB;EA2BpB,uBAAuB;CAUxB;;AD+BH;;;;ECnCM,YnBgO+B;EmB/N/B,0BAAwB;EACpB,sBAAoB;CACzB;;ADgCL;ECzBM,0BnBZ6B;EmBazB,sBnBbyB;CmBc9B;;ADuBL;ECrBM,0BnBhB6B;EmBiBzB,sBnBjByB;CC7BV;;AiBuEzB;ECnBE,enB3BiC;EmB4BjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB9BiC;CkBgDlC;;AAFD;;ECTI,YAAY;EACZ,0BnBtC+B;EmBuC3B,sBnBvC2B;CmBwChC;;ADMH;ECJI,YAAY;EACZ,0BnB3C+B;EmB4C3B,sBnB5C2B;CCzBV;;AiBuEzB;ECKM,sBAAqB;CACtB;;ADNL;ECQM,sBAAqB;ClB/EF;;AiB0EzB;ECtBE,YnB6LmC;EmB5LnC,uBAAuB;EACvB,8BAA8B;EAC9B,mBnB0LmC;CkBrKpC;;AAFD;;ECZI,YAAY;EACZ,uBnBkLiC;EmBjL7B,mBnBiL6B;CmBhLlC;;ADSH;ECPI,YAAY;EACZ,uBnB6KiC;EmB5K7B,mBnB4K6B;CCjPZ;;AiB0EzB;ECEM,oBAAqB;CACtB;;ADHL;ECKM,oBAAqB;ClB/EF;;AiB6EzB;ECzBE,enBzBiC;EmB0BjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB5BiC;CkBoDlC;;AAFD;;ECfI,YAAY;EACZ,0BnBpC+B;EmBqC3B,sBnBrC2B;CmBsChC;;ADYH;ECVI,YAAY;EACZ,0BnBzC+B;EmB0C3B,sBnB1C2B;CC3BV;;AiB6EzB;ECDM,sBAAqB;CACtB;;ADAL;ECEM,sBAAqB;ClB/EF;;AiBgFzB;EC5BE,enB1BiC;EmB2BjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB7BiC;CkBwDlC;;AAFD;;EClBI,YAAY;EACZ,0BnBrC+B;EmBsC3B,sBnBtC2B;CmBuChC;;ADeH;ECbI,YAAY;EACZ,0BnB1C+B;EmB2C3B,sBnB3C2B;CC1BV;;AiBgFzB;ECJM,sBAAqB;CACtB;;ADGL;ECDM,sBAAqB;ClB/EF;;AiBmFzB;EC/BE,enBxBiC;EmByBjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB3BiC;CkByDlC;;AAFD;;ECrBI,YAAY;EACZ,0BnBnC+B;EmBoC3B,sBnBpC2B;CmBqChC;;ADkBH;EChBI,YAAY;EACZ,0BnBxC+B;EmByC3B,sBnBzC2B;CC5BV;;AiBmFzB;ECPM,sBAAqB;CACtB;;ADML;ECJM,sBAAqB;ClB/EF;;AiBsFzB;EClCE,enBvBiC;EmBwBjC,uBAAuB;EACvB,8BAA8B;EAC9B,sBnB1BiC;CkB2DlC;;AAFD;;ECxBI,YAAY;EACZ,0BnBlC+B;EmBmC3B,sBnBnC2B;CmBoChC;;ADqBH;ECnBI,YAAY;EACZ,0BnBvC+B;EmBwC3B,sBnBxC2B;CC7BV;;AiBsFzB;ECVM,sBAAqB;CACtB;;ADSL;ECPM,sBAAqB;ClB/EF;;AiBgGzB;EACE,oBAAoB;EACpB,elBzEiC;EkB0EjC,iBAAiB;CA4BlB;;AA/BD;EASI,8BAA8B;CAE/B;;AAXH;EAeI,0BAA0B;CAC3B;;A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;E+BZ/B,aAAiC;CAClC;;AAVH;EAmBI,2BAA2B;CAC5B;;AApBH;EAsBI,sBAAsB;CACvB;;AAvBH;EA0BI,e/BL+B;C+BMhC;;ACpCH;EACE,sBAAsB;EACtB,gBAAgB;EAChB,iBhCwDa;EgCvDb,oBhCuDa;EOvDX,uBP2M2B;CgCzM9B;;AAED;EACE,gBAAgB;CAiCjB;;AAlCD;EAKM,eAAe;EzBkBjB,mCPgL2B;EO/K3B,gCP+K2B;CgChM1B;;AAPL;EzBSI,oCP8L2B;EO7L3B,iCP6L2B;CgC3L1B;;AAZL;EAiBM,WAAW;EACX,YhCydqC;EgCxdrC,gBAAgB;EAChB,0BhCM6B;EgCL7B,sBhCK6B;CCK9B;;A+B/BL;EA2BM,ehCL6B;EgCM7B,qBAAqB;EACrB,oBhCgSsC;EgC/RtC,uBhCkdqC;EgCjdrC,mBhCkdqC;CCldtC;;A+BKL;EACE,mBAAmB;EACnB,YAAY;EACZ,wBhCmb0C;EgClb1C,kBAAkB;EAClB,ehCfiC;EgCgBjC,sBAAsB;EACtB,uBhCwbyC;EgCvbzC,uBhCybyC;CgClb1C;;AAfD;EAWI,ehC0C0B;EgCzC1B,0BhCzB+B;EgC0B/B,mBhCwbuC;CC3dtC;;A+B4CL;EC9DI,wBjCkewC;EiCjexC,mBjC+IoB;CiC9IrB;;AD4DH;EzBnCI,kCPiL0B;EOhL1B,+BPgL0B;CiCpMvB;;ADsDP;EzBjDI,mCP+L0B;EO9L1B,gCP8L0B;CiC/LvB;;ADqDP;EClEI,0BjCgewC;EiC/dxC,oBjCgJoB;CiC/IrB;;ADgEH;EzBvCI,kCPkL0B;EOjL1B,+BPiL0B;CiCrMvB;;AD0DP;EzBrDI,mCPgM0B;EO/L1B,gCP+L0B;CiChMvB;;ACZP;EACE,sBAAsB;EACtB,oBAAoB;EACpB,eAAe;EACf,kBlC4kBgC;EkC3kBhC,eAAe;EACf,YlCwkBgC;EkCvkBhC,mBAAmB;EACnB,oBAAoB;EACpB,yBAAyB;E3BVvB,uBP2M2B;CkC1L9B;;AAhBD;EAcI,cAAc;CACf;;AAIH;EACE,mBAAmB;EACnB,UAAU;CACX;;AAID;EAEI,YlCmjB8B;EkCljB9B,sBAAsB;EACtB,gBAAgB;CjCbf;;AiCsBL;EACE,oBAAoB;EACpB,mBAAmB;E3B1CjB,qB2B6C0B;CAC7B;;AAMD;ECrDE,0BnC2BiC;CkC4BlC;;AAFD;ECjDM,0BAAwB;ClCezB;;AiCsCL;ECzDE,0BnC+BiC;CkC4BlC;;AAFD;ECrDM,0BAAwB;ClCezB;;AiC0CL;EC7DE,0BnCgCiC;CkC+BlC;;AAFD;ECzDM,0BAAwB;ClCezB;;AiC8CL;ECjEE,0BnCiCiC;CkCkClC;;AAFD;EC7DM,0BAAwB;ClCezB;;AiCkDL;ECrEE,0BnCkCiC;CkCqClC;;AAFD;ECjEM,0BAAwB;ClCezB;;AiCsDL;ECzEE,0BnCmCiC;CkCwClC;;AAFD;ECrEM,0BAAwB;ClCezB;;AmCtBL;EACE,mBAA+C;EAC/C,oBpC4fmC;EoC3fnC,0BpC4BiC;EO3B/B,sBP4M0B;CoCvM7B;;AxBoCG;EwB7CJ;IAOI,mBpCufiC;GoCrfpC;CvC21IA;;AuCz1ID;EACE,0BAAwB;CACzB;;AAED;EACE,iBAAiB;EACjB,gBAAgB;E7Bbd,iB6BcsB;CACzB;;ACfD;EACE,crC8mBgC;EqC7mBhC,oBrCqDa;EqCpDb,8BAA6C;E9BH3C,uBP2M2B;CqCtM9B;;AAGD;EAEE,eAAe;CAChB;;AAGD;EACE,kBrCkmBgC;CqCjmBjC;;AAOD;EACE,oBAA8B;CAS/B;;AAVD;EAKI,mBAAmB;EACnB,UAAU;EACV,aAAa;EACb,eAAe;CAChB;;AAQH;ECzCE,0BtCogBsC;EsCngBtC,sBtCogBqC;EsCngBrC,etCigBsC;CqCxdvC;;AAFD;ECpCI,0BAAwB;CACzB;;ADmCH;ECjCI,eAAa;CACd;;ADmCH;EC5CE,0BtCwgBsC;EsCvgBtC,sBtCwgBqC;EsCvgBrC,etCqgBsC;CqCzdvC;;AAFD;ECvCI,0BAAwB;CACzB;;ADsCH;ECpCI,eAAa;CACd;;ADsCH;EC/CE,0BtC4gBsC;EsC3gBtC,sBtC4gBqC;EsC3gBrC,etCygBsC;CqC1dvC;;AAFD;EC1CI,0BAAwB;CACzB;;ADyCH;ECvCI,eAAa;CACd;;ADyCH;EClDE,0BtCghBsC;EsC/gBtC,sBtCghBqC;EsC/gBrC,etC6gBsC;CqC3dvC;;AAFD;EC7CI,0BAAwB;CACzB;;AD4CH;EC1CI,eAAa;CACd;;ACRH;EACE;IAAO,4BAAgC;G1Cg8ItC;E0C/7ID;IAAK,yBAAyB;G1Ck8I7B;CACF;;A0Cr8ID;EACE;IAAO,4BAAgC;G1Cg8ItC;E0C/7ID;IAAK,yBAAyB;G1Ck8I7B;CACF;;A0Cr8ID;EACE;IAAO,4BAAgC;G1Cg8ItC;E0C/7ID;IAAK,yBAAyB;G1Ck8I7B;CACF;;A0C37ID;EACE,eAAe;EACf,YAAY;EACZ,avC0Ca;EuCzCb,oBvCyCa;CuCxCd;;AACD;EAEE,uBvCqnBgC;EuCnnBhC,UAAU;EAEV,yBAAiB;KAAjB,sBAAiB;UAAjB,iBAAiB;EhCtBf,uBP2M2B;CuClL9B;;AAGD;EACE,0BvC2mBmC;EuCzmBnC,UAAU;CACX;;AACD;EACE,0BvCsmBmC;EO7mBjC,mCPgL2B;EO/K3B,gCP+K2B;CuCvK9B;;AACD;EACE,0BvCkmBmC;EO7mBjC,mCPgL2B;EO/K3B,gCP+K2B;CuCnK9B;;AAED;EhC7BI,oCP8L2B;EO7L3B,iCP6L2B;CuC/J9B;;AACD;EhChCI,oCP8L2B;EO7L3B,iCP6L2B;CuC5J9B;;AAGD;EACE,uBvColBgC;EOvoB9B,uBP2M2B;CuCrJ9B;;AACD;;EAEE,uBvC8kBgC;EOvoB9B,uBP2M2B;CuC/I9B;;AAGD;EACE;IACE,uBvCskB8B;IOvoB9B,uBP2M2B;GuCvI5B;EACD;IACE,sBAAsB;IACtB,avChBW;IuCiBX,qBAAqB;IACrB,0BvC+jBiC;IO7mBjC,mCPgL2B;IO/K3B,gCP+K2B;GuChI5B;EACD;IhC/DE,oCP8L2B;IO7L3B,iCP6L2B;GuC7H5B;C1C87IF;;A0Ct7ID;ECjDE,8MAAiC;EAAjC,sMAAiC;EDmDjC,mCvCjCa;UuCiCb,2BvCjCa;CuCkCd;;AACD;ECrDE,sMAAiC;EDuDjC,2BvCrCa;CuCsCd;;AACD;ECzDE,sMAAiC;ED2DjC,2BvCzCa;CuC0Cd;;AAED;EACE;IC/DA,8MAAiC;IAAjC,yMAAiC;IAAjC,sMAAiC;IDiE/B,mCvC/CW;YuC+CX,2BvC/CW;GuCgDZ;C1C27IF;;A0Cn7ID;EACE,2DAAmD;UAAnD,mDAAmD;CACpD;;AACD;EACE,mDAAmD;CACpD;;AAED;EACE;IACE,2DAAmD;SAAnD,sDAAmD;YAAnD,mDAAmD;GACpD;C1Cu7IF;;A0C/6ID;EEjII,0BzC+B+B;CyC9BhC;;AFgIH;EE7HI,0BzC2B+B;CyC1BhC;;AF4HH;EExHI,0BzCsB+B;CyCrBhC;;AAGD;EFoHF;IElHM,0BzCgB6B;GyCf9B;C5CkjJJ;;A0C97ID;EEpII,0BzCgC+B;CyC/BhC;;AFmIH;EEhII,0BzC4B+B;CyC3BhC;;AF+HH;EE3HI,0BzCuB+B;CyCtBhC;;AAGD;EFuHF;IErHM,0BzCiB6B;GyChB9B;C5CokJJ;;A0C78ID;EEvII,0BzCiC+B;CyChChC;;AFsIH;EEnII,0BzC6B+B;CyC5BhC;;AFkIH;EE9HI,0BzCwB+B;CyCvBhC;;AAGD;EF0HF;IExHM,0BzCkB6B;GyCjB9B;C5CslJJ;;A0C59ID;EE1II,0BzCkC+B;CyCjChC;;AFyIH;EEtII,0BzC8B+B;CyC7BhC;;AFqIH;EEjII,0BzCyB+B;CyCxBhC;;AAGD;EF6HF;IE3HM,0BzCmB6B;GyClB9B;C5CwmJJ;;A6C7mJC;EACE,iB1CqrB8B;C0ChrB/B;;AAND;EAII,cAAc;CACf;;AAEH;;EAEE,iBAAiB;CAClB;;AACD;EACE,eAAe;CAChB;;AACD;;;EAGE,oBAAoB;EACpB,oBAAoB;CACrB;;AACD;EACE,uBAAuB;CACxB;;AACD;EACE,uBAAuB;CACxB;;AAQH;EACE,eAAe;CAMhB;;AAPD;EAKI,gBAAgB;CACjB;;AAQH;EACE,mB1CwoBgC;C0CvoBjC;;AAED;EACE,oB1CooBgC;C0CnoBjC;;AAOD;EACE,cAAc;EACd,mB1CynBgC;C0CxnBjC;;AAOD;EACE,gBAAgB;EAChB,iBAAiB;CAClB;;ACpFD;EAEE,gBAAgB;EAChB,iBAAiB;CAClB;;AAOD;EACE,mBAAmB;EACnB,eAAe;EACf,wBAAwB;EAExB,oB3C4DgB;E2C3DhB,uB3CooBkC;E2CnoBlC,uB3CooBkC;C2CtlBnC;;AArDD;EpCLI,iCPqM2B;EOpM3B,gCPoM2B;C2CrL5B;;AAXH;EAcI,iBAAiB;EpCLjB,oCPuL2B;EOtL3B,mCPsL2B;C2ChL5B;;AAhBH;EAoBM,e3CL6B;E2CM7B,oB3CiSsC;E2ChStC,0B3CN6B;CCQ9B;;A0CxBL;EA0BQ,eAAe;CAChB;;AA3BP;EA6BQ,e3Cd2B;C2Ce5B;;AA9BP;EAoCM,WAAW;EACX,Y3C+JuB;E2C9JvB,sBAAsB;EACtB,0B3CpB6B;E2CqB7B,sB3CrB6B;CCK9B;;A0CxBL;;;;;;;EA8CQ,eAAe;CAChB;;AA/CP;EAiDQ,e3CkmB+B;C2CjmBhC;;AAKP;EAEI,iBAAiB;CAClB;;AASH;EACE,YAAY;EACZ,Y3ColBkC;E2CnlBlC,oBAAoB;CAYrB;;AAfD;EAMI,Y3CklBgC;C2CjlBjC;;AAPH;EAWI,Y3C2kBgC;E2C1kBhC,sBAAsB;EACtB,0B3C+jBmC;CCxoBlC;;A2CnBH;EACE,e5CkgBoC;E4CjgBpC,0B5CkgBoC;C4CjgBrC;;AAED;;EACE,e5C6foC;C4C3erC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5CsfkC;E4CrflC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5C+egC;E4C9ehC,sB5C8egC;CC/dnC;;A2CpCH;EACE,e5CsgBoC;E4CrgBpC,0B5CsgBoC;C4CrgBrC;;AAED;;EACE,e5CigBoC;C4C/erC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5C0fkC;E4CzflC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5CmfgC;E4ClfhC,sB5CkfgC;CCnenC;;A2CpCH;EACE,e5C0gBoC;E4CzgBpC,0B5C0gBoC;C4CzgBrC;;AAED;;EACE,e5CqgBoC;C4CnfrC;;AAnBD;;EAII,eAAe;CAChB;;AALH;;;EAQI,e5C8fkC;E4C7flC,0BAAwB;C3CKzB;;A2CdH;;;;EAcM,YAAY;EACZ,0B5CufgC;E4CtfhC,sB5CsfgC;CCvenC;;A2CpCH;EACE,e5C8gBoC;E4C7gBpC,0B5C8gBoC;C4C7gBrC;;AAED;;EACE,e5CygBoC;C4CvfrC;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","file":"bootstrap.css"}
\ No newline at end of file diff --git a/docs/dist/css/bootstrap.min.css b/docs/dist/css/bootstrap.min.css index 5667bfddd..636c4e610 100644 --- a/docs/dist/css/bootstrap.min.css +++ b/docs/dist/css/bootstrap.min.css @@ -2,5 +2,5 @@ * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com) * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active{outline:0}a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*,::after,::before{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{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 #ddd!important}}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}@viewport{width:device-width}html{-ms-overflow-style:scrollbar;font-size:16px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1rem;line-height:1.5;color:#373a3c;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}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]{cursor:help;border-bottom:1px dotted #818a91}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}a{color:#0275d8;text-decoration:none}a:focus,a:hover{color:#014c8c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}pre{margin-top:0;margin-bottom:1rem}figure{margin:0 0 1rem}img{vertical-align:middle}[role=button]{cursor:pointer}[role=button],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{background-color:transparent}caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,select,textarea{margin:0;line-height:inherit;border-radius:0}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}input[type=search]{-webkit-box-sizing:inherit;box-sizing:inherit;-webkit-appearance:none}output{display:inline-block}[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.1;color:inherit}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}h5{font-size:1.25rem}h6{font-size:1rem}.h1{font-size:2.5rem}.h2{font-size:2rem}.h3{font-size:1.75rem}.h4{font-size:1.5rem}.h5{font-size:1.25rem}.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300}.display-2{font-size:5.5rem;font-weight:300}.display-3{font-size:4.5rem;font-weight:300}.display-4{font-size:3.5rem;font-weight:300}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:5px}.initialism{font-size:90%;text-transform:uppercase}.blockquote{padding:.5rem 1rem;margin-bottom:1rem;font-size:1.25rem;border-left:.25rem solid #eceeef}.blockquote-footer{display:block;font-size:80%;line-height:1.5;color:#818a91}.blockquote-footer::before{content:"\2014 \00A0"}.blockquote-reverse{padding-right:1rem;padding-left:0;text-align:right;border-right:.25rem solid #eceeef;border-left:0}.blockquote-reverse .blockquote-footer::before{content:""}.blockquote-reverse .blockquote-footer::after{content:"\00A0 \2014"}.carousel-inner>.carousel-item>a>img,.carousel-inner>.carousel-item>img,.img-fluid{display:block;max-width:100%;height:auto}.img-rounded{border-radius:.3rem}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:.25rem;line-height:1.5;background-color:#fff;border:1px solid #ddd;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#818a91}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:.2rem .4rem;font-size:90%;color:#bd4147;background-color:#f7f7f9;border-radius:.25rem}kbd{padding:.2rem .4rem;font-size:90%;color:#fff;background-color:#333;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;margin-top:0;margin-bottom:1rem;font-size:90%;line-height:1.5;color:#373a3c}pre code{padding:0;font-size:inherit;color:inherit;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:.9375rem;padding-left:.9375rem;margin-right:auto;margin-left:auto}.container::after{display:table;clear:both;content:""}@media (min-width:544px){.container{max-width:576px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:940px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{padding-right:.9375rem;padding-left:.9375rem;margin-right:auto;margin-left:auto}.container-fluid::after{display:table;clear:both;content:""}.row{margin-right:-.9375rem;margin-left:-.9375rem}.row::after{display:table;clear:both;content:""}.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-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-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-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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:.9375rem;padding-left:.9375rem}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-1{width:8.333333%}.col-xs-2{width:16.666667%}.col-xs-3{width:25%}.col-xs-4{width:33.333333%}.col-xs-5{width:41.666667%}.col-xs-6{width:50%}.col-xs-7{width:58.333333%}.col-xs-8{width:66.666667%}.col-xs-9{width:75%}.col-xs-10{width:83.333333%}.col-xs-11{width:91.666667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.333333%}.col-xs-pull-2{right:16.666667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.333333%}.col-xs-pull-5{right:41.666667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.333333%}.col-xs-pull-8{right:66.666667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.333333%}.col-xs-pull-11{right:91.666667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.333333%}.col-xs-push-2{left:16.666667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.333333%}.col-xs-push-5{left:41.666667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.333333%}.col-xs-push-8{left:66.666667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.333333%}.col-xs-push-11{left:91.666667%}.col-xs-push-12{left:100%}.col-xs-offset-1{margin-left:8.333333%}.col-xs-offset-2{margin-left:16.666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.333333%}.col-xs-offset-5{margin-left:41.666667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.333333%}.col-xs-offset-8{margin-left:66.666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.333333%}.col-xs-offset-11{margin-left:91.666667%}@media (min-width:544px){.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{float:left}.col-sm-1{width:8.333333%}.col-sm-2{width:16.666667%}.col-sm-3{width:25%}.col-sm-4{width:33.333333%}.col-sm-5{width:41.666667%}.col-sm-6{width:50%}.col-sm-7{width:58.333333%}.col-sm-8{width:66.666667%}.col-sm-9{width:75%}.col-sm-10{width:83.333333%}.col-sm-11{width:91.666667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.333333%}.col-sm-pull-2{right:16.666667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.333333%}.col-sm-pull-5{right:41.666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.333333%}.col-sm-pull-8{right:66.666667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.333333%}.col-sm-pull-11{right:91.666667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.333333%}.col-sm-push-2{left:16.666667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.333333%}.col-sm-push-5{left:41.666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.333333%}.col-sm-push-8{left:66.666667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.333333%}.col-sm-push-11{left:91.666667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.333333%}.col-sm-offset-2{margin-left:16.666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.333333%}.col-sm-offset-5{margin-left:41.666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.333333%}.col-sm-offset-8{margin-left:66.666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.333333%}.col-sm-offset-11{margin-left:91.666667%}}@media (min-width:768px){.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{float:left}.col-md-1{width:8.333333%}.col-md-2{width:16.666667%}.col-md-3{width:25%}.col-md-4{width:33.333333%}.col-md-5{width:41.666667%}.col-md-6{width:50%}.col-md-7{width:58.333333%}.col-md-8{width:66.666667%}.col-md-9{width:75%}.col-md-10{width:83.333333%}.col-md-11{width:91.666667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.333333%}.col-md-pull-2{right:16.666667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.333333%}.col-md-pull-5{right:41.666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.333333%}.col-md-pull-8{right:66.666667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.333333%}.col-md-pull-11{right:91.666667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.333333%}.col-md-push-2{left:16.666667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.333333%}.col-md-push-5{left:41.666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.333333%}.col-md-push-8{left:66.666667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.333333%}.col-md-push-11{left:91.666667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.333333%}.col-md-offset-2{margin-left:16.666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.333333%}.col-md-offset-5{margin-left:41.666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.333333%}.col-md-offset-8{margin-left:66.666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.333333%}.col-md-offset-11{margin-left:91.666667%}}@media (min-width:992px){.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{float:left}.col-lg-1{width:8.333333%}.col-lg-2{width:16.666667%}.col-lg-3{width:25%}.col-lg-4{width:33.333333%}.col-lg-5{width:41.666667%}.col-lg-6{width:50%}.col-lg-7{width:58.333333%}.col-lg-8{width:66.666667%}.col-lg-9{width:75%}.col-lg-10{width:83.333333%}.col-lg-11{width:91.666667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.333333%}.col-lg-pull-2{right:16.666667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.333333%}.col-lg-pull-5{right:41.666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.333333%}.col-lg-pull-8{right:66.666667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.333333%}.col-lg-pull-11{right:91.666667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.333333%}.col-lg-push-2{left:16.666667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.333333%}.col-lg-push-5{left:41.666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.333333%}.col-lg-push-8{left:66.666667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.333333%}.col-lg-push-11{left:91.666667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.333333%}.col-lg-offset-2{margin-left:16.666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.333333%}.col-lg-offset-5{margin-left:41.666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.333333%}.col-lg-offset-8{margin-left:66.666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.333333%}.col-lg-offset-11{margin-left:91.666667%}}@media (min-width:1200px){.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{float:left}.col-xl-1{width:8.333333%}.col-xl-2{width:16.666667%}.col-xl-3{width:25%}.col-xl-4{width:33.333333%}.col-xl-5{width:41.666667%}.col-xl-6{width:50%}.col-xl-7{width:58.333333%}.col-xl-8{width:66.666667%}.col-xl-9{width:75%}.col-xl-10{width:83.333333%}.col-xl-11{width:91.666667%}.col-xl-12{width:100%}.col-xl-pull-0{right:auto}.col-xl-pull-1{right:8.333333%}.col-xl-pull-2{right:16.666667%}.col-xl-pull-3{right:25%}.col-xl-pull-4{right:33.333333%}.col-xl-pull-5{right:41.666667%}.col-xl-pull-6{right:50%}.col-xl-pull-7{right:58.333333%}.col-xl-pull-8{right:66.666667%}.col-xl-pull-9{right:75%}.col-xl-pull-10{right:83.333333%}.col-xl-pull-11{right:91.666667%}.col-xl-pull-12{right:100%}.col-xl-push-0{left:auto}.col-xl-push-1{left:8.333333%}.col-xl-push-2{left:16.666667%}.col-xl-push-3{left:25%}.col-xl-push-4{left:33.333333%}.col-xl-push-5{left:41.666667%}.col-xl-push-6{left:50%}.col-xl-push-7{left:58.333333%}.col-xl-push-8{left:66.666667%}.col-xl-push-9{left:75%}.col-xl-push-10{left:83.333333%}.col-xl-push-11{left:91.666667%}.col-xl-push-12{left:100%}.col-xl-offset-0{margin-left:0}.col-xl-offset-1{margin-left:8.333333%}.col-xl-offset-2{margin-left:16.666667%}.col-xl-offset-3{margin-left:25%}.col-xl-offset-4{margin-left:33.333333%}.col-xl-offset-5{margin-left:41.666667%}.col-xl-offset-6{margin-left:50%}.col-xl-offset-7{margin-left:58.333333%}.col-xl-offset-8{margin-left:66.666667%}.col-xl-offset-9{margin-left:75%}.col-xl-offset-10{margin-left:83.333333%}.col-xl-offset-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem}.table td,.table th{padding:.75rem;line-height:1.5;vertical-align:top;border-top:1px solid #eceeef}.table thead th{vertical-align:bottom;border-bottom:2px solid #eceeef}.table tbody+tbody{border-top:2px solid #eceeef}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #eceeef}.table-bordered td,.table-bordered th{border:1px solid #eceeef}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover tbody tr:hover{background-color:#f5f5f5}.table-active,.table-active>td,.table-active>th{background-color:#f5f5f5}.table-hover .table-active:hover{background-color:#e8e8e8}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e8e8e8}.table-success,.table-success>td,.table-success>th{background-color:#dff0d8}.table-hover .table-success:hover{background-color:#d0e9c6}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#d0e9c6}.table-info,.table-info>td,.table-info>th{background-color:#d9edf7}.table-hover .table-info:hover{background-color:#c4e3f3}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#c4e3f3}.table-warning,.table-warning>td,.table-warning>th{background-color:#fcf8e3}.table-hover .table-warning:hover{background-color:#faf2cc}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#faf2cc}.table-danger,.table-danger>td,.table-danger>th{background-color:#f2dede}.table-hover .table-danger:hover{background-color:#ebcccc}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#ebcccc}.table-responsive{display:block;width:100%;min-height:.01%;overflow-x:auto}.thead-inverse th{color:#fff;background-color:#373a3c}.thead-default th{color:#55595c;background-color:#eceeef}.table-inverse{color:#eceeef;background-color:#373a3c}.table-inverse.table-bordered{border:0}.table-inverse td,.table-inverse th,.table-inverse thead th{border-color:#55595c}.table-reflow thead{float:left}.table-reflow tbody{display:block;white-space:nowrap}.table-reflow td,.table-reflow th{border-top:1px solid #eceeef;border-left:1px solid #eceeef}.table-reflow td:last-child,.table-reflow th:last-child{border-right:1px solid #eceeef}.table-reflow tbody:last-child tr:last-child td,.table-reflow tbody:last-child tr:last-child th,.table-reflow tfoot:last-child tr:last-child td,.table-reflow tfoot:last-child tr:last-child th,.table-reflow thead:last-child tr:last-child td,.table-reflow thead:last-child tr:last-child th{border-bottom:1px solid #eceeef}.table-reflow tr{float:left}.table-reflow tr td,.table-reflow tr th{display:block!important;border:1px solid #eceeef}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#55595c;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{border-color:#66afe9;outline:0}.form-control::-webkit-input-placeholder{color:#999;opacity:1}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999;opacity:1}.form-control::placeholder{color:#999;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eceeef;opacity:1}.form-control:disabled{cursor:not-allowed}.form-control-file,.form-control-range{display:block}.form-control-label{padding:.375rem .75rem;margin-bottom:0}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:2.25rem}.input-group-sm input[type=date].form-control,.input-group-sm input[type=time].form-control,.input-group-sm input[type=datetime-local].form-control,.input-group-sm input[type=month].form-control,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:1.8625rem}.input-group-lg input[type=date].form-control,.input-group-lg input[type=time].form-control,.input-group-lg input[type=datetime-local].form-control,.input-group-lg input[type=month].form-control,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:3.166667rem}}.form-control-static{min-height:2.25rem;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0}.form-control-static.form-control-lg,.form-control-static.form-control-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:.275rem .75rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:.75rem 1.25rem;font-size:1.25rem;line-height:1.333333;border-radius:.3rem}.form-group{margin-bottom:1rem}.checkbox,.radio{position:relative;display:block;margin-bottom:.75rem}.checkbox label,.radio label{padding-left:1.25rem;margin-bottom:0;cursor:pointer}.checkbox label input:only-child,.radio label input:only-child{position:static}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:.25rem;margin-left:-1.25rem}.checkbox+.checkbox,.radio+.radio{margin-top:-.25rem}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:1.25rem;margin-bottom:0;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:.75rem}input[type=checkbox].disabled,input[type=checkbox]:disabled,input[type=radio].disabled,input[type=radio]:disabled{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label{cursor:not-allowed}.form-control-danger,.form-control-success,.form-control-warning{padding-right:2.25rem;background-repeat:no-repeat;background-position:center right .5625rem;-webkit-background-size:1.4625rem 1.4625rem;background-size:1.4625rem 1.4625rem}.has-success .checkbox,.has-success .checkbox-inline,.has-success .form-control-label,.has-success .radio,.has-success .radio-inline,.has-success .text-help,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#5cb85c}.has-success .form-control{border-color:#5cb85c}.has-success .input-group-addon{color:#5cb85c;background-color:#eaf6ea;border-color:#5cb85c}.has-success .form-control-feedback{color:#5cb85c}.has-success .form-control-success{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==)}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .form-control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning .text-help,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#f0ad4e}.has-warning .form-control{border-color:#f0ad4e}.has-warning .input-group-addon{color:#f0ad4e;background-color:#fff;border-color:#f0ad4e}.has-warning .form-control-feedback{color:#f0ad4e}.has-warning .form-control-warning{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+)}.has-danger .checkbox,.has-danger .checkbox-inline,.has-danger .form-control-label,.has-danger .radio,.has-danger .radio-inline,.has-danger .text-help,.has-danger.checkbox label,.has-danger.checkbox-inline label,.has-danger.radio label,.has-danger.radio-inline label{color:#d9534f}.has-danger .form-control{border-color:#d9534f}.has-danger .input-group-addon{color:#d9534f;background-color:#fdf7f7;border-color:#d9534f}.has-danger .form-control-feedback{color:#d9534f}.has-danger .form-control-danger{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=)}@media (min-width:544px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .form-control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.btn{display:inline-block;padding:.375rem 1rem;font-size:1rem;font-weight:400;line-height:1.5;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:.25rem}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:focus,.btn:hover{text-decoration:none}.btn.focus{text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-primary:hover{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#025aa5;background-image:none;border-color:#01549b}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#014682;border-color:#01315a}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary:disabled.focus,.btn-primary:disabled:focus{background-color:#0275d8;border-color:#0275d8}.btn-primary.disabled:hover,.btn-primary:disabled:hover{background-color:#0275d8;border-color:#0275d8}.btn-secondary{color:#373a3c;background-color:#fff;border-color:#ccc}.btn-secondary:hover{color:#373a3c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.focus,.btn-secondary:focus{color:#373a3c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.active,.btn-secondary:active,.open>.btn-secondary.dropdown-toggle{color:#373a3c;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.btn-secondary.dropdown-toggle.focus,.open>.btn-secondary.dropdown-toggle:focus,.open>.btn-secondary.dropdown-toggle:hover{color:#373a3c;background-color:#d4d4d4;border-color:#8c8c8c}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary:disabled.focus,.btn-secondary:disabled:focus{background-color:#fff;border-color:#ccc}.btn-secondary.disabled:hover,.btn-secondary:disabled:hover{background-color:#fff;border-color:#ccc}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;background-image:none;border-color:#2aabd2}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1f7e9a}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info:disabled.focus,.btn-info:disabled:focus{background-color:#5bc0de;border-color:#5bc0de}.btn-info.disabled:hover,.btn-info:disabled:hover{background-color:#5bc0de;border-color:#5bc0de}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;background-image:none;border-color:#419641}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success:disabled.focus,.btn-success:disabled:focus{background-color:#5cb85c;border-color:#5cb85c}.btn-success.disabled:hover,.btn-success:disabled:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;background-image:none;border-color:#eb9316}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#b06d0f}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning:disabled.focus,.btn-warning:disabled:focus{background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning.disabled:hover,.btn-warning:disabled:hover{background-color:#f0ad4e;border-color:#f0ad4e}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;background-image:none;border-color:#c12e2a}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger:disabled.focus,.btn-danger:disabled:focus{background-color:#d9534f;border-color:#d9534f}.btn-danger.disabled:hover,.btn-danger:disabled:hover{background-color:#d9534f;border-color:#d9534f}.btn-outline-primary{color:#0275d8;background-color:transparent;background-image:none;border-color:#0275d8}.btn-outline-primary.active,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:focus,.open>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-outline-primary:hover{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-outline-primary.disabled.focus,.btn-outline-primary.disabled:focus,.btn-outline-primary:disabled.focus,.btn-outline-primary:disabled:focus{border-color:#43a7fd}.btn-outline-primary.disabled:hover,.btn-outline-primary:disabled:hover{border-color:#43a7fd}.btn-outline-secondary{color:#ccc;background-color:transparent;background-image:none;border-color:#ccc}.btn-outline-secondary.active,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:focus,.open>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#ccc;border-color:#ccc}.btn-outline-secondary:hover{color:#fff;background-color:#ccc;border-color:#ccc}.btn-outline-secondary.disabled.focus,.btn-outline-secondary.disabled:focus,.btn-outline-secondary:disabled.focus,.btn-outline-secondary:disabled:focus{border-color:#fff}.btn-outline-secondary.disabled:hover,.btn-outline-secondary:disabled:hover{border-color:#fff}.btn-outline-info{color:#5bc0de;background-color:transparent;background-image:none;border-color:#5bc0de}.btn-outline-info.active,.btn-outline-info.focus,.btn-outline-info:active,.btn-outline-info:focus,.open>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info.disabled.focus,.btn-outline-info.disabled:focus,.btn-outline-info:disabled.focus,.btn-outline-info:disabled:focus{border-color:#b0e1ef}.btn-outline-info.disabled:hover,.btn-outline-info:disabled:hover{border-color:#b0e1ef}.btn-outline-success{color:#5cb85c;background-color:transparent;background-image:none;border-color:#5cb85c}.btn-outline-success.active,.btn-outline-success.focus,.btn-outline-success:active,.btn-outline-success:focus,.open>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success.disabled.focus,.btn-outline-success.disabled:focus,.btn-outline-success:disabled.focus,.btn-outline-success:disabled:focus{border-color:#a3d7a3}.btn-outline-success.disabled:hover,.btn-outline-success:disabled:hover{border-color:#a3d7a3}.btn-outline-warning{color:#f0ad4e;background-color:transparent;background-image:none;border-color:#f0ad4e}.btn-outline-warning.active,.btn-outline-warning.focus,.btn-outline-warning:active,.btn-outline-warning:focus,.open>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning.disabled.focus,.btn-outline-warning.disabled:focus,.btn-outline-warning:disabled.focus,.btn-outline-warning:disabled:focus{border-color:#f8d9ac}.btn-outline-warning.disabled:hover,.btn-outline-warning:disabled:hover{border-color:#f8d9ac}.btn-outline-danger{color:#d9534f;background-color:transparent;background-image:none;border-color:#d9534f}.btn-outline-danger.active,.btn-outline-danger.focus,.btn-outline-danger:active,.btn-outline-danger:focus,.open>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger.disabled.focus,.btn-outline-danger.disabled:focus,.btn-outline-danger:disabled.focus,.btn-outline-danger:disabled:focus{border-color:#eba5a3}.btn-outline-danger.disabled:hover,.btn-outline-danger:disabled:hover{border-color:#eba5a3}.btn-link{font-weight:400;color:#0275d8;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link:disabled{background-color:transparent}.btn-link,.btn-link:active,.btn-link:focus{border-color:transparent}.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#014c8c;text-decoration:underline;background-color:transparent}.btn-link:disabled:focus,.btn-link:disabled:hover{color:#818a91;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.25rem;font-size:1.25rem;line-height:1.333333;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .75rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height;-o-transition-property:height;transition-property:height}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.25rem;margin-left:.25rem;vertical-align:middle;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-left:.3em solid transparent}.dropdown-toggle:focus{outline:0}.dropup .dropdown-toggle::after{border-top:0;border-bottom:.3em solid}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:1rem;color:#373a3c;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-divider{height:1px;margin:.5rem 0;overflow:hidden;background-color:#e5e5e5}.dropdown-item{display:block;width:100%;padding:3px 20px;clear:both;font-weight:400;line-height:1.5;color:#373a3c;text-align:inherit;white-space:nowrap;background:0 0;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#2b2d2f;text-decoration:none;background-color:#f5f5f5}.dropdown-item.active,.dropdown-item.active:focus,.dropdown-item.active:hover{color:#fff;text-decoration:none;background-color:#0275d8;outline:0}.dropdown-item.disabled,.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{color:#818a91}.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:"progid:DXImageTransform.Microsoft.gradient(enabled = false)"}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:.875rem;line-height:1.5;color:#818a91;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:.3em solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.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:2}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar::after{display:table;clear:both;content:""}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn .caret{margin-left:0}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:.3em .3em 0;border-bottom-width:0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 .3em .3em}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group::after{display:table;clear:both;content:""}.btn-group-vertical>.btn-group>.btn{float:none}.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:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:.25rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.25rem}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:active,.input-group .form-control:focus,.input-group .form-control:hover{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1;color:#55595c;text-align:center;background-color:#eceeef;border:1px solid #ccc;border-radius:.25rem}.input-group-addon.form-control-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:.275rem .75rem;font-size:.875rem;border-radius:.2rem}.input-group-addon.form-control-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:.75rem 1.25rem;font-size:1.25rem;border-radius:.3rem}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:3}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.input-group-btn:last-child>.btn-group:active,.input-group-btn:last-child>.btn-group:focus,.input-group-btn:last-child>.btn-group:hover,.input-group-btn:last-child>.btn:active,.input-group-btn:last-child>.btn:focus,.input-group-btn:last-child>.btn:hover{z-index:3}.custom-control{position:relative;display:inline;padding-left:1.5rem;color:#555}.custom-control+.custom-control{margin-left:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-indicator{color:#fff;background-color:#0074d9}.custom-control-input:focus~.custom-control-indicator{-webkit-box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9;box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9}.custom-control-input:active~.custom-control-indicator{color:#fff;background-color:#84c6ff}.custom-control-input:disabled~.custom-control-indicator{cursor:not-allowed;background-color:#eee}.custom-control-input:disabled~.custom-control-description{color:#767676;cursor:not-allowed}.custom-control-indicator{position:absolute;top:.0625rem;left:0;display:block;width:1rem;height:1rem;font-size:65%;line-height:1rem;color:#eee;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#ddd;background-repeat:no-repeat;background-position:center center;-webkit-background-size:50% 50%;background-size:50% 50%}.custom-checkbox .custom-control-indicator{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-indicator{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=)}.custom-checkbox .custom-control-input:indeterminate~.custom-control-indicator{background-color:#0074d9;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K)}.custom-radio .custom-control-indicator{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-indicator{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==)}.custom-controls-stacked .custom-control{display:inline}.custom-controls-stacked .custom-control::after{display:block;margin-bottom:.25rem;content:""}.custom-controls-stacked .custom-control+.custom-control{margin-left:0}.custom-select{display:inline-block;max-width:100%;-webkit-appearance:none;padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem\9;color:#55595c;vertical-align:middle;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;background-image:none\9;-webkit-background-size:8px 10px;background-size:8px 10px;border:1px solid #ccc;border-radius:.25rem;-moz-appearance:none}.custom-select:focus{border-color:#51a7e8;outline:0}.custom-select::-ms-expand{opacity:0}.custom-select-sm{padding-top:3px;padding-bottom:3px;font-size:12px}.custom-select-sm:not([multiple]){height:26px;min-height:26px}.custom-file{position:relative;display:inline-block;max-width:100%;height:2.5rem;cursor:pointer}.custom-file-input{min-width:14rem;max-width:100%;margin:0;filter:alpha(opacity=0);opacity:0}.custom-file-control{position:absolute;top:0;right:0;left:0;z-index:5;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;border:1px solid #ddd;border-radius:.25rem}.custom-file-control::after{content:"Choose file..."}.custom-file-control::before{position:absolute;top:-.075rem;right:-.075rem;bottom:-.075rem;z-index:6;display:block;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;content:"Browse";background-color:#eee;border:1px solid #ddd;border-radius:0 .25rem .25rem 0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:inline-block}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#818a91}.nav-link.disabled,.nav-link.disabled:focus,.nav-link.disabled:hover{color:#818a91;cursor:not-allowed;background-color:transparent}.nav-inline .nav-item{display:inline-block}.nav-inline .nav-item+.nav-item,.nav-inline .nav-link+.nav-link{margin-left:1rem}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs::after{display:table;clear:both;content:""}.nav-tabs .nav-item{float:left;margin-bottom:-1px}.nav-tabs .nav-item+.nav-item{margin-left:.2rem}.nav-tabs .nav-link{display:block;padding:.5em 1em;border:1px solid transparent;border-radius:.25rem .25rem 0 0}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eceeef #eceeef #ddd}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link.disabled:focus,.nav-tabs .nav-link.disabled:hover{color:#818a91;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover,.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover{color:#55595c;background-color:#fff;border-color:#ddd #ddd transparent}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills::after{display:table;clear:both;content:""}.nav-pills .nav-item{float:left}.nav-pills .nav-item+.nav-item{margin-left:.2rem}.nav-pills .nav-link{display:block;padding:.5em 1em;border-radius:.25rem}.nav-pills .nav-item.open .nav-link,.nav-pills .nav-item.open .nav-link:focus,.nav-pills .nav-item.open .nav-link:hover,.nav-pills .nav-link.active,.nav-pills .nav-link.active:focus,.nav-pills .nav-link.active:hover{color:#fff;cursor:default;background-color:#0275d8}.nav-stacked .nav-item{display:block;float:none}.nav-stacked .nav-item+.nav-item{margin-top:.2rem;margin-left:0}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar::after{display:table;clear:both;content:""}@media (min-width:544px){.navbar{border-radius:.25rem}}.navbar-full{z-index:1000}@media (min-width:544px){.navbar-full{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:544px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0}.navbar-fixed-bottom{bottom:0}.navbar-sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1030;width:100%}@media (min-width:544px){.navbar-sticky-top{border-radius:0}}.navbar-brand{float:left;padding-top:.25rem;padding-bottom:.25rem;margin-right:1rem;font-size:1.25rem}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}.navbar-divider{float:left;width:1px;padding-top:.425rem;padding-bottom:.425rem;margin-right:1rem;margin-left:1rem;overflow:hidden}.navbar-divider::before{content:"\00a0"}.navbar-toggler{padding:.5rem .75rem;font-size:1.25rem;line-height:1;background:0 0;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}@media (min-width:544px){.navbar-toggleable-xs{display:block!important}}@media (min-width:768px){.navbar-toggleable-sm{display:block!important}}@media (min-width:992px){.navbar-toggleable-md{display:block!important}}.navbar-nav .nav-item{float:left}.navbar-nav .nav-link{display:block;padding-top:.425rem;padding-bottom:.425rem}.navbar-nav .nav-link+.nav-link{margin-left:1rem}.navbar-nav .nav-item+.nav-item{margin-left:1rem}.navbar-light .navbar-brand{color:rgba(0,0,0,.8)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.6)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .active>.nav-link:focus,.navbar-light .navbar-nav .active>.nav-link:hover,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.active:focus,.navbar-light .navbar-nav .nav-link.active:hover,.navbar-light .navbar-nav .nav-link.open,.navbar-light .navbar-nav .nav-link.open:focus,.navbar-light .navbar-nav .nav-link.open:hover,.navbar-light .navbar-nav .open>.nav-link,.navbar-light .navbar-nav .open>.nav-link:focus,.navbar-light .navbar-nav .open>.nav-link:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-divider{background-color:rgba(0,0,0,.075)}.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 .active>.nav-link,.navbar-dark .navbar-nav .active>.nav-link:focus,.navbar-dark .navbar-nav .active>.nav-link:hover,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.active:focus,.navbar-dark .navbar-nav .nav-link.active:hover,.navbar-dark .navbar-nav .nav-link.open,.navbar-dark .navbar-nav .nav-link.open:focus,.navbar-dark .navbar-nav .nav-link.open:hover,.navbar-dark .navbar-nav .open>.nav-link,.navbar-dark .navbar-nav .open>.nav-link:focus,.navbar-dark .navbar-nav .open>.nav-link:hover{color:#fff}.navbar-dark .navbar-divider{background-color:rgba(255,255,255,.075)}.card{position:relative;display:block;margin-bottom:.75rem;background-color:#fff;border:1px solid #e5e5e5;border-radius:.25rem}.card-block{padding:1.25rem}.card-block::after{display:table;clear:both;content:""}.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>.list-group:first-child .list-group-item:first-child{border-radius:.25rem .25rem 0 0}.card>.list-group:last-child .list-group-item:last-child{border-radius:0 0 .25rem .25rem}.card-header{padding:.75rem 1.25rem;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.card-header::after{display:table;clear:both;content:""}.card-header:first-child{border-radius:.25rem .25rem 0 0}.card-footer{padding:.75rem 1.25rem;background-color:#f5f5f5;border-top:1px solid #e5e5e5}.card-footer::after{display:table;clear:both;content:""}.card-footer:last-child{border-radius:0 0 .25rem .25rem}.card-primary{background-color:#0275d8;border-color:#0275d8}.card-success{background-color:#5cb85c;border-color:#5cb85c}.card-info{background-color:#5bc0de;border-color:#5bc0de}.card-warning{background-color:#f0ad4e;border-color:#f0ad4e}.card-danger{background-color:#d9534f;border-color:#d9534f}.card-outline-primary{background-color:transparent;border-color:#0275d8}.card-outline-secondary{background-color:transparent;border-color:#ccc}.card-outline-info{background-color:transparent;border-color:#5bc0de}.card-outline-success{background-color:transparent;border-color:#5cb85c}.card-outline-warning{background-color:transparent;border-color:#f0ad4e}.card-outline-danger{background-color:transparent;border-color:#d9534f}.card-inverse .card-footer,.card-inverse .card-header{border-bottom:1px solid rgba(255,255,255,.2)}.card-inverse .card-blockquote,.card-inverse .card-footer,.card-inverse .card-header,.card-inverse .card-title{color:#fff}.card-inverse .card-blockquote>footer,.card-inverse .card-link,.card-inverse .card-text{color:rgba(255,255,255,.65)}.card-inverse .card-link:focus,.card-inverse .card-link:hover{color:#fff}.card-blockquote{padding:0;margin-bottom:0;border-left:0}.card-img{border-radius:.25rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img-top{border-radius:.25rem .25rem 0 0}.card-img-bottom{border-radius:0 0 .25rem .25rem}@media (min-width:544px){.card-deck{display:table;table-layout:fixed;border-spacing:1.25rem 0}.card-deck .card{display:table-cell;width:1%;vertical-align:top}.card-deck-wrapper{margin-right:-1.25rem;margin-left:-1.25rem}}@media (min-width:544px){.card-group{display:table;width:100%;table-layout:fixed}.card-group .card{display:table-cell;vertical-align:top}.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-img-top{border-top-right-radius:0}.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-img-top{border-top-left-radius:0}.card-group .card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group .card:not(:first-child):not(:last-child){border-radius:0}.card-group .card:not(:first-child):not(:last-child) .card-img-bottom,.card-group .card:not(:first-child):not(:last-child) .card-img-top{border-radius:0}}@media (min-width:544px){.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}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#eceeef;border-radius:.25rem}.breadcrumb::after{display:table;clear:both;content:""}.breadcrumb-item{float:left}.breadcrumb-item+.breadcrumb-item::before{padding-right:.5rem;padding-left:.5rem;color:#818a91;content:"/"}.breadcrumb-item.active{color:#818a91}.pagination{display:inline-block;padding-left:0;margin-top:1rem;margin-bottom:1rem;border-radius:.25rem}.page-item{display:inline}.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,.page-item.active .page-link:focus,.page-item.active .page-link:hover{z-index:2;color:#fff;cursor:default;background-color:#0275d8;border-color:#0275d8}.page-item.disabled .page-link,.page-item.disabled .page-link:focus,.page-item.disabled .page-link:hover{color:#818a91;pointer-events:none;cursor:not-allowed;background-color:#fff;border-color:#ddd}.page-link{position:relative;float:left;padding:.5rem .75rem;margin-left:-1px;line-height:1.5;color:#0275d8;text-decoration:none;background-color:#fff;border:1px solid #ddd}.page-link:focus,.page-link:hover{color:#014c8c;background-color:#eceeef;border-color:#ddd}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.333333}.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:.275rem .75rem;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}.label{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.label-default{background-color:#818a91}.label-default[href]:focus,.label-default[href]:hover{background-color:#687077}.label-primary{background-color:#0275d8}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#025aa5}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#eceeef;border-radius:.3rem}@media (min-width:544px){.jumbotron{padding:4rem 2rem}}.jumbotron-hr{border-top-color:#d0d5d8}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{padding:15px;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:35px}.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d0e9c6}.alert-success hr{border-top-color:#c1e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bcdff1}.alert-info hr{border-top-color:#a6d5ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faf2cc}.alert-warning hr{border-top-color:#f7ecb5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebcccc}.alert-danger hr{border-top-color:#e4b9b9}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-o-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:block;width:100%;height:1rem;margin-bottom:1rem}.progress[value]{-webkit-appearance:none;background-color:#eee;border:0;border-radius:.25rem;-moz-appearance:none;appearance:none}.progress[value]::-ms-fill{background-color:#0074d9;border:0}.progress[value]::-moz-progress-bar{background-color:#0074d9;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.progress[value]::-webkit-progress-value{background-color:#0074d9;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.progress[value="100"]::-moz-progress-bar{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.progress[value="100"]::-webkit-progress-value{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.progress[value]::-webkit-progress-bar{background-color:#eee;border-radius:.25rem}.progress[value],base::-moz-progress-bar{background-color:#eee;border-radius:.25rem}@media screen and (min-width:0\0){.progress{background-color:#eee;border-radius:.25rem}.progress-bar{display:inline-block;height:1rem;text-indent:-999rem;background-color:#0074d9;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.progress[width="100%"]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}}.progress-striped[value]::-webkit-progress-value{background-image:-webkit-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-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);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}.progress-striped[value]::-moz-progress-bar{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-striped[value]::-ms-fill{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}@media screen and (min-width:0\0){.progress-bar-striped{background-image:-webkit-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-image:-o-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-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);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}}.progress-animated[value]::-webkit-progress-value{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-animated[value]::-moz-progress-bar{animation:progress-bar-stripes 2s linear infinite}@media screen and (min-width:0\0){.progress-animated .progress-bar-striped{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}}.progress-success[value]::-webkit-progress-value{background-color:#5cb85c}.progress-success[value]::-moz-progress-bar{background-color:#5cb85c}.progress-success[value]::-ms-fill{background-color:#5cb85c}@media screen and (min-width:0\0){.progress-success .progress-bar{background-color:#5cb85c}}.progress-info[value]::-webkit-progress-value{background-color:#5bc0de}.progress-info[value]::-moz-progress-bar{background-color:#5bc0de}.progress-info[value]::-ms-fill{background-color:#5bc0de}@media screen and (min-width:0\0){.progress-info .progress-bar{background-color:#5bc0de}}.progress-warning[value]::-webkit-progress-value{background-color:#f0ad4e}.progress-warning[value]::-moz-progress-bar{background-color:#f0ad4e}.progress-warning[value]::-ms-fill{background-color:#f0ad4e}@media screen and (min-width:0\0){.progress-warning .progress-bar{background-color:#f0ad4e}}.progress-danger[value]::-webkit-progress-value{background-color:#d9534f}.progress-danger[value]::-moz-progress-bar{background-color:#d9534f}.progress-danger[value]::-ms-fill{background-color:#d9534f}@media screen and (min-width:0\0){.progress-danger .progress-bar{background-color:#d9534f}}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden}.media-body{width:10000px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right{padding-left:10px}.media-left{padding-right:10px}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:0}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.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-flush .list-group-item{border-width:1px 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}a.list-group-item,button.list-group-item{width:100%;color:#555;text-align:inherit}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#818a91;cursor:not-allowed;background-color:#eceeef}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#818a91}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#0275d8;border-color:#0275d8}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#a8d6fe}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.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{padding-bottom:42.857143%}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.embed-responsive-1by1{padding-bottom:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out,-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;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.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header::after{display:table;clear:both;content:""}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer::after{display:table;clear:both;content:""}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:544px){.modal-dialog{width:600px;margin:30px auto}.modal-sm{width:300px}}@media (min-width:768px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.875rem;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;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.tooltip.in{opacity:.9}.tooltip.bs-tether-element-attached-bottom,.tooltip.tooltip-top{padding:5px 0;margin-top:-3px}.tooltip.bs-tether-element-attached-bottom .tooltip-arrow,.tooltip.tooltip-top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.bs-tether-element-attached-left,.tooltip.tooltip-right{padding:0 5px;margin-left:3px}.tooltip.bs-tether-element-attached-left .tooltip-arrow,.tooltip.tooltip-right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.bs-tether-element-attached-top,.tooltip.tooltip-bottom{padding:5px 0;margin-top:3px}.tooltip.bs-tether-element-attached-top .tooltip-arrow,.tooltip.tooltip-bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bs-tether-element-attached-right,.tooltip.tooltip-left{padding:0 5px;margin-left:-3px}.tooltip.bs-tether-element-attached-right .tooltip-arrow,.tooltip.tooltip-left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.875rem;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;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;line-break:auto}.popover.bs-tether-element-attached-bottom,.popover.popover-top{margin-top:-10px}.popover.bs-tether-element-attached-bottom .popover-arrow,.popover.popover-top .popover-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.bs-tether-element-attached-bottom .popover-arrow::after,.popover.popover-top .popover-arrow::after{bottom:1px;margin-left:-10px;content:"";border-top-color:#fff;border-bottom-width:0}.popover.bs-tether-element-attached-left,.popover.popover-right{margin-left:10px}.popover.bs-tether-element-attached-left .popover-arrow,.popover.popover-right .popover-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.bs-tether-element-attached-left .popover-arrow::after,.popover.popover-right .popover-arrow::after{bottom:-10px;left:1px;content:"";border-right-color:#fff;border-left-width:0}.popover.bs-tether-element-attached-top,.popover.popover-bottom{margin-top:10px}.popover.bs-tether-element-attached-top .popover-arrow,.popover.popover-bottom .popover-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-top .popover-arrow::after,.popover.popover-bottom .popover-arrow::after{top:1px;margin-left:-10px;content:"";border-top-width:0;border-bottom-color:#fff}.popover.bs-tether-element-attached-right,.popover.popover-left{margin-left:-10px}.popover.bs-tether-element-attached-right .popover-arrow,.popover.popover-left .popover-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-right .popover-arrow::after,.popover.popover-left .popover-arrow::after{right:1px;bottom:-10px;content:"";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:.2375rem .2375rem 0 0}.popover-content{padding:9px 14px}.popover-arrow,.popover-arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover-arrow{border-width:11px}.popover-arrow::after{content:"";border-width:10px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.carousel-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.carousel-item>a>img,.carousel-inner>.carousel-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.carousel-item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out,-o-transform .6s ease-in-out;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,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.carousel-item.active.right,.carousel-inner>.carousel-item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.carousel-item.active.left,.carousel-inner>.carousel-item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.carousel-item.active,.carousel-inner>.carousel-item.next.left,.carousel-inner>.carousel-item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);opacity:.5}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-prev::before{content:"\2039"}.carousel-control .icon-next::before{content:"\203a"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:transparent;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;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;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media (min-width:544px){.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .icon-prev{margin-left:-15px}.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.bg-inverse{color:#eceeef;background-color:#373a3c}.bg-faded{background-color:#f7f7f9}.bg-primary{color:#fff!important;background-color:#0275d8!important}a.bg-primary:focus,a.bg-primary:hover{background-color:#025aa5!important}.bg-success{color:#fff!important;background-color:#5cb85c!important}a.bg-success:focus,a.bg-success:hover{background-color:#449d44!important}.bg-info{color:#fff!important;background-color:#5bc0de!important}a.bg-info:focus,a.bg-info:hover{background-color:#31b0d5!important}.bg-warning{color:#fff!important;background-color:#f0ad4e!important}a.bg-warning:focus,a.bg-warning:hover{background-color:#ec971f!important}.bg-danger{color:#fff!important;background-color:#d9534f!important}a.bg-danger:focus,a.bg-danger:hover{background-color:#c9302c!important}.center-block{display:block;margin-right:auto;margin-left:auto}.clearfix::after{display:table;clear:both;content:""}.pull-xs-left{float:left!important}.pull-xs-right{float:right!important}.pull-xs-none{float:none!important}@media (min-width:544px){.pull-sm-left{float:left!important}.pull-sm-right{float:right!important}.pull-sm-none{float:none!important}}@media (min-width:768px){.pull-md-left{float:left!important}.pull-md-right{float:right!important}.pull-md-none{float:none!important}}@media (min-width:992px){.pull-lg-left{float:left!important}.pull-lg-right{float:right!important}.pull-lg-none{float:none!important}}@media (min-width:1200px){.pull-xl-left{float:left!important}.pull-xl-right{float:right!important}.pull-xl-none{float:none!important}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.m-x-auto{margin-right:auto!important;margin-left:auto!important}.m-a-0{margin:0 0!important}.m-t-0{margin-top:0!important}.m-r-0{margin-right:0!important}.m-b-0{margin-bottom:0!important}.m-l-0{margin-left:0!important}.m-x-0{margin-right:0!important;margin-left:0!important}.m-y-0{margin-top:0!important;margin-bottom:0!important}.m-a-1{margin:1rem 1rem!important}.m-t-1{margin-top:1rem!important}.m-r-1{margin-right:1rem!important}.m-b-1{margin-bottom:1rem!important}.m-l-1{margin-left:1rem!important}.m-x-1{margin-right:1rem!important;margin-left:1rem!important}.m-y-1{margin-top:1rem!important;margin-bottom:1rem!important}.m-a-2{margin:1.5rem 1.5rem!important}.m-t-2{margin-top:1.5rem!important}.m-r-2{margin-right:1.5rem!important}.m-b-2{margin-bottom:1.5rem!important}.m-l-2{margin-left:1.5rem!important}.m-x-2{margin-right:1.5rem!important;margin-left:1.5rem!important}.m-y-2{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-a-3{margin:3rem 3rem!important}.m-t-3{margin-top:3rem!important}.m-r-3{margin-right:3rem!important}.m-b-3{margin-bottom:3rem!important}.m-l-3{margin-left:3rem!important}.m-x-3{margin-right:3rem!important;margin-left:3rem!important}.m-y-3{margin-top:3rem!important;margin-bottom:3rem!important}.p-a-0{padding:0 0!important}.p-t-0{padding-top:0!important}.p-r-0{padding-right:0!important}.p-b-0{padding-bottom:0!important}.p-l-0{padding-left:0!important}.p-x-0{padding-right:0!important;padding-left:0!important}.p-y-0{padding-top:0!important;padding-bottom:0!important}.p-a-1{padding:1rem 1rem!important}.p-t-1{padding-top:1rem!important}.p-r-1{padding-right:1rem!important}.p-b-1{padding-bottom:1rem!important}.p-l-1{padding-left:1rem!important}.p-x-1{padding-right:1rem!important;padding-left:1rem!important}.p-y-1{padding-top:1rem!important;padding-bottom:1rem!important}.p-a-2{padding:1.5rem 1.5rem!important}.p-t-2{padding-top:1.5rem!important}.p-r-2{padding-right:1.5rem!important}.p-b-2{padding-bottom:1.5rem!important}.p-l-2{padding-left:1.5rem!important}.p-x-2{padding-right:1.5rem!important;padding-left:1.5rem!important}.p-y-2{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-a-3{padding:3rem 3rem!important}.p-t-3{padding-top:3rem!important}.p-r-3{padding-right:3rem!important}.p-b-3{padding-bottom:3rem!important}.p-l-3{padding-left:3rem!important}.p-x-3{padding-right:3rem!important;padding-left:3rem!important}.p-y-3{padding-top:3rem!important;padding-bottom:3rem!important}.pos-f-t{position:fixed;top:0;right:0;left:0;z-index:1030}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-xs-left{text-align:left!important}.text-xs-right{text-align:right!important}.text-xs-center{text-align:center!important}@media (min-width:544px){.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-normal{font-weight:400}.font-weight-bold{font-weight:700}.font-italic{font-style:italic}.text-muted{color:#818a91}.text-primary{color:#0275d8!important}a.text-primary:focus,a.text-primary:hover{color:#025aa5}.text-success{color:#5cb85c!important}a.text-success:focus,a.text-success:hover{color:#449d44}.text-info{color:#5bc0de!important}a.text-info:focus,a.text-info:hover{color:#31b0d5}.text-warning{color:#f0ad4e!important}a.text-warning:focus,a.text-warning:hover{color:#ec971f}.text-danger{color:#d9534f!important}a.text-danger:focus,a.text-danger:hover{color:#c9302c}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.invisible{visibility:hidden!important}.hidden-xs-up{display:none!important}@media (max-width:543px){.hidden-xs-down{display:none!important}}@media (min-width:544px){.hidden-sm-up{display:none!important}}@media (max-width:767px){.hidden-sm-down{display:none!important}}@media (min-width:768px){.hidden-md-up{display:none!important}}@media (max-width:991px){.hidden-md-down{display:none!important}}@media (min-width:992px){.hidden-lg-up{display:none!important}}@media (max-width:1199px){.hidden-lg-down{display:none!important}}@media (min-width:1200px){.hidden-xl-up{display:none!important}}.hidden-xl-down{display:none!important}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} + *//*! normalize.css commit fe56763 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active{outline:0}a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*,::after,::before,::first-letter,::first-line{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #999;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}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{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 #ddd!important}}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}html{font-size:16px;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif;font-size:1rem;line-height:1.5;color:#373a3c;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}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]{cursor:help;border-bottom:1px dotted #818a91}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}a{color:#0275d8;text-decoration:none}a:focus,a:hover{color:#014c8c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}pre{margin-top:0;margin-bottom:1rem}figure{margin:0 0 1rem}img{vertical-align:middle}[role=button]{cursor:pointer}[role=button],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{background-color:transparent}caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,select,textarea{margin:0;line-height:inherit;border-radius:0}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}input[type=search]{-webkit-appearance:none}output{display:inline-block}[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.1;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}.display-2{font-size:5.5rem;font-weight:300}.display-3{font-size:4.5rem;font-weight:300}.display-4{font-size:3.5rem;font-weight:300}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:5px}.initialism{font-size:90%;text-transform:uppercase}.blockquote{padding:.5rem 1rem;margin-bottom:1rem;font-size:1.25rem;border-left:.25rem solid #eceeef}.blockquote-footer{display:block;font-size:80%;color:#818a91}.blockquote-footer::before{content:"\2014 \00A0"}.blockquote-reverse{padding-right:1rem;padding-left:0;text-align:right;border-right:.25rem solid #eceeef;border-left:0}.blockquote-reverse .blockquote-footer::before{content:""}.blockquote-reverse .blockquote-footer::after{content:"\00A0 \2014"}dl.row>dd+dt{clear:left}.carousel-inner>.carousel-item>a>img,.carousel-inner>.carousel-item>img,.img-fluid{display:block;max-width:100%;height:auto}.img-rounded{border-radius:.3rem}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #ddd;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#818a91}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{padding:.2rem .4rem;font-size:90%;color:#bd4147;background-color:#f7f7f9;border-radius:.25rem}kbd{padding:.2rem .4rem;font-size:90%;color:#fff;background-color:#333;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;margin-top:0;margin-bottom:1rem;font-size:90%;color:#373a3c}pre code{padding:0;font-size:inherit;color:inherit;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container::after{content:"";display:table;clear:both}@media (min-width:544px){.container{max-width:576px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:940px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container-fluid::after{content:"";display:table;clear:both}.row{margin-left:-15px;margin-right:-15px}.row::after{content:"";display:table;clear:both}.col-xs-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:8.333333%}.col-xs-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:16.666667%}.col-xs-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:25%}.col-xs-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:33.333333%}.col-xs-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:41.666667%}.col-xs-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:50%}.col-xs-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:58.333333%}.col-xs-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:66.666667%}.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:75%}.col-xs-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:83.333333%}.col-xs-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:91.666667%}.col-xs-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:100%}.pull-xs-0{right:auto}.pull-xs-1{right:8.333333%}.pull-xs-2{right:16.666667%}.pull-xs-3{right:25%}.pull-xs-4{right:33.333333%}.pull-xs-5{right:41.666667%}.pull-xs-6{right:50%}.pull-xs-7{right:58.333333%}.pull-xs-8{right:66.666667%}.pull-xs-9{right:75%}.pull-xs-10{right:83.333333%}.pull-xs-11{right:91.666667%}.pull-xs-12{right:100%}.push-xs-0{left:auto}.push-xs-1{left:8.333333%}.push-xs-2{left:16.666667%}.push-xs-3{left:25%}.push-xs-4{left:33.333333%}.push-xs-5{left:41.666667%}.push-xs-6{left:50%}.push-xs-7{left:58.333333%}.push-xs-8{left:66.666667%}.push-xs-9{left:75%}.push-xs-10{left:83.333333%}.push-xs-11{left:91.666667%}.push-xs-12{left:100%}.offset-xs-1{margin-left:8.333333%}.offset-xs-2{margin-left:16.666667%}.offset-xs-3{margin-left:25%}.offset-xs-4{margin-left:33.333333%}.offset-xs-5{margin-left:41.666667%}.offset-xs-6{margin-left:50%}.offset-xs-7{margin-left:58.333333%}.offset-xs-8{margin-left:66.666667%}.offset-xs-9{margin-left:75%}.offset-xs-10{margin-left:83.333333%}.offset-xs-11{margin-left:91.666667%}@media (min-width:544px){.col-sm-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:8.333333%}.col-sm-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:16.666667%}.col-sm-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:25%}.col-sm-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:33.333333%}.col-sm-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:41.666667%}.col-sm-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:50%}.col-sm-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:58.333333%}.col-sm-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:66.666667%}.col-sm-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:75%}.col-sm-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:83.333333%}.col-sm-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:91.666667%}.col-sm-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:100%}.pull-sm-0{right:auto}.pull-sm-1{right:8.333333%}.pull-sm-2{right:16.666667%}.pull-sm-3{right:25%}.pull-sm-4{right:33.333333%}.pull-sm-5{right:41.666667%}.pull-sm-6{right:50%}.pull-sm-7{right:58.333333%}.pull-sm-8{right:66.666667%}.pull-sm-9{right:75%}.pull-sm-10{right:83.333333%}.pull-sm-11{right:91.666667%}.pull-sm-12{right:100%}.push-sm-0{left:auto}.push-sm-1{left:8.333333%}.push-sm-2{left:16.666667%}.push-sm-3{left:25%}.push-sm-4{left:33.333333%}.push-sm-5{left:41.666667%}.push-sm-6{left:50%}.push-sm-7{left:58.333333%}.push-sm-8{left:66.666667%}.push-sm-9{left:75%}.push-sm-10{left:83.333333%}.push-sm-11{left:91.666667%}.push-sm-12{left:100%}.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-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:8.333333%}.col-md-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:16.666667%}.col-md-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:25%}.col-md-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:33.333333%}.col-md-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:41.666667%}.col-md-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:50%}.col-md-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:58.333333%}.col-md-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:66.666667%}.col-md-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:75%}.col-md-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:83.333333%}.col-md-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:91.666667%}.col-md-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:100%}.pull-md-0{right:auto}.pull-md-1{right:8.333333%}.pull-md-2{right:16.666667%}.pull-md-3{right:25%}.pull-md-4{right:33.333333%}.pull-md-5{right:41.666667%}.pull-md-6{right:50%}.pull-md-7{right:58.333333%}.pull-md-8{right:66.666667%}.pull-md-9{right:75%}.pull-md-10{right:83.333333%}.pull-md-11{right:91.666667%}.pull-md-12{right:100%}.push-md-0{left:auto}.push-md-1{left:8.333333%}.push-md-2{left:16.666667%}.push-md-3{left:25%}.push-md-4{left:33.333333%}.push-md-5{left:41.666667%}.push-md-6{left:50%}.push-md-7{left:58.333333%}.push-md-8{left:66.666667%}.push-md-9{left:75%}.push-md-10{left:83.333333%}.push-md-11{left:91.666667%}.push-md-12{left:100%}.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-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:8.333333%}.col-lg-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:16.666667%}.col-lg-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:25%}.col-lg-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:33.333333%}.col-lg-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:41.666667%}.col-lg-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:50%}.col-lg-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:58.333333%}.col-lg-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:66.666667%}.col-lg-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:75%}.col-lg-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:83.333333%}.col-lg-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:91.666667%}.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:100%}.pull-lg-0{right:auto}.pull-lg-1{right:8.333333%}.pull-lg-2{right:16.666667%}.pull-lg-3{right:25%}.pull-lg-4{right:33.333333%}.pull-lg-5{right:41.666667%}.pull-lg-6{right:50%}.pull-lg-7{right:58.333333%}.pull-lg-8{right:66.666667%}.pull-lg-9{right:75%}.pull-lg-10{right:83.333333%}.pull-lg-11{right:91.666667%}.pull-lg-12{right:100%}.push-lg-0{left:auto}.push-lg-1{left:8.333333%}.push-lg-2{left:16.666667%}.push-lg-3{left:25%}.push-lg-4{left:33.333333%}.push-lg-5{left:41.666667%}.push-lg-6{left:50%}.push-lg-7{left:58.333333%}.push-lg-8{left:66.666667%}.push-lg-9{left:75%}.push-lg-10{left:83.333333%}.push-lg-11{left:91.666667%}.push-lg-12{left:100%}.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-1{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:8.333333%}.col-xl-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:16.666667%}.col-xl-3{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:25%}.col-xl-4{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:33.333333%}.col-xl-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:41.666667%}.col-xl-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:50%}.col-xl-7{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:58.333333%}.col-xl-8{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:66.666667%}.col-xl-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:75%}.col-xl-10{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:83.333333%}.col-xl-11{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:91.666667%}.col-xl-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;float:left;width:100%}.pull-xl-0{right:auto}.pull-xl-1{right:8.333333%}.pull-xl-2{right:16.666667%}.pull-xl-3{right:25%}.pull-xl-4{right:33.333333%}.pull-xl-5{right:41.666667%}.pull-xl-6{right:50%}.pull-xl-7{right:58.333333%}.pull-xl-8{right:66.666667%}.pull-xl-9{right:75%}.pull-xl-10{right:83.333333%}.pull-xl-11{right:91.666667%}.pull-xl-12{right:100%}.push-xl-0{left:auto}.push-xl-1{left:8.333333%}.push-xl-2{left:16.666667%}.push-xl-3{left:25%}.push-xl-4{left:33.333333%}.push-xl-5{left:41.666667%}.push-xl-6{left:50%}.push-xl-7{left:58.333333%}.push-xl-8{left:66.666667%}.push-xl-9{left:75%}.push-xl-10{left:83.333333%}.push-xl-11{left:91.666667%}.push-xl-12{left:100%}.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}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #eceeef}.table thead th{vertical-align:bottom;border-bottom:2px solid #eceeef}.table tbody+tbody{border-top:2px solid #eceeef}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #eceeef}.table-bordered td,.table-bordered th{border:1px solid #eceeef}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover tbody tr:hover{background-color:#f5f5f5}.table-active,.table-active>td,.table-active>th{background-color:#f5f5f5}.table-hover .table-active:hover{background-color:#e8e8e8}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e8e8e8}.table-success,.table-success>td,.table-success>th{background-color:#dff0d8}.table-hover .table-success:hover{background-color:#d0e9c6}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#d0e9c6}.table-info,.table-info>td,.table-info>th{background-color:#d9edf7}.table-hover .table-info:hover{background-color:#c4e3f3}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#c4e3f3}.table-warning,.table-warning>td,.table-warning>th{background-color:#fcf8e3}.table-hover .table-warning:hover{background-color:#faf2cc}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#faf2cc}.table-danger,.table-danger>td,.table-danger>th{background-color:#f2dede}.table-hover .table-danger:hover{background-color:#ebcccc}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#ebcccc}.table-responsive{display:block;width:100%;min-height:.01%;overflow-x:auto}.thead-inverse th{color:#fff;background-color:#373a3c}.thead-default th{color:#55595c;background-color:#eceeef}.table-inverse{color:#eceeef;background-color:#373a3c}.table-inverse.table-bordered{border:0}.table-inverse td,.table-inverse th,.table-inverse thead th{border-color:#55595c}.table-reflow thead{float:left}.table-reflow tbody{display:block;white-space:nowrap}.table-reflow td,.table-reflow th{border-top:1px solid #eceeef;border-left:1px solid #eceeef}.table-reflow td:last-child,.table-reflow th:last-child{border-right:1px solid #eceeef}.table-reflow tbody:last-child tr:last-child td,.table-reflow tbody:last-child tr:last-child th,.table-reflow tfoot:last-child tr:last-child td,.table-reflow tfoot:last-child tr:last-child th,.table-reflow thead:last-child tr:last-child td,.table-reflow thead:last-child tr:last-child th{border-bottom:1px solid #eceeef}.table-reflow tr{float:left}.table-reflow tr td,.table-reflow tr th{display:block!important;border:1px solid #eceeef}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#55595c;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{border-color:#66afe9;outline:0}.form-control::-webkit-input-placeholder{color:#999;opacity:1}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999;opacity:1}.form-control::placeholder{color:#999;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eceeef;opacity:1}.form-control:disabled{cursor:not-allowed}select.form-control:not([size],[multiple]){height:2.25rem}.form-control-file,.form-control-range{display:block}.form-control-label{padding:.375rem .75rem;margin-bottom:0}_::-webkit-full-page-media.form-control,input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:2.25rem}.input-group-sm _::-webkit-full-page-media.form-control,.input-group-sm input[type=date].form-control,.input-group-sm input[type=time].form-control,.input-group-sm input[type=datetime-local].form-control,.input-group-sm input[type=month].form-control,_::-webkit-full-page-media.input-sm,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:1.8625rem}.input-group-lg _::-webkit-full-page-media.form-control,.input-group-lg input[type=date].form-control,.input-group-lg input[type=time].form-control,.input-group-lg input[type=datetime-local].form-control,.input-group-lg input[type=month].form-control,_::-webkit-full-page-media.input-lg,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:3.166667rem}.form-control-static{min-height:2.25rem;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0}.form-control-static.form-control-lg,.form-control-static.form-control-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:.275rem .75rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:.75rem 1.25rem;font-size:1.25rem;line-height:1.333333;border-radius:.3rem}.form-group{margin-bottom:1rem}.checkbox,.radio{position:relative;display:block;margin-bottom:.75rem}.checkbox label,.radio label{padding-left:1.25rem;margin-bottom:0;cursor:pointer}.checkbox label input:only-child,.radio label input:only-child{position:static}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:.25rem;margin-left:-1.25rem}.checkbox+.checkbox,.radio+.radio{margin-top:-.25rem}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:1.25rem;margin-bottom:0;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:.75rem}input[type=checkbox].disabled,input[type=checkbox]:disabled,input[type=radio].disabled,input[type=radio]:disabled{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label{cursor:not-allowed}.form-control-danger,.form-control-success,.form-control-warning{padding-right:2.25rem;background-repeat:no-repeat;background-position:center right .5625rem;-webkit-background-size:1.125rem 1.125rem;background-size:1.125rem 1.125rem}.has-success .checkbox,.has-success .checkbox-inline,.has-success .form-control-label,.has-success .radio,.has-success .radio-inline,.has-success .text-help,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#5cb85c}.has-success .form-control{border-color:#5cb85c}.has-success .input-group-addon{color:#5cb85c;border-color:#5cb85c;background-color:#eaf6ea}.has-success .form-control-feedback{color:#5cb85c}.has-success .form-control-success{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='%235cb85c' 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")}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .form-control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning .text-help,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#f0ad4e}.has-warning .form-control{border-color:#f0ad4e}.has-warning .input-group-addon{color:#f0ad4e;border-color:#f0ad4e;background-color:#fff}.has-warning .form-control-feedback{color:#f0ad4e}.has-warning .form-control-warning{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='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E")}.has-danger .checkbox,.has-danger .checkbox-inline,.has-danger .form-control-label,.has-danger .radio,.has-danger .radio-inline,.has-danger .text-help,.has-danger.checkbox label,.has-danger.checkbox-inline label,.has-danger.radio label,.has-danger.radio-inline label{color:#d9534f}.has-danger .form-control{border-color:#d9534f}.has-danger .input-group-addon{color:#d9534f;border-color:#d9534f;background-color:#fdf7f7}.has-danger .form-control-feedback{color:#d9534f}.has-danger .form-control-danger{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E")}@media (min-width:544px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .form-control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem 1rem;font-size:1rem;border-radius:.25rem}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:focus,.btn:hover{text-decoration:none}.btn.focus{text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-primary:hover{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#025aa5;border-color:#01549b;background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#014682;border-color:#01315a}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary:disabled.focus,.btn-primary:disabled:focus{background-color:#0275d8;border-color:#0275d8}.btn-primary.disabled:hover,.btn-primary:disabled:hover{background-color:#0275d8;border-color:#0275d8}.btn-secondary{color:#373a3c;background-color:#fff;border-color:#ccc}.btn-secondary:hover{color:#373a3c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.focus,.btn-secondary:focus{color:#373a3c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.active,.btn-secondary:active,.open>.btn-secondary.dropdown-toggle{color:#373a3c;background-color:#e6e6e6;border-color:#adadad;background-image:none}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.btn-secondary.dropdown-toggle.focus,.open>.btn-secondary.dropdown-toggle:focus,.open>.btn-secondary.dropdown-toggle:hover{color:#373a3c;background-color:#d4d4d4;border-color:#8c8c8c}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary:disabled.focus,.btn-secondary:disabled:focus{background-color:#fff;border-color:#ccc}.btn-secondary.disabled:hover,.btn-secondary:disabled:hover{background-color:#fff;border-color:#ccc}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#2aabd2;background-image:none}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1f7e9a}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info:disabled.focus,.btn-info:disabled:focus{background-color:#5bc0de;border-color:#5bc0de}.btn-info.disabled:hover,.btn-info:disabled:hover{background-color:#5bc0de;border-color:#5bc0de}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#419641;background-image:none}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success:disabled.focus,.btn-success:disabled:focus{background-color:#5cb85c;border-color:#5cb85c}.btn-success.disabled:hover,.btn-success:disabled:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#eb9316;background-image:none}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#b06d0f}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning:disabled.focus,.btn-warning:disabled:focus{background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning.disabled:hover,.btn-warning:disabled:hover{background-color:#f0ad4e;border-color:#f0ad4e}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#c12e2a;background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger:disabled.focus,.btn-danger:disabled:focus{background-color:#d9534f;border-color:#d9534f}.btn-danger.disabled:hover,.btn-danger:disabled:hover{background-color:#d9534f;border-color:#d9534f}.btn-outline-primary{color:#0275d8;background-image:none;background-color:transparent;border-color:#0275d8}.btn-outline-primary.active,.btn-outline-primary.focus,.btn-outline-primary:active,.btn-outline-primary:focus,.open>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-outline-primary:hover{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-outline-primary.disabled.focus,.btn-outline-primary.disabled:focus,.btn-outline-primary:disabled.focus,.btn-outline-primary:disabled:focus{border-color:#43a7fd}.btn-outline-primary.disabled:hover,.btn-outline-primary:disabled:hover{border-color:#43a7fd}.btn-outline-secondary{color:#ccc;background-image:none;background-color:transparent;border-color:#ccc}.btn-outline-secondary.active,.btn-outline-secondary.focus,.btn-outline-secondary:active,.btn-outline-secondary:focus,.open>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#ccc;border-color:#ccc}.btn-outline-secondary:hover{color:#fff;background-color:#ccc;border-color:#ccc}.btn-outline-secondary.disabled.focus,.btn-outline-secondary.disabled:focus,.btn-outline-secondary:disabled.focus,.btn-outline-secondary:disabled:focus{border-color:#fff}.btn-outline-secondary.disabled:hover,.btn-outline-secondary:disabled:hover{border-color:#fff}.btn-outline-info{color:#5bc0de;background-image:none;background-color:transparent;border-color:#5bc0de}.btn-outline-info.active,.btn-outline-info.focus,.btn-outline-info:active,.btn-outline-info:focus,.open>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info.disabled.focus,.btn-outline-info.disabled:focus,.btn-outline-info:disabled.focus,.btn-outline-info:disabled:focus{border-color:#b0e1ef}.btn-outline-info.disabled:hover,.btn-outline-info:disabled:hover{border-color:#b0e1ef}.btn-outline-success{color:#5cb85c;background-image:none;background-color:transparent;border-color:#5cb85c}.btn-outline-success.active,.btn-outline-success.focus,.btn-outline-success:active,.btn-outline-success:focus,.open>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success.disabled.focus,.btn-outline-success.disabled:focus,.btn-outline-success:disabled.focus,.btn-outline-success:disabled:focus{border-color:#a3d7a3}.btn-outline-success.disabled:hover,.btn-outline-success:disabled:hover{border-color:#a3d7a3}.btn-outline-warning{color:#f0ad4e;background-image:none;background-color:transparent;border-color:#f0ad4e}.btn-outline-warning.active,.btn-outline-warning.focus,.btn-outline-warning:active,.btn-outline-warning:focus,.open>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning.disabled.focus,.btn-outline-warning.disabled:focus,.btn-outline-warning:disabled.focus,.btn-outline-warning:disabled:focus{border-color:#f8d9ac}.btn-outline-warning.disabled:hover,.btn-outline-warning:disabled:hover{border-color:#f8d9ac}.btn-outline-danger{color:#d9534f;background-image:none;background-color:transparent;border-color:#d9534f}.btn-outline-danger.active,.btn-outline-danger.focus,.btn-outline-danger:active,.btn-outline-danger:focus,.open>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger.disabled.focus,.btn-outline-danger.disabled:focus,.btn-outline-danger:disabled.focus,.btn-outline-danger:disabled:focus{border-color:#eba5a3}.btn-outline-danger.disabled:hover,.btn-outline-danger:disabled:hover{border-color:#eba5a3}.btn-link{font-weight:400;color:#0275d8;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link:disabled{background-color:transparent}.btn-link,.btn-link:active,.btn-link:focus{border-color:transparent}.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#014c8c;text-decoration:underline;background-color:transparent}.btn-link:disabled:focus,.btn-link:disabled:hover{color:#818a91;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.25rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .75rem;font-size:.875rem;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height;-o-transition-property:height;transition-property:height}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.25rem;margin-left:.25rem;vertical-align:middle;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-left:.3em solid transparent}.dropdown-toggle:focus{outline:0}.dropup .dropdown-toggle::after{border-top:0;border-bottom:.3em solid}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:1rem;color:#373a3c;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-divider{height:1px;margin:.5rem 0;overflow:hidden;background-color:#e5e5e5}.dropdown-item{display:block;width:100%;padding:3px 20px;clear:both;font-weight:400;color:#373a3c;text-align:inherit;white-space:nowrap;background:0 0;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#2b2d2f;text-decoration:none;background-color:#f5f5f5}.dropdown-item.active,.dropdown-item.active:focus,.dropdown-item.active:hover{color:#fff;text-decoration:none;background-color:#0275d8;outline:0}.dropdown-item.disabled,.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{color:#818a91}.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:"progid:DXImageTransform.Microsoft.gradient(enabled = false)"}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:5px 20px;font-size:.875rem;color:#818a91;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:.3em solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.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:2}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar::after{content:"";display:table;clear:both}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn .caret{margin-left:0}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:.3em .3em 0;border-bottom-width:0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 .3em .3em}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group::after{content:"";display:table;clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.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:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:active,.input-group .form-control:focus,.input-group .form-control:hover{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#55595c;text-align:center;background-color:#eceeef;border:1px solid #ccc;border-radius:.25rem}.input-group-addon.form-control-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:.275rem .75rem;font-size:.875rem;border-radius:.2rem}.input-group-addon.form-control-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:.75rem 1.25rem;font-size:1.25rem;border-radius:.3rem}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:3}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.input-group-btn:last-child>.btn-group:active,.input-group-btn:last-child>.btn-group:focus,.input-group-btn:last-child>.btn-group:hover,.input-group-btn:last-child>.btn:active,.input-group-btn:last-child>.btn:focus,.input-group-btn:last-child>.btn:hover{z-index:3}.custom-control{position:relative;display:inline;padding-left:1.5rem}.custom-control+.custom-control{margin-left:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-indicator{color:#fff;background-color:#0074d9}.custom-control-input:focus~.custom-control-indicator{-webkit-box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9;box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9}.custom-control-input:active~.custom-control-indicator{color:#fff;background-color:#84c6ff}.custom-control-input:disabled~.custom-control-indicator{cursor:not-allowed;background-color:#eee}.custom-control-input:disabled~.custom-control-description{color:#767676;cursor:not-allowed}.custom-control-indicator{position:absolute;top:.0625rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#ddd;background-repeat:no-repeat;background-position:center center;-webkit-background-size:50% 50%;background-size:50% 50%}.custom-checkbox .custom-control-indicator{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-indicator{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-indicator{background-color:#0074d9;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-radio .custom-control-indicator{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-indicator{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-controls-stacked .custom-control{display:inline}.custom-controls-stacked .custom-control::after{display:block;margin-bottom:.25rem;content:""}.custom-controls-stacked .custom-control+.custom-control{margin-left:0}.custom-select{display:inline-block;max-width:100%;padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem\9;color:#55595c;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='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-image:none\9;-webkit-background-size:8px 10px;background-size:8px 10px;border:1px solid #ccc;border-radius:.25rem;-moz-appearance:none;-webkit-appearance:none}.custom-select:focus{border-color:#51a7e8;outline:0}.custom-select::-ms-expand{opacity:0}.custom-select-sm{padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-file{position:relative;display:inline-block;max-width:100%;height:2.5rem;cursor:pointer}.custom-file-input{min-width:14rem;max-width:100%;margin:0;filter:alpha(opacity=0);opacity:0}.custom-file-control{position:absolute;top:0;right:0;left:0;z-index:5;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;border:1px solid #ddd;border-radius:.25rem}.custom-file-control::after{content:"Choose file..."}.custom-file-control::before{position:absolute;top:-1px;right:-1px;bottom:-1px;z-index:6;display:block;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;content:"Browse";background-color:#eee;border:1px solid #ddd;border-radius:0 .25rem .25rem 0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:inline-block}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#818a91}.nav-link.disabled,.nav-link.disabled:focus,.nav-link.disabled:hover{color:#818a91;cursor:not-allowed;background-color:transparent}.nav-inline .nav-item{display:inline-block}.nav-inline .nav-item+.nav-item,.nav-inline .nav-link+.nav-link{margin-left:1rem}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs::after{content:"";display:table;clear:both}.nav-tabs .nav-item{float:left;margin-bottom:-1px}.nav-tabs .nav-item+.nav-item{margin-left:.2rem}.nav-tabs .nav-link{display:block;padding:.5em 1em;border:1px solid transparent;border-radius:.25rem .25rem 0 0}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eceeef #eceeef #ddd}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link.disabled:focus,.nav-tabs .nav-link.disabled:hover{color:#818a91;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover,.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover{color:#55595c;background-color:#fff;border-color:#ddd #ddd transparent}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills::after{content:"";display:table;clear:both}.nav-pills .nav-item{float:left}.nav-pills .nav-item+.nav-item{margin-left:.2rem}.nav-pills .nav-link{display:block;padding:.5em 1em;border-radius:.25rem}.nav-pills .nav-item.open .nav-link,.nav-pills .nav-item.open .nav-link:focus,.nav-pills .nav-item.open .nav-link:hover,.nav-pills .nav-link.active,.nav-pills .nav-link.active:focus,.nav-pills .nav-link.active:hover{color:#fff;cursor:default;background-color:#0275d8}.nav-stacked .nav-item{display:block;float:none}.nav-stacked .nav-item+.nav-item{margin-top:.2rem;margin-left:0}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar::after{content:"";display:table;clear:both}@media (min-width:544px){.navbar{border-radius:.25rem}}.navbar-full{z-index:1000}@media (min-width:544px){.navbar-full{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:544px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0}.navbar-fixed-bottom{bottom:0}.navbar-sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1030;width:100%}@media (min-width:544px){.navbar-sticky-top{border-radius:0}}.navbar-brand{float:left;padding-top:.25rem;padding-bottom:.25rem;margin-right:1rem;font-size:1.25rem}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}.navbar-divider{float:left;width:1px;padding-top:.425rem;padding-bottom:.425rem;margin-right:1rem;margin-left:1rem;overflow:hidden}.navbar-divider::before{content:"\00a0"}.navbar-toggler{padding:.5rem .75rem;font-size:1.25rem;line-height:1;background:0 0;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}@media (min-width:544px){.navbar-toggleable-xs{display:block!important}}@media (min-width:768px){.navbar-toggleable-sm{display:block!important}}@media (min-width:992px){.navbar-toggleable-md{display:block!important}}.navbar-nav .nav-item{float:left}.navbar-nav .nav-link{display:block;padding-top:.425rem;padding-bottom:.425rem}.navbar-nav .nav-link+.nav-link{margin-left:1rem}.navbar-nav .nav-item+.nav-item{margin-left:1rem}.navbar-light .navbar-brand{color:rgba(0,0,0,.8)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.6)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .active>.nav-link:focus,.navbar-light .navbar-nav .active>.nav-link:hover,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.active:focus,.navbar-light .navbar-nav .nav-link.active:hover,.navbar-light .navbar-nav .nav-link.open,.navbar-light .navbar-nav .nav-link.open:focus,.navbar-light .navbar-nav .nav-link.open:hover,.navbar-light .navbar-nav .open>.nav-link,.navbar-light .navbar-nav .open>.nav-link:focus,.navbar-light .navbar-nav .open>.nav-link:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-divider{background-color:rgba(0,0,0,.075)}.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 .active>.nav-link,.navbar-dark .navbar-nav .active>.nav-link:focus,.navbar-dark .navbar-nav .active>.nav-link:hover,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.active:focus,.navbar-dark .navbar-nav .nav-link.active:hover,.navbar-dark .navbar-nav .nav-link.open,.navbar-dark .navbar-nav .nav-link.open:focus,.navbar-dark .navbar-nav .nav-link.open:hover,.navbar-dark .navbar-nav .open>.nav-link,.navbar-dark .navbar-nav .open>.nav-link:focus,.navbar-dark .navbar-nav .open>.nav-link:hover{color:#fff}.navbar-dark .navbar-divider{background-color:rgba(255,255,255,.075)}.card{position:relative;display:block;margin-bottom:.75rem;background-color:#fff;border-radius:.25rem;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.125);box-shadow:inset 0 0 0 1px rgba(0,0,0,.125)}.card-block{padding:1.25rem}.card-block::after{content:"";display:table;clear:both}.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>.list-group:first-child .list-group-item:first-child{border-radius:.25rem .25rem 0 0}.card>.list-group:last-child .list-group-item:last-child{border-radius:0 0 .25rem .25rem}.card-header{padding:.75rem 1.25rem;background-color:#f5f5f5;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.125);box-shadow:inset 0 0 0 1px rgba(0,0,0,.125)}.card-header::after{content:"";display:table;clear:both}.card-header:first-child{border-radius:.25rem .25rem 0 0}.card-footer{padding:.75rem 1.25rem;background-color:#f5f5f5;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.125);box-shadow:inset 0 0 0 1px rgba(0,0,0,.125)}.card-footer::after{content:"";display:table;clear:both}.card-footer:last-child{border-radius:0 0 .25rem .25rem}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-tabs .nav-item{margin-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-primary{background-color:#0275d8;border-color:#0275d8}.card-success{background-color:#5cb85c;border-color:#5cb85c}.card-info{background-color:#5bc0de;border-color:#5bc0de}.card-warning{background-color:#f0ad4e;border-color:#f0ad4e}.card-danger{background-color:#d9534f;border-color:#d9534f}.card-outline-primary{background-color:transparent;border-color:#0275d8}.card-outline-secondary{background-color:transparent;border-color:#ccc}.card-outline-info{background-color:transparent;border-color:#5bc0de}.card-outline-success{background-color:transparent;border-color:#5cb85c}.card-outline-warning{background-color:transparent;border-color:#f0ad4e}.card-outline-danger{background-color:transparent;border-color:#d9534f}.card-inverse .card-footer,.card-inverse .card-header{border-bottom:1px solid rgba(255,255,255,.2)}.card-inverse .card-blockquote,.card-inverse .card-footer,.card-inverse .card-header,.card-inverse .card-title{color:#fff}.card-inverse .card-blockquote>footer,.card-inverse .card-link,.card-inverse .card-text{color:rgba(255,255,255,.65)}.card-inverse .card-link:focus,.card-inverse .card-link:hover{color:#fff}.card-blockquote{padding:0;margin-bottom:0;border-left:0}.card-img{border-radius:.25rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img-top{border-radius:.25rem .25rem 0 0}.card-img-bottom{border-radius:0 0 .25rem .25rem}@media (min-width:544px){.card-deck{display:table;table-layout:fixed;border-spacing:1.25rem 0}.card-deck .card{display:table-cell;width:1%;vertical-align:top}.card-deck-wrapper{margin-right:-1.25rem;margin-left:-1.25rem}}@media (min-width:544px){.card-group{display:table;width:100%;table-layout:fixed}.card-group .card{display:table-cell;vertical-align:top}.card-group .card+.card{margin-left:0;border-left:0}.card-group .card:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.card-group .card:first-child .card-img-top{border-top-right-radius:0}.card-group .card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group .card:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.card-group .card:last-child .card-img-top{border-top-left-radius:0}.card-group .card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group .card:not(:first-child):not(:last-child){border-radius:0}.card-group .card:not(:first-child):not(:last-child) .card-img-bottom,.card-group .card:not(:first-child):not(:last-child) .card-img-top{border-radius:0}}@media (min-width:544px){.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}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#eceeef;border-radius:.25rem}.breadcrumb::after{content:"";display:table;clear:both}.breadcrumb-item{float:left}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;padding-left:.5rem;color:#818a91;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#818a91}.pagination{display:inline-block;padding-left:0;margin-top:1rem;margin-bottom:1rem;border-radius:.25rem}.page-item{display:inline}.page-item:first-child .page-link{margin-left:0;border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link,.page-item.active .page-link:focus,.page-item.active .page-link:hover{z-index:2;color:#fff;cursor:default;background-color:#0275d8;border-color:#0275d8}.page-item.disabled .page-link,.page-item.disabled .page-link:focus,.page-item.disabled .page-link:hover{color:#818a91;pointer-events:none;cursor:not-allowed;background-color:#fff;border-color:#ddd}.page-link{position:relative;float:left;padding:.5rem .75rem;margin-left:-1px;color:#0275d8;text-decoration:none;background-color:#fff;border:1px solid #ddd}.page-link:focus,.page-link:hover{color:#014c8c;background-color:#eceeef;border-color:#ddd}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{padding:.275rem .75rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.label{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.label-default{background-color:#818a91}.label-default[href]:focus,.label-default[href]:hover{background-color:#687077}.label-primary{background-color:#0275d8}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#025aa5}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#eceeef;border-radius:.3rem}@media (min-width:544px){.jumbotron{padding:4rem 2rem}}.jumbotron-hr{border-top-color:#d0d5d8}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{padding:15px;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:35px}.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.alert-success hr{border-top-color:#c1e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.alert-info hr{border-top-color:#a6d5ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faf2cc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7ecb5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebcccc;color:#a94442}.alert-danger hr{border-top-color:#e4b9b9}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-o-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:block;width:100%;height:1rem;margin-bottom:1rem}.progress[value]{background-color:#eee;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem}.progress[value]::-ms-fill{background-color:#0074d9;border:0}.progress[value]::-moz-progress-bar{background-color:#0074d9;border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.progress[value]::-webkit-progress-value{background-color:#0074d9;border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.progress[value="100"]::-moz-progress-bar{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.progress[value="100"]::-webkit-progress-value{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.progress[value]::-webkit-progress-bar{background-color:#eee;border-radius:.25rem}.progress[value],base::-moz-progress-bar{background-color:#eee;border-radius:.25rem}@media screen and (min-width:0\0){.progress{background-color:#eee;border-radius:.25rem}.progress-bar{display:inline-block;height:1rem;text-indent:-999rem;background-color:#0074d9;border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.progress[width="100%"]{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}}.progress-striped[value]::-webkit-progress-value{background-image:-webkit-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-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);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}.progress-striped[value]::-moz-progress-bar{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-striped[value]::-ms-fill{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}@media screen and (min-width:0\0){.progress-bar-striped{background-image:-webkit-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-image:-o-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-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);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}}.progress-animated[value]::-webkit-progress-value{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-animated[value]::-moz-progress-bar{animation:progress-bar-stripes 2s linear infinite}@media screen and (min-width:0\0){.progress-animated .progress-bar-striped{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}}.progress-success[value]::-webkit-progress-value{background-color:#5cb85c}.progress-success[value]::-moz-progress-bar{background-color:#5cb85c}.progress-success[value]::-ms-fill{background-color:#5cb85c}@media screen and (min-width:0\0){.progress-success .progress-bar{background-color:#5cb85c}}.progress-info[value]::-webkit-progress-value{background-color:#5bc0de}.progress-info[value]::-moz-progress-bar{background-color:#5bc0de}.progress-info[value]::-ms-fill{background-color:#5bc0de}@media screen and (min-width:0\0){.progress-info .progress-bar{background-color:#5bc0de}}.progress-warning[value]::-webkit-progress-value{background-color:#f0ad4e}.progress-warning[value]::-moz-progress-bar{background-color:#f0ad4e}.progress-warning[value]::-ms-fill{background-color:#f0ad4e}@media screen and (min-width:0\0){.progress-warning .progress-bar{background-color:#f0ad4e}}.progress-danger[value]::-webkit-progress-value{background-color:#d9534f}.progress-danger[value]::-moz-progress-bar{background-color:#d9534f}.progress-danger[value]::-ms-fill{background-color:#d9534f}@media screen and (min-width:0\0){.progress-danger .progress-bar{background-color:#d9534f}}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden}.media-body{width:10000px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right{padding-left:10px}.media-left{padding-right:10px}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:0}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#818a91;cursor:not-allowed;background-color:#eceeef}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#818a91}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;text-decoration:none;background-color:#0275d8;border-color:#0275d8}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#a8d6fe}.list-group-flush .list-group-item{border-radius:0}.list-group-item-action{width:100%;color:#555;text-align:inherit}.list-group-item-action .list-group-item-heading{color:#333}.list-group-item-action:focus,.list-group-item-action:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.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{padding-bottom:42.857143%}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.embed-responsive-1by1{padding-bottom:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;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;-webkit-overflow-scrolling:touch}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out,-o-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;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.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header::after{content:"";display:table;clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer::after{content:"";display:table;clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:544px){.modal-dialog{max-width:600px;margin:30px auto}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.in{opacity:.9}.tooltip.bs-tether-element-attached-bottom,.tooltip.tooltip-top{padding:5px 0;margin-top:-3px}.tooltip.bs-tether-element-attached-bottom .tooltip-arrow,.tooltip.tooltip-top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.bs-tether-element-attached-left,.tooltip.tooltip-right{padding:0 5px;margin-left:3px}.tooltip.bs-tether-element-attached-left .tooltip-arrow,.tooltip.tooltip-right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.bs-tether-element-attached-top,.tooltip.tooltip-bottom{padding:5px 0;margin-top:3px}.tooltip.bs-tether-element-attached-top .tooltip-arrow,.tooltip.tooltip-bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bs-tether-element-attached-right,.tooltip.tooltip-left{padding:0 5px;margin-left:-3px}.tooltip.bs-tether-element-attached-right .tooltip-arrow,.tooltip.tooltip-left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;padding:1px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;font-size:.875rem;word-wrap:break-word;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover.bs-tether-element-attached-bottom,.popover.popover-top{margin-top:-10px}.popover.bs-tether-element-attached-bottom .popover-arrow,.popover.popover-top .popover-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.bs-tether-element-attached-bottom .popover-arrow::after,.popover.popover-top .popover-arrow::after{bottom:1px;margin-left:-10px;content:"";border-top-color:#fff;border-bottom-width:0}.popover.bs-tether-element-attached-left,.popover.popover-right{margin-left:10px}.popover.bs-tether-element-attached-left .popover-arrow,.popover.popover-right .popover-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.bs-tether-element-attached-left .popover-arrow::after,.popover.popover-right .popover-arrow::after{bottom:-10px;left:1px;content:"";border-right-color:#fff;border-left-width:0}.popover.bs-tether-element-attached-top,.popover.popover-bottom{margin-top:10px}.popover.bs-tether-element-attached-top .popover-arrow,.popover.popover-bottom .popover-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-top .popover-arrow::after,.popover.popover-bottom .popover-arrow::after{top:1px;margin-left:-10px;content:"";border-top-width:0;border-bottom-color:#fff}.popover.bs-tether-element-attached-right,.popover.popover-left{margin-left:-10px}.popover.bs-tether-element-attached-right .popover-arrow,.popover.popover-left .popover-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-right .popover-arrow::after,.popover.popover-left .popover-arrow::after{right:1px;bottom:-10px;content:"";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:.2375rem .2375rem 0 0}.popover-content{padding:9px 14px}.popover-arrow,.popover-arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover-arrow{border-width:11px}.popover-arrow::after{content:"";border-width:10px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.carousel-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.carousel-item>a>img,.carousel-inner>.carousel-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.carousel-item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out,-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.carousel-item.active.right,.carousel-inner>.carousel-item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.carousel-item.active.left,.carousel-inner>.carousel-item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.carousel-item.active,.carousel-inner>.carousel-item.next.left,.carousel-inner>.carousel-item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);opacity:.5}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-prev::before{content:"\2039"}.carousel-control .icon-next::before{content:"\203a"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:transparent;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;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;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media (min-width:544px){.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .icon-prev{margin-left:-15px}.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.bg-inverse{color:#eceeef;background-color:#373a3c}.bg-faded{background-color:#f7f7f9}.bg-primary{color:#fff!important;background-color:#0275d8!important}a.bg-primary:focus,a.bg-primary:hover{background-color:#025aa5!important}.bg-success{color:#fff!important;background-color:#5cb85c!important}a.bg-success:focus,a.bg-success:hover{background-color:#449d44!important}.bg-info{color:#fff!important;background-color:#5bc0de!important}a.bg-info:focus,a.bg-info:hover{background-color:#31b0d5!important}.bg-warning{color:#fff!important;background-color:#f0ad4e!important}a.bg-warning:focus,a.bg-warning:hover{background-color:#ec971f!important}.bg-danger{color:#fff!important;background-color:#d9534f!important}a.bg-danger:focus,a.bg-danger:hover{background-color:#c9302c!important}.clearfix::after{content:"";display:table;clear:both}.pull-xs-left{float:left!important}.pull-xs-right{float:right!important}.pull-xs-none{float:none!important}@media (min-width:544px){.pull-sm-left{float:left!important}.pull-sm-right{float:right!important}.pull-sm-none{float:none!important}}@media (min-width:768px){.pull-md-left{float:left!important}.pull-md-right{float:right!important}.pull-md-none{float:none!important}}@media (min-width:992px){.pull-lg-left{float:left!important}.pull-lg-right{float:right!important}.pull-lg-none{float:none!important}}@media (min-width:1200px){.pull-xl-left{float:left!important}.pull-xl-right{float:right!important}.pull-xl-none{float:none!important}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.m-x-auto{margin-right:auto!important;margin-left:auto!important}.m-a-0{margin:0 0!important}.m-t-0{margin-top:0!important}.m-r-0{margin-right:0!important}.m-b-0{margin-bottom:0!important}.m-l-0{margin-left:0!important}.m-x-0{margin-right:0!important;margin-left:0!important}.m-y-0{margin-top:0!important;margin-bottom:0!important}.m-a-1{margin:1rem 1rem!important}.m-t-1{margin-top:1rem!important}.m-r-1{margin-right:1rem!important}.m-b-1{margin-bottom:1rem!important}.m-l-1{margin-left:1rem!important}.m-x-1{margin-right:1rem!important;margin-left:1rem!important}.m-y-1{margin-top:1rem!important;margin-bottom:1rem!important}.m-a-2{margin:1.5rem 1.5rem!important}.m-t-2{margin-top:1.5rem!important}.m-r-2{margin-right:1.5rem!important}.m-b-2{margin-bottom:1.5rem!important}.m-l-2{margin-left:1.5rem!important}.m-x-2{margin-right:1.5rem!important;margin-left:1.5rem!important}.m-y-2{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-a-3{margin:3rem 3rem!important}.m-t-3{margin-top:3rem!important}.m-r-3{margin-right:3rem!important}.m-b-3{margin-bottom:3rem!important}.m-l-3{margin-left:3rem!important}.m-x-3{margin-right:3rem!important;margin-left:3rem!important}.m-y-3{margin-top:3rem!important;margin-bottom:3rem!important}.p-a-0{padding:0 0!important}.p-t-0{padding-top:0!important}.p-r-0{padding-right:0!important}.p-b-0{padding-bottom:0!important}.p-l-0{padding-left:0!important}.p-x-0{padding-right:0!important;padding-left:0!important}.p-y-0{padding-top:0!important;padding-bottom:0!important}.p-a-1{padding:1rem 1rem!important}.p-t-1{padding-top:1rem!important}.p-r-1{padding-right:1rem!important}.p-b-1{padding-bottom:1rem!important}.p-l-1{padding-left:1rem!important}.p-x-1{padding-right:1rem!important;padding-left:1rem!important}.p-y-1{padding-top:1rem!important;padding-bottom:1rem!important}.p-a-2{padding:1.5rem 1.5rem!important}.p-t-2{padding-top:1.5rem!important}.p-r-2{padding-right:1.5rem!important}.p-b-2{padding-bottom:1.5rem!important}.p-l-2{padding-left:1.5rem!important}.p-x-2{padding-right:1.5rem!important;padding-left:1.5rem!important}.p-y-2{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-a-3{padding:3rem 3rem!important}.p-t-3{padding-top:3rem!important}.p-r-3{padding-right:3rem!important}.p-b-3{padding-bottom:3rem!important}.p-l-3{padding-left:3rem!important}.p-x-3{padding-right:3rem!important;padding-left:3rem!important}.p-y-3{padding-top:3rem!important;padding-bottom:3rem!important}.pos-f-t{position:fixed;top:0;right:0;left:0;z-index:1030}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-xs-left{text-align:left!important}.text-xs-right{text-align:right!important}.text-xs-center{text-align:center!important}@media (min-width:544px){.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-normal{font-weight:400}.font-weight-bold{font-weight:700}.font-italic{font-style:italic}.text-muted{color:#818a91!important}a.text-muted:focus,a.text-muted:hover{color:#687077}.text-primary{color:#0275d8!important}a.text-primary:focus,a.text-primary:hover{color:#025aa5}.text-success{color:#5cb85c!important}a.text-success:focus,a.text-success:hover{color:#449d44}.text-info{color:#5bc0de!important}a.text-info:focus,a.text-info:hover{color:#31b0d5}.text-warning{color:#f0ad4e!important}a.text-warning:focus,a.text-warning:hover{color:#ec971f}.text-danger{color:#d9534f!important}a.text-danger:focus,a.text-danger:hover{color:#c9302c}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.invisible{visibility:hidden!important}.hidden-xs-up{display:none!important}@media (max-width:543px){.hidden-xs-down{display:none!important}}@media (min-width:544px){.hidden-sm-up{display:none!important}}@media (max-width:767px){.hidden-sm-down{display:none!important}}@media (min-width:768px){.hidden-md-up{display:none!important}}@media (max-width:991px){.hidden-md-down{display:none!important}}@media (min-width:992px){.hidden-lg-up{display:none!important}}@media (max-width:1199px){.hidden-lg-down{display:none!important}}@media (min-width:1200px){.hidden-xl-up{display:none!important}}.hidden-xl-down{display:none!important}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} /*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file diff --git a/docs/dist/css/bootstrap.min.css.map b/docs/dist/css/bootstrap.min.css.map index e7b04cf8a..271e2ccfa 100644 --- a/docs/dist/css/bootstrap.min.css.map +++ b/docs/dist/css/bootstrap.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["../../scss/_normalize.scss","bootstrap.css","../../scss/_print.scss","dist/css/bootstrap.css","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_hover.scss","../../scss/mixins/_tab-focus.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/mixins/_image.scss","../../scss/_images.scss","../../scss/_code.scss","../../scss/mixins/_border-radius.scss","../../scss/mixins/_grid.scss","../../scss/_grid.scss","../../scss/mixins/_clearfix.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_forms.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_animation.scss","../../scss/_dropdown.scss","../../scss/mixins/_nav-divider.scss","../../scss/mixins/_reset-filter.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/mixins/_breakpoints.scss","../../scss/_card.scss","../../scss/mixins/_cards.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_labels.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/mixins/_gradients.scss","../../scss/mixins/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_responsive-embed.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_background.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_center-block.scss","../../scss/mixins/_center-block.scss","../../scss/mixins/_pulls.scss","../../scss/utilities/_pulls.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss"],"names":[],"mappings":"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KACA,QAAA,MhChBiC,OgCiBjC,YAAA,KACA,YAAA,IACA,MAAA,QAOD,gBAAA,KlC09HC,iBAAkB,KkC1+HlB,OAAQ,IAAI,MAAM,KAchB,iBhCmXuC,iBCvZtC,MAAA,QHsgIH,iBAAkB,QkCz9HlB,aAAc,KhC4IW,0BiCxMxB,QAAA,OAAA,OnC2hID,UAAW,QkC/9HX,YAAa,SCtDR,iDnC0hIL,uBAAwB,MkCp+HxB,0BAA2B,MCjDtB,gDnC0hIL,wBAAyB,MkCr+HzB,2BAA4B,MhCyIF,0BiCzMzB,QAAA,QAAA,OnC2iID,UAAW,QkC3+HX,YAAa,IC1DR,iDnC0iIL,uBAAwB,MkCh/HxB,0BAA2B,MCrDtB,gDnC0iIL,wBAAyB,MoCvjIzB,2BAA4B,MAG5B,OACA,QlC+fgC,akC9fhC,QAAA,MAAe,KACf,UlC2fgC,IkC1fhC,YAAA,IACA,YAAA,EACA,MAAA,K1BVE,WAAA,O0BiBH,YAAA,OpCojIC,eAAgB,SoCpkIhB,cAAe,OpCwkIjB,aoCrjIE,QAAS,KAGV,YpCujIC,SAAU,SoCpjIV,IAAK,KAIH,cAAgB,cjCZf,MAAA,KHkkIH,gBAAiB,KoC9iIjB,OAAQ,Q1BtCN,Y0B4CH,cAAA,KpC8iIC,aAAc,KoCxiId,cAAe,MpC4iIjB,eoC5iIE,iBAAkB,QpCgjIpB,2BGhlIK,2BiCoCH,iBAAkB,QpCgjIpB,eoChjIE,iBAAkB,QpCojIpB,2BGxlIK,2BiCwCH,iBAAkB,QpCojIpB,eoCpjIE,iBAAkB,QpCwjIpB,2BGhmIK,2BiC4CH,iBAAkB,QpCwjIpB,YoCxjIE,iBAAkB,QpC4jIpB,wBGxmIK,wBiCgDH,iBAAkB,QpC4jIpB,eoC5jIE,iBAAkB,QpCgkIpB,2BGhnIK,2BiCoDH,iBAAkB,QpCgkIpB,coChkIE,iBAAkB,QpCokIpB,0BGxnIK,0BkCtBH,iBAAkB,QAGlB,W3BCE,QAAA,KAAA,K2BKH,cAAA,KrC4oIC,iBAAkB,Q8BxmIhB,cAAA,MOpCH,yBvCimIA,WEiDG,QAAS,KAAK,MAIlB,cqChpIE,iBAAkB,Q3BXhB,iB2BeH,cAAA,ErCkpIC,aAAc,EsCjqId,cAAe,EAGf,O5B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"}
\ No newline at end of file +{"version":3,"sources":["../../scss/_normalize.scss","bootstrap.css","../../scss/_print.scss","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_tab-focus.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_clearfix.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_forms.scss","../../scss/mixins/_forms.scss","dist/css/bootstrap.css","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_animation.scss","../../scss/_dropdown.scss","../../scss/mixins/_nav-divider.scss","../../scss/mixins/_reset-filter.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/mixins/_cards.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_labels.scss","../../scss/mixins/_label.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/mixins/_gradients.scss","../../scss/mixins/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_responsive-embed.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_background.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_clearfix.scss","../../scss/utilities/_pulls.scss","../../scss/mixins/_pulls.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss"],"names":[],"mappings":"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"}
\ No newline at end of file diff --git a/docs/dist/js/bootstrap.js b/docs/dist/js/bootstrap.js index 9b34f1b0d..7696fef79 100644 --- a/docs/dist/js/bootstrap.js +++ b/docs/dist/js/bootstrap.js @@ -2421,7 +2421,7 @@ var ScrollSpy = (function ($) { $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE); $link.addClass(ClassName.ACTIVE); } else { - // todo (fat) this is kinda sus… + // todo (fat) this is kinda sus... // recursively add actives to tested nav-links $link.parents(Selector.LI).find(Selector.NAV_LINKS).addClass(ClassName.ACTIVE); } diff --git a/docs/dist/js/umd/scrollspy.js b/docs/dist/js/umd/scrollspy.js index a191c3da3..24f6d88d5 100644 --- a/docs/dist/js/umd/scrollspy.js +++ b/docs/dist/js/umd/scrollspy.js @@ -258,7 +258,7 @@ $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE); $link.addClass(ClassName.ACTIVE); } else { - // todo (fat) this is kinda sus… + // todo (fat) this is kinda sus... // recursively add actives to tested nav-links $link.parents(Selector.LI).find(Selector.NAV_LINKS).addClass(ClassName.ACTIVE); } diff --git a/docs/examples/album/index.html b/docs/examples/album/index.html index 0337d33b4..c80618adc 100644 --- a/docs/examples/album/index.html +++ b/docs/examples/album/index.html @@ -115,9 +115,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../assets/js/vendor/holder.min.js"></script> <script> $(function () { diff --git a/docs/examples/blog/index.html b/docs/examples/blog/index.html index d73f5ec69..d4e9dbcc5 100644 --- a/docs/examples/blog/index.html +++ b/docs/examples/blog/index.html @@ -111,7 +111,7 @@ </div><!-- /.blog-main --> - <div class="col-sm-3 col-sm-offset-1 blog-sidebar"> + <div class="col-sm-3 offset-sm-1 blog-sidebar"> <div class="sidebar-module sidebar-module-inset"> <h4>About</h4> <p>Etiam porta <em>sem malesuada magna</em> mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.</p> @@ -158,9 +158,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/carousel/index.html b/docs/examples/carousel/index.html index b2faa5464..986c4e8a5 100644 --- a/docs/examples/carousel/index.html +++ b/docs/examples/carousel/index.html @@ -136,11 +136,11 @@ <hr class="featurette-divider"> <div class="row featurette"> - <div class="col-md-7 col-md-push-5"> + <div class="col-md-7 push-md-5"> <h2 class="featurette-heading">Oh yeah, it's that good. <span class="text-muted">See for yourself.</span></h2> <p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p> </div> - <div class="col-md-5 col-md-pull-7"> + <div class="col-md-5 pull-md-7"> <img class="featurette-image img-fluid center-block" data-src="holder.js/500x500/auto" alt="Generic placeholder image"> </div> </div> @@ -174,9 +174,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- Just to make our placeholder images work. Don't actually copy the next line! --> <script src="../../assets/js/vendor/holder.min.js"></script> diff --git a/docs/examples/cover/index.html b/docs/examples/cover/index.html index 71c384296..f97adf61e 100644 --- a/docs/examples/cover/index.html +++ b/docs/examples/cover/index.html @@ -60,9 +60,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/dashboard/index.html b/docs/examples/dashboard/index.html index 31f6e8bec..65cc380cb 100644 --- a/docs/examples/dashboard/index.html +++ b/docs/examples/dashboard/index.html @@ -63,7 +63,7 @@ <li><a href="">Another nav item</a></li> </ul> </div> - <div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main"> + <div class="col-sm-9 offset-sm-3 col-md-10 offset-md-2 main"> <h1 class="page-header">Dashboard</h1> <div class="row placeholders"> @@ -224,9 +224,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- Just to make our placeholder images work. Don't actually copy the next line! --> <script src="../../assets/js/vendor/holder.min.js"></script> diff --git a/docs/examples/grid/index.html b/docs/examples/grid/index.html index cafbb4fc5..9e831115b 100644 --- a/docs/examples/grid/index.html +++ b/docs/examples/grid/index.html @@ -104,7 +104,7 @@ <hr> <h3>Mixed: mobile and desktop</h3> - <p>The Bootstrap 3 grid system has four tiers of classes: xs (phones), sm (tablets), md (desktops), and lg (larger desktops). You can use nearly any combination of these classes to create more dynamic and flexible layouts.</p> + <p>The Bootstrap v4 grid system has five tiers of classes: xs (extra small), sm (small), md (medium), lg (large), and xl (extra large). You can use nearly any combination of these classes to create more dynamic and flexible layouts.</p> <p>Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs.</p> <div class="row"> <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div> @@ -159,11 +159,11 @@ <p>Reset offsets, pushes, and pulls at specific breakpoints.</p> <div class="row"> <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div> - <div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div> + <div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div> </div> <div class="row"> <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div> - <div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div> + <div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div> </div> diff --git a/docs/examples/jumbotron/index.html b/docs/examples/jumbotron/index.html index f57cf7df7..3e362fb46 100644 --- a/docs/examples/jumbotron/index.html +++ b/docs/examples/jumbotron/index.html @@ -75,9 +75,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/narrow-jumbotron/index.html b/docs/examples/narrow-jumbotron/index.html index 210daf5f7..fc55d0648 100644 --- a/docs/examples/narrow-jumbotron/index.html +++ b/docs/examples/narrow-jumbotron/index.html @@ -24,8 +24,8 @@ <div class="header clearfix"> <nav> <ul class="nav nav-pills pull-xs-right"> - <li class="nav-item active"> - <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> + <li class="nav-item"> + <a class="nav-link active" href="#">Home <span class="sr-only">(current)</span></a> </li> <li class="nav-item"> <a class="nav-link" href="#">About</a> diff --git a/docs/examples/navbar-top-fixed/index.html b/docs/examples/navbar-top-fixed/index.html index 24c706a31..c6adfae21 100644 --- a/docs/examples/navbar-top-fixed/index.html +++ b/docs/examples/navbar-top-fixed/index.html @@ -45,9 +45,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/navbar-top/index.html b/docs/examples/navbar-top/index.html index ea2c409d6..d6c5b0a9e 100644 --- a/docs/examples/navbar-top/index.html +++ b/docs/examples/navbar-top/index.html @@ -43,9 +43,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/navbar/index.html b/docs/examples/navbar/index.html index a6d642297..f17722a85 100644 --- a/docs/examples/navbar/index.html +++ b/docs/examples/navbar/index.html @@ -64,9 +64,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/offcanvas/index.html b/docs/examples/offcanvas/index.html index fcba68886..16a70b379 100644 --- a/docs/examples/offcanvas/index.html +++ b/docs/examples/offcanvas/index.html @@ -104,9 +104,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/starter-template/index.html b/docs/examples/starter-template/index.html index fe28223f3..b736ae161 100644 --- a/docs/examples/starter-template/index.html +++ b/docs/examples/starter-template/index.html @@ -48,9 +48,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/sticky-footer-navbar/index.html b/docs/examples/sticky-footer-navbar/index.html index ed64a7d90..c1555759b 100644 --- a/docs/examples/sticky-footer-navbar/index.html +++ b/docs/examples/sticky-footer-navbar/index.html @@ -73,9 +73,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> diff --git a/docs/examples/tooltip-viewport/index.html b/docs/examples/tooltip-viewport/index.html index c50a07429..8ce4f1a3d 100644 --- a/docs/examples/tooltip-viewport/index.html +++ b/docs/examples/tooltip-viewport/index.html @@ -39,9 +39,9 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" integrity="sha384-8gBf6Y4YYq7Jx97PIqmTwLPin4hxIzQw5aDmUg/DDhul9fFpbbLcLh3nTIIDJKhx" crossorigin="anonymous"></script> <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js" integrity="sha384-MWq1Lnqj72tmjGdOKuNBn3E0gj3vWfy/1EmR5TVL8d8nGvwgy32YkCpKpTUhwBVv" crossorigin="anonymous"></script> <script src="../../dist/js/bootstrap.min.js"></script> <script src="../../assets/js/vendor/tether.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> diff --git a/docs/getting-started/accessibility.md b/docs/getting-started/accessibility.md index a67985398..147d9305e 100644 --- a/docs/getting-started/accessibility.md +++ b/docs/getting-started/accessibility.md @@ -25,7 +25,7 @@ In addition, groups and toolbars should be given an explicit label, as most assi If your navigation contains many links and comes before the main content in the DOM, add a `Skip to main content` link before the navigation (for a simple explanation, see this [A11Y Project article on skip navigation links](http://a11yproject.com/posts/skip-nav-links/)). Using the `.sr-only` class will visually hide the skip link, and the <code>.sr-only-focusable</code> class will ensure that the link becomes visible once focused (for sighted keyboard users). {% callout danger %} -Due to long-standing shortcomings/bugs in Chrome (see [issue 262171 in the Chromium bug tracker](https://code.google.com/p/chromium/issues/detail?id=262171 "Chromium bug tracker - Issue 262171: Focus should cycle from named anchor")) and Internet Explorer (see this article on [in-page links and focus order](http://accessibleculture.org/articles/2010/05/in-page-links/)), you will need to make sure that the target of your skip link is at least programmatically focusable by adding `tabindex="-1"`. +Due to long-standing shortcomings/bugs in Chrome (see [issue 454172 in the Chromium bug tracker](https://code.google.com/p/chromium/issues/detail?id=454172 "Chromium bug tracker - Issue 454172: Focus Link Target (sequential focus navigation starting point)")) and Internet Explorer (see this article on [in-page links and focus order](http://accessibleculture.org/articles/2010/05/in-page-links/)), you will need to make sure that the target of your skip link is at least programmatically focusable by adding `tabindex="-1"`. In addition, you may want to explicitly suppress a visible focus indication on the target (particularly as Chrome currently also sets focus on elements with `tabindex="-1"` when they are clicked with the mouse) with `#content:focus { outline: none; }`. diff --git a/docs/getting-started/browsers-devices.md b/docs/getting-started/browsers-devices.md index edb0a738f..d06845e90 100644 --- a/docs/getting-started/browsers-devices.md +++ b/docs/getting-started/browsers-devices.md @@ -195,7 +195,7 @@ As a heads up, we include this in all of Bootstrap's documentation and examples ### Overflow and scrolling -Support for `overflow: hidden;` on the `<body>` element is quite limited in iOS and Android. To that end, when you scroll past the top or bottom of a modal in either of those devices' browsers, the `<body>` content will begin to scroll. +Support for `overflow: hidden;` on the `<body>` element is quite limited in iOS and Android. To that end, when you scroll past the top or bottom of a modal in either of those devices' browsers, the `<body>` content will begin to scroll. See [WebKit bug #153852](https://bugs.webkit.org/show_bug.cgi?id=153852). ### Virtual keyboards @@ -218,9 +218,13 @@ Bootstrap includes a workaround for this, although it is disabled by default. By Even in some modern browsers, printing can be quirky. -In particular, as of Chrome v32 and regardless of margin settings, Chrome uses a viewport width significantly narrower than the physical paper size when resolving media queries while printing a webpage. This can result in Bootstrap's extra-small grid being unexpectedly activated when printing. [See #12078 for some details.](https://github.com/twbs/bootstrap/issues/12078) Suggested workarounds: +In particular, as of Chrome v32 and regardless of margin settings, Chrome uses a viewport width significantly narrower than the physical paper size when resolving media queries while printing a webpage. This can result in Bootstrap's extra-small grid being unexpectedly activated when printing. See [issue #12078](https://github.com/twbs/bootstrap/issues/12078) for some details. Suggested workarounds: -Also, as of Safari v8.0, fixed-width <code>.container</code>s can cause Safari to use an unusually small font size when printing. See <a href="https://github.com/twbs/bootstrap/issues/14868">#14868</a> for more details. One potential workaround for this is adding the following CSS: +* Embrace the extra-small grid and make sure your page looks acceptable under it. +* Customize the value of the `$grid-breakpoints` Sass variable so that your printer paper is considered larger than extra-small. +* Add custom media queries to change the grid size breakpoints for print media only. + +Also, as of Safari v8.0, use of the fixed-width `.container` class can cause Safari to use an unusually small font size when printing. See [issue #14868](https://github.com/twbs/bootstrap/issues/14868) for more details. One potential workaround is the following CSS: {% highlight css %} @media print { diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md index b35c4134b..8cec71fd6 100644 --- a/docs/getting-started/introduction.md +++ b/docs/getting-started/introduction.md @@ -27,8 +27,8 @@ Copy-paste the stylesheet `<link>` into your `<head>` before all other styleshee Add our JavaScript plugins, jQuery, and Tether near the end of your pages, right before the closing `</body>` tag. Be sure to place jQuery and Tether first, as our code depends on them. {% highlight html %} -<script src="{{ site.cdn.jquery }}"></script> -<script src="{{ site.cdn.tether }}"></script> +<script src="{{ site.cdn.jquery }}" integrity="{{ site.cdn.jquery_hash }}" crossorigin="anonymous"></script> +<script src="{{ site.cdn.tether }}" integrity="{{ site.cdn.tether_hash }}" crossorigin="anonymous"></script> <script src="{{ site.cdn.js }}" integrity="{{ site.cdn.js_hash }}" crossorigin="anonymous"></script> {% endhighlight %} @@ -60,8 +60,8 @@ Put it all together and your pages should look like this: <h1>Hello, world!</h1> <!-- jQuery first, then Tether, then Bootstrap JS. --> - <script src="{{ site.cdn.jquery }}"></script> - <script src="{{ site.cdn.tether }}"></script> + <script src="{{ site.cdn.jquery }}" integrity="{{ site.cdn.jquery_hash }}" crossorigin="anonymous"></script> + <script src="{{ site.cdn.tether }}" integrity="{{ site.cdn.tether_hash }}" crossorigin="anonymous"></script> <script src="{{ site.cdn.js }}" integrity="{{ site.cdn.js_hash }}" crossorigin="anonymous"></script> </body> </html> diff --git a/docs/getting-started/options.md b/docs/getting-started/options.md index 35ff5e3d0..0a98c40d3 100644 --- a/docs/getting-started/options.md +++ b/docs/getting-started/options.md @@ -4,11 +4,29 @@ title: Customization options group: getting-started --- -With Bootstrap 4, we've added a handful of global options for easily customizing all the components in your project. These options are handled by Sass variables. Simply change a variable's value and recompile with the included Gruntfile. +Customize Bootstrap 4 with our built-in custom variables file and easily toggle global CSS preferences with new `$enable-*` Sass variables. Override a variable's value and recompile with the included Gruntfile as needed. -## Available variables +## Customizing variables -You can find and customize these variables in our `_variables.scss` file. +Bootstrap 4 ships with a `_custom.scss` file for easy variable overrides. Copy and paste relevant lines from `_variables.scss` into the custom file and recompile your Sass to change our default values. **Be sure to remove the `!default` flag from override values.** + +For example, to change out the `background-color` and `color` for the `<body>`, you'd do the following: + +{% highlight scss %} +// Bootstrap overrides +// +// Copy variables from `_variables.scss` to this file to override default values +// without modifying source files. + +$body-bg: $gray-dark; +$body-color: $gray-light; +{% endhighlight %} + +Do the same for any variable you need to override, including the global options listed below. + +## Global options + +You can find and customize these variables for key global options in our `_variables.scss` file. | Variable | Values | Description | | --------------------------- | ---------------------------------- | ----------------------------------------------------------------------- | @@ -16,6 +34,6 @@ You can find and customize these variables in our `_variables.scss` file. | `$enable-flex` | `true` or `false` (default) | Swaps `float` and `display: table` styles for `display: flex`. | | `$enable-rounded` | `true` (default) or `false` | Enables predefined `border-radius` styles on various components. | | `$enable-shadows` | `true` or `false` (default) | Enables predefined `box-shadow` styles on various components. | -| `$enable-gradients` | `true` or `false` (default) | Enables predefined gradients via `background-image` various components. | +| `$enable-gradients` | `true` or `false` (default) | Enables predefined gradients via `background-image` styles on various components. | | `$enable-transitions` | `true` (default) or `false` | Enables predefined `transition`s on various components. | | `$enable-hover-media-query` | `true` or `false` (default) | ... | diff --git a/docs/index.html b/docs/index.html index 3591dbd04..dee656788 100644 --- a/docs/index.html +++ b/docs/index.html @@ -53,17 +53,17 @@ title: Bootstrap · The world's most popular mobile-first and responsive f <div class="row"> <div class="col-sm-4 m-b-3"> - <img src="assets/img/sass.png" alt="Sass support" class="img-fluid"> + <img src="{{ site.baseurl }}/assets/img/sass.png" alt="Sass support" class="img-fluid"> <h4>Preprocessor</h4> <p>Bootstrap ships with vanilla CSS, but its source code utilizes <a href="http://sass-lang.com/">Sass</a>, a popular CSS preprocessor. Quickly get started with precompiled CSS or build on the source.</p> </div> <div class="col-sm-4 m-b-3"> - <img src="assets/img/devices.png" alt="Responsive across devices" class="img-fluid"> + <img src="{{ site.baseurl }}/assets/img/devices.png" alt="Responsive across devices" class="img-fluid"> <h4>One framework, every device.</h4> <p>Bootstrap easily and efficiently scales your websites and applications with a single code base, from phones to tablets to desktops with CSS media queries.</p> </div> <div class="col-sm-4 m-b-3"> - <img src="assets/img/components.png" alt="Components" class="img-fluid"> + <img src="{{ site.baseurl }}/assets/img/components.png" alt="Components" class="img-fluid"> <h4>Full of features</h4> <p>With Bootstrap, you get extensive and beautiful documentation for common HTML elements, dozens of custom HTML and CSS components, and awesome jQuery plugins.</p> </div> diff --git a/docs/layout/flexbox-grid.md b/docs/layout/flexbox-grid.md new file mode 100644 index 000000000..6d372a96c --- /dev/null +++ b/docs/layout/flexbox-grid.md @@ -0,0 +1,212 @@ +--- +layout: docs +title: Flexbox grid system +group: layout +--- + +Fancy a more modern grid system? [Enable flexbox support in Bootstrap](/getting-started/flexbox) to take full advantage of CSS's Flexible Box module for even more control over your site's layout, alignment, and distribution of content. + +Bootstrap's flexbox grid includes support for every feature from our [default grid system](/layout/grid), and then some. Please read the [default grid system docs](/layout/grid) before proceeding through this page. Features that are covered there are only summarized here. Please note that **Internet Explorer 9 does not support flexbox**, so proceed with caution when enabling it. + +{% callout warning %} +**Heads up!** The flexbox grid documentation is only functional when flexbox support is explicitly enabled. +{% endcallout %} + +## Contents + +* Will be replaced with the ToC, excluding the "Contents" header +{:toc} + +## How it works + +The flexbox grid system behaves similar to our default grid system, but with a few notable differences: + +- [Grid mixins](/layout/grid#sass-mixins) and [predefined classes](/layout/grid#predefined-classes) include support for flexbox. Just [enable flexbox support](/getting-started/flexbox) to utilize them as you would otherwise. +- Nesting, offsets, pushes, and pulls are all supported in the flexbox grid system. +- Flexbox grid columns without a set width will automatically layout with equal widths. For example, four columns will each automatically be 25% wide. +- Flexbox grid columns have significantly more alignment options available, including vertical alignment. +- Unlike the default grid system where a grid column starts as full-width in the `xs` tier, flexbox requires a `.col-{breakpoint}` class for each tier. + +Chill? Awesome—keep reading for more information and some code snippets. + +## Auto-layout columns + +When flexbox support is enabled, you can utilize breakpoint-specific column classes for equal-width columns. Add any number of `.col-{breakpoint}`s for each breakpoint you need and you're good to go. For example, here's are two grid layouts that apply to every device and viewport possible. + +<div class="bd-example-row"> +{% example html %} +<div class="container"> + <div class="row"> + <div class="col-xs"> + 1 of 2 + </div> + <div class="col-xs"> + 1 of 2 + </div> + </div> + <div class="row"> + <div class="col-xs"> + 1 of 3 + </div> + <div class="col-xs"> + 1 of 3 + </div> + <div class="col-xs"> + 1 of 3 + </div> + </div> +</div> +{% endexample %} +</div> + +Auto-layout for flexbox grid columns also means you can set the width of one column and the others will automatically resize around it. You may use predefined grid classes (as shown below), grid mixins, or inline widths. + +<div class="bd-example-row"> +{% example html %} +<div class="container"> + <div class="row"> + <div class="col-xs"> + 1 of 3 + </div> + <div class="col-xs-6"> + 2 of 3 (wider) + </div> + <div class="col-xs"> + 3 of 3 + </div> + </div> +</div> +{% endexample %} +</div> + +## Responsive flexbox + +Unlike the default grid system, the flexbox grid requires a class for full-width columns. If you have a `.col-sm-6` and don't add `.col-xs-12`, your `xs` grid will not render correctly. Note that flexbox grid tiers still scale up across breakpoints, so if you want two 50% wide columns across `sm`, `md`, and `lg`, you only need to set `.col-sm-6`. + +<div class="bd-example-row"> +{% example html %} +<div class="container"> + <div class="row"> + <div class="col-xs-12 col-sm-6"> + 1 of 2 (stacked on mobile) + </div> + <div class="col-xs-12 col-sm-6"> + 1 of 2 (stacked on mobile) + </div> + </div> +</div> +{% endexample %} +</div> + +## Vertical alignment + +Use the flexbox alignment utilities to vertically align columns. + +<div class="bd-example-row"> +{% example html %} +<div class="container"> + <div class="row flex-items-xs-top"> + <div class="col-xs"> + One of three columns + </div> + <div class="col-xs"> + One of three columns + </div> + <div class="col-xs"> + One of three columns + </div> + </div> + <div class="row flex-items-xs-middle"> + <div class="col-xs"> + One of three columns + </div> + <div class="col-xs"> + One of three columns + </div> + <div class="col-xs"> + One of three columns + </div> + </div> + <div class="row flex-items-xs-bottom"> + <div class="col-xs"> + One of three columns + </div> + <div class="col-xs"> + One of three columns + </div> + <div class="col-xs"> + One of three columns + </div> + </div> +</div> +{% endexample %} +</div> + +<div class="bd-example-row bd-example-row-flex-cols"> +{% example html %} +<div class="container"> + <div class="row"> + <div class="col-xs flex-xs-top"> + One of three columns + </div> + <div class="col-xs flex-xs-middle"> + One of three columns + </div> + <div class="col-xs flex-xs-bottom"> + One of three columns + </div> + </div> +</div> +{% endexample %} +</div> + +## Horizontal alignment + +Flexbox utilities for horizontal alignment also exist for a number of layout options. + +<div class="bd-example-row"> +{% example html %} +<div class="container"> + <div class="row flex-items-xs-left"> + <div class="col-xs-4"> + One of two columns + </div> + <div class="col-xs-4"> + One of two columns + </div> + </div> + <div class="row flex-items-xs-center"> + <div class="col-xs-4"> + One of two columns + </div> + <div class="col-xs-4"> + One of two columns + </div> + </div> + <div class="row flex-items-xs-right"> + <div class="col-xs-4"> + One of two columns + </div> + <div class="col-xs-4"> + One of two columns + </div> + </div> + <div class="row flex-items-xs-around"> + <div class="col-xs-4"> + One of two columns + </div> + <div class="col-xs-4"> + One of two columns + </div> + </div> + <div class="row flex-items-xs-between"> + <div class="col-xs-4"> + One of two columns + </div> + <div class="col-xs-4"> + One of two columns + </div> + </div> +</div> +{% endexample %} +</div> diff --git a/docs/layout/grid.md b/docs/layout/grid.md index c318f5330..3a76a651b 100644 --- a/docs/layout/grid.md +++ b/docs/layout/grid.md @@ -52,8 +52,7 @@ The above example creates three equal-width columns on small, medium, large, and ## Grid options -While Bootstrap uses `em`s or `rem`s for defining most sizes, `px`s are used for grid breakpoints and container widths. -This is because the viewport width is in pixels and does not change with the [font size](https://drafts.csswg.org/mediaqueries-3/#units). +While Bootstrap uses `em`s or `rem`s for defining most sizes, `px`s are used for grid breakpoints and container widths. This is because the viewport width is in pixels and does not change with the [font size](https://drafts.csswg.org/mediaqueries-3/#units). See how aspects of the Bootstrap grid system work across multiple devices with a handy table. @@ -136,9 +135,12 @@ When using Bootstrap's source Sass files, you have the option of using Sass vari ### Variables -Variables determine the number of columns, the gutter width, and the media query point at which to begin floating columns. We use these to generate the predefined grid classes documented above, as well as for the custom mixins listed below. +Variables and maps determine the number of columns, the gutter width, and the media query point at which to begin floating columns. We use these to generate the predefined grid classes documented above, as well as for the custom mixins listed below. {% highlight scss %} +$grid-columns: 12; +$grid-gutter-width: 15px; + $grid-breakpoints: ( // Extra small screen / phone xs: 0, @@ -152,9 +154,12 @@ $grid-breakpoints: ( xl: 1200px ); - -$grid-columns: 12; -$grid-gutter-width: 1.875rem; +$container-max-widths: ( + sm: 576px, + md: 720px, + lg: 940px, + xl: 1140px +) !default; {% endhighlight %} ### Mixins @@ -164,23 +169,40 @@ Mixins are used in conjunction with the grid variables to generate semantic CSS {% highlight scss %} // Creates a wrapper for a series of columns @mixin make-row($gutter: $grid-gutter-width) { + @if $enable-flex { + display: flex; + flex-wrap: wrap; + } @else { + @include clearfix(); + } margin-left: ($gutter / -2); margin-right: ($gutter / -2); - @include clearfix(); } // Make the element grid-ready (applying everything but the width) @mixin make-col($gutter: $grid-gutter-width) { position: relative; - float: left; + @if $enable-flex { + flex: 1; + } @else { + float: left; + } min-height: 1px; padding-left: ($gutter / 2); padding-right: ($gutter / 2); } -// Set a width (to be used in or out of media queries) -@mixin make-col-span($columns) { - width: percentage(($columns / $grid-columns)); +@mixin make-col-span($size, $columns: $grid-columns) { + // Set a width (to be used in or out of media queries) + @if $enable-flex { + flex: 0 0 percentage($size / $columns); + // Add a `max-width` to ensure content within each column does not blow out + // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari + // do not appear to require this. + max-width: percentage($size / $columns); + } @else { + width: percentage($size / $columns); + } } // Get fancy by offsetting, or changing the sort order @@ -246,36 +268,36 @@ In addition to our semantic mixins, Bootstrap includes an extensive set of prebu ### Example: Stacked-to-horizontal -Using a single set of `.col-md-*` grid classes, you can create a basic grid system that starts out stacked on mobile devices and tablet devices (the extra small to small range) before becoming horizontal on desktop (medium) devices. Place grid columns in any `.row`. +Using a single set of `.col-md-*` grid classes, you can create a basic grid system that starts out stacked on mobile devices and tablet devices (the extra small to small range) before becoming horizontal on desktop (medium) devices. Place grid columns with the `.col` base class and a modifier within any `.row`. <div class="bd-example-row"> {% example html %} <div class="row"> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> - <div class="col-md-1">.col-md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> + <div class="col-md-1">md-1</div> </div> <div class="row"> - <div class="col-md-8">.col-md-8</div> - <div class="col-md-4">.col-md-4</div> + <div class="col-md-8">md-8</div> + <div class="col-md-4">md-4</div> </div> <div class="row"> - <div class="col-md-4">.col-md-4</div> - <div class="col-md-4">.col-md-4</div> - <div class="col-md-4">.col-md-4</div> + <div class="col-md-4">md-4</div> + <div class="col-md-4">md-4</div> + <div class="col-md-4">md-4</div> </div> <div class="row"> - <div class="col-md-6">.col-md-6</div> - <div class="col-md-6">.col-md-6</div> + <div class="col-md-6">md-6</div> + <div class="col-md-6">md-6</div> </div> {% endexample %} </div> @@ -366,32 +388,32 @@ In addition to column clearing at responsive breakpoints, you may need to **rese {% example html %} <div class="row"> <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div> - <div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div> + <div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0</div> </div> <div class="row"> - <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div> - <div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div> + <div class="col-sm-6 col-md-5 col-lg-6">.col.col-sm-6.col-md-5.col-lg-6</div> + <div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 .offset-lg-0</div> </div> {% endexample %} </div> ### Example: Offsetting columns -Move columns to the right using `.col-md-offset-*` classes. These classes increase the left margin of a column by `*` columns. For example, `.col-md-offset-4` moves `.col-md-4` over four columns. +Move columns to the right using `.offset-md-*` classes. These classes increase the left margin of a column by `*` columns. For example, `.offset-md-4` moves `.col-md-4` over four columns. <div class="bd-example-row"> {% example html %} <div class="row"> <div class="col-md-4">.col-md-4</div> - <div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div> + <div class="col-md-4 offset-md-4">.col-md-4 .offset-md-4</div> </div> <div class="row"> - <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div> - <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div> + <div class="col-md-3 offset-md-3">.col-md-3 .offset-md-3</div> + <div class="col-md-3 offset-md-3">.col-md-3 .offset-md-3</div> </div> <div class="row"> - <div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div> + <div class="col-md-6 offset-md-3">.col-md-6 .offset-md-3</div> </div> {% endexample %} </div> @@ -425,8 +447,30 @@ Easily change the order of our built-in grid columns with `.col-md-push-*` and ` <div class="bd-example-row"> {% example html %} <div class="row"> - <div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div> - <div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div> + <div class="col-md-9 push-md-3">.col-md-9 .push-md-3</div> + <div class="col-md-3 pull-md-9">.col-md-3 .pull-md-9</div> </div> {% endexample %} </div> + +## Customizing the grid + +Using our built-in grid Sass variables and maps, it's possible to completely customize the predefined grid classes. Change the number of tiers, the media query dimensions, and the container widths—then recompile. + +For example, if you wanted just three grid tiers, you'd update the `$grid-breakpoints` and `$container-max-widths` to something like this: + +{% highlight scss %} +$grid-breakpoints: ( + sm: 480px, + md: 768px, + lg: 1024px +); + +$container-max-widths: ( + sm: 420px, + md: 720px, + lg: 940px +) !default; +{% endhighlight %} + +Save your changes and recompile to have a brand new set of predefined grid classes for column widths, offsets, pushes, and pulls. Responsive visibility utilities will also be updated to use the custom breakpoints. diff --git a/docs/migration.md b/docs/migration.md index effbc90a5..774dd1166 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -22,11 +22,21 @@ Here are the big ticket items you'll want to be aware of when moving from v3 to ### Global changes - Switched from [Less](http://lesscss.org/) to [Sass](http://sass-lang.com/) for our source CSS files. -- Switched from `px` to `rem` as our primary CSS unit, though pixels are still used for media queries and more as viewports are not affected by type size. +- Switched from `px` to `rem` as our primary CSS unit, though pixels are still used for media queries and grid behavior as viewports are not affected by type size. - Global font-size increased from `14px` to `16px`. - Added a new grid tier for ~`480px` and below. - Replaced the separate optional theme with configurable options via SCSS variables (e.g., `$enable-gradients: true`). +### Grid system + +- Added support for flexbox (set `$enable-flex: true` and recompile) in the grid mixins and predefined classes. +- As part of flexbox, included support for vertical and horizontal alignment classes. +- Overhauled grid mixins to merge `make-col-span` into `make-col` for a singular mixin. +- Added a new `sm` grid tier below `768px` for more granular control. We now have `xs`, `sm`, `md`, `lg`, and `xl`. This also means every tier has been bumped up one level (so `.col-md-6` in v3 is now `.col-lg-6` in v4). +- Changed grid system media query breakpoints and container widths to account for new grid tier and ensure columns are evenly divisible by `12` at their max width. +- Grid breakpoints and container widths are now handled via Sass maps instead of a handful of separate variables. These replace the `@screen-*` variables entirely and allow you to fully customize the grid tiers. +- Media queries have also changed. Instead of repeating our media query declarations with the same value each time, we now have `@include media-breakpoint-up/down/only`. Now, instead of writing `@media (min-width: @screen-sm-min) { ... }`, you can write `@include media-breakpoint-up(sm) { ... }`. + ### Components - Dropped panels, thumbnails, and wells for a new all-encompassing component, cards. @@ -107,10 +117,6 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with - Dropped the `.navbar-form` class entirely. It's no longer necessary. -### Pager - -- Renamed `.previous` and `.next` to `.pager-prev` and `.pager-next`. - ### Pagination - Explicit classes (`.page-item`, `.page-link`) are now required on the descendants of `.pagination`s @@ -148,8 +154,14 @@ Dropped entirely for the new card component. ### Utilities -- Added `.pull-{xs,sm,md,lg,xl}-{left,right,none}` classes for responsive floats -- Removed `.pull-left` and `.pull-right` since they're redundant to `.pull-xs-left` and `.pull-xs-right` +- Added `.pull-{xs,sm,md,lg,xl}-{left,right,none}` classes for responsive floats and removed `.pull-left` and `.pull-right` since they're redundant to `.pull-xs-left` and `.pull-xs-right`. +- Added responsive variations to our text alignment classes `.text-{xs,sm,md,lg,xl}-{left,center,right}` and removed the redundant `.text-{left,center,right}` utilities as they are the same as the `xs` variation. +- Dropped `.center-block` for the new `.m-x-auto` class. + +### Vendor prefix mixins +Bootstrap 3's [vendor prefix](http://webdesign.about.com/od/css/a/css-vendor-prefixes.htm) mixins, which were deprecated in v3.2.0, have been removed in Bootstrap 4. Since we use [Autoprefixer](https://github.com/postcss/autoprefixer), they're no longer necessary. + +Removed the following mixins: `animation`, `animation-delay`, `animation-direction`, `animation-duration`, `animation-fill-mode`, `animation-iteration-count`, `animation-name`, `animation-timing-function`, `backface-visibility`, `box-sizing`, `content-columns`, `hyphens`, `opacity`, `perspective`, `perspective-origin`, `rotate`, `rotateX`, `rotateY`, `scale`, `scaleX`, `scaleY`, `skew`, `transform-origin`, `transition-delay`, `transition-duration`, `transition-property`, `transition-timing-function`, `transition-transform`, `translate`, `translate3d`, `user-select` ## Documentation |
