From f637ee000931451284fc718aab70d671eb4991be Mon Sep 17 00:00:00 2001 From: Jeremy Thomas Date: Sat, 14 Jul 2018 00:42:07 +0100 Subject: [PATCH] Customize section init --- docs/_includes/components/categories.html | 7 + docs/_includes/components/step.html | 9 + .../elements/responsive-image-2x.html | 7 + docs/_includes/snippets/mypage.html | 37 +++ docs/_sass/main.sass | 19 ++ docs/_sass/specific.sass | 1 + docs/css/bulma-docs.css | 26 +- docs/css/bulma-docs.min.css | 2 +- docs/documentation/customize.html | 12 + docs/documentation/customize/concepts.html | 53 ++++ .../customize/with-node-sass.html | 289 ++++++++++++++++++ .../customize/custom-bulma-01-unstyled.png | Bin 0 -> 24974 bytes .../customize/custom-bulma-01-unstyled@2x.png | Bin 0 -> 40876 bytes .../customize/custom-bulma-02-default.png | Bin 0 -> 26294 bytes .../customize/custom-bulma-02-default@2x.png | Bin 0 -> 47240 bytes .../customize/custom-bulma-03-styled.png | Bin 0 -> 29290 bytes .../customize/custom-bulma-03-styled@2x.png | Bin 0 -> 49112 bytes 17 files changed, 460 insertions(+), 2 deletions(-) create mode 100644 docs/_includes/components/step.html create mode 100644 docs/_includes/elements/responsive-image-2x.html create mode 100644 docs/_includes/snippets/mypage.html create mode 100644 docs/documentation/customize.html create mode 100644 docs/documentation/customize/concepts.html create mode 100644 docs/documentation/customize/with-node-sass.html create mode 100644 docs/images/customize/custom-bulma-01-unstyled.png create mode 100644 docs/images/customize/custom-bulma-01-unstyled@2x.png create mode 100644 docs/images/customize/custom-bulma-02-default.png create mode 100644 docs/images/customize/custom-bulma-02-default@2x.png create mode 100644 docs/images/customize/custom-bulma-03-styled.png create mode 100644 docs/images/customize/custom-bulma-03-styled@2x.png diff --git a/docs/_includes/components/categories.html b/docs/_includes/components/categories.html index f4639ec3..8db78b90 100644 --- a/docs/_includes/components/categories.html +++ b/docs/_includes/components/categories.html @@ -4,6 +4,7 @@ {% assign category_links = category[1] %} {% assign category_link = site.data.links.by_id[category_id] %} + {% if category_link.name != 'Customize' %}
@@ -13,6 +14,11 @@ {{ category_link.name }} + {% if category_link.name == 'Customize' %} + + New! + + {% endif %}
@@ -27,6 +33,7 @@ {% endfor %}
+ {% endif %} {% endfor %} diff --git a/docs/_includes/components/step.html b/docs/_includes/components/step.html new file mode 100644 index 00000000..e7821cb4 --- /dev/null +++ b/docs/_includes/components/step.html @@ -0,0 +1,9 @@ +
+
+ {% include elements/anchor.html name=include.title %} +
+ +
+ {{ include.content }} +
+
diff --git a/docs/_includes/elements/responsive-image-2x.html b/docs/_includes/elements/responsive-image-2x.html new file mode 100644 index 00000000..0b2283d1 --- /dev/null +++ b/docs/_includes/elements/responsive-image-2x.html @@ -0,0 +1,7 @@ +{{ include.alt }} diff --git a/docs/_includes/snippets/mypage.html b/docs/_includes/snippets/mypage.html new file mode 100644 index 00000000..106b68eb --- /dev/null +++ b/docs/_includes/snippets/mypage.html @@ -0,0 +1,37 @@ + + + + My custom Bulma website + + + +

+ Bulma +

+ +

+ Modern CSS framework based on Flexbox +

+ +
+
+ +
+
+ +
+

+ + + +

+
+ +
+ Primary + Link +
+ + diff --git a/docs/_sass/main.sass b/docs/_sass/main.sass index 9b1d5bde..e47fe025 100644 --- a/docs/_sass/main.sass +++ b/docs/_sass/main.sass @@ -2,6 +2,17 @@ overflow: hidden position: relative +.bd-figure + +block + border: 2px solid $white-ter + border-radius: $radius + text-align: center + figcaption + background-color: $white-ter + color: $text-light + font-size: $size-small + padding: 1em + // Lead .bd-lead @@ -140,6 +151,14 @@ position: relative &.is-active color: $link + .tag + border-radius: 2px + font-family: Verdana + font-size: 0.5rem + font-weight: bold + height: 2.25em + margin-left: 0.5em + vertical-align: text-bottom .bd-category-list @extend %bd-list diff --git a/docs/_sass/specific.sass b/docs/_sass/specific.sass index b0db9f38..0d30df72 100644 --- a/docs/_sass/specific.sass +++ b/docs/_sass/specific.sass @@ -228,6 +228,7 @@ .bd-anchor-link position: absolute right: calc(100% + 1rem) + top: 0 +until($widescreen) left: 0 right: auto diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css index 6781a4e6..c871d047 100644 --- a/docs/css/bulma-docs.css +++ b/docs/css/bulma-docs.css @@ -52,7 +52,7 @@ } .box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child), -.subtitle:not(:last-child), .block:not(:last-child), .highlight:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .message:not(:last-child), .tabs:not(:last-child), .bd-snippet:not(:last-child), .bd-callout:not(:last-child) { +.subtitle:not(:last-child), .block:not(:last-child), .highlight:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .message:not(:last-child), .tabs:not(:last-child), .bd-figure:not(:last-child), .bd-snippet:not(:last-child), .bd-callout:not(:last-child) { margin-bottom: 1.5rem; } @@ -10192,6 +10192,19 @@ label.panel-block:hover { position: relative; } +.bd-figure { + border: 2px solid whitesmoke; + border-radius: 4px; + text-align: center; +} + +.bd-figure figcaption { + background-color: whitesmoke; + color: #7a7a7a; + font-size: 0.75rem; + padding: 1em; +} + .bd-lead { position: relative; } @@ -10384,6 +10397,16 @@ label.panel-block:hover { color: #3273dc; } +.bd-category-name .tag { + border-radius: 2px; + font-family: Verdana; + font-size: 0.5rem; + font-weight: bold; + height: 2.25em; + margin-left: 0.5em; + vertical-align: text-bottom; +} + .bd-category-list { display: none; padding: 0.5rem; @@ -12152,6 +12175,7 @@ svg { .bd-anchor-link { position: absolute; right: calc(100% + 1rem); + top: 0; } @media screen and (max-width: 1279px) { diff --git a/docs/css/bulma-docs.min.css b/docs/css/bulma-docs.min.css index 994f2fb0..89a3d47c 100644 --- a/docs/css/bulma-docs.min.css +++ b/docs/css/bulma-docs.min.css @@ -1 +1 @@ -@charset "UTF-8";/*! bulma.io v0.7.1 | MIT License | github.com/jgthms/bulma */@-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.breadcrumb,.button,.delete,.file,.is-unselectable,.modal-close,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.tabs{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center;transform-origin:center;width:.625em}.bd-callout:not(:last-child),.bd-snippet:not(:last-child),.block:not(:last-child),.box:not(:last-child),.breadcrumb:not(:last-child),.content:not(:last-child),.highlight:not(:last-child),.level:not(:last-child),.message:not(:last-child),.notification:not(:last-child),.progress:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.tabs:not(:last-child),.title:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:0;position:relative;vertical-align:top;width:20px}.delete::after,.delete::before,.modal-close::after,.modal-close::before{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);-webkit-transform-origin:center center;transform-origin:center center}.delete::before,.modal-close::before{height:2px;width:50%}.delete::after,.modal-close::after{height:50%;width:2px}.delete:focus,.delete:hover,.modal-close:focus,.modal-close:hover{background-color:rgba(10,10,10,.3)}.delete:active,.modal-close:active{background-color:rgba(10,10,10,.4)}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading::after,.control.is-loading::after,.intro-spinner::before,.loader,.select.is-loading::after{-webkit-animation:spinAround .5s infinite linear;animation:spinAround .5s infinite linear;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.bd-banner-background,.bd-book-modal-background,.bd-book-modal-column.bd-is-cover::before,.bd-book-pattern,.bd-book-pattern::before,.bd-category-toggle,.bd-focus-item::before,.bd-patreon-button:hover::after,.bd-structure-item::after,.bd-structure-item::before,.hero-video,.highlight .bd-show,.image.is-16by9 img,.image.is-1by1 img,.image.is-1by2 img,.image.is-1by3 img,.image.is-2by1 img,.image.is-2by3 img,.image.is-3by1 img,.image.is-3by2 img,.image.is-3by4 img,.image.is-3by5 img,.image.is-4by3 img,.image.is-4by5 img,.image.is-5by3 img,.image.is-5by4 img,.image.is-9by16 img,.image.is-square img,.intro-shadow,.intro-spinner,.is-overlay,.modal,.modal-background,.native-js::before{bottom:0;left:0;position:absolute;right:0;top:0}.button,.file-cta,.file-name,.input,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.select select,.textarea{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.25em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.375em - 1px);padding-left:calc(.625em - 1px);padding-right:calc(.625em - 1px);padding-top:calc(.375em - 1px);position:relative;vertical-align:top}.button:active,.button:focus,.file-cta:active,.file-cta:focus,.file-name:active,.file-name:focus,.input:active,.input:focus,.is-active.button,.is-active.file-cta,.is-active.file-name,.is-active.input,.is-active.pagination-ellipsis,.is-active.pagination-link,.is-active.pagination-next,.is-active.pagination-previous,.is-active.textarea,.is-focused.button,.is-focused.file-cta,.is-focused.file-name,.is-focused.input,.is-focused.pagination-ellipsis,.is-focused.pagination-link,.is-focused.pagination-next,.is-focused.pagination-previous,.is-focused.textarea,.pagination-ellipsis:active,.pagination-ellipsis:focus,.pagination-link:active,.pagination-link:focus,.pagination-next:active,.pagination-next:focus,.pagination-previous:active,.pagination-previous:focus,.select select.is-active,.select select.is-focused,.select select:active,.select select:focus,.textarea:active,.textarea:focus{outline:0}.button[disabled],.file-cta[disabled],.file-name[disabled],.input[disabled],.pagination-ellipsis[disabled],.pagination-link[disabled],.pagination-next[disabled],.pagination-previous[disabled],.select select[disabled],.textarea[disabled]{cursor:not-allowed}/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */blockquote,body,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,::after,::before{box-sizing:inherit}audio,img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0;text-align:left}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,select,textarea{font-family:BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1rem;font-weight:400;line-height:1.5}a{color:#3273dc;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#ff3860;font-size:.875em;font-weight:400;padding:.25em .5em .25em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{text-align:left;vertical-align:top}table th{color:#363636}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-clipped{overflow:hidden!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width:768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media screen and (min-width:769px),print{.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width:1087px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width:1088px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width:1280px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width:1472px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width:768px){.has-text-centered-mobile{text-align:center!important}}@media screen and (min-width:769px),print{.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width:1087px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width:1088px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width:1280px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width:1472px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width:768px){.has-text-justified-mobile{text-align:justify!important}}@media screen and (min-width:769px),print{.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width:1087px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width:1088px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width:1280px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width:1472px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width:768px){.has-text-left-mobile{text-align:left!important}}@media screen and (min-width:769px),print{.has-text-left-tablet{text-align:left!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width:1087px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width:1088px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width:1280px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width:1472px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width:768px){.has-text-right-mobile{text-align:right!important}}@media screen and (min-width:769px),print{.has-text-right-tablet{text-align:right!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width:1087px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width:1088px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width:1280px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width:1472px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.has-text-white{color:#fff!important}a.has-text-white:focus,a.has-text-white:hover{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:focus,a.has-text-black:hover{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:focus,a.has-text-light:hover{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:focus,a.has-text-dark:hover{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:focus,a.has-text-primary:hover{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-link{color:#3273dc!important}a.has-text-link:focus,a.has-text-link:hover{color:#205bbc!important}.has-background-link{background-color:#3273dc!important}.has-text-info{color:#209cee!important}a.has-text-info:focus,a.has-text-info:hover{color:#0f81cc!important}.has-background-info{background-color:#209cee!important}.has-text-success{color:#23d160!important}a.has-text-success:focus,a.has-text-success:hover{color:#1ca64c!important}.has-background-success{background-color:#23d160!important}.has-text-warning{color:#ffdd57!important}a.has-text-warning:focus,a.has-text-warning:hover{color:#ffd324!important}.has-background-warning{background-color:#ffdd57!important}.has-text-danger{color:#ff3860!important}a.has-text-danger:focus,a.has-text-danger:hover{color:#ff0537!important}.has-background-danger{background-color:#ff3860!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-block{display:block!important}@media screen and (max-width:768px){.is-block-mobile{display:block!important}}@media screen and (min-width:769px),print{.is-block-tablet{display:block!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-block-tablet-only{display:block!important}}@media screen and (max-width:1087px){.is-block-touch{display:block!important}}@media screen and (min-width:1088px){.is-block-desktop{display:block!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-block-desktop-only{display:block!important}}@media screen and (min-width:1280px){.is-block-widescreen{display:block!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width:1472px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width:768px){.is-flex-mobile{display:flex!important}}@media screen and (min-width:769px),print{.is-flex-tablet{display:flex!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width:1087px){.is-flex-touch{display:flex!important}}@media screen and (min-width:1088px){.is-flex-desktop{display:flex!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width:1280px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width:1472px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width:768px){.is-inline-mobile{display:inline!important}}@media screen and (min-width:769px),print{.is-inline-tablet{display:inline!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width:1087px){.is-inline-touch{display:inline!important}}@media screen and (min-width:1088px){.is-inline-desktop{display:inline!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width:1280px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width:1472px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width:768px){.is-inline-block-mobile{display:inline-block!important}}@media screen and (min-width:769px),print{.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width:1087px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width:1088px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width:1280px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width:1472px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width:768px){.is-inline-flex-mobile{display:inline-flex!important}}@media screen and (min-width:769px),print{.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width:1087px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width:1088px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width:1280px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width:1472px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width:768px){.is-hidden-mobile{display:none!important}}@media screen and (min-width:769px),print{.is-hidden-tablet{display:none!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width:1087px){.is-hidden-touch{display:none!important}}@media screen and (min-width:1088px){.is-hidden-desktop{display:none!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width:1280px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width:1472px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width:768px){.is-invisible-mobile{visibility:hidden!important}}@media screen and (min-width:769px),print{.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width:1087px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width:1088px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width:1280px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width:1472px){.is-invisible-fullhd{visibility:hidden!important}}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.box{background-color:#fff;border-radius:6px;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);color:#4a4a4a;display:block;padding:1.25rem}a.box:focus,a.box:hover{box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px #3273dc}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.375em - 1px);padding-left:.75em;padding-right:.75em;padding-top:calc(.375em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-large,.button .icon.is-medium,.button .icon.is-small{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.375em - 1px);margin-right:.1875em}.button .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:calc(-.375em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.375em - 1px);margin-right:calc(-.375em - 1px)}.button.is-hovered,.button:hover{border-color:#b5b5b5;color:#363636}.button.is-focused,.button:focus{border-color:#3273dc;color:#363636}.button.is-focused:not(:active),.button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-active,.button:active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text.is-focused,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text:hover{background-color:#f5f5f5;color:#363636}.button.is-text.is-active,.button.is-text:active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled]{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white.is-hovered,.button.is-white:hover{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white.is-focused,.button.is-white:focus{border-color:transparent;color:#0a0a0a}.button.is-white.is-focused:not(:active),.button.is-white:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white.is-active,.button.is-white:active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled]{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover{background-color:#000}.button.is-white.is-inverted[disabled]{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:focus,.button.is-white.is-outlined:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-white.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined:hover{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black.is-hovered,.button.is-black:hover{background-color:#040404;border-color:transparent;color:#fff}.button.is-black.is-focused,.button.is-black:focus{border-color:transparent;color:#fff}.button.is-black.is-focused:not(:active),.button.is-black:focus:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black.is-active,.button.is-black:active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled]{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover{background-color:#f2f2f2}.button.is-black.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:focus,.button.is-black.is-outlined:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-outlined[disabled]{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined:hover{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:#363636}.button.is-light.is-hovered,.button.is-light:hover{background-color:#eee;border-color:transparent;color:#363636}.button.is-light.is-focused,.button.is-light:focus{border-color:transparent;color:#363636}.button.is-light.is-focused:not(:active),.button.is-light:focus:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light.is-active,.button.is-light:active{background-color:#e8e8e8;border-color:transparent;color:#363636}.button.is-light[disabled]{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{background-color:#363636;color:#f5f5f5}.button.is-light.is-inverted:hover{background-color:#292929}.button.is-light.is-inverted[disabled]{background-color:#363636;border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent #363636 #363636!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:focus,.button.is-light.is-outlined:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-light.is-outlined[disabled]{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined:hover{background-color:#363636;color:#f5f5f5}.button.is-light.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark{background-color:#363636;border-color:transparent;color:#f5f5f5}.button.is-dark.is-hovered,.button.is-dark:hover{background-color:#2f2f2f;border-color:transparent;color:#f5f5f5}.button.is-dark.is-focused,.button.is-dark:focus{border-color:transparent;color:#f5f5f5}.button.is-dark.is-focused:not(:active),.button.is-dark:focus:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark.is-active,.button.is-dark:active{background-color:#292929;border-color:transparent;color:#f5f5f5}.button.is-dark[disabled]{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#f5f5f5;color:#363636}.button.is-dark.is-inverted:hover{background-color:#e8e8e8}.button.is-dark.is-inverted[disabled]{background-color:#f5f5f5;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined:hover{background-color:#363636;border-color:#363636;color:#f5f5f5}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-outlined[disabled]{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined:hover{background-color:#f5f5f5;color:#363636}.button.is-dark.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary.is-hovered,.button.is-primary:hover{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary.is-focused,.button.is-primary:focus{border-color:transparent;color:#fff}.button.is-primary.is-focused:not(:active),.button.is-primary:focus:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary.is-active,.button.is-primary:active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled]{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined:hover{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-outlined[disabled]{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined:hover{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link{background-color:#3273dc;border-color:transparent;color:#fff}.button.is-link.is-hovered,.button.is-link:hover{background-color:#276cda;border-color:transparent;color:#fff}.button.is-link.is-focused,.button.is-link:focus{border-color:transparent;color:#fff}.button.is-link.is-focused:not(:active),.button.is-link:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-link.is-active,.button.is-link:active{background-color:#2366d1;border-color:transparent;color:#fff}.button.is-link[disabled]{background-color:#3273dc;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#3273dc}.button.is-link.is-inverted:hover{background-color:#f2f2f2}.button.is-link.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#3273dc}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;color:#3273dc}.button.is-link.is-outlined:focus,.button.is-link.is-outlined:hover{background-color:#3273dc;border-color:#3273dc;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #3273dc #3273dc!important}.button.is-link.is-outlined[disabled]{background-color:transparent;border-color:#3273dc;box-shadow:none;color:#3273dc}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined:hover{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info{background-color:#209cee;border-color:transparent;color:#fff}.button.is-info.is-hovered,.button.is-info:hover{background-color:#1496ed;border-color:transparent;color:#fff}.button.is-info.is-focused,.button.is-info:focus{border-color:transparent;color:#fff}.button.is-info.is-focused:not(:active),.button.is-info:focus:not(:active){box-shadow:0 0 0 .125em rgba(32,156,238,.25)}.button.is-info.is-active,.button.is-info:active{background-color:#118fe4;border-color:transparent;color:#fff}.button.is-info[disabled]{background-color:#209cee;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#209cee}.button.is-info.is-inverted:hover{background-color:#f2f2f2}.button.is-info.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#209cee}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#209cee;color:#209cee}.button.is-info.is-outlined:focus,.button.is-info.is-outlined:hover{background-color:#209cee;border-color:#209cee;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #209cee #209cee!important}.button.is-info.is-outlined[disabled]{background-color:transparent;border-color:#209cee;box-shadow:none;color:#209cee}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined:hover{background-color:#fff;color:#209cee}.button.is-info.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success{background-color:#23d160;border-color:transparent;color:#fff}.button.is-success.is-hovered,.button.is-success:hover{background-color:#22c65b;border-color:transparent;color:#fff}.button.is-success.is-focused,.button.is-success:focus{border-color:transparent;color:#fff}.button.is-success.is-focused:not(:active),.button.is-success:focus:not(:active){box-shadow:0 0 0 .125em rgba(35,209,96,.25)}.button.is-success.is-active,.button.is-success:active{background-color:#20bc56;border-color:transparent;color:#fff}.button.is-success[disabled]{background-color:#23d160;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#23d160}.button.is-success.is-inverted:hover{background-color:#f2f2f2}.button.is-success.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#23d160}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#23d160;color:#23d160}.button.is-success.is-outlined:focus,.button.is-success.is-outlined:hover{background-color:#23d160;border-color:#23d160;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #23d160 #23d160!important}.button.is-success.is-outlined[disabled]{background-color:transparent;border-color:#23d160;box-shadow:none;color:#23d160}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined:hover{background-color:#fff;color:#23d160}.button.is-success.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-hovered,.button.is-warning:hover{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused,.button.is-warning:focus{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused:not(:active),.button.is-warning:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.button.is-warning.is-active,.button.is-warning:active{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled]{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted:hover{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled]{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined:hover{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffdd57 #ffdd57!important}.button.is-warning.is-outlined[disabled]{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined:hover{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-danger{background-color:#ff3860;border-color:transparent;color:#fff}.button.is-danger.is-hovered,.button.is-danger:hover{background-color:#ff2b56;border-color:transparent;color:#fff}.button.is-danger.is-focused,.button.is-danger:focus{border-color:transparent;color:#fff}.button.is-danger.is-focused:not(:active),.button.is-danger:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,56,96,.25)}.button.is-danger.is-active,.button.is-danger:active{background-color:#ff1f4b;border-color:transparent;color:#fff}.button.is-danger[disabled]{background-color:#ff3860;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#ff3860}.button.is-danger.is-inverted:hover{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#ff3860}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#ff3860;color:#ff3860}.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined:hover{background-color:#ff3860;border-color:#ff3860;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #ff3860 #ff3860!important}.button.is-danger.is-outlined[disabled]{background-color:transparent;border-color:#ff3860;box-shadow:none;color:#ff3860}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined:hover{background-color:#fff;color:#ff3860}.button.is-danger.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-small{border-radius:2px;font-size:.75rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled]{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:290486px;padding-left:1em;padding-right:1em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button.is-hovered,.buttons.has-addons .button:hover{z-index:2}.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-focused,.buttons.has-addons .button.is-selected,.buttons.has-addons .button:active,.buttons.has-addons .button:focus{z-index:3}.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button.is-selected:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button:focus:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1}.buttons.is-centered{justify-content:center}.buttons.is-right{justify-content:flex-end}.container{margin:0 auto;position:relative}@media screen and (min-width:1088px){.container{max-width:960px;width:960px}.container.is-fluid{margin-left:64px;margin-right:64px;max-width:none;width:auto}}@media screen and (max-width:1279px){.container.is-widescreen{max-width:1152px;width:auto}}@media screen and (max-width:1471px){.container.is-fullhd{max-width:1344px;width:auto}}@media screen and (min-width:1280px){.container{max-width:1152px;width:1152px}}@media screen and (min-width:1472px){.container{max-width:1344px;width:1344px}}.content li+li{margin-top:.25em}.content blockquote:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content p:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child),.content ul:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style:decimal outside;margin-left:2em;margin-top:1em}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sub,.content sup{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636;text-align:left}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content.is-small{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.input,.textarea{background-color:#fff;border-color:#dbdbdb;color:#363636;box-shadow:inset 0 1px 2px rgba(10,10,10,.1);max-width:100%;width:100%}.input::-moz-placeholder,.textarea::-moz-placeholder{color:rgba(54,54,54,.3)}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.input:-moz-placeholder,.textarea:-moz-placeholder{color:rgba(54,54,54,.3)}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder{color:rgba(54,54,54,.3)}.input.is-hovered,.input:hover,.textarea.is-hovered,.textarea:hover{border-color:#b5b5b5}.input.is-active,.input.is-focused,.input:active,.input:focus,.textarea.is-active,.textarea.is-focused,.textarea:active,.textarea:focus{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.input[disabled],.textarea[disabled]{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.input[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder{color:rgba(122,122,122,.3)}.input[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.input[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder{color:rgba(122,122,122,.3)}.input[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder{color:rgba(122,122,122,.3)}.input[readonly],.textarea[readonly]{box-shadow:none}.input.is-white,.textarea.is-white{border-color:#fff}.input.is-white.is-active,.input.is-white.is-focused,.input.is-white:active,.input.is-white:focus,.textarea.is-white.is-active,.textarea.is-white.is-focused,.textarea.is-white:active,.textarea.is-white:focus{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.input.is-black,.textarea.is-black{border-color:#0a0a0a}.input.is-black.is-active,.input.is-black.is-focused,.input.is-black:active,.input.is-black:focus,.textarea.is-black.is-active,.textarea.is-black.is-focused,.textarea.is-black:active,.textarea.is-black:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.input.is-light,.textarea.is-light{border-color:#f5f5f5}.input.is-light.is-active,.input.is-light.is-focused,.input.is-light:active,.input.is-light:focus,.textarea.is-light.is-active,.textarea.is-light.is-focused,.textarea.is-light:active,.textarea.is-light:focus{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.input.is-dark,.textarea.is-dark{border-color:#363636}.input.is-dark.is-active,.input.is-dark.is-focused,.input.is-dark:active,.input.is-dark:focus,.textarea.is-dark.is-active,.textarea.is-dark.is-focused,.textarea.is-dark:active,.textarea.is-dark:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.input.is-primary,.textarea.is-primary{border-color:#00d1b2}.input.is-primary.is-active,.input.is-primary.is-focused,.input.is-primary:active,.input.is-primary:focus,.textarea.is-primary.is-active,.textarea.is-primary.is-focused,.textarea.is-primary:active,.textarea.is-primary:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.input.is-link,.textarea.is-link{border-color:#3273dc}.input.is-link.is-active,.input.is-link.is-focused,.input.is-link:active,.input.is-link:focus,.textarea.is-link.is-active,.textarea.is-link.is-focused,.textarea.is-link:active,.textarea.is-link:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.input.is-info,.textarea.is-info{border-color:#209cee}.input.is-info.is-active,.input.is-info.is-focused,.input.is-info:active,.input.is-info:focus,.textarea.is-info.is-active,.textarea.is-info.is-focused,.textarea.is-info:active,.textarea.is-info:focus{box-shadow:0 0 0 .125em rgba(32,156,238,.25)}.input.is-success,.textarea.is-success{border-color:#23d160}.input.is-success.is-active,.input.is-success.is-focused,.input.is-success:active,.input.is-success:focus,.textarea.is-success.is-active,.textarea.is-success.is-focused,.textarea.is-success:active,.textarea.is-success:focus{box-shadow:0 0 0 .125em rgba(35,209,96,.25)}.input.is-warning,.textarea.is-warning{border-color:#ffdd57}.input.is-warning.is-active,.input.is-warning.is-focused,.input.is-warning:active,.input.is-warning:focus,.textarea.is-warning.is-active,.textarea.is-warning.is-focused,.textarea.is-warning:active,.textarea.is-warning:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.input.is-danger,.textarea.is-danger{border-color:#ff3860}.input.is-danger.is-active,.input.is-danger.is-focused,.input.is-danger:active,.input.is-danger:focus,.textarea.is-danger.is-active,.textarea.is-danger.is-focused,.textarea.is-danger:active,.textarea.is-danger:focus{box-shadow:0 0 0 .125em rgba(255,56,96,.25)}.input.is-small,.textarea.is-small{border-radius:2px;font-size:.75rem}.input.is-medium,.textarea.is-medium{font-size:1.25rem}.input.is-large,.textarea.is-large{font-size:1.5rem}.input.is-fullwidth,.textarea.is-fullwidth{display:block;width:100%}.input.is-inline,.textarea.is-inline{display:inline;width:auto}.input.is-rounded{border-radius:290486px;padding-left:1em;padding-right:1em}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:.625em;resize:vertical}.textarea:not([rows]){max-height:600px;min-height:120px}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox[disabled],.radio[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.25em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#3273dc;right:1.125em;z-index:4}.select.is-rounded select{border-radius:290486px;padding-left:1em}.select select{background-color:#fff;border-color:#dbdbdb;color:#363636;cursor:pointer;display:block;font-size:1em;max-width:100%;outline:0}.select select::-moz-placeholder{color:rgba(54,54,54,.3)}.select select::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.select select:-moz-placeholder{color:rgba(54,54,54,.3)}.select select:-ms-input-placeholder{color:rgba(54,54,54,.3)}.select select.is-hovered,.select select:hover{border-color:#b5b5b5}.select select.is-active,.select select.is-focused,.select select:active,.select select:focus{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select select[disabled]{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select select[disabled]::-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-ms-input-placeholder{color:rgba(122,122,122,.3)}.select select::-ms-expand{display:none}.select select[disabled]:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:initial;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select.is-hovered,.select.is-white select:hover{border-color:#f2f2f2}.select.is-white select.is-active,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select:focus{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select.is-hovered,.select.is-black select:hover{border-color:#000}.select.is-black select.is-active,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select.is-hovered,.select.is-light select:hover{border-color:#e8e8e8}.select.is-light select.is-active,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select:focus{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select.is-hovered,.select.is-dark select:hover{border-color:#292929}.select.is-dark select.is-active,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select.is-hovered,.select.is-primary select:hover{border-color:#00b89c}.select.is-primary select.is-active,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:#3273dc}.select.is-link select{border-color:#3273dc}.select.is-link select.is-hovered,.select.is-link select:hover{border-color:#2366d1}.select.is-link select.is-active,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select.is-info:not(:hover)::after{border-color:#209cee}.select.is-info select{border-color:#209cee}.select.is-info select.is-hovered,.select.is-info select:hover{border-color:#118fe4}.select.is-info select.is-active,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select:focus{box-shadow:0 0 0 .125em rgba(32,156,238,.25)}.select.is-success:not(:hover)::after{border-color:#23d160}.select.is-success select{border-color:#23d160}.select.is-success select.is-hovered,.select.is-success select:hover{border-color:#20bc56}.select.is-success select.is-active,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select:focus{box-shadow:0 0 0 .125em rgba(35,209,96,.25)}.select.is-warning:not(:hover)::after{border-color:#ffdd57}.select.is-warning select{border-color:#ffdd57}.select.is-warning select.is-hovered,.select.is-warning select:hover{border-color:#ffd83d}.select.is-warning select.is-active,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.select.is-danger:not(:hover)::after{border-color:#ff3860}.select.is-danger select{border-color:#ff3860}.select.is-danger select.is-hovered,.select.is-danger select:hover{border-color:#ff1f4b}.select.is-danger select.is-active,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select:focus{box-shadow:0 0 0 .125em rgba(255,56,96,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#7a7a7a}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;-webkit-transform:none;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white.is-hovered .file-cta,.file.is-white:hover .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white.is-focused .file-cta,.file.is-white:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:#0a0a0a}.file.is-white.is-active .file-cta,.file.is-white:active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black.is-hovered .file-cta,.file.is-black:hover .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black.is-focused .file-cta,.file.is-black:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black.is-active .file-cta,.file.is-black:active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:#363636}.file.is-light.is-hovered .file-cta,.file.is-light:hover .file-cta{background-color:#eee;border-color:transparent;color:#363636}.file.is-light.is-focused .file-cta,.file.is-light:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:#363636}.file.is-light.is-active .file-cta,.file.is-light:active .file-cta{background-color:#e8e8e8;border-color:transparent;color:#363636}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#f5f5f5}.file.is-dark.is-hovered .file-cta,.file.is-dark:hover .file-cta{background-color:#2f2f2f;border-color:transparent;color:#f5f5f5}.file.is-dark.is-focused .file-cta,.file.is-dark:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#f5f5f5}.file.is-dark.is-active .file-cta,.file.is-dark:active .file-cta{background-color:#292929;border-color:transparent;color:#f5f5f5}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary.is-hovered .file-cta,.file.is-primary:hover .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary.is-focused .file-cta,.file.is-primary:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary.is-active .file-cta,.file.is-primary:active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#3273dc;border-color:transparent;color:#fff}.file.is-link.is-hovered .file-cta,.file.is-link:hover .file-cta{background-color:#276cda;border-color:transparent;color:#fff}.file.is-link.is-focused .file-cta,.file.is-link:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,115,220,.25);color:#fff}.file.is-link.is-active .file-cta,.file.is-link:active .file-cta{background-color:#2366d1;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#209cee;border-color:transparent;color:#fff}.file.is-info.is-hovered .file-cta,.file.is-info:hover .file-cta{background-color:#1496ed;border-color:transparent;color:#fff}.file.is-info.is-focused .file-cta,.file.is-info:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(32,156,238,.25);color:#fff}.file.is-info.is-active .file-cta,.file.is-info:active .file-cta{background-color:#118fe4;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#23d160;border-color:transparent;color:#fff}.file.is-success.is-hovered .file-cta,.file.is-success:hover .file-cta{background-color:#22c65b;border-color:transparent;color:#fff}.file.is-success.is-focused .file-cta,.file.is-success:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(35,209,96,.25);color:#fff}.file.is-success.is-active .file-cta,.file.is-success:active .file-cta{background-color:#20bc56;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-hovered .file-cta,.file.is-warning:hover .file-cta{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-focused .file-cta,.file.is-warning:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,221,87,.25);color:rgba(0,0,0,.7)}.file.is-warning.is-active .file-cta,.file.is-warning:active .file-cta{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#ff3860;border-color:transparent;color:#fff}.file.is-danger.is-hovered .file-cta,.file.is-danger:hover .file-cta{background-color:#ff2b56;border-color:transparent;color:#fff}.file.is-danger.is-focused .file-cta,.file.is-danger:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,56,96,.25);color:#fff}.file.is-danger.is-active .file-cta,.file.is-danger:active .file-cta{background-color:#ff1f4b;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:.01em;left:0;outline:0;position:absolute;top:0;width:.01em}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:left;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#3273dc}.help.is-info{color:#209cee}.help.is-success{color:#23d160}.help.is-warning{color:#ffdd57}.help.is-danger{color:#ff3860}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child .button,.field.has-addons .control:first-child .input,.field.has-addons .control:first-child .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child .button,.field.has-addons .control:last-child .input,.field.has-addons .control:last-child .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button.is-hovered,.field.has-addons .control .button:hover,.field.has-addons .control .input.is-hovered,.field.has-addons .control .input:hover,.field.has-addons .control .select select.is-hovered,.field.has-addons .control .select select:hover{z-index:2}.field.has-addons .control .button.is-active,.field.has-addons .control .button.is-focused,.field.has-addons .control .button:active,.field.has-addons .control .button:focus,.field.has-addons .control .input.is-active,.field.has-addons .control .input.is-focused,.field.has-addons .control .input:active,.field.has-addons .control .input:focus,.field.has-addons .control .select select.is-active,.field.has-addons .control .select select.is-focused,.field.has-addons .control .select select:active,.field.has-addons .control .select select:focus{z-index:3}.field.has-addons .control .button.is-active:hover,.field.has-addons .control .button.is-focused:hover,.field.has-addons .control .button:active:hover,.field.has-addons .control .button:focus:hover,.field.has-addons .control .input.is-active:hover,.field.has-addons .control .input.is-focused:hover,.field.has-addons .control .input:active:hover,.field.has-addons .control .input:focus:hover,.field.has-addons .control .select select.is-active:hover,.field.has-addons .control .select select.is-focused:hover,.field.has-addons .control .select select:active:hover,.field.has-addons .control .select select:focus:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width:769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width:768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width:769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width:769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{clear:both;font-size:1rem;position:relative;text-align:left}.control.has-icon .icon{color:#dbdbdb;height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}.control.has-icon .input:focus+.icon{color:#7a7a7a}.control.has-icon .input.is-small+.icon{font-size:.75rem}.control.has-icon .input.is-medium+.icon{font-size:1.25rem}.control.has-icon .input.is-large+.icon{font-size:1.5rem}.control.has-icon:not(.has-icon-right) .icon{left:0}.control.has-icon:not(.has-icon-right) .input{padding-left:2.25em}.control.has-icon.has-icon-right .icon{right:0}.control.has-icon.has-icon-right .input{padding-right:2.25em}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#7a7a7a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.25em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.25em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:290486px}.image.is-16by9 img,.image.is-1by1 img,.image.is-1by2 img,.image.is-1by3 img,.image.is-2by1 img,.image.is-2by3 img,.image.is-3by1 img,.image.is-3by2 img,.image.is-3by4 img,.image.is-3by5 img,.image.is-4by3 img,.image.is-4by5 img,.image.is-5by3 img,.image.is-5by4 img,.image.is-9by16 img,.image.is-square img{height:100%;width:100%}.image.is-1by1,.image.is-square{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:0 0}.notification>.delete{position:absolute;right:.5rem;top:.5rem}.notification .content,.notification .subtitle,.notification .title{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:#363636}.notification.is-dark{background-color:#363636;color:#f5f5f5}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-link{background-color:#3273dc;color:#fff}.notification.is-info{background-color:#209cee;color:#fff}.notification.is-success{background-color:#23d160;color:#fff}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.notification.is-danger{background-color:#ff3860;color:#fff}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#dbdbdb}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-link::-webkit-progress-value{background-color:#3273dc}.progress.is-link::-moz-progress-bar{background-color:#3273dc}.progress.is-link::-ms-fill{background-color:#3273dc}.progress.is-info::-webkit-progress-value{background-color:#209cee}.progress.is-info::-moz-progress-bar{background-color:#209cee}.progress.is-info::-ms-fill{background-color:#209cee}.progress.is-success::-webkit-progress-value{background-color:#23d160}.progress.is-success::-moz-progress-bar{background-color:#23d160}.progress.is-success::-ms-fill{background-color:#23d160}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-danger::-webkit-progress-value{background-color:#ff3860}.progress.is-danger::-moz-progress-bar{background-color:#ff3860}.progress.is-danger::-ms-fill{background-color:#ff3860}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#f5f5f5}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#3273dc;border-color:#3273dc;color:#fff}.table td.is-info,.table th.is-info{background-color:#209cee;border-color:#209cee;color:#fff}.table td.is-success,.table th.is-success{background-color:#23d160;border-color:#23d160;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.table td.is-danger,.table th.is-danger{background-color:#ff3860;border-color:#ff3860;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table th{color:#363636;text-align:left}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.tags.has-addons .tag:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:#363636}.tag:not(body).is-dark{background-color:#363636;color:#f5f5f5}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-link{background-color:#3273dc;color:#fff}.tag:not(body).is-info{background-color:#209cee;color:#fff}.tag:not(body).is-success{background-color:#23d160;color:#fff}.tag:not(body).is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.tag:not(body).is-danger{background-color:#ff3860;color:#fff}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete::after,.tag:not(body).is-delete::before{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);-webkit-transform-origin:center center;transform-origin:center center}.tag:not(body).is-delete::before{height:1px;width:50%}.tag:not(body).is-delete::after{height:50%;width:1px}.tag:not(body).is-delete:focus,.tag:not(body).is-delete:hover{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:290486px}a.tag:hover{text-decoration:underline}.subtitle,.title{word-break:break-word}.subtitle em,.subtitle span,.title em,.title span{font-weight:inherit}.subtitle sub,.title sub{font-size:.75em}.subtitle sup,.title sup{font-size:.75em}.subtitle .tag,.title .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#3273dc;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ol,.breadcrumb ul{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:"\02192"}.breadcrumb.has-bullet-separator li+li::before{content:"\02022"}.breadcrumb.has-dot-separator li+li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}.card{background-color:#fff;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);color:#4a4a4a;max-width:100%;position:relative}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 1px 2px rgba(10,10,10,.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem}.card-image{display:block;position:relative}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid #dbdbdb;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #dbdbdb}.card .media:not(:last-child){margin-bottom:.75rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item{padding-right:3rem;white-space:nowrap}a.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active{background-color:#3273dc;color:#fff}.dropdown-divider{background-color:#dbdbdb;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item{margin-right:.75rem}.level.is-mobile .level-item:not(:last-child){margin-bottom:0}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width:769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .subtitle,.level-item .title{margin-bottom:0}@media screen and (max-width:768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width:769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width:768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width:769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width:769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:left}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:left}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#3273dc;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff;color:#4d4d4d}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a;color:#090909}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:#363636}.message.is-light .message-body{border-color:#f5f5f5;color:#505050}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#f5f5f5}.message.is-dark .message-body{border-color:#363636;color:#2a2a2a}.message.is-primary{background-color:#f5fffd}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#021310}.message.is-link{background-color:#f6f9fe}.message.is-link .message-header{background-color:#3273dc;color:#fff}.message.is-link .message-body{border-color:#3273dc;color:#22509a}.message.is-info{background-color:#f6fbfe}.message.is-info .message-header{background-color:#209cee;color:#fff}.message.is-info .message-body{border-color:#209cee;color:#12537e}.message.is-success{background-color:#f6fef9}.message.is-success .message-header{background-color:#23d160;color:#fff}.message.is-success .message-body{border-color:#23d160;color:#0e301a}.message.is-warning{background-color:#fffdf5}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#3b3108}.message.is-danger{background-color:#fff5f7}.message.is-danger .message-header{background-color:#ff3860;color:#fff}.message.is-danger .message-body{border-color:#ff3860;color:#cd0930}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-card,.modal-content{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width:769px),print{.modal-card,.modal-content{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:0 0;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden}.modal-card-foot,.modal-card-head{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:10px}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link,.navbar.is-white .navbar-brand>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link.is-active,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}@media screen and (min-width:1088px){.navbar.is-white .navbar-end .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-start>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link.is-active,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link::after,.navbar.is-white .navbar-start .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand .navbar-link,.navbar.is-black .navbar-brand>.navbar-item{color:#fff}.navbar.is-black .navbar-brand .navbar-link.is-active,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-black .navbar-end .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-start>.navbar-item{color:#fff}.navbar.is-black .navbar-end .navbar-link.is-active,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-end .navbar-link::after,.navbar.is-black .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:#363636}.navbar.is-light .navbar-brand .navbar-link,.navbar.is-light .navbar-brand>.navbar-item{color:#363636}.navbar.is-light .navbar-brand .navbar-link.is-active,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand>a.navbar-item:hover{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-brand .navbar-link::after{border-color:#363636}@media screen and (min-width:1088px){.navbar.is-light .navbar-end .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-start>.navbar-item{color:#363636}.navbar.is-light .navbar-end .navbar-link.is-active,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start>a.navbar-item:hover{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-end .navbar-link::after,.navbar.is-light .navbar-start .navbar-link::after{border-color:#363636}.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#363636}}.navbar.is-dark{background-color:#363636;color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link,.navbar.is-dark .navbar-brand>.navbar-item{color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link.is-active,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand>a.navbar-item:hover{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link::after{border-color:#f5f5f5}@media screen and (min-width:1088px){.navbar.is-dark .navbar-end .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-start>.navbar-item{color:#f5f5f5}.navbar.is-dark .navbar-end .navbar-link.is-active,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start>a.navbar-item:hover{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-end .navbar-link::after,.navbar.is-dark .navbar-start .navbar-link::after{border-color:#f5f5f5}.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#f5f5f5}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand .navbar-link,.navbar.is-primary .navbar-brand>.navbar-item{color:#fff}.navbar.is-primary .navbar-brand .navbar-link.is-active,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-primary .navbar-end .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-start>.navbar-item{color:#fff}.navbar.is-primary .navbar-end .navbar-link.is-active,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-end .navbar-link::after,.navbar.is-primary .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#3273dc;color:#fff}.navbar.is-link .navbar-brand .navbar-link,.navbar.is-link .navbar-brand>.navbar-item{color:#fff}.navbar.is-link .navbar-brand .navbar-link.is-active,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-link .navbar-end .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-start>.navbar-item{color:#fff}.navbar.is-link .navbar-end .navbar-link.is-active,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-end .navbar-link::after,.navbar.is-link .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#3273dc;color:#fff}}.navbar.is-info{background-color:#209cee;color:#fff}.navbar.is-info .navbar-brand .navbar-link,.navbar.is-info .navbar-brand>.navbar-item{color:#fff}.navbar.is-info .navbar-brand .navbar-link.is-active,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand>a.navbar-item:hover{background-color:#118fe4;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-info .navbar-end .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-start>.navbar-item{color:#fff}.navbar.is-info .navbar-end .navbar-link.is-active,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start>a.navbar-item:hover{background-color:#118fe4;color:#fff}.navbar.is-info .navbar-end .navbar-link::after,.navbar.is-info .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link{background-color:#118fe4;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#209cee;color:#fff}}.navbar.is-success{background-color:#23d160;color:#fff}.navbar.is-success .navbar-brand .navbar-link,.navbar.is-success .navbar-brand>.navbar-item{color:#fff}.navbar.is-success .navbar-brand .navbar-link.is-active,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand>a.navbar-item:hover{background-color:#20bc56;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-success .navbar-end .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-start>.navbar-item{color:#fff}.navbar.is-success .navbar-end .navbar-link.is-active,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start>a.navbar-item:hover{background-color:#20bc56;color:#fff}.navbar.is-success .navbar-end .navbar-link::after,.navbar.is-success .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link{background-color:#20bc56;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#23d160;color:#fff}}.navbar.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link,.navbar.is-warning .navbar-brand>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link.is-active,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,.7)}@media screen and (min-width:1088px){.navbar.is-warning .navbar-end .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-start>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link.is-active,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link::after,.navbar.is-warning .navbar-start .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,.7)}}.navbar.is-danger{background-color:#ff3860;color:#fff}.navbar.is-danger .navbar-brand .navbar-link,.navbar.is-danger .navbar-brand>.navbar-item{color:#fff}.navbar.is-danger .navbar-brand .navbar-link.is-active,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand>a.navbar-item:hover{background-color:#ff1f4b;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-danger .navbar-end .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-start>.navbar-item{color:#fff}.navbar.is-danger .navbar-end .navbar-link.is-active,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start>a.navbar-item:hover{background-color:#ff1f4b;color:#fff}.navbar.is-danger .navbar-end .navbar-link::after,.navbar.is-danger .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link{background-color:#ff1f4b;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#ff3860;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}body.has-navbar-fixed-top,html.has-navbar-fixed-top{padding-top:3.25rem}body.has-navbar-fixed-bottom,html.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;-webkit-transform-origin:center;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,-webkit-transform;transition-property:background-color,opacity,transform;transition-property:background-color,opacity,transform,-webkit-transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,.05)}.navbar-burger.is-active span:nth-child(1){-webkit-transform:translateY(5px) rotate(45deg);transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){-webkit-transform:translateY(-5px) rotate(-45deg);transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}.navbar-link,a.navbar-item{cursor:pointer}.navbar-link.is-active,.navbar-link:hover,a.navbar-item.is-active,a.navbar-item:hover{background-color:#fafafa;color:#3273dc}.navbar-item{display:block;flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#3273dc}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#3273dc;border-bottom-style:solid;border-bottom-width:3px;color:#3273dc;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#3273dc;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width:1087px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,.1);padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}body.has-navbar-fixed-top-touch,html.has-navbar-fixed-top-touch{padding-top:3.25rem}body.has-navbar-fixed-bottom-touch,html.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width:1088px){.navbar,.navbar-end,.navbar-menu,.navbar-start{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-end,.navbar.is-spaced .navbar-start{align-items:center}.navbar.is-spaced .navbar-link,.navbar.is-spaced a.navbar-item{border-radius:4px}.navbar.is-transparent .navbar-link.is-active,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent a.navbar-item:hover{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item{display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{-webkit-transform:rotate(135deg) translate(.25em,-.25em);transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown{opacity:1;pointer-events:auto;-webkit-transform:translateY(0);transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,.1);display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-dropdown{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));-webkit-transform:translateY(-5px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.container>.navbar .navbar-brand,.navbar>.container .navbar-brand{margin-left:-.75rem}.container>.navbar .navbar-menu,.navbar>.container .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-desktop{top:0}body.has-navbar-fixed-top-desktop,html.has-navbar-fixed-top-desktop{padding-top:3.25rem}body.has-navbar-fixed-bottom-desktop,html.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}body.has-spaced-navbar-fixed-top,html.has-spaced-navbar-fixed-top{padding-top:5.25rem}body.has-spaced-navbar-fixed-bottom,html.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}.navbar-link.is-active,a.navbar-item.is-active{color:#0a0a0a}.navbar-link.is-active:not(:hover),a.navbar-item.is-active:not(:hover){background-color:transparent}.navbar-item.has-dropdown.is-active .navbar-link,.navbar-item.has-dropdown:hover .navbar-link{background-color:#fafafa}}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-next,.pagination.is-rounded .pagination-previous{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous{font-size:1em;padding-left:.5em;padding-right:.5em;justify-content:center;margin:.25rem;text-align:center}.pagination-link,.pagination-next,.pagination-previous{border-color:#dbdbdb;color:#363636;min-width:2.25em}.pagination-link:hover,.pagination-next:hover,.pagination-previous:hover{border-color:#b5b5b5;color:#363636}.pagination-link:focus,.pagination-next:focus,.pagination-previous:focus{border-color:#3273dc}.pagination-link:active,.pagination-next:active,.pagination-previous:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-link[disabled],.pagination-next[disabled],.pagination-previous[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-next,.pagination-previous{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#3273dc;border-color:#3273dc;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-next,.pagination-previous{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width:769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel-block,.panel-heading,.panel-tabs{border-bottom:1px solid #dbdbdb;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.panel-block:first-child,.panel-heading:first-child,.panel-tabs:first-child{border-top:1px solid #dbdbdb}.panel-heading{background-color:#f5f5f5;border-radius:4px 4px 0 0;color:#363636;font-size:1.25em;font-weight:300;line-height:1.25;padding:.5em .75em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#3273dc}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#3273dc;color:#363636}.panel-block.is-active .panel-icon{color:#3273dc}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#3273dc;color:#3273dc}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-radius:4px 0 0 4px}.tabs.is-toggle li:last-child a{border-radius:0 4px 4px 0}.tabs.is-toggle li.is-active a{background-color:#3273dc;border-color:#3273dc;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333%}.columns.is-mobile>.column.is-2{flex:none;width:16.66667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333%}.columns.is-mobile>.column.is-5{flex:none;width:41.66667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333%}.columns.is-mobile>.column.is-8{flex:none;width:66.66667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333%}.columns.is-mobile>.column.is-11{flex:none;width:91.66667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width:768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-1-mobile{flex:none;width:8.33333%}.column.is-offset-1-mobile{margin-left:8.33333%}.column.is-2-mobile{flex:none;width:16.66667%}.column.is-offset-2-mobile{margin-left:16.66667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333%}.column.is-offset-4-mobile{margin-left:33.33333%}.column.is-5-mobile{flex:none;width:41.66667%}.column.is-offset-5-mobile{margin-left:41.66667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333%}.column.is-offset-7-mobile{margin-left:58.33333%}.column.is-8-mobile{flex:none;width:66.66667%}.column.is-offset-8-mobile{margin-left:66.66667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333%}.column.is-offset-10-mobile{margin-left:83.33333%}.column.is-11-mobile{flex:none;width:91.66667%}.column.is-offset-11-mobile{margin-left:91.66667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width:769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width:1087px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-1-touch{flex:none;width:8.33333%}.column.is-offset-1-touch{margin-left:8.33333%}.column.is-2-touch{flex:none;width:16.66667%}.column.is-offset-2-touch{margin-left:16.66667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333%}.column.is-offset-4-touch{margin-left:33.33333%}.column.is-5-touch{flex:none;width:41.66667%}.column.is-offset-5-touch{margin-left:41.66667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333%}.column.is-offset-7-touch{margin-left:58.33333%}.column.is-8-touch{flex:none;width:66.66667%}.column.is-offset-8-touch{margin-left:66.66667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333%}.column.is-offset-10-touch{margin-left:83.33333%}.column.is-11-touch{flex:none;width:91.66667%}.column.is-offset-11-touch{margin-left:91.66667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width:1088px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-1-desktop{flex:none;width:8.33333%}.column.is-offset-1-desktop{margin-left:8.33333%}.column.is-2-desktop{flex:none;width:16.66667%}.column.is-offset-2-desktop{margin-left:16.66667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333%}.column.is-offset-4-desktop{margin-left:33.33333%}.column.is-5-desktop{flex:none;width:41.66667%}.column.is-offset-5-desktop{margin-left:41.66667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333%}.column.is-offset-7-desktop{margin-left:58.33333%}.column.is-8-desktop{flex:none;width:66.66667%}.column.is-offset-8-desktop{margin-left:66.66667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333%}.column.is-offset-10-desktop{margin-left:83.33333%}.column.is-11-desktop{flex:none;width:91.66667%}.column.is-offset-11-desktop{margin-left:91.66667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width:1280px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-1-widescreen{flex:none;width:8.33333%}.column.is-offset-1-widescreen{margin-left:8.33333%}.column.is-2-widescreen{flex:none;width:16.66667%}.column.is-offset-2-widescreen{margin-left:16.66667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333%}.column.is-offset-4-widescreen{margin-left:33.33333%}.column.is-5-widescreen{flex:none;width:41.66667%}.column.is-offset-5-widescreen{margin-left:41.66667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333%}.column.is-offset-7-widescreen{margin-left:58.33333%}.column.is-8-widescreen{flex:none;width:66.66667%}.column.is-offset-8-widescreen{margin-left:66.66667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333%}.column.is-offset-10-widescreen{margin-left:83.33333%}.column.is-11-widescreen{flex:none;width:91.66667%}.column.is-offset-11-widescreen{margin-left:91.66667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width:1472px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-1-fullhd{flex:none;width:8.33333%}.column.is-offset-1-fullhd{margin-left:8.33333%}.column.is-2-fullhd{flex:none;width:16.66667%}.column.is-offset-2-fullhd{margin-left:16.66667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333%}.column.is-offset-4-fullhd{margin-left:33.33333%}.column.is-5-fullhd{flex:none;width:41.66667%}.column.is-offset-5-fullhd{margin-left:41.66667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333%}.column.is-offset-7-fullhd{margin-left:58.33333%}.column.is-8-fullhd{flex:none;width:66.66667%}.column.is-offset-8-fullhd{margin-left:66.66667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333%}.column.is-offset-10-fullhd{margin-left:83.33333%}.column.is-11-fullhd{flex:none;width:91.66667%}.column.is-offset-11-fullhd{margin-left:91.66667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width:769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width:1088px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap:0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap:0rem}@media screen and (max-width:768px){.columns.is-variable.is-0-mobile{--columnGap:0rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-0-tablet{--columnGap:0rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-0-tablet-only{--columnGap:0rem}}@media screen and (max-width:1087px){.columns.is-variable.is-0-touch{--columnGap:0rem}}@media screen and (min-width:1088px){.columns.is-variable.is-0-desktop{--columnGap:0rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-0-desktop-only{--columnGap:0rem}}@media screen and (min-width:1280px){.columns.is-variable.is-0-widescreen{--columnGap:0rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-0-widescreen-only{--columnGap:0rem}}@media screen and (min-width:1472px){.columns.is-variable.is-0-fullhd{--columnGap:0rem}}.columns.is-variable.is-1{--columnGap:0.25rem}@media screen and (max-width:768px){.columns.is-variable.is-1-mobile{--columnGap:0.25rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-1-tablet{--columnGap:0.25rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-1-tablet-only{--columnGap:0.25rem}}@media screen and (max-width:1087px){.columns.is-variable.is-1-touch{--columnGap:0.25rem}}@media screen and (min-width:1088px){.columns.is-variable.is-1-desktop{--columnGap:0.25rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-1-desktop-only{--columnGap:0.25rem}}@media screen and (min-width:1280px){.columns.is-variable.is-1-widescreen{--columnGap:0.25rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-1-widescreen-only{--columnGap:0.25rem}}@media screen and (min-width:1472px){.columns.is-variable.is-1-fullhd{--columnGap:0.25rem}}.columns.is-variable.is-2{--columnGap:0.5rem}@media screen and (max-width:768px){.columns.is-variable.is-2-mobile{--columnGap:0.5rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-2-tablet{--columnGap:0.5rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-2-tablet-only{--columnGap:0.5rem}}@media screen and (max-width:1087px){.columns.is-variable.is-2-touch{--columnGap:0.5rem}}@media screen and (min-width:1088px){.columns.is-variable.is-2-desktop{--columnGap:0.5rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-2-desktop-only{--columnGap:0.5rem}}@media screen and (min-width:1280px){.columns.is-variable.is-2-widescreen{--columnGap:0.5rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-2-widescreen-only{--columnGap:0.5rem}}@media screen and (min-width:1472px){.columns.is-variable.is-2-fullhd{--columnGap:0.5rem}}.columns.is-variable.is-3{--columnGap:0.75rem}@media screen and (max-width:768px){.columns.is-variable.is-3-mobile{--columnGap:0.75rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-3-tablet{--columnGap:0.75rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-3-tablet-only{--columnGap:0.75rem}}@media screen and (max-width:1087px){.columns.is-variable.is-3-touch{--columnGap:0.75rem}}@media screen and (min-width:1088px){.columns.is-variable.is-3-desktop{--columnGap:0.75rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-3-desktop-only{--columnGap:0.75rem}}@media screen and (min-width:1280px){.columns.is-variable.is-3-widescreen{--columnGap:0.75rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-3-widescreen-only{--columnGap:0.75rem}}@media screen and (min-width:1472px){.columns.is-variable.is-3-fullhd{--columnGap:0.75rem}}.columns.is-variable.is-4{--columnGap:1rem}@media screen and (max-width:768px){.columns.is-variable.is-4-mobile{--columnGap:1rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-4-tablet{--columnGap:1rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-4-tablet-only{--columnGap:1rem}}@media screen and (max-width:1087px){.columns.is-variable.is-4-touch{--columnGap:1rem}}@media screen and (min-width:1088px){.columns.is-variable.is-4-desktop{--columnGap:1rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-4-desktop-only{--columnGap:1rem}}@media screen and (min-width:1280px){.columns.is-variable.is-4-widescreen{--columnGap:1rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-4-widescreen-only{--columnGap:1rem}}@media screen and (min-width:1472px){.columns.is-variable.is-4-fullhd{--columnGap:1rem}}.columns.is-variable.is-5{--columnGap:1.25rem}@media screen and (max-width:768px){.columns.is-variable.is-5-mobile{--columnGap:1.25rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-5-tablet{--columnGap:1.25rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-5-tablet-only{--columnGap:1.25rem}}@media screen and (max-width:1087px){.columns.is-variable.is-5-touch{--columnGap:1.25rem}}@media screen and (min-width:1088px){.columns.is-variable.is-5-desktop{--columnGap:1.25rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-5-desktop-only{--columnGap:1.25rem}}@media screen and (min-width:1280px){.columns.is-variable.is-5-widescreen{--columnGap:1.25rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-5-widescreen-only{--columnGap:1.25rem}}@media screen and (min-width:1472px){.columns.is-variable.is-5-fullhd{--columnGap:1.25rem}}.columns.is-variable.is-6{--columnGap:1.5rem}@media screen and (max-width:768px){.columns.is-variable.is-6-mobile{--columnGap:1.5rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-6-tablet{--columnGap:1.5rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-6-tablet-only{--columnGap:1.5rem}}@media screen and (max-width:1087px){.columns.is-variable.is-6-touch{--columnGap:1.5rem}}@media screen and (min-width:1088px){.columns.is-variable.is-6-desktop{--columnGap:1.5rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-6-desktop-only{--columnGap:1.5rem}}@media screen and (min-width:1280px){.columns.is-variable.is-6-widescreen{--columnGap:1.5rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-6-widescreen-only{--columnGap:1.5rem}}@media screen and (min-width:1472px){.columns.is-variable.is-6-fullhd{--columnGap:1.5rem}}.columns.is-variable.is-7{--columnGap:1.75rem}@media screen and (max-width:768px){.columns.is-variable.is-7-mobile{--columnGap:1.75rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-7-tablet{--columnGap:1.75rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-7-tablet-only{--columnGap:1.75rem}}@media screen and (max-width:1087px){.columns.is-variable.is-7-touch{--columnGap:1.75rem}}@media screen and (min-width:1088px){.columns.is-variable.is-7-desktop{--columnGap:1.75rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-7-desktop-only{--columnGap:1.75rem}}@media screen and (min-width:1280px){.columns.is-variable.is-7-widescreen{--columnGap:1.75rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-7-widescreen-only{--columnGap:1.75rem}}@media screen and (min-width:1472px){.columns.is-variable.is-7-fullhd{--columnGap:1.75rem}}.columns.is-variable.is-8{--columnGap:2rem}@media screen and (max-width:768px){.columns.is-variable.is-8-mobile{--columnGap:2rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-8-tablet{--columnGap:2rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-8-tablet-only{--columnGap:2rem}}@media screen and (max-width:1087px){.columns.is-variable.is-8-touch{--columnGap:2rem}}@media screen and (min-width:1088px){.columns.is-variable.is-8-desktop{--columnGap:2rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-8-desktop-only{--columnGap:2rem}}@media screen and (min-width:1280px){.columns.is-variable.is-8-widescreen{--columnGap:2rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-8-widescreen-only{--columnGap:2rem}}@media screen and (min-width:1472px){.columns.is-variable.is-8-fullhd{--columnGap:2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media screen and (min-width:769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333%}.tile.is-2{flex:none;width:16.66667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333%}.tile.is-5{flex:none;width:41.66667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333%}.tile.is-8{flex:none;width:66.66667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333%}.tile.is-11{flex:none;width:91.66667%}.tile.is-12{flex:none;width:100%}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:0 0}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width:1087px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,.7)}.hero.is-white .navbar-link.is-active,.hero.is-white .navbar-link:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e6e6e6 0,#fff 71%,#fff 100%)}@media screen and (max-width:768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e6e6e6 0,#fff 71%,#fff 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,.7)}.hero.is-black .navbar-link.is-active,.hero.is-black .navbar-link:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black a.navbar-item:hover{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,#000 0,#0a0a0a 71%,#181616 100%)}@media screen and (max-width:768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,#000 0,#0a0a0a 71%,#181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:#363636}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag),.hero.is-light strong{color:inherit}.hero.is-light .title{color:#363636}.hero.is-light .subtitle{color:rgba(54,54,54,.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:#363636}@media screen and (max-width:1087px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(54,54,54,.7)}.hero.is-light .navbar-link.is-active,.hero.is-light .navbar-link:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light a.navbar-item:hover{background-color:#e8e8e8;color:#363636}.hero.is-light .tabs a{color:#363636;opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:#363636}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#363636;border-color:#363636;color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)}@media screen and (max-width:768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)}}.hero.is-dark{background-color:#363636;color:#f5f5f5}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#f5f5f5}.hero.is-dark .subtitle{color:rgba(245,245,245,.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#f5f5f5}@media screen and (max-width:1087px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:rgba(245,245,245,.7)}.hero.is-dark .navbar-link.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark a.navbar-item:hover{background-color:#292929;color:#f5f5f5}.hero.is-dark .tabs a{color:#f5f5f5;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#f5f5f5}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a 0,#363636 71%,#46403f 100%)}@media screen and (max-width:768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a 0,#363636 71%,#46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:rgba(255,255,255,.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:rgba(255,255,255,.7)}.hero.is-primary .navbar-link.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary a.navbar-item:hover{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c 0,#00d1b2 71%,#00e7eb 100%)}@media screen and (max-width:768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c 0,#00d1b2 71%,#00e7eb 100%)}}.hero.is-link{background-color:#3273dc;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-link .navbar-menu{background-color:#3273dc}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,.7)}.hero.is-link .navbar-link.is-active,.hero.is-link .navbar-link:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link a.navbar-item:hover{background-color:#2366d1;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3273dc}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#1577c6 0,#3273dc 71%,#4366e5 100%)}@media screen and (max-width:768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1577c6 0,#3273dc 71%,#4366e5 100%)}}.hero.is-info{background-color:#209cee;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-info .navbar-menu{background-color:#209cee}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,.7)}.hero.is-info .navbar-link.is-active,.hero.is-info .navbar-link:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info a.navbar-item:hover{background-color:#118fe4;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#209cee}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#04a6d7 0,#209cee 71%,#3287f5 100%)}@media screen and (max-width:768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#04a6d7 0,#209cee 71%,#3287f5 100%)}}.hero.is-success{background-color:#23d160;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-success .navbar-menu{background-color:#23d160}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,.7)}.hero.is-success .navbar-link.is-active,.hero.is-success .navbar-link:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success a.navbar-item:hover{background-color:#20bc56;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#23d160}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#12af2f 0,#23d160 71%,#2ce28a 100%)}@media screen and (max-width:768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#12af2f 0,#23d160 71%,#2ce28a 100%)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width:1087px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,.7)}.hero.is-warning .navbar-link.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffaf24 0,#ffdd57 71%,#fffa70 100%)}@media screen and (max-width:768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffaf24 0,#ffdd57 71%,#fffa70 100%)}}.hero.is-danger{background-color:#ff3860;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-danger .navbar-menu{background-color:#ff3860}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,.7)}.hero.is-danger .navbar-link.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger a.navbar-item:hover{background-color:#ff1f4b;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#ff3860}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#ff0561 0,#ff3860 71%,#ff5257 100%)}@media screen and (max-width:768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ff0561 0,#ff3860 71%,#ff5257 100%)}}.hero.is-small .hero-body{padding-bottom:1.5rem;padding-top:1.5rem}@media screen and (min-width:769px),print{.hero.is-medium .hero-body{padding-bottom:9rem;padding-top:9rem}}@media screen and (min-width:769px),print{.hero.is-large .hero-body{padding-bottom:18rem;padding-top:18rem}}.hero.is-fullheight .hero-body,.hero.is-halfheight .hero-body{align-items:center;display:flex}.hero.is-fullheight .hero-body>.container,.hero.is-halfheight .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width:768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width:768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width:769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-foot,.hero-head{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}.section{padding:3rem 1.5rem}@media screen and (min-width:1088px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}.bd-columns-tool,.bd-footer-donation-action,.bd-footer-star-figure{align-items:center;display:flex;justify-content:center}.bd-book-content,.bd-footer-star,.bd-footer-support{background-color:#fff;border-radius:6px;box-shadow:0 1.5rem 1.5rem -1.25rem rgba(10,10,10,.05);display:block}.bd-main{overflow:hidden;position:relative}.bd-lead{position:relative}.bd-breadcrumb{display:flex;justify-content:space-between;margin-bottom:3rem}.bd-breadcrumb .breadcrumb:not(:last-child){margin-bottom:0}.bd-prev-next{align-items:flex-start;color:#b5b5b5;display:none;flex-grow:0;flex-shrink:0;margin-left:.5rem;text-align:center}.bd-prev-next a,.bd-prev-next span{border-radius:4px;width:1.5rem}.bd-prev-next a:hover{background-color:#f5f5f5}.bd-prev-next-bis{border-top:2px solid #f5f5f5;display:flex;justify-content:space-between;margin-top:3rem}.bd-prev-next-bis a{margin-top:1.5rem}.bd-prev-next-bis-previous{margin-right:auto}.bd-prev-next-bis-next{margin-left:auto}.bd-header{margin-bottom:3rem}.bd-header .subtitle{color:#7a7a7a}.bd-header .subtitle strong{color:currentColor}.bd-header #meta{margin-top:-.5rem}.bd-tabs{margin-bottom:3rem}.bd-tabs .tabs{overflow:visible}.bd-tabs .tabs a,.bd-tabs .tabs ul{border-bottom-color:#f5f5f5;border-bottom-width:2px}.bd-tabs .tabs ul{flex-wrap:wrap;max-width:100%}.bd-tabs .tabs a{margin-bottom:-2px}.bd-tabs .tabs li:not(.is-active) a:hover{border-bottom-color:#dbdbdb}.bd-content hr:first-child{display:none}.bd-content hr:first-child+.bd-anchor-title{padding-top:0}.bd-side,.bd-side-background{background-color:#fafafa}.bd-side{position:relative}.bd-side-background{bottom:0;left:50%;position:absolute;right:0;top:0}.bd-anchors-list,.bd-category-list{font-size:.875rem}.bd-anchors-list li:not(:last-child),.bd-category-list li:not(:last-child){margin-bottom:.5em}.bd-anchors-list li.is-past a,.bd-category-list li.is-past a{color:#b5b5b5}.bd-anchors-list li.is-current a,.bd-category-list li.is-current a{color:#3273dc}.bd-anchors-list a,.bd-category-list a{color:#7a7a7a}.bd-anchors-list a:hover,.bd-category-list a:hover{color:#3273dc}.bd-category a:hover{color:#3273dc}.bd-category:not(:last-child){margin-bottom:.5rem}.bd-category.is-active .bd-category-toggle .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.bd-category.is-active .bd-category-list{display:block}.bd-category-header{position:relative}.bd-category-toggle{align-items:center;color:#b5b5b5;display:flex;justify-content:flex-end}.bd-category-toggle .icon{font-size:.75rem;-webkit-transform-origin:center;transform-origin:center;transition-duration:86ms;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.bd-category-name{color:#363636;position:relative}.bd-category-name.is-active{color:#3273dc}.bd-category-list{display:none;padding:.5rem}.bd-anchors-reference{height:1px}.bd-anchors{display:none;max-width:10.5rem;padding-top:calc(1.5rem - 1px)}@media screen and (min-width:769px),print{.bd-anchors.is-active{display:block}.bd-anchors.is-pinned{position:fixed;top:0}}.bd-anchors-title{color:#b5b5b5;font-size:.875rem;font-weight:600;margin-bottom:.5rem}.bd-anchors-list li:last-child{margin-top:1em}.bd-anchors-list a{color:#363636}@media screen and (max-width:1087px){.bd-lead,.bd-side{padding:1.5rem}.bd-header-carbon{margin-top:1.5rem}}@media screen and (max-width:1087px){.bd-side-background{display:none}}@media screen and (min-width:1088px){.bd-duo{display:flex}.bd-lead{background-color:#fff;overflow:hidden;flex-grow:1;flex-shrink:1}.bd-prev-next{display:flex}.bd-side{flex:0 0 calc(10.5rem + 1.5rem)}}@media screen and (min-width:1088px){.bd-main{padding:0 3rem}.bd-lead{margin-left:-3rem;padding:3rem}.bd-lead:last-child{margin-right:-3rem}.bd-header{align-items:center;display:flex;min-height:140px}.bd-header-titles{flex-grow:1;flex-shrink:1}.bd-header-carbon{flex-grow:0;flex-shrink:0;margin:-15px 0 -15px 6rem;width:300px}.bd-side{padding:3rem 0 3rem 1.5rem}}@media screen and (min-width:1280px){.bd-header-carbon{margin-left:9rem}}@media screen and (min-width:1472px){.bd-header-carbon{margin-left:12rem}}.highlight{background-color:#f5f5f5;border-radius:6px;color:#586e75}.highlight pre{background-color:transparent;font-size:.875em;line-height:1.375}.highlight .c{color:#93a1a1}.highlight .err,.highlight .g{color:#586e75}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#586e75}.highlight .o{color:#859900}.highlight .x{color:#cb4b16}.highlight .p{color:#586e75}.highlight .cm{color:#93a1a1}.highlight .cp{color:#859900}.highlight .c1{color:#93a1a1}.highlight .cs{color:#859900}.highlight .gd{color:#2aa198}.highlight .ge{color:#586e75;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#cb4b16}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#586e75}.highlight .gs{color:#586e75;font-weight:700}.highlight .gu{color:#cb4b16}.highlight .gt{color:#586e75}.highlight .kc{color:#cb4b16}.highlight .kd{color:#268bd2}.highlight .kn,.highlight .kp{color:#859900}.highlight .kr{color:#268bd2}.highlight .kt{color:#dc322f}.highlight .ld{color:#586e75}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#b58900}.highlight .nb{color:#586e75}.highlight .nc{color:#268bd2}.highlight .no{color:#cb4b16}.highlight .nd{color:#268bd2}.highlight .ne,.highlight .ni{color:#cb4b16}.highlight .nf{color:#268bd2}.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py{color:#586e75}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#586e75}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2aa198}.highlight .sb{color:#93a1a1}.highlight .sc{color:#2aa198}.highlight .sd{color:#586e75}.highlight .s2{color:#2aa198}.highlight .se{color:#cb4b16}.highlight .sh{color:#586e75}.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#dc322f}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .vc,.highlight .vg,.highlight .vi{color:#268bd2}.highlight .il{color:#2aa198}.content .highlight{margin-left:0;margin-right:0;text-align:left}.content .highlight:not(:first-child){margin-top:1em}.content .highlight:not(:last-child){margin-bottom:1em}.content li .highlight{margin-top:.5em}.content .bd-spaced li+li{margin-top:1em}.content .highlighter-rouge:not(:last-child){margin-bottom:1.5rem}body.page-grid .column>.notification{padding-left:0;padding-right:0;text-align:center}a.navbar-item>.icon:not(:last-child){margin-left:-.25em;margin-right:.25em}@media screen and (min-width:769px),print{.header-item .button+.button{margin-left:.75rem}}svg{max-height:100%;max-width:100%}.bd-patreon-button{display:inline-block;position:relative;vertical-align:top}.bd-patreon-button img{border-radius:4px;display:block;max-height:none!important}.bd-patreon-button:hover::after{background-color:rgba(0,0,0,.05);border-radius:4px;content:"";display:block}#carboncontainer{align-items:center;display:flex;justify-content:center;margin-left:auto;margin-right:auto;max-width:300px;min-height:120px;min-width:280px}#carbon{flex-grow:1;min-height:100px;padding:0;position:relative}#carbon:hover{background-color:#fff;box-shadow:0 0 0 .75rem #fff}@media screen and (min-width:769px),print{#carbon{width:300px}}#carbonads{font-size:14px;text-align:left}#carbonads a,#carbonads span{display:block}#carbonads .carbon-wrap{min-height:100px;position:relative}#carbonads .carbon-wrap:hover .carbon-img::after{background-color:rgba(0,0,0,.05);content:"";display:block;height:100px;left:0;position:absolute;right:1rem;top:0}#carbonads .carbon-img{bottom:0;float:left;left:0;min-height:100px;padding:0;position:absolute;top:0;width:calc(130px + 1rem)}#carbonads .carbon-img img{display:block;height:100px;width:130px}#carbonads .carbon-img:hover+.carbon-text{color:#3273dc}#carbonads .carbon-img:active{opacity:.8}#carbonads .carbon-text{display:block;color:#363636;line-height:20px;min-height:100px;padding:0 0 20px calc(130px + 1rem)}#carbonads .carbon-text:hover{color:#3273dc}#carbonads .carbon-poweredby{bottom:0;color:#b5b5b5;display:inline;font-size:.75rem;line-height:20px;position:absolute;right:0}#carbonads .carbon-poweredby:hover{text-decoration:underline}.bd-index-header{text-align:center}.bd-index-header a,.bd-index-header strong{transition-duration:86ms;transition-property:color}.bd-index-header a{color:currentColor}.bd-index-header a:hover{color:#3273dc}.bd-index-header a:hover strong{color:#3273dc}.bd-index-header strong{font-weight:600}.bd-index-header .title strong{color:#00d1b2}.bd-index-header .subtitle{color:#b5b5b5!important}.bd-index-header .subtitle strong{color:currentColor}.bd-index-header:not(:last-child){margin-bottom:3rem}.bd-index-header.bd-is-left{text-align:left}.bd-index-js-tweet .bd-tw{margin-left:auto;margin-right:auto}.bd-index-custom-title{color:#b5b5b5}.bd-index-custom-example{padding:1rem}.bd-index-custom-example .subtitle{margin-bottom:.5rem}.bd-index-custom.bd-is-after{color:#757763;font-family:Nunito,serif;margin-top:.5rem}.bd-index-custom.bd-is-after a{color:#fa7c91}.bd-index-custom.bd-is-after a:hover{color:#363636}.bd-index-custom.bd-is-after .subtitle{color:#757763}.bd-index-custom.bd-is-after .input,.bd-index-custom.bd-is-after .select select{background-color:#eff0eb;border-color:transparent;border-width:2px;box-shadow:none;font-family:Nunito,serif}.bd-index-custom.bd-is-after .input:hover,.bd-index-custom.bd-is-after .select select:hover{border-color:#d0d1cd}.bd-index-custom.bd-is-after .input:focus,.bd-index-custom.bd-is-after .select select:focus{border-color:#fa7c91;box-shadow:0 0 0 .125em rgba(250,124,145,.25)}.bd-index-custom.bd-is-after .select:not(.is-multiple):not(:hover)::after{border-color:#fa7c91}.bd-index-custom.bd-is-after .button.is-primary{background-color:#8a4d76;color:#fff}.bd-index-custom.bd-is-after .button.is-primary:hover{background-color:#82486f}.bd-index-custom.bd-is-after .button.is-primary:active{background-color:#7a4468}.bd-index-custom.bd-is-after .button.is-link{background-color:#fa7c91;color:#fff}.bd-index-custom.bd-is-after .button.is-link:hover{background-color:#fa7087}.bd-index-custom.bd-is-after .button.is-link:active{background-color:#f9637c}.bd-index-custom.bd-is-after ::-moz-selection{background-color:#fa7c91;color:#fff}.bd-index-custom.bd-is-after ::selection{background-color:#fa7c91;color:#fff}.bd-index-fullscreen .tabs a{color:#b5b5b5!important}#grid .notification{padding-left:0;padding-right:0}.bd-columns-tools{margin-top:3rem}.bd-columns-tool.bd-is-try .buttons{justify-content:center}.bd-columns-tool.bd-is-try .button strong{font-weight:600}#markup{width:100%}#markup .highlight pre{max-height:none}#message{display:none;margin-top:3rem}@media screen and (max-width:768px){.bd-columns-tool.bd-is-markup{margin-top:3rem}}@media screen and (min-width:769px),print{.bd-columns-tools{align-items:flex-start;display:flex}.bd-columns-tool{width:50%}.bd-columns-tool.bd-is-try{padding-top:60px}}.bd-focus{margin:6rem auto 0;max-width:1080px}.bd-focus-item{border-radius:6px;padding-top:1.25rem;position:relative}.bd-focus-item .subtitle,.bd-focus-item .title a{transition-duration:172ms;transition-property:color}.bd-focus-item .title{position:relative;transition-duration:172ms;transition-property:color}.bd-focus-item .subtitle{color:#b5b5b5;position:relative}.bd-focus-item .subtitle strong{color:currentColor}.bd-focus-item::before{background-color:#fafafa;border-radius:6px;content:"";display:block;opacity:0;pointer-events:none;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-transform-origin:center;transform-origin:center;transition-duration:172ms;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.bd-focus-item:hover::before{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.bd-focus-item:hover .subtitle{color:#4a4a4a}.bd-focus-item:nth-child(1):hover .title{color:#ff470f}.bd-focus-item:nth-child(2):hover .title{color:#23d160}.bd-focus-item:nth-child(3):hover .title{color:#3273dc}.bd-focus-item:nth-child(4):hover .title{color:#0a0a0a}.bd-focus-icon{position:relative}.bd-focus-mobile{color:#b86bff;margin-right:-20px}.bd-focus-tablet{color:#ff3860}.bd-focus-desktop{color:#ff470f;position:relative;top:2px}.bd-focus-cubes{position:relative;height:3rem;margin:0 auto;top:-.5rem;width:3rem}.bd-focus-cube{color:#23d160;position:absolute}.bd-focus-cube-1{left:0;top:0}.bd-focus-cube-2{left:-1rem;top:23px}.bd-focus-cube-3{left:1rem;top:23px}.bd-focus-css3{color:#3273dc}.bd-focus-github{color:#333}.intro-content{margin-left:auto;margin-right:auto;max-width:640px}.intro-title{font-weight:400;line-height:1.375}.intro-title strong{font-weight:600}.intro-ghbtns{margin-bottom:26px;min-height:30px}.intro-ghbtns a,.intro-ghbtns iframe,.intro-ghbtns img{height:30px}.intro-ghbtns a{display:inline-block;min-width:100px;vertical-align:top}.intro-ghbtns img{display:block}.intro-npm{background:#242424;border-radius:4px;color:#fff;display:flex;font-size:15px;justify-content:space-between;line-height:20px;padding:15px 25px;position:relative}.intro-npm code{font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.intro-npm .intro-npm-copy{border-radius:4px;color:#ffdd57;cursor:pointer;margin:-2px -7px -3px;padding:2px 7px 3px}.intro-npm .intro-npm-copy:hover{background-color:#ffdd57;color:#242424}.intro-npm .intro-npm-copy.is-error,.intro-npm .intro-npm-copy.is-success{color:#fff;pointer-events:none;text-decoration:none}.intro-npm .intro-npm-copy.is-success{background-color:#23d160}.intro-npm .intro-npm-copy.is-error{background-color:#ff3860}.intro-npm ::-moz-selection{background:#ffdd57;color:#242424}.intro-npm ::selection{background:#ffdd57;color:#242424}.intro-buttons{margin-top:1.5rem}.intro-buttons .button{padding-left:1.375em;padding-right:1.375em}.intro-video{background-color:#fff;margin-left:auto;margin-right:auto;max-width:640px;position:relative}.intro-video.has-loaded .intro-spinner{display:none}.intro-video.has-loaded .intro-iframe{opacity:1}@-webkit-keyframes introSpinner{from{opacity:0;-webkit-transform:scale(1.14);transform:scale(1.14)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes introSpinner{from{opacity:0;-webkit-transform:scale(1.14);transform:scale(1.14)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.intro-shadow,.intro-spinner{-webkit-animation-duration:.5s;animation-duration:.5s;animation-easing-function:ease-out;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:center;transform-origin:center}.intro-spinner{-webkit-animation-name:introSpinner;animation-name:introSpinner}.intro-spinner::before{border-bottom-color:#00d1b2;border-left-color:#00d1b2;height:1.5em;left:calc(50% - .75em);position:absolute;top:calc(50% - .75em);width:1.5em}@-webkit-keyframes introShadow{from{opacity:0;-webkit-transform:scale(.86);transform:scale(.86)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes introShadow{from{opacity:0;-webkit-transform:scale(.86);transform:scale(.86)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.intro-shadow{background-color:#776e70;background-position:center center;background-repeat:no-repeat;background-size:cover;box-shadow:0 1.5rem 3rem rgba(0,0,0,.2);-webkit-animation-name:introShadow;animation-name:introShadow}.intro-iframe{opacity:0;padding-top:56.25%;position:relative;transition-duration:.5s;transition-property:opacity}.intro-iframe iframe{height:100%;left:0;position:absolute;top:0;width:100%}.intro-author{color:#7a7a7a;font-size:.75rem;margin-top:40px;text-align:center}.intro-author a{color:#363636}.intro-author a:hover{text-decoration:underline}.intro-author span{opacity:.5;transition:.1s opacity}.intro-author span:hover{opacity:1}@media screen and (max-width:768px){.intro-buttons .button{display:flex;width:100%}.intro-buttons .button.is-light{margin-top:.5rem}}@media screen and (min-width:769px),print{.intro-title{font-size:2.25rem}.intro-buttons{align-items:center;display:flex;justify-content:space-between}}@media screen and (max-width:1087px){.intro-column.is-video{margin-top:3rem}}@media screen and (min-width:1088px){.intro-columns{display:flex;justify-content:center}.intro-column{width:calc(50% - 1.5rem)}.intro-column.is-content{margin-right:1.5rem}.intro-column.is-video{margin-left:1.5rem}.intro-content{max-width:440px}.intro-title{margin-top:-11px}.intro-title:not(:last-child){margin-bottom:20px}}#github{color:#333;border-color:#333}#github:hover{background:#333;border-color:#333;color:#fff}.bd-tw-button{background-color:#55acee;color:#fff;border-color:transparent!important}.bd-tw-button:hover{background-color:#49a6ed;color:#fff}.bd-tw-button:active,.bd-tw-button:focus{background-color:#3ea1ec;color:#fff}#moreDropdown .navbar-item{padding-left:3em;position:relative}#moreDropdown .icon{left:1rem;position:absolute;text-align:center;top:.375rem;width:1em}#moreDropdownBootstrap .icon{color:#6f5499}#moreDropdownPatreon .icon{color:#f96854}@media screen and (min-width:1088px){#blogDropdown{width:17rem}#blogDropdown .navbar-item{white-space:normal}#moreDropdown{width:14rem}#moreDropdown .navbar-item{padding-right:1rem;white-space:normal}#moreDropdown .navbar-item .level{flex-grow:1}}.bd-footer-title{color:#363636;font-size:1.25rem;line-height:1.25;margin-bottom:.5rem;transition-duration:86ms;transition-property:color}.bd-footer-title strong{font-weight:600}.bd-footer-subtitle{color:#b5b5b5;margin-top:-.5rem;transition-duration:86ms;transition-property:color}.bd-footer-iframe{display:flex;flex-wrap:wrap;margin-bottom:-10px;min-height:30px}.bd-footer-iframe iframe{margin-bottom:10px}.bd-footer-iframe .fb-like{margin-left:10px}.bd-footer-tsp{color:#b5b5b5;margin-top:1.5rem}.bd-footer-star,.bd-footer-support{text-align:center}.bd-footer-star .bd-footer-title,.bd-footer-support .bd-footer-title{font-size:1.5rem}.bd-footer-support{border-top:none;box-shadow:none;padding:3rem}.bd-footer-support .bd-footer-title{margin-bottom:1.5rem}.bd-footer-donations{justify-content:center}.bd-footer-donation{flex:none}@media screen and (min-width:769px),print{.bd-footer-donation{width:240px}}.bd-footer-donation-title{color:#b5b5b5;margin-bottom:.5rem}.bd-footer-donation-title strong{color:currentColor}.bd-footer-donation-action{height:70px}.bd-footer-donation-action .paypal-form{height:30px}.bd-footer-donation-action .paypal-form img{display:block}.bd-footer-stars{margin-top:2.5rem}@media screen and (min-width:769px),print{.bd-footer-stars{align-items:stretch;display:flex;justify-content:space-between}}.bd-footer-star{transition-duration:86ms;transition-property:box-shadow,-webkit-transform;transition-property:box-shadow,transform;transition-property:box-shadow,transform,-webkit-transform;will-change:box-shadow,transform}@media screen and (max-width:768px){.bd-footer-star:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-footer-star{width:calc(33.3333% - 2rem)}}.bd-footer-star:hover{box-shadow:0 3rem 3rem -1.25rem rgba(10,10,10,.1);-webkit-transform:translateY(-.5rem);transform:translateY(-.5rem)}.bd-footer-star:hover .bd-footer-subtitle,.bd-footer-star:hover .bd-footer-title{color:#3273dc}.bd-footer-star.bd-is-expo,.bd-footer-star.bd-is-love{padding-bottom:156px}.bd-footer-star.bd-is-expo .bd-footer-title,.bd-footer-star.bd-is-love .bd-footer-title{align-items:center;display:flex;justify-content:center}.bd-footer-star.bd-is-expo .bd-footer-title .icon,.bd-footer-star.bd-is-love .bd-footer-title .icon{margin-right:.25em}.bd-footer-star.bd-is-expo{background-image:url(/images/footer/expo-examples.png);background-repeat:repeat-x;background-position:bottom center;background-size:352px 156px}.bd-footer-star.bd-is-love{background-image:url(/images/footer/love.png);background-repeat:no-repeat;background-position:bottom center;background-size:440px 180px}.bd-footer-star-header{padding:1.5rem}.bd-footer-star-figure{height:156px;margin-top:-1rem}.bd-footer-links{margin-top:6rem;padding-bottom:6rem}.bd-footer-links a{color:currentColor}.bd-footer-links a:hover{color:#3273dc}.bd-footer-link-title{color:#363636;font-size:1.25rem;font-weight:600}.bd-footer-link-title:not(:first-child){margin-top:1.5em}.bd-footer-link{margin-top:.5rem}.bd-footer-link.bd-is-more{font-size:.875rem}.bd-footer-link.bd-is-more a:not(:hover){color:#b5b5b5}.bd-footer-link.bd-has-subtitle a{align-items:center;display:flex;justify-content:space-between}.bd-footer-link.bd-has-subtitle a strong{flex-grow:1;flex-shrink:1;font-weight:unset}.bd-footer-link.bd-has-subtitle a em{display:block;font-size:.875rem;font-style:normal}.bd-footer-link.bd-has-subtitle a:not(:hover) em{color:#b5b5b5}@media screen and (max-width:768px){.bd-footer-link.bd-has-subtitle a{flex-wrap:wrap;margin-top:1rem}.bd-footer-link.bd-has-subtitle a em{width:100%}}@media screen and (min-width:769px),print{.bd-footer-link.bd-has-subtitle a em{margin-left:1rem;text-align:right}}.bd-footer-link-icon{flex-grow:0;flex-shrink:0;margin-right:.5em;text-align:center;width:1em}::-moz-selection{background-color:#00d1b2;color:#fff}::selection{background-color:#00d1b2;color:#fff}.bd-post .table{font-size:1rem}.bd-post .bd-anchor-title{margin-top:0!important}.bd-has-drawing{position:relative}.bd-drawing{display:none;pointer-events:none;position:absolute}.bd-drawing.bd-is-try-it-out{bottom:100%;right:100%}.bd-drawing.bd-is-love-letters{bottom:110%;right:10%}.bd-drawing.bd-is-crazy{left:-10%;top:110%}.bd-drawing.bd-is-customize{right:-10%;top:105%}.bd-drawing.bd-is-opinion-free{right:100%;top:110%}.bd-drawing.bd-is-join-us{bottom:80%;left:100%}.bd-drawing.bd-is-spam-free{bottom:100%;right:90%}@media screen and (min-width:769px),print{.bd-drawing{display:inline}}.bd-links{counter-reset:bd-links}.bd-link{border-radius:6px;color:#7a7a7a;display:block;font-size:1.25rem;padding:1rem 3rem 1.5rem 5rem;position:relative;transition-duration:86ms;transition-property:background-color,color}.bd-link strong{font-weight:600}.bd-link:hover{background-color:#fafafa}.bd-link-surtitle{float:right;font-size:.75em;margin-bottom:1em;margin-left:2em;opacity:.5;padding-top:.25em}.bd-link-name{line-height:1.25;margin-bottom:.25em;position:relative}.bd-link-figure{position:absolute;right:calc(100% + .5em);text-align:center;top:0;min-width:1.5em}.bd-link-counter{color:#3273dc;display:block;counter-increment:bd-links;font-weight:400}.bd-link-counter::before{content:counter(bd-links)}.bd-link-icon{display:block;font-size:2rem;width:1.5em}.bd-link-more{font-size:.75em;opacity:.5}@media screen and (min-width:1088px){.bd-links{display:flex;flex-wrap:wrap}.bd-link{width:50%}}.bd-link-name{color:#363636;font-size:1.5rem;font-weight:600}.bd-docs{display:flex;flex-wrap:wrap}.bd-doc{margin:0 3rem 1.5rem 0}@media screen and (max-width:768px){.bd-doc{min-width:calc(50% - 3rem)}}@media screen and (min-width:769px),print{.bd-doc{min-width:calc(33.3333% - 3rem)}}.bd-doc-title{color:#363636}.bd-doc-title a{color:currentColor}.bd-doc-title a:hover{color:#3273dc}.bd-doc-title:not(:last-child){margin-bottom:.75rem}.bd-boxes{display:flex;flex-wrap:wrap;justify-content:space-between}.bd-box{border:4px solid #f5f5f5;border-radius:4px}.bd-box-header{text-align:center}.bd-typo{text-align:center}.bd-typo:not(:first-child){margin-top:3rem}.bd-has-text-rss{color:#f26522}.has-text-star{color:#ffd257}.bd-special-shadow{background-image:linear-gradient(rgba(0,0,0,.1),transparent);height:8px;left:0;opacity:0;position:absolute;right:0;top:100%;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:center top;transform-origin:center top}@media screen and (max-width:1087px){.bd-is-clipped-touch{overflow:hidden!important}}#images tr td:nth-child(2){width:320px}.bd-color{border-radius:2px;box-shadow:0 2px 3px 0 rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.1);display:inline-block;float:left;height:24px;margin-right:8px;width:24px}.button.bd-is-rss{background-color:#f26522;border-color:transparent;color:#fff}.button.bd-is-rss:hover{background-color:#ed560e}.button.bd-is-rss:active{background-color:#d54d0d}.bd-view-all-versions{color:#7a7a7a}.bd-view-all-versions:hover{text-decoration:underline}.bd-feature-title{color:#7a7a7a}.bd-feature-title a{border-bottom:1px solid transparent;color:#363636}.bd-feature-title a:hover{border-bottom-color:#00d1b2}.bd-anchor-title{padding-top:1.5rem;position:relative}@media screen and (max-width:1279px){.bd-anchor-title{padding-left:2rem}}.bd-anchor-link{position:absolute;right:calc(100% + 1rem)}@media screen and (max-width:1279px){.bd-anchor-link{left:0;right:auto}}.has-text-orange{color:#ff470f!important}.has-text-purple{color:#b86bff!important}.has-text-bootstrap{color:#6f5499!important}.has-text-patreon{color:#f96854!important}.bd-emoji{margin-right:.5em;margin-top:2px}.bd-emoji-bis{font-size:1.25em;vertical-align:middle}.bd-notification{background-color:#f5f5f5;border-radius:4px;color:#7a7a7a;font-weight:600;padding:1.25rem 0;position:relative;text-align:center}.bd-notification .content,.bd-notification .subtitle,.bd-notification .title,.bd-notification strong{color:currentColor}.bd-notification code,.bd-notification pre{background-color:rgba(10,10,10,.2);border-radius:4px;color:#fff}.bd-notification pre code{background-color:transparent}.bd-notification.is-white{background-color:#fff;color:#0a0a0a}.bd-notification.is-black{background-color:#0a0a0a;color:#fff}.bd-notification.is-light{background-color:#f5f5f5;color:#363636}.bd-notification.is-dark{background-color:#363636;color:#f5f5f5}.bd-notification.is-primary{background-color:#00d1b2;color:#fff}.bd-notification.is-link{background-color:#3273dc;color:#fff}.bd-notification.is-info{background-color:#209cee;color:#fff}.bd-notification.is-success{background-color:#23d160;color:#fff}.bd-notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.bd-notification.is-danger{background-color:#ff3860;color:#fff}.bd-icon-size .icon{background-color:#ffdd57}.bd-mwb-table td{vertical-align:middle}.bd-mwb-table td img{vertical-align:middle}.bd-example,.bd-snippet,.bd-structure{border:2px solid #f5f5f5;position:relative}.bd-example::before,.bd-snippet::before,.bd-structure::before{background:#ffdd57;border-radius:2px 2px 0 0;bottom:100%;color:rgba(0,0,0,.7);content:"Example";display:inline-block;font-size:7px;font-weight:700;left:-1px;letter-spacing:1px;margin-left:-1px;padding:3px 5px;position:absolute;text-transform:uppercase;vertical-align:top}@media screen and (min-width:769px),print{.bd-example.is-fullwidth,.bd-snippet.is-fullwidth,.bd-structure.is-fullwidth{border-left:none;border-right:none;padding:0}}.bd-example,.bd-structure{padding:1.5rem}.bd-example:not(:first-child),.bd-structure:not(:first-child){margin-top:2rem}.bd-example:not(:last-child),.bd-structure:not(:last-child){margin-bottom:1.5rem}.bd-example.bd-is-clipped{border-top-right-radius:6px}.bd-example+.highlight{border:1px solid #ffdd57;border-radius:0 0 4px 4px;border-top:none;margin-top:-1.5rem}.bd-example+.highlight:not(:last-child){margin-bottom:1.5rem}.bd-snippet{margin-top:2rem;position:relative}.bd-snippet::before{content:"Snippet";align-items:stretch;display:flex}.bd-snippet-preview{padding:1.5rem}.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight{height:2em;overflow:hidden}.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight pre{overflow:hidden}.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight .bd-show{display:flex}.bd-snippet.bd-is-horizontal{border-radius:6px;border-top-left-radius:0}.bd-snippet.bd-is-horizontal .bd-snippet-code .highlight{border-top-left-radius:0;border-top-right-radius:0}.bd-snippet.bd-is-horizontal .bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight pre{padding-top:.325rem}.bd-snippet.bd-is-clipped .bd-snippet-code{overflow:auto}.bd-snippet.bd-is-fullwidth{border-radius:0;border-width:1px 0}@media screen and (min-width:1088px){.bd-snippet.bd-is-vertical{align-items:stretch;border-radius:6px;border-top-left-radius:0;display:flex;justify-content:center}.bd-snippet.bd-is-vertical .bd-snippet-code,.bd-snippet.bd-is-vertical .bd-snippet-preview{width:50%}.bd-snippet.bd-is-vertical .bd-snippet-code,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre{align-items:stretch;border-radius:0 6px 6px 0;display:flex;flex-direction:column}.bd-snippet.bd-is-vertical .bd-snippet-code .highlight,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight .language-html,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre{flex-grow:1}.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre{white-space:pre}.bd-snippet.bd-is-vertical.bd-is-one-fifth .bd-snippet-preview{align-items:center;display:flex;justify-content:center;width:calc(128px + 3rem)}.bd-snippet.bd-is-vertical.bd-is-one-fifth .bd-snippet-code{width:calc(100% - 128px - 3rem)}.bd-snippet.bd-is-vertical.bd-is-two-fifths .bd-snippet-preview{align-items:center;display:flex;justify-content:center;width:calc(256px + 3rem)}.bd-snippet.bd-is-vertical.bd-is-two-fifths .bd-snippet-code{width:calc(100% - 256px - 3rem)}.bd-snippet.bd-is-vertical.bd-is-one-third .bd-snippet-preview{width:33.3333%}.bd-snippet.bd-is-vertical.bd-is-one-third .bd-snippet-code{width:66.6666%}}.highlight.bd-is-hovering{border-radius:2px;box-shadow:0 0 0 2px #ffdd57}.highlight pre{max-height:320px;margin-bottom:0!important}#navbarJsExample:not(:last-child),.highlight-full:not(:last-child){margin-bottom:1.5rem}#navbarJsExample .highlight pre,.highlight-full .highlight pre{max-height:none}.bd-structure{border-color:#ff3860;border-radius:4px;padding:1.5rem}.bd-structure::before{background:#ff3860;color:#fff;content:"Structure"}.bd-structure-item{position:relative}.bd-structure-item::before{background:rgba(10,10,10,.7);background:#f5f5f5;border:1px solid #dbdbdb;content:"";display:block;z-index:1}.bd-structure-item::after{align-items:center;content:attr(title);display:flex;font-family:monospace;font-size:11px;justify-content:center;padding:3px 5px;z-index:2}.bd-structure-item.bd-is-structure-container{padding:1.5rem .75rem .75rem}.bd-structure-item.bd-is-structure-container::after{align-items:flex-start;justify-content:flex-start;padding:.5rem .75rem}.highlight{position:relative}.highlight .bd-copy,.highlight .bd-expand{background:0 0;border:none;color:#4a4a4a;cursor:pointer;font-size:.625rem;outline:0;padding-bottom:0;padding-top:0;position:absolute;right:.25rem;top:.25rem}.highlight .bd-copy:hover,.highlight .bd-expand:hover{background-color:#ffdd57;color:rgba(0,0,0,.7)}.highlight .bd-copy:active,.highlight .bd-copy:focus,.highlight .bd-expand:active,.highlight .bd-expand:focus{box-shadow:none}.highlight .bd-expand{right:45px}.highlight .bd-show{align-items:center;background-color:rgba(245,245,245,.7);border:none;color:rgba(0,0,0,.5);cursor:pointer;display:none;font-size:.75rem;justify-content:center;width:100%}.highlight .bd-show strong{color:currentColor;font-weight:600}.highlight .bd-show:hover{background-color:rgba(255,221,87,.8);color:rgba(0,0,0,.7)}@media screen and (min-width:769px),print{.highlight pre{white-space:pre-wrap}}@media screen and (min-width:769px),print{.section:not(.is-fullwidth)>.bd-example:not(.is-fullwidth){margin-left:1.5rem;margin-right:1.5rem}.section:not(.is-fullwidth)>.bd-example:not(.is-fullwidth)+.highlight{margin-left:1.5rem;margin-right:1.5rem}}.section.is-fullwidth{padding:0!important}.section.is-fullwidth .bd-snippet{border-left:none;border-radius:0;border-right:none}.section.is-fullwidth .bd-example{border-left:none;border-radius:0;border-right:none;padding:0}.section.is-fullwidth .bd-example+.highlight{border-left:none;border-radius:0;border-right:none}.bd-callout{background-color:#f5f5f5;border-radius:4px;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}.bd-callout.is-white{background-color:#fff;color:#0a0a0a}.bd-callout.is-black{background-color:#0a0a0a;color:#fff}.bd-callout.is-light{background-color:#f5f5f5;color:#363636}.bd-callout.is-dark{background-color:#363636;color:#f5f5f5}.bd-callout.is-primary{background-color:#00d1b2;color:#fff}.bd-callout.is-link{background-color:#3273dc;color:#fff}.bd-callout.is-info{background-color:#209cee;color:#fff}.bd-callout.is-success{background-color:#23d160;color:#fff}.bd-callout.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.bd-callout.is-danger{background-color:#ff3860;color:#fff}.bsa{padding:2rem}.bsa-cpc{min-height:1px}#_default_ .default-ad{background-color:rgba(0,0,0,.3);border-radius:2px;color:#fff;display:inline-block;font-size:10px;font-weight:700;padding:0 4px;text-transform:uppercase;vertical-align:top}#_default_>a{background-color:#fff;border-radius:6px;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);color:#4a4a4a;display:block;line-height:1.375;margin-top:15px;min-height:70px;padding:15px;padding-left:70px;position:relative}#_default_>a:focus,#_default_>a:hover{box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px #3273dc}#_default_>a:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}#_default_>a span{display:block}#_default_>a .default-image{display:block;left:15px;height:40px;position:absolute;top:15px;width:40px}#_default_>a .default-image img{display:block;height:40px;width:40px}#_default_>a .default-title{color:#363636;display:inline;font-weight:700}#_default_>a .default-title::after{content:" — "}#_default_>a .default-description{display:inline}@media screen and (min-width:769px),print{.bsa .columns{min-height:120px}#_default_{display:flex;justify-content:center;position:relative}#_default_ .default-ad{left:100%;margin-left:2rem;position:absolute;top:0}#_default_>a{margin:0;width:calc(50% - 1rem)}#_default_>a:not(:nth-child(2)){margin-left:2rem}}.bd-tws-home{background-color:#fafafa}.bd-tw{background-color:#fafafa;border-radius:6px;color:#697882;flex-shrink:0;font-family:Helvetica,Roboto,"Segoe UI",Calibri,sans-serif;font-size:16px;max-width:420px;padding:20px}.bd-tw.bd-is-white{background-color:#fff}.bd-tw-header{align-items:stretch;display:flex;justify-content:flex-start}.bd-tw-author{align-items:center;color:#1c2022;display:flex;line-height:1.2}.bd-tw-author:hover{color:#2b7bb9}.bd-tw-avatar{flex-shrink:0;height:36px;margin-right:9px;width:36px}.bd-tw-avatar img{border-radius:290486px;display:block;height:36px;width:36px}.bd-tw-fullname{color:currentColor;display:block;font-size:16px;font-weight:700}.bd-tw-username{color:#697882;display:block;font-size:14px}.bd-tw-content{color:#1c2022;font-size:16px;line-height:1.4;margin-top:14px}.bd-tw-content a{color:#2b7bb9}.bd-tw-content .Emoji{height:1.25em;padding:0 .05em 0 .1em;vertical-align:-.2em;width:1.25em}.bd-tw-date{font-size:14px;line-height:1.4;margin-top:3.2px}.bd-tw-date a{color:#697882}.bd-tw-date a:hover{color:#2b7bb9}.Tweet-actions{align-items:center;display:flex;margin-top:8.4px}.Tweet-action{margin-right:1.25rem}.TweetAction{align-items:center;display:flex;height:24px;min-width:24px}.TweetAction:hover .Icon--replyEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%231DA1F2%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)}.TweetAction:hover .Icon--retweetEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%2317BF63%22%20d%3D%22M23.77%2015.67c-.292-.293-.767-.293-1.06%200l-2.22%202.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414%200-.75.336-.75.75s.336.75.75.75h5.85c1.24%200%202.25%201.01%202.25%202.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06%200s-.294.768%200%201.06l3.5%203.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767%200-1.06zm-10.66%203.28H7.26c-1.24%200-2.25-1.01-2.25-2.25V6.46l2.22%202.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768%200-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06%200l-3.5%203.5c-.294.292-.294.767%200%201.06s.767.293%201.06%200l2.22-2.22V16.7c0%202.068%201.683%203.75%203.75%203.75h5.85c.414%200%20.75-.336.75-.75s-.337-.75-.75-.75z%22%2F%3E%3C%2Fsvg%3E)}.TweetAction:hover .Icon--heartEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23E0245E%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)}.Tweet-action--retweet:hover .TweetAction-stat{color:#17bf63}.Tweet-action--heart:hover .TweetAction-stat{color:#e0245e}.TweetAction-icon{background-size:contain;height:20px;width:20px}.TweetAction-stat{color:#697882;font-size:14px;margin-left:5px;margin-top:1px}.Icon--replyEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23657786%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)}.Icon--retweetEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23657786%22%20d%3D%22M23.77%2015.67c-.292-.293-.767-.293-1.06%200l-2.22%202.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414%200-.75.336-.75.75s.336.75.75.75h5.85c1.24%200%202.25%201.01%202.25%202.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06%200s-.294.768%200%201.06l3.5%203.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767%200-1.06zm-10.66%203.28H7.26c-1.24%200-2.25-1.01-2.25-2.25V6.46l2.22%202.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768%200-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06%200l-3.5%203.5c-.294.292-.294.767%200%201.06s.767.293%201.06%200l2.22-2.22V16.7c0%202.068%201.683%203.75%203.75%203.75h5.85c.414%200%20.75-.336.75-.75s-.337-.75-.75-.75z%22%2F%3E%3C%2Fsvg%3E)}.Icon--heartEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23657786%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)}@media screen and (max-width:768px){.bd-tws-home{padding:1.5rem}.bd-tws-home .bd-tw:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-tws-home{padding:3rem}.bd-tws-home .bd-tw+.bd-tw{margin-top:1.5rem}}@media screen and (max-width:1087px){.bd-tws-love .bd-tw:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:1088px){.bd-tws-home{min-height:595px}.bd-tws-love{display:flex;flex-wrap:wrap;margin:-.75rem}.bd-tws-love .bd-tw{margin:.75rem;width:calc(33.3333% - 1.5rem)}}@media screen and (min-width:1280px){.bd-tws-home{min-height:653px}}@media screen and (min-width:1472px){.bd-tws-home{min-height:632px}}.twitter-tweet:not(.twitter-tweet-rendered){background-color:#fff;border:1px solid #e1e8ed;border-radius:5px;color:#697882;font-size:14px;padding:20px 20px 11.6px}.twitter-tweet:not(.twitter-tweet-rendered) a{color:currentColor}.twitter-tweet:not(.twitter-tweet-rendered) a:hover{text-decoration:underline}.twitter-tweet:not(.twitter-tweet-rendered) p{color:#1c2022;font-size:16px;margin-bottom:3.2px}.twitter-tweet:not(.twitter-tweet-rendered) p a{color:#2b7bb9}.twitter-tweet-rendered{border:none;border-radius:0;margin:0!important;padding:0!important}.bd-expo{background-color:#fff;padding:1.5rem}.bd-website{display:block;position:relative;text-align:center}.bd-website:last-child{margin-bottom:0}.bd-website-image{align-items:center;display:flex;justify-content:center;margin-bottom:1.5rem;position:relative}.bd-website-image:hover .bd-website-shadow{opacity:0}.bd-website-image:hover .bd-website-overlay{opacity:.25}.bd-website-image .b-lazy{opacity:0;transition:opacity .5s ease-out}.bd-website-image .b-loaded{opacity:1}.bd-website-shadow{border:1px solid rgba(0,0,0,.04);transition:opacity .2s ease-out}.bd-website-overlay{background-color:#0a0a0a;opacity:0;transition:opacity .2s ease-out}@media screen and (max-width:768px){.bd-website:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-expo{padding-bottom:3rem;padding-top:3rem}.bd-websites{display:flex;flex-wrap:wrap;justify-content:space-between}.bd-website{margin-top:3rem;width:calc(50% - 3rem)}.bd-website:nth-child(1),.bd-website:nth-child(2){margin-top:0}.bd-website.bd-is-highlighted{width:100%}.bd-website-image{margin-bottom:3rem}}.bd-testimonials{background-color:#f5f5f5}.bd-testimonial{align-items:flex-start;display:flex;justify-content:center}.bd-testimonial-tweet{background-color:#fff}.bd-more-loves{align-items:center;display:flex;justify-content:center;margin-top:1.5rem;text-align:center}.bd-more-loves .button{height:auto;padding:.75em 1.5em}.bd-more-loves .button span{-webkit-transform-origin:center center;transform-origin:center center;transition:-webkit-transform 86ms ease-out;transition:transform 86ms ease-out;transition:transform 86ms ease-out,-webkit-transform 86ms ease-out}.bd-more-loves .button:hover span{-webkit-transform:scale(1.04);transform:scale(1.04)}@media screen and (max-width:768px){.bd-testimonials{padding:1.5rem}.bd-testimonial{margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-testimonials{padding:3rem}.bd-testimonial+.bd-testimonial{margin-top:1.5rem}}@media screen and (min-width:1088px){.bd-testimonials{min-height:595px}}@media screen and (min-width:1280px){.bd-testimonials{min-height:653px}}@media screen and (min-width:1472px){.bd-testimonials{min-height:632px}}.bd-rainbow{-webkit-animation:rainbow 8s ease infinite;animation:rainbow 8s ease infinite;background-image:linear-gradient(124deg,#ff470f,#ff3860,#b86bff,#3273dc);background-size:800% 800%}.hero.bd-is-love .subtitle,.hero.bd-is-love .title{color:#fff}@-webkit-keyframes rainbow{0%{background-position:1% 80%}50%{background-position:99% 20%}100%{background-position:1% 80%}}@keyframes rainbow{0%{background-position:1% 80%}50%{background-position:99% 20%}100%{background-position:1% 80%}}.bd-hug{align-items:flex-start;display:flex;justify-content:center}@media screen and (max-width:768px){.bd-hug{margin:1.5rem}.bd-embrace{text-align:center}.bd-embrace:not(:first-child){margin-top:1.5rem}.bd-embrace:not(:last-child){margin-bottom:1.5rem}.bd-embrace-button{margin-top:.75rem}}@media screen and (min-width:769px),print{.bd-embrace{align-items:center;display:flex;justify-content:center}.bd-embrace:not(:first-child){margin-top:3rem}.bd-embrace:not(:last-child){margin-bottom:3rem}.bd-embrace-button{margin-left:1.5rem}.bd-hugs{display:flex;flex-wrap:wrap;padding-bottom:3rem}.bd-hug{margin-top:1.5rem;width:calc(33.3333% - 1rem)}.bd-hug:nth-child(1),.bd-hug:nth-child(2),.bd-hug:nth-child(3){margin-top:0}.bd-hug:nth-child(3n),.bd-hug:nth-child(3n-1){margin-left:1.5rem}}.bd-shoutout{background-color:#f5f5f5;padding:2rem;text-align:center}.bd-shoutout:not(:last-child){margin-bottom:3rem}.bd-shoutout-text.title{opacity:.8}.bd-shoutout-text.subtitle{opacity:.5}.bd-shoutout-button{margin-top:-.75rem}.bd-bootstrap-table{margin:3rem 0}.bd-pros-heading{padding:0 2rem;text-align:center}.bd-pros-icon{margin-bottom:3rem;text-align:center}.bd-pros-icon svg{height:3rem;width:auto}.bd-pros-list{margin:0 auto;max-width:540px}.bd-pro .icon{position:relative;top:-1px}.bd-pro .title{margin-bottom:.5rem}.bd-pro+.pro{margin-top:2rem;padding-top:2rem}.bd-pro-content p:not(:last-child){margin-bottom:.5rem}.bd-pro.bd-is-bulma .icon{color:#00d1b2}.bd-pro.bd-is-bootstrap .icon{color:#6f5499}.bd-bootstrap-comparison{margin:0 auto;max-width:42rem}.bd-bootstrap-comparison .table{color:#ff3860}.bd-bootstrap-comparison .table tfoot th,.bd-bootstrap-comparison .table thead th{font-size:1.5rem;text-align:center}.bd-bootstrap-comparison .table tfoot svg,.bd-bootstrap-comparison .table thead svg{height:1.5rem;margin-right:1rem;position:relative;top:.25rem;width:auto}.bd-bootstrap-comparison .table tbody th{font-size:1.25rem;text-align:center}.bd-bootstrap-comparison .table tbody td{font-family:monospace;width:50%}.bd-bootstrap-comparison .table tbody a{color:currentColor}.bd-bootstrap-comparison .table tbody a:hover{text-decoration:underline}.bd-bootstrap-comparison .table .bd-is-empty{background-color:#f5f5f5;color:#7a7a7a}.bd-bootstrap-comparison .table .bd-is-unique{background-color:rgba(35,209,96,.25);color:#363636;font-weight:700}.bd-bootstrap-comparison-header{margin-bottom:3rem}.bd-klmn{margin-bottom:1.5rem}.bd-klmn-gaps{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:1.25rem}.bd-klmn-label{margin:.25rem auto .25rem 0}.bd-klmn-gap{background-color:#f5f5f5;border-radius:4px;color:#ff3860;font-family:monospace;font-size:.75rem;margin:.25rem 0 .25rem .5rem;padding:.375em .75em;text-align:center;vertical-align:middle!important;white-space:nowrap}.bd-klmn-gap.bd-is-selected{background-color:#23d160;color:#fff}.bd-klmn-columns:last-child .bd-notification{font-size:.75rem;white-space:nowrap}.bd-side-sponsors{margin-top:3rem;text-align:center}.bd-banner-label,.bd-side-sponsor-label{color:#b5b5b5;font-size:.75rem;margin-bottom:.75rem}.bd-side-sponsor{display:inline-block;height:50px;vertical-align:top}.bd-side-sponsor img{display:block;max-height:100%}.bd-banner{border-radius:6px;display:block;margin-top:3rem;padding-bottom:1.5rem;position:relative;text-align:center;transition-duration:86ms;transition-property:border-color,color}.bd-banner strong{color:currentColor}.bd-banner .tag{margin-bottom:.25em}.bd-banner.is-patreon{background-color:#052d49;color:#fff}.bd-banner .button{-webkit-transform-origin:center;transform-origin:center;transition-duration:86ms;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.bd-banner:hover{border-color:#3273dc;color:#3273dc}.bd-banner:hover .bd-banner-title{color:currentColor}.bd-banner:hover .button{-webkit-transform:scale(1.05);transform:scale(1.05)}.bd-banner-background{background-image:url(/images/fortyfour-background.jpg);background-position:center center;background-size:cover;opacity:.5}.bd-banner-title{color:#363636;font-size:1.25em;font-weight:600;line-height:1.25;margin-bottom:.25em}.bd-banner-text{display:none;font-size:.875em;line-height:1.25;margin-bottom:.5rem;position:relative}.bd-banner-image{height:176px;margin-bottom:1rem;margin-top:1rem}.bd-banner-image img{display:inline-block;vertical-align:top}.bd-banner-button{display:inline-block;flex-shrink:0;height:34px;position:relative;width:145px}.bd-banner-button img{max-height:100%}.hero.bd-is-patreon{background-color:#f96854}.bd-sponsors{align-items:center;display:flex}.bd-sponsors a{align-items:center;display:flex;justify-content:center;margin-right:3rem;width:150px}.bd-partner-sponsors{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.bd-partner-sponsors a{align-items:center;display:flex;justify-content:center;margin-right:1rem;min-height:100px}.bd-partners{background-color:#fafafa}.bd-partners #carbonads .carbon-text{padding-bottom:0}.bd-partners #carbonads .carbon-poweredby{display:none}.bd-partner-title{color:#b5b5b5;font-size:.875rem;margin-bottom:1rem}@media screen and (min-width:769px),print{.bd-partners-list{align-items:flex-start;display:flex;margin-left:auto;margin-right:auto;max-width:1130px}.bd-partner.bd-is-sponsor{flex-grow:1;flex-shrink:1}.bd-partner.bd-is-carbon{flex-grow:0;flex-shrink:0;margin-left:6rem;width:300px}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes zoomIn{from{-webkit-transform:scale(.8);transform:scale(.8)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes zoomIn{from{-webkit-transform:scale(.8);transform:scale(.8)}to{-webkit-transform:scale(1);transform:scale(1)}}.bd-book-banner{background-color:#fafafa;position:relative}.bd-book-modal-column.bd-is-cover,.bd-book-pattern{background-image:url(/images/hab/lightpaperfibers_@2X.png);background-repeat:repeat;background-size:250px 150px}.bd-book-modal-column.bd-is-cover::before,.bd-book-pattern::before{background-color:rgba(255,237,215,.1);content:"";display:block}.bd-book-header{position:relative}.bd-book-cover{padding-top:.75rem;position:relative;text-align:center}.bd-book-cover a{display:inline-block;vertical-align:top}.bd-book-cover img{display:block}.bd-book-content{box-shadow:0 3rem 3rem -1rem rgba(10,10,10,.2);max-width:520px;padding:3rem}.bd-book-description{max-width:340px}.bd-book-tags{margin-bottom:1.5rem}.bd-book-tags .tags .tag{margin-right:1px}.bd-book-buttons .button{height:auto;padding-bottom:calc(1em - 1px);padding-top:calc(.5em - 1px)}.bd-book-buttons .button>span{font-size:.875em}.bd-book-buttons .button>span>em{display:block;font-size:.5em;font-style:normal;line-height:1em;margin-bottom:.5em;opacity:.5}.bd-book-buttons .button img{display:block;max-height:24px}.bd-book-buttons .button.bd-is-bleeding{background-color:#abf47c;border-color:transparent}.bd-book-buttons .button.bd-is-bleeding:hover{background-color:#9cf264}.bd-book-buttons .button.bd-is-amazon{background-color:#ffd863;border-color:transparent}.bd-book-buttons .button.bd-is-amazon:hover{background-color:#ffd24a}.bd-book-buttons .button.bd-is-amazon img{margin-bottom:-11px}.bd-book-columns{align-items:center;display:flex;justify-content:center;margin-left:auto;margin-right:auto;max-width:1080px}.bd-book-modal-background{background-color:rgba(10,10,10,.86)}.bd-book-modal .bd-book-modal-background,.bd-book-modal .modal-content{-webkit-animation-duration:250ms;animation-duration:250ms;animation-easing-function:ease-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.bd-book-modal .bd-book-modal-background{-webkit-animation-name:fadeIn;animation-name:fadeIn}.bd-book-modal .modal-content{-webkit-animation-name:zoomIn;animation-name:zoomIn;-webkit-transform-origin:center;transform-origin:center}.bd-book-modal-cover{padding:2rem;position:relative}.bd-book-modal-columns{align-items:stretch;display:flex;justify-content:center}@media screen and (max-width:768px){.bd-book-columns{flex-direction:column}.bd-book-buttons .button{width:100%}.bd-book-buttons .button:not(:last-child){margin-right:0;margin-bottom:1rem}.bd-book-modal .bd-book-content{padding:2rem}.bd-book-modal-column.bd-is-cover{display:none}}@media screen and (min-width:769px),print{.bd-book-columns{justify-content:space-around}.bd-book-header .tag{position:absolute;right:calc(100% + 1.25rem);top:.5rem}.bd-book-buttons .button{width:calc(50% - .5rem)}.bd-book-modal .modal-content{width:960px}.bd-book-inline-cover{display:none}.bd-book-modal-column{background-color:#fff;position:relative}.bd-book-modal-column.bd-is-cover{align-items:center;display:flex;justify-content:center;padding:2rem}.bd-book-modal-column.bd-is-content .bd-book-content{box-shadow:none}}.native-js{display:none;font-size:1rem;opacity:0;position:relative;visibility:hidden}.native-js::before{background-color:#000;bottom:0;content:"";display:block;left:0;opacity:.02;pointer-events:none;right:0;top:0}.native-show{display:block;opacity:1;visibility:visible}.native-flex{align-items:center;display:flex;justify-content:center;padding:2em;position:relative;text-decoration:none}.native-flex:hover .native-cta{box-shadow:0 1rem 2rem 0 rgba(10,10,10,.1);-webkit-transform:translateY(-.25rem);transform:translateY(-.25rem)}.native-img{border-radius:3px;flex-grow:0;flex-shrink:0;height:50px;width:125px}.native-details{flex-grow:1;flex-shrink:1}.native-main{align-items:center;flex-grow:0;flex-shrink:1;max-width:640px}.native-company{display:block;font-size:.625em;letter-spacing:2px;margin-bottom:4px;text-transform:uppercase}.native-desc{display:block}.native-cta{border:none;box-shadow:0 .5rem 1rem 0 rgba(10,10,10,.2);flex-grow:0;flex-shrink:0;font-weight:600;height:auto;padding:.5em 1em;transition-duration:172ms;transition-property:box-shadow,-webkit-transform;transition-property:box-shadow,transform;transition-property:box-shadow,transform,-webkit-transform;will-change:box-shadow,transform}@media screen and (max-width:599px){.native-flex{display:block;text-align:center}.native-main{margin-bottom:2em}.native-details{margin:1em}}@media screen and (min-width:600px){.native-flex{display:flex;padding:4em;text-align:left}.native-main{display:flex;margin-right:2em}.native-details{margin-left:2em}}@media screen and (min-width:1280px){.native-js{font-size:1.25rem}}@-webkit-keyframes bdGrow{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bdGrow{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes bdSlideDown{from{opacity:0;-webkit-transform:translateY(-1rem);transform:translateY(-1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bdSlideDown{from{opacity:0;-webkit-transform:translateY(-1rem);transform:translateY(-1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes bdSlideUp{from{opacity:0;-webkit-transform:translateY(1rem);transform:translateY(1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bdSlideUp{from{opacity:0;-webkit-transform:translateY(1rem);transform:translateY(1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.bd-focus-css3,.bd-focus-cube-1,.bd-focus-cube-2,.bd-focus-cube-3,.bd-focus-desktop,.bd-focus-github,.bd-focus-item .subtitle,.bd-focus-item .title,.bd-focus-mobile,.bd-focus-tablet,.intro-author,.intro-buttons .button,.intro-ghbtns,.intro-npm,.intro-title{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:cubic-bezier(.14,.71,.29,.86);animation-timing-function:cubic-bezier(.14,.71,.29,.86);-webkit-transform-origin:center center;transform-origin:center center}.intro-title{-webkit-animation-name:bdSlideDown;animation-name:bdSlideDown}.intro-author,.intro-ghbtns{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-name:bdFadeIn;animation-name:bdFadeIn}.intro-npm{-webkit-animation-delay:250ms;animation-delay:250ms;-webkit-animation-name:bdSlowIn;animation-name:bdSlowIn}.intro-buttons .button{-webkit-animation-name:bdSlowIn;animation-name:bdSlowIn}.intro-buttons .button:first-child{-webkit-animation-delay:.5s;animation-delay:.5s}.intro-buttons .button:last-child{-webkit-animation-delay:750ms;animation-delay:750ms}.bd-focus-item .title{-webkit-animation-name:bdSlideDown;animation-name:bdSlideDown}.bd-focus-item .subtitle{-webkit-animation-name:bdSlideUp;animation-name:bdSlideUp}.bd-focus-item:nth-child(1) .title{-webkit-animation-delay:1s;animation-delay:1s}.bd-focus-item:nth-child(1) .subtitle{-webkit-animation-delay:1.125s;animation-delay:1.125s}.bd-focus-item:nth-child(2) .title{-webkit-animation-delay:1.5s;animation-delay:1.5s}.bd-focus-item:nth-child(2) .subtitle{-webkit-animation-delay:1.625s;animation-delay:1.625s}.bd-focus-item:nth-child(3) .title{-webkit-animation-delay:2s;animation-delay:2s}.bd-focus-item:nth-child(3) .subtitle{-webkit-animation-delay:2.125s;animation-delay:2.125s}.bd-focus-item:nth-child(4) .title{-webkit-animation-delay:2.5s;animation-delay:2.5s}.bd-focus-item:nth-child(4) .subtitle{-webkit-animation-delay:2.625s;animation-delay:2.625s}.bd-focus-desktop,.bd-focus-mobile,.bd-focus-tablet{-webkit-animation-name:bdGrow;animation-name:bdGrow;-webkit-transform-origin:bottom center;transform-origin:bottom center}.bd-focus-mobile{-webkit-animation-delay:1s;animation-delay:1s}.bd-focus-tablet{-webkit-animation-delay:1.25s;animation-delay:1.25s}.bd-focus-desktop{-webkit-animation-delay:1.5s;animation-delay:1.5s}@-webkit-keyframes bdCube1{0%{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes bdCube1{0%{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes bdCube2{0%{-webkit-transform:translate3d(-40px,30px,0);transform:translate3d(-40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes bdCube2{0%{-webkit-transform:translate3d(-40px,30px,0);transform:translate3d(-40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes bdCube3{0%{-webkit-transform:translate3d(40px,30px,0);transform:translate3d(40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes bdCube3{0%{-webkit-transform:translate3d(40px,30px,0);transform:translate3d(40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.bd-focus-cube-1,.bd-focus-cube-2,.bd-focus-cube-3{-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.bd-focus-cube-1{-webkit-animation-delay:1.5s;animation-delay:1.5s;-webkit-animation-name:bdCube1;animation-name:bdCube1}.bd-focus-cube-2{-webkit-animation-name:bdCube2;animation-name:bdCube2;-webkit-animation-delay:1.75s;animation-delay:1.75s}.bd-focus-cube-3{-webkit-animation-name:bdCube3;animation-name:bdCube3;-webkit-animation-delay:2s;animation-delay:2s}@-webkit-keyframes bdFadeIn{from{opacity:0}to{opacity:1}}@keyframes bdFadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes bdSlowIn{from{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bdSlowIn{from{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes bdScaleIn{from{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bdScaleIn{from{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.bd-focus-css3{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-name:bdScaleIn;animation-name:bdScaleIn}.bd-focus-github{-webkit-animation-delay:2.5s;animation-delay:2.5s;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-name:bdJellyPop;animation-name:bdJellyPop}@-webkit-keyframes bdJellyPop{0%{opacity:0;-webkit-transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1)}3.4%{opacity:1;-webkit-transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1)}4.7%{-webkit-transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1)}6.81%{-webkit-transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1)}9.41%{-webkit-transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1)}10.21%{-webkit-transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1)}13.61%{-webkit-transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1)}14.11%{-webkit-transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1)}17.52%{-webkit-transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1)}18.72%{-webkit-transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1)}21.32%{-webkit-transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1)}24.32%{-webkit-transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1)}25.23%{-webkit-transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1)}29.03%{-webkit-transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1)}29.93%{-webkit-transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1)}35.54%{-webkit-transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1)}36.74%{-webkit-transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1)}41.04%{-webkit-transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1)}44.44%{-webkit-transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1)}52.15%{-webkit-transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1)}59.86%{-webkit-transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1)}63.26%{-webkit-transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1)}75.28%{-webkit-transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1)}85.49%{-webkit-transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}90.69%{-webkit-transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1)}100%{opacity:1;-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}}@keyframes bdJellyPop{0%{opacity:0;-webkit-transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1)}3.4%{opacity:1;-webkit-transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1)}4.7%{-webkit-transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1)}6.81%{-webkit-transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1)}9.41%{-webkit-transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1)}10.21%{-webkit-transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1)}13.61%{-webkit-transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1)}14.11%{-webkit-transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1)}17.52%{-webkit-transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1)}18.72%{-webkit-transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1)}21.32%{-webkit-transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1)}24.32%{-webkit-transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1)}25.23%{-webkit-transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1)}29.03%{-webkit-transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1)}29.93%{-webkit-transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1)}35.54%{-webkit-transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1)}36.74%{-webkit-transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1)}41.04%{-webkit-transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1)}44.44%{-webkit-transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1)}52.15%{-webkit-transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1)}59.86%{-webkit-transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1)}63.26%{-webkit-transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1)}75.28%{-webkit-transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1)}85.49%{-webkit-transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}90.69%{-webkit-transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1)}100%{opacity:1;-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}} \ No newline at end of file +@charset "UTF-8";/*! bulma.io v0.7.1 | MIT License | github.com/jgthms/bulma */@-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.breadcrumb,.button,.delete,.file,.is-unselectable,.modal-close,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.tabs{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center;transform-origin:center;width:.625em}.bd-callout:not(:last-child),.bd-figure:not(:last-child),.bd-snippet:not(:last-child),.block:not(:last-child),.box:not(:last-child),.breadcrumb:not(:last-child),.content:not(:last-child),.highlight:not(:last-child),.level:not(:last-child),.message:not(:last-child),.notification:not(:last-child),.progress:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.tabs:not(:last-child),.title:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:0;position:relative;vertical-align:top;width:20px}.delete::after,.delete::before,.modal-close::after,.modal-close::before{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);-webkit-transform-origin:center center;transform-origin:center center}.delete::before,.modal-close::before{height:2px;width:50%}.delete::after,.modal-close::after{height:50%;width:2px}.delete:focus,.delete:hover,.modal-close:focus,.modal-close:hover{background-color:rgba(10,10,10,.3)}.delete:active,.modal-close:active{background-color:rgba(10,10,10,.4)}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading::after,.control.is-loading::after,.intro-spinner::before,.loader,.select.is-loading::after{-webkit-animation:spinAround .5s infinite linear;animation:spinAround .5s infinite linear;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.bd-banner-background,.bd-book-modal-background,.bd-book-modal-column.bd-is-cover::before,.bd-book-pattern,.bd-book-pattern::before,.bd-category-toggle,.bd-focus-item::before,.bd-patreon-button:hover::after,.bd-structure-item::after,.bd-structure-item::before,.hero-video,.highlight .bd-show,.image.is-16by9 img,.image.is-1by1 img,.image.is-1by2 img,.image.is-1by3 img,.image.is-2by1 img,.image.is-2by3 img,.image.is-3by1 img,.image.is-3by2 img,.image.is-3by4 img,.image.is-3by5 img,.image.is-4by3 img,.image.is-4by5 img,.image.is-5by3 img,.image.is-5by4 img,.image.is-9by16 img,.image.is-square img,.intro-shadow,.intro-spinner,.is-overlay,.modal,.modal-background,.native-js::before{bottom:0;left:0;position:absolute;right:0;top:0}.button,.file-cta,.file-name,.input,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.select select,.textarea{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.25em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.375em - 1px);padding-left:calc(.625em - 1px);padding-right:calc(.625em - 1px);padding-top:calc(.375em - 1px);position:relative;vertical-align:top}.button:active,.button:focus,.file-cta:active,.file-cta:focus,.file-name:active,.file-name:focus,.input:active,.input:focus,.is-active.button,.is-active.file-cta,.is-active.file-name,.is-active.input,.is-active.pagination-ellipsis,.is-active.pagination-link,.is-active.pagination-next,.is-active.pagination-previous,.is-active.textarea,.is-focused.button,.is-focused.file-cta,.is-focused.file-name,.is-focused.input,.is-focused.pagination-ellipsis,.is-focused.pagination-link,.is-focused.pagination-next,.is-focused.pagination-previous,.is-focused.textarea,.pagination-ellipsis:active,.pagination-ellipsis:focus,.pagination-link:active,.pagination-link:focus,.pagination-next:active,.pagination-next:focus,.pagination-previous:active,.pagination-previous:focus,.select select.is-active,.select select.is-focused,.select select:active,.select select:focus,.textarea:active,.textarea:focus{outline:0}.button[disabled],.file-cta[disabled],.file-name[disabled],.input[disabled],.pagination-ellipsis[disabled],.pagination-link[disabled],.pagination-next[disabled],.pagination-previous[disabled],.select select[disabled],.textarea[disabled]{cursor:not-allowed}/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */blockquote,body,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,::after,::before{box-sizing:inherit}audio,img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0;text-align:left}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,select,textarea{font-family:BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1rem;font-weight:400;line-height:1.5}a{color:#3273dc;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#ff3860;font-size:.875em;font-weight:400;padding:.25em .5em .25em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{text-align:left;vertical-align:top}table th{color:#363636}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-clipped{overflow:hidden!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width:768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media screen and (min-width:769px),print{.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width:1087px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width:1088px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width:1280px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width:1472px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width:768px){.has-text-centered-mobile{text-align:center!important}}@media screen and (min-width:769px),print{.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width:1087px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width:1088px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width:1280px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width:1472px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width:768px){.has-text-justified-mobile{text-align:justify!important}}@media screen and (min-width:769px),print{.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width:1087px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width:1088px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width:1280px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width:1472px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width:768px){.has-text-left-mobile{text-align:left!important}}@media screen and (min-width:769px),print{.has-text-left-tablet{text-align:left!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width:1087px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width:1088px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width:1280px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width:1472px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width:768px){.has-text-right-mobile{text-align:right!important}}@media screen and (min-width:769px),print{.has-text-right-tablet{text-align:right!important}}@media screen and (min-width:769px) and (max-width:1087px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width:1087px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width:1088px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width:1088px) and (max-width:1279px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width:1280px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width:1280px) and (max-width:1471px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width:1472px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.has-text-white{color:#fff!important}a.has-text-white:focus,a.has-text-white:hover{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:focus,a.has-text-black:hover{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:focus,a.has-text-light:hover{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:focus,a.has-text-dark:hover{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:focus,a.has-text-primary:hover{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-link{color:#3273dc!important}a.has-text-link:focus,a.has-text-link:hover{color:#205bbc!important}.has-background-link{background-color:#3273dc!important}.has-text-info{color:#209cee!important}a.has-text-info:focus,a.has-text-info:hover{color:#0f81cc!important}.has-background-info{background-color:#209cee!important}.has-text-success{color:#23d160!important}a.has-text-success:focus,a.has-text-success:hover{color:#1ca64c!important}.has-background-success{background-color:#23d160!important}.has-text-warning{color:#ffdd57!important}a.has-text-warning:focus,a.has-text-warning:hover{color:#ffd324!important}.has-background-warning{background-color:#ffdd57!important}.has-text-danger{color:#ff3860!important}a.has-text-danger:focus,a.has-text-danger:hover{color:#ff0537!important}.has-background-danger{background-color:#ff3860!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-block{display:block!important}@media screen and (max-width:768px){.is-block-mobile{display:block!important}}@media screen and (min-width:769px),print{.is-block-tablet{display:block!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-block-tablet-only{display:block!important}}@media screen and (max-width:1087px){.is-block-touch{display:block!important}}@media screen and (min-width:1088px){.is-block-desktop{display:block!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-block-desktop-only{display:block!important}}@media screen and (min-width:1280px){.is-block-widescreen{display:block!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width:1472px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width:768px){.is-flex-mobile{display:flex!important}}@media screen and (min-width:769px),print{.is-flex-tablet{display:flex!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width:1087px){.is-flex-touch{display:flex!important}}@media screen and (min-width:1088px){.is-flex-desktop{display:flex!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width:1280px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width:1472px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width:768px){.is-inline-mobile{display:inline!important}}@media screen and (min-width:769px),print{.is-inline-tablet{display:inline!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width:1087px){.is-inline-touch{display:inline!important}}@media screen and (min-width:1088px){.is-inline-desktop{display:inline!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width:1280px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width:1472px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width:768px){.is-inline-block-mobile{display:inline-block!important}}@media screen and (min-width:769px),print{.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width:1087px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width:1088px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width:1280px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width:1472px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width:768px){.is-inline-flex-mobile{display:inline-flex!important}}@media screen and (min-width:769px),print{.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width:1087px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width:1088px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width:1280px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width:1472px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width:768px){.is-hidden-mobile{display:none!important}}@media screen and (min-width:769px),print{.is-hidden-tablet{display:none!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width:1087px){.is-hidden-touch{display:none!important}}@media screen and (min-width:1088px){.is-hidden-desktop{display:none!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width:1280px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width:1472px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width:768px){.is-invisible-mobile{visibility:hidden!important}}@media screen and (min-width:769px),print{.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width:769px) and (max-width:1087px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width:1087px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width:1088px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width:1088px) and (max-width:1279px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width:1280px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width:1280px) and (max-width:1471px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width:1472px){.is-invisible-fullhd{visibility:hidden!important}}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.box{background-color:#fff;border-radius:6px;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);color:#4a4a4a;display:block;padding:1.25rem}a.box:focus,a.box:hover{box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px #3273dc}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.375em - 1px);padding-left:.75em;padding-right:.75em;padding-top:calc(.375em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-large,.button .icon.is-medium,.button .icon.is-small{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.375em - 1px);margin-right:.1875em}.button .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:calc(-.375em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.375em - 1px);margin-right:calc(-.375em - 1px)}.button.is-hovered,.button:hover{border-color:#b5b5b5;color:#363636}.button.is-focused,.button:focus{border-color:#3273dc;color:#363636}.button.is-focused:not(:active),.button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-active,.button:active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text.is-focused,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text:hover{background-color:#f5f5f5;color:#363636}.button.is-text.is-active,.button.is-text:active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled]{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white.is-hovered,.button.is-white:hover{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white.is-focused,.button.is-white:focus{border-color:transparent;color:#0a0a0a}.button.is-white.is-focused:not(:active),.button.is-white:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white.is-active,.button.is-white:active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled]{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover{background-color:#000}.button.is-white.is-inverted[disabled]{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:focus,.button.is-white.is-outlined:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-white.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined:hover{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black.is-hovered,.button.is-black:hover{background-color:#040404;border-color:transparent;color:#fff}.button.is-black.is-focused,.button.is-black:focus{border-color:transparent;color:#fff}.button.is-black.is-focused:not(:active),.button.is-black:focus:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black.is-active,.button.is-black:active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled]{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover{background-color:#f2f2f2}.button.is-black.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:focus,.button.is-black.is-outlined:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-outlined[disabled]{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined:hover{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:#363636}.button.is-light.is-hovered,.button.is-light:hover{background-color:#eee;border-color:transparent;color:#363636}.button.is-light.is-focused,.button.is-light:focus{border-color:transparent;color:#363636}.button.is-light.is-focused:not(:active),.button.is-light:focus:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light.is-active,.button.is-light:active{background-color:#e8e8e8;border-color:transparent;color:#363636}.button.is-light[disabled]{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{background-color:#363636;color:#f5f5f5}.button.is-light.is-inverted:hover{background-color:#292929}.button.is-light.is-inverted[disabled]{background-color:#363636;border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent #363636 #363636!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:focus,.button.is-light.is-outlined:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-light.is-outlined[disabled]{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined:hover{background-color:#363636;color:#f5f5f5}.button.is-light.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark{background-color:#363636;border-color:transparent;color:#f5f5f5}.button.is-dark.is-hovered,.button.is-dark:hover{background-color:#2f2f2f;border-color:transparent;color:#f5f5f5}.button.is-dark.is-focused,.button.is-dark:focus{border-color:transparent;color:#f5f5f5}.button.is-dark.is-focused:not(:active),.button.is-dark:focus:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark.is-active,.button.is-dark:active{background-color:#292929;border-color:transparent;color:#f5f5f5}.button.is-dark[disabled]{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#f5f5f5;color:#363636}.button.is-dark.is-inverted:hover{background-color:#e8e8e8}.button.is-dark.is-inverted[disabled]{background-color:#f5f5f5;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined:hover{background-color:#363636;border-color:#363636;color:#f5f5f5}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-outlined[disabled]{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined:hover{background-color:#f5f5f5;color:#363636}.button.is-dark.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary.is-hovered,.button.is-primary:hover{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary.is-focused,.button.is-primary:focus{border-color:transparent;color:#fff}.button.is-primary.is-focused:not(:active),.button.is-primary:focus:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary.is-active,.button.is-primary:active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled]{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined:hover{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-outlined[disabled]{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined:hover{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link{background-color:#3273dc;border-color:transparent;color:#fff}.button.is-link.is-hovered,.button.is-link:hover{background-color:#276cda;border-color:transparent;color:#fff}.button.is-link.is-focused,.button.is-link:focus{border-color:transparent;color:#fff}.button.is-link.is-focused:not(:active),.button.is-link:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.button.is-link.is-active,.button.is-link:active{background-color:#2366d1;border-color:transparent;color:#fff}.button.is-link[disabled]{background-color:#3273dc;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#3273dc}.button.is-link.is-inverted:hover{background-color:#f2f2f2}.button.is-link.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#3273dc}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#3273dc;color:#3273dc}.button.is-link.is-outlined:focus,.button.is-link.is-outlined:hover{background-color:#3273dc;border-color:#3273dc;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #3273dc #3273dc!important}.button.is-link.is-outlined[disabled]{background-color:transparent;border-color:#3273dc;box-shadow:none;color:#3273dc}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined:hover{background-color:#fff;color:#3273dc}.button.is-link.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info{background-color:#209cee;border-color:transparent;color:#fff}.button.is-info.is-hovered,.button.is-info:hover{background-color:#1496ed;border-color:transparent;color:#fff}.button.is-info.is-focused,.button.is-info:focus{border-color:transparent;color:#fff}.button.is-info.is-focused:not(:active),.button.is-info:focus:not(:active){box-shadow:0 0 0 .125em rgba(32,156,238,.25)}.button.is-info.is-active,.button.is-info:active{background-color:#118fe4;border-color:transparent;color:#fff}.button.is-info[disabled]{background-color:#209cee;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#209cee}.button.is-info.is-inverted:hover{background-color:#f2f2f2}.button.is-info.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#209cee}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#209cee;color:#209cee}.button.is-info.is-outlined:focus,.button.is-info.is-outlined:hover{background-color:#209cee;border-color:#209cee;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #209cee #209cee!important}.button.is-info.is-outlined[disabled]{background-color:transparent;border-color:#209cee;box-shadow:none;color:#209cee}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined:hover{background-color:#fff;color:#209cee}.button.is-info.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success{background-color:#23d160;border-color:transparent;color:#fff}.button.is-success.is-hovered,.button.is-success:hover{background-color:#22c65b;border-color:transparent;color:#fff}.button.is-success.is-focused,.button.is-success:focus{border-color:transparent;color:#fff}.button.is-success.is-focused:not(:active),.button.is-success:focus:not(:active){box-shadow:0 0 0 .125em rgba(35,209,96,.25)}.button.is-success.is-active,.button.is-success:active{background-color:#20bc56;border-color:transparent;color:#fff}.button.is-success[disabled]{background-color:#23d160;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#23d160}.button.is-success.is-inverted:hover{background-color:#f2f2f2}.button.is-success.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#23d160}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#23d160;color:#23d160}.button.is-success.is-outlined:focus,.button.is-success.is-outlined:hover{background-color:#23d160;border-color:#23d160;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #23d160 #23d160!important}.button.is-success.is-outlined[disabled]{background-color:transparent;border-color:#23d160;box-shadow:none;color:#23d160}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined:hover{background-color:#fff;color:#23d160}.button.is-success.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-hovered,.button.is-warning:hover{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused,.button.is-warning:focus{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning.is-focused:not(:active),.button.is-warning:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.button.is-warning.is-active,.button.is-warning:active{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled]{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted:hover{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled]{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined:hover{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffdd57 #ffdd57!important}.button.is-warning.is-outlined[disabled]{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined:hover{background-color:rgba(0,0,0,.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-danger{background-color:#ff3860;border-color:transparent;color:#fff}.button.is-danger.is-hovered,.button.is-danger:hover{background-color:#ff2b56;border-color:transparent;color:#fff}.button.is-danger.is-focused,.button.is-danger:focus{border-color:transparent;color:#fff}.button.is-danger.is-focused:not(:active),.button.is-danger:focus:not(:active){box-shadow:0 0 0 .125em rgba(255,56,96,.25)}.button.is-danger.is-active,.button.is-danger:active{background-color:#ff1f4b;border-color:transparent;color:#fff}.button.is-danger[disabled]{background-color:#ff3860;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#ff3860}.button.is-danger.is-inverted:hover{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled]{background-color:#fff;border-color:transparent;box-shadow:none;color:#ff3860}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#ff3860;color:#ff3860}.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined:hover{background-color:#ff3860;border-color:#ff3860;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #ff3860 #ff3860!important}.button.is-danger.is-outlined[disabled]{background-color:transparent;border-color:#ff3860;box-shadow:none;color:#ff3860}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined:hover{background-color:#fff;color:#ff3860}.button.is-danger.is-inverted.is-outlined[disabled]{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-small{border-radius:2px;font-size:.75rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled]{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:290486px;padding-left:1em;padding-right:1em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button.is-hovered,.buttons.has-addons .button:hover{z-index:2}.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-focused,.buttons.has-addons .button.is-selected,.buttons.has-addons .button:active,.buttons.has-addons .button:focus{z-index:3}.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button.is-selected:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button:focus:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1}.buttons.is-centered{justify-content:center}.buttons.is-right{justify-content:flex-end}.container{margin:0 auto;position:relative}@media screen and (min-width:1088px){.container{max-width:960px;width:960px}.container.is-fluid{margin-left:64px;margin-right:64px;max-width:none;width:auto}}@media screen and (max-width:1279px){.container.is-widescreen{max-width:1152px;width:auto}}@media screen and (max-width:1471px){.container.is-fullhd{max-width:1344px;width:auto}}@media screen and (min-width:1280px){.container{max-width:1152px;width:1152px}}@media screen and (min-width:1472px){.container{max-width:1344px;width:1344px}}.content li+li{margin-top:.25em}.content blockquote:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content p:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child),.content ul:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style:decimal outside;margin-left:2em;margin-top:1em}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sub,.content sup{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636;text-align:left}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content.is-small{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.input,.textarea{background-color:#fff;border-color:#dbdbdb;color:#363636;box-shadow:inset 0 1px 2px rgba(10,10,10,.1);max-width:100%;width:100%}.input::-moz-placeholder,.textarea::-moz-placeholder{color:rgba(54,54,54,.3)}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.input:-moz-placeholder,.textarea:-moz-placeholder{color:rgba(54,54,54,.3)}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder{color:rgba(54,54,54,.3)}.input.is-hovered,.input:hover,.textarea.is-hovered,.textarea:hover{border-color:#b5b5b5}.input.is-active,.input.is-focused,.input:active,.input:focus,.textarea.is-active,.textarea.is-focused,.textarea:active,.textarea:focus{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.input[disabled],.textarea[disabled]{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.input[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder{color:rgba(122,122,122,.3)}.input[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.input[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder{color:rgba(122,122,122,.3)}.input[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder{color:rgba(122,122,122,.3)}.input[readonly],.textarea[readonly]{box-shadow:none}.input.is-white,.textarea.is-white{border-color:#fff}.input.is-white.is-active,.input.is-white.is-focused,.input.is-white:active,.input.is-white:focus,.textarea.is-white.is-active,.textarea.is-white.is-focused,.textarea.is-white:active,.textarea.is-white:focus{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.input.is-black,.textarea.is-black{border-color:#0a0a0a}.input.is-black.is-active,.input.is-black.is-focused,.input.is-black:active,.input.is-black:focus,.textarea.is-black.is-active,.textarea.is-black.is-focused,.textarea.is-black:active,.textarea.is-black:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.input.is-light,.textarea.is-light{border-color:#f5f5f5}.input.is-light.is-active,.input.is-light.is-focused,.input.is-light:active,.input.is-light:focus,.textarea.is-light.is-active,.textarea.is-light.is-focused,.textarea.is-light:active,.textarea.is-light:focus{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.input.is-dark,.textarea.is-dark{border-color:#363636}.input.is-dark.is-active,.input.is-dark.is-focused,.input.is-dark:active,.input.is-dark:focus,.textarea.is-dark.is-active,.textarea.is-dark.is-focused,.textarea.is-dark:active,.textarea.is-dark:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.input.is-primary,.textarea.is-primary{border-color:#00d1b2}.input.is-primary.is-active,.input.is-primary.is-focused,.input.is-primary:active,.input.is-primary:focus,.textarea.is-primary.is-active,.textarea.is-primary.is-focused,.textarea.is-primary:active,.textarea.is-primary:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.input.is-link,.textarea.is-link{border-color:#3273dc}.input.is-link.is-active,.input.is-link.is-focused,.input.is-link:active,.input.is-link:focus,.textarea.is-link.is-active,.textarea.is-link.is-focused,.textarea.is-link:active,.textarea.is-link:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.input.is-info,.textarea.is-info{border-color:#209cee}.input.is-info.is-active,.input.is-info.is-focused,.input.is-info:active,.input.is-info:focus,.textarea.is-info.is-active,.textarea.is-info.is-focused,.textarea.is-info:active,.textarea.is-info:focus{box-shadow:0 0 0 .125em rgba(32,156,238,.25)}.input.is-success,.textarea.is-success{border-color:#23d160}.input.is-success.is-active,.input.is-success.is-focused,.input.is-success:active,.input.is-success:focus,.textarea.is-success.is-active,.textarea.is-success.is-focused,.textarea.is-success:active,.textarea.is-success:focus{box-shadow:0 0 0 .125em rgba(35,209,96,.25)}.input.is-warning,.textarea.is-warning{border-color:#ffdd57}.input.is-warning.is-active,.input.is-warning.is-focused,.input.is-warning:active,.input.is-warning:focus,.textarea.is-warning.is-active,.textarea.is-warning.is-focused,.textarea.is-warning:active,.textarea.is-warning:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.input.is-danger,.textarea.is-danger{border-color:#ff3860}.input.is-danger.is-active,.input.is-danger.is-focused,.input.is-danger:active,.input.is-danger:focus,.textarea.is-danger.is-active,.textarea.is-danger.is-focused,.textarea.is-danger:active,.textarea.is-danger:focus{box-shadow:0 0 0 .125em rgba(255,56,96,.25)}.input.is-small,.textarea.is-small{border-radius:2px;font-size:.75rem}.input.is-medium,.textarea.is-medium{font-size:1.25rem}.input.is-large,.textarea.is-large{font-size:1.5rem}.input.is-fullwidth,.textarea.is-fullwidth{display:block;width:100%}.input.is-inline,.textarea.is-inline{display:inline;width:auto}.input.is-rounded{border-radius:290486px;padding-left:1em;padding-right:1em}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:.625em;resize:vertical}.textarea:not([rows]){max-height:600px;min-height:120px}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox[disabled],.radio[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.25em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#3273dc;right:1.125em;z-index:4}.select.is-rounded select{border-radius:290486px;padding-left:1em}.select select{background-color:#fff;border-color:#dbdbdb;color:#363636;cursor:pointer;display:block;font-size:1em;max-width:100%;outline:0}.select select::-moz-placeholder{color:rgba(54,54,54,.3)}.select select::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.select select:-moz-placeholder{color:rgba(54,54,54,.3)}.select select:-ms-input-placeholder{color:rgba(54,54,54,.3)}.select select.is-hovered,.select select:hover{border-color:#b5b5b5}.select select.is-active,.select select.is-focused,.select select:active,.select select:focus{border-color:#3273dc;box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select select[disabled]{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.select select[disabled]::-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-ms-input-placeholder{color:rgba(122,122,122,.3)}.select select::-ms-expand{display:none}.select select[disabled]:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:initial;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select.is-hovered,.select.is-white select:hover{border-color:#f2f2f2}.select.is-white select.is-active,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select:focus{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select.is-hovered,.select.is-black select:hover{border-color:#000}.select.is-black select.is-active,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select:focus{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select.is-hovered,.select.is-light select:hover{border-color:#e8e8e8}.select.is-light select.is-active,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select:focus{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select.is-hovered,.select.is-dark select:hover{border-color:#292929}.select.is-dark select.is-active,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select:focus{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select.is-hovered,.select.is-primary select:hover{border-color:#00b89c}.select.is-primary select.is-active,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select:focus{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:#3273dc}.select.is-link select{border-color:#3273dc}.select.is-link select.is-hovered,.select.is-link select:hover{border-color:#2366d1}.select.is-link select.is-active,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select:focus{box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.select.is-info:not(:hover)::after{border-color:#209cee}.select.is-info select{border-color:#209cee}.select.is-info select.is-hovered,.select.is-info select:hover{border-color:#118fe4}.select.is-info select.is-active,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select:focus{box-shadow:0 0 0 .125em rgba(32,156,238,.25)}.select.is-success:not(:hover)::after{border-color:#23d160}.select.is-success select{border-color:#23d160}.select.is-success select.is-hovered,.select.is-success select:hover{border-color:#20bc56}.select.is-success select.is-active,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select:focus{box-shadow:0 0 0 .125em rgba(35,209,96,.25)}.select.is-warning:not(:hover)::after{border-color:#ffdd57}.select.is-warning select{border-color:#ffdd57}.select.is-warning select.is-hovered,.select.is-warning select:hover{border-color:#ffd83d}.select.is-warning select.is-active,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select:focus{box-shadow:0 0 0 .125em rgba(255,221,87,.25)}.select.is-danger:not(:hover)::after{border-color:#ff3860}.select.is-danger select{border-color:#ff3860}.select.is-danger select.is-hovered,.select.is-danger select:hover{border-color:#ff1f4b}.select.is-danger select.is-active,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select:focus{box-shadow:0 0 0 .125em rgba(255,56,96,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#7a7a7a}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;-webkit-transform:none;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white.is-hovered .file-cta,.file.is-white:hover .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white.is-focused .file-cta,.file.is-white:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:#0a0a0a}.file.is-white.is-active .file-cta,.file.is-white:active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black.is-hovered .file-cta,.file.is-black:hover .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black.is-focused .file-cta,.file.is-black:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black.is-active .file-cta,.file.is-black:active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:#363636}.file.is-light.is-hovered .file-cta,.file.is-light:hover .file-cta{background-color:#eee;border-color:transparent;color:#363636}.file.is-light.is-focused .file-cta,.file.is-light:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:#363636}.file.is-light.is-active .file-cta,.file.is-light:active .file-cta{background-color:#e8e8e8;border-color:transparent;color:#363636}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#f5f5f5}.file.is-dark.is-hovered .file-cta,.file.is-dark:hover .file-cta{background-color:#2f2f2f;border-color:transparent;color:#f5f5f5}.file.is-dark.is-focused .file-cta,.file.is-dark:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#f5f5f5}.file.is-dark.is-active .file-cta,.file.is-dark:active .file-cta{background-color:#292929;border-color:transparent;color:#f5f5f5}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary.is-hovered .file-cta,.file.is-primary:hover .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary.is-focused .file-cta,.file.is-primary:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary.is-active .file-cta,.file.is-primary:active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#3273dc;border-color:transparent;color:#fff}.file.is-link.is-hovered .file-cta,.file.is-link:hover .file-cta{background-color:#276cda;border-color:transparent;color:#fff}.file.is-link.is-focused .file-cta,.file.is-link:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(50,115,220,.25);color:#fff}.file.is-link.is-active .file-cta,.file.is-link:active .file-cta{background-color:#2366d1;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#209cee;border-color:transparent;color:#fff}.file.is-info.is-hovered .file-cta,.file.is-info:hover .file-cta{background-color:#1496ed;border-color:transparent;color:#fff}.file.is-info.is-focused .file-cta,.file.is-info:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(32,156,238,.25);color:#fff}.file.is-info.is-active .file-cta,.file.is-info:active .file-cta{background-color:#118fe4;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#23d160;border-color:transparent;color:#fff}.file.is-success.is-hovered .file-cta,.file.is-success:hover .file-cta{background-color:#22c65b;border-color:transparent;color:#fff}.file.is-success.is-focused .file-cta,.file.is-success:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(35,209,96,.25);color:#fff}.file.is-success.is-active .file-cta,.file.is-success:active .file-cta{background-color:#20bc56;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-hovered .file-cta,.file.is-warning:hover .file-cta{background-color:#ffdb4a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning.is-focused .file-cta,.file.is-warning:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,221,87,.25);color:rgba(0,0,0,.7)}.file.is-warning.is-active .file-cta,.file.is-warning:active .file-cta{background-color:#ffd83d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#ff3860;border-color:transparent;color:#fff}.file.is-danger.is-hovered .file-cta,.file.is-danger:hover .file-cta{background-color:#ff2b56;border-color:transparent;color:#fff}.file.is-danger.is-focused .file-cta,.file.is-danger:focus .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,56,96,.25);color:#fff}.file.is-danger.is-active .file-cta,.file.is-danger:active .file-cta{background-color:#ff1f4b;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:.01em;left:0;outline:0;position:absolute;top:0;width:.01em}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:left;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#3273dc}.help.is-info{color:#209cee}.help.is-success{color:#23d160}.help.is-warning{color:#ffdd57}.help.is-danger{color:#ff3860}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child .button,.field.has-addons .control:first-child .input,.field.has-addons .control:first-child .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child .button,.field.has-addons .control:last-child .input,.field.has-addons .control:last-child .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button.is-hovered,.field.has-addons .control .button:hover,.field.has-addons .control .input.is-hovered,.field.has-addons .control .input:hover,.field.has-addons .control .select select.is-hovered,.field.has-addons .control .select select:hover{z-index:2}.field.has-addons .control .button.is-active,.field.has-addons .control .button.is-focused,.field.has-addons .control .button:active,.field.has-addons .control .button:focus,.field.has-addons .control .input.is-active,.field.has-addons .control .input.is-focused,.field.has-addons .control .input:active,.field.has-addons .control .input:focus,.field.has-addons .control .select select.is-active,.field.has-addons .control .select select.is-focused,.field.has-addons .control .select select:active,.field.has-addons .control .select select:focus{z-index:3}.field.has-addons .control .button.is-active:hover,.field.has-addons .control .button.is-focused:hover,.field.has-addons .control .button:active:hover,.field.has-addons .control .button:focus:hover,.field.has-addons .control .input.is-active:hover,.field.has-addons .control .input.is-focused:hover,.field.has-addons .control .input:active:hover,.field.has-addons .control .input:focus:hover,.field.has-addons .control .select select.is-active:hover,.field.has-addons .control .select select.is-focused:hover,.field.has-addons .control .select select:active:hover,.field.has-addons .control .select select:focus:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width:769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width:768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width:769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width:769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{clear:both;font-size:1rem;position:relative;text-align:left}.control.has-icon .icon{color:#dbdbdb;height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}.control.has-icon .input:focus+.icon{color:#7a7a7a}.control.has-icon .input.is-small+.icon{font-size:.75rem}.control.has-icon .input.is-medium+.icon{font-size:1.25rem}.control.has-icon .input.is-large+.icon{font-size:1.5rem}.control.has-icon:not(.has-icon-right) .icon{left:0}.control.has-icon:not(.has-icon-right) .input{padding-left:2.25em}.control.has-icon.has-icon-right .icon{right:0}.control.has-icon.has-icon-right .input{padding-right:2.25em}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#7a7a7a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.25em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.25em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:290486px}.image.is-16by9 img,.image.is-1by1 img,.image.is-1by2 img,.image.is-1by3 img,.image.is-2by1 img,.image.is-2by3 img,.image.is-3by1 img,.image.is-3by2 img,.image.is-3by4 img,.image.is-3by5 img,.image.is-4by3 img,.image.is-4by5 img,.image.is-5by3 img,.image.is-5by4 img,.image.is-9by16 img,.image.is-square img{height:100%;width:100%}.image.is-1by1,.image.is-square{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:0 0}.notification>.delete{position:absolute;right:.5rem;top:.5rem}.notification .content,.notification .subtitle,.notification .title{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:#363636}.notification.is-dark{background-color:#363636;color:#f5f5f5}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-link{background-color:#3273dc;color:#fff}.notification.is-info{background-color:#209cee;color:#fff}.notification.is-success{background-color:#23d160;color:#fff}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.notification.is-danger{background-color:#ff3860;color:#fff}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#dbdbdb}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-link::-webkit-progress-value{background-color:#3273dc}.progress.is-link::-moz-progress-bar{background-color:#3273dc}.progress.is-link::-ms-fill{background-color:#3273dc}.progress.is-info::-webkit-progress-value{background-color:#209cee}.progress.is-info::-moz-progress-bar{background-color:#209cee}.progress.is-info::-ms-fill{background-color:#209cee}.progress.is-success::-webkit-progress-value{background-color:#23d160}.progress.is-success::-moz-progress-bar{background-color:#23d160}.progress.is-success::-ms-fill{background-color:#23d160}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-danger::-webkit-progress-value{background-color:#ff3860}.progress.is-danger::-moz-progress-bar{background-color:#ff3860}.progress.is-danger::-ms-fill{background-color:#ff3860}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#f5f5f5}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#3273dc;border-color:#3273dc;color:#fff}.table td.is-info,.table th.is-info{background-color:#209cee;border-color:#209cee;color:#fff}.table td.is-success,.table th.is-success{background-color:#23d160;border-color:#23d160;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,.7)}.table td.is-danger,.table th.is-danger{background-color:#ff3860;border-color:#ff3860;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table th{color:#363636;text-align:left}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.tags.has-addons .tag:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:#363636}.tag:not(body).is-dark{background-color:#363636;color:#f5f5f5}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-link{background-color:#3273dc;color:#fff}.tag:not(body).is-info{background-color:#209cee;color:#fff}.tag:not(body).is-success{background-color:#23d160;color:#fff}.tag:not(body).is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.tag:not(body).is-danger{background-color:#ff3860;color:#fff}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete::after,.tag:not(body).is-delete::before{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);-webkit-transform-origin:center center;transform-origin:center center}.tag:not(body).is-delete::before{height:1px;width:50%}.tag:not(body).is-delete::after{height:50%;width:1px}.tag:not(body).is-delete:focus,.tag:not(body).is-delete:hover{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:290486px}a.tag:hover{text-decoration:underline}.subtitle,.title{word-break:break-word}.subtitle em,.subtitle span,.title em,.title span{font-weight:inherit}.subtitle sub,.title sub{font-size:.75em}.subtitle sup,.title sup{font-size:.75em}.subtitle .tag,.title .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#3273dc;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ol,.breadcrumb ul{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:"\02192"}.breadcrumb.has-bullet-separator li+li::before{content:"\02022"}.breadcrumb.has-dot-separator li+li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}.card{background-color:#fff;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);color:#4a4a4a;max-width:100%;position:relative}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 1px 2px rgba(10,10,10,.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem}.card-image{display:block;position:relative}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid #dbdbdb;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #dbdbdb}.card .media:not(:last-child){margin-bottom:.75rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item{padding-right:3rem;white-space:nowrap}a.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active{background-color:#3273dc;color:#fff}.dropdown-divider{background-color:#dbdbdb;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item{margin-right:.75rem}.level.is-mobile .level-item:not(:last-child){margin-bottom:0}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width:769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .subtitle,.level-item .title{margin-bottom:0}@media screen and (max-width:768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width:769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width:768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width:769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width:769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:left}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:left}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#3273dc;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff;color:#4d4d4d}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a;color:#090909}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:#363636}.message.is-light .message-body{border-color:#f5f5f5;color:#505050}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#f5f5f5}.message.is-dark .message-body{border-color:#363636;color:#2a2a2a}.message.is-primary{background-color:#f5fffd}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#021310}.message.is-link{background-color:#f6f9fe}.message.is-link .message-header{background-color:#3273dc;color:#fff}.message.is-link .message-body{border-color:#3273dc;color:#22509a}.message.is-info{background-color:#f6fbfe}.message.is-info .message-header{background-color:#209cee;color:#fff}.message.is-info .message-body{border-color:#209cee;color:#12537e}.message.is-success{background-color:#f6fef9}.message.is-success .message-header{background-color:#23d160;color:#fff}.message.is-success .message-body{border-color:#23d160;color:#0e301a}.message.is-warning{background-color:#fffdf5}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#3b3108}.message.is-danger{background-color:#fff5f7}.message.is-danger .message-header{background-color:#ff3860;color:#fff}.message.is-danger .message-body{border-color:#ff3860;color:#cd0930}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-card,.modal-content{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width:769px),print{.modal-card,.modal-content{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:0 0;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden}.modal-card-foot,.modal-card-head{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:10px}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link,.navbar.is-white .navbar-brand>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link.is-active,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}@media screen and (min-width:1088px){.navbar.is-white .navbar-end .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-start>.navbar-item{color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link.is-active,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start>a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-end .navbar-link::after,.navbar.is-white .navbar-start .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand .navbar-link,.navbar.is-black .navbar-brand>.navbar-item{color:#fff}.navbar.is-black .navbar-brand .navbar-link.is-active,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-black .navbar-end .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-start>.navbar-item{color:#fff}.navbar.is-black .navbar-end .navbar-link.is-active,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start>a.navbar-item:hover{background-color:#000;color:#fff}.navbar.is-black .navbar-end .navbar-link::after,.navbar.is-black .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:#363636}.navbar.is-light .navbar-brand .navbar-link,.navbar.is-light .navbar-brand>.navbar-item{color:#363636}.navbar.is-light .navbar-brand .navbar-link.is-active,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand>a.navbar-item:hover{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-brand .navbar-link::after{border-color:#363636}@media screen and (min-width:1088px){.navbar.is-light .navbar-end .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-start>.navbar-item{color:#363636}.navbar.is-light .navbar-end .navbar-link.is-active,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start>a.navbar-item:hover{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-end .navbar-link::after,.navbar.is-light .navbar-start .navbar-link::after{border-color:#363636}.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#363636}}.navbar.is-dark{background-color:#363636;color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link,.navbar.is-dark .navbar-brand>.navbar-item{color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link.is-active,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand>a.navbar-item:hover{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link::after{border-color:#f5f5f5}@media screen and (min-width:1088px){.navbar.is-dark .navbar-end .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-start>.navbar-item{color:#f5f5f5}.navbar.is-dark .navbar-end .navbar-link.is-active,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start>a.navbar-item:hover{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-end .navbar-link::after,.navbar.is-dark .navbar-start .navbar-link::after{border-color:#f5f5f5}.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#f5f5f5}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand .navbar-link,.navbar.is-primary .navbar-brand>.navbar-item{color:#fff}.navbar.is-primary .navbar-brand .navbar-link.is-active,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-primary .navbar-end .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-start>.navbar-item{color:#fff}.navbar.is-primary .navbar-end .navbar-link.is-active,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start>a.navbar-item:hover{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-end .navbar-link::after,.navbar.is-primary .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#3273dc;color:#fff}.navbar.is-link .navbar-brand .navbar-link,.navbar.is-link .navbar-brand>.navbar-item{color:#fff}.navbar.is-link .navbar-brand .navbar-link.is-active,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-link .navbar-end .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-start>.navbar-item{color:#fff}.navbar.is-link .navbar-end .navbar-link.is-active,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start>a.navbar-item:hover{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-end .navbar-link::after,.navbar.is-link .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link{background-color:#2366d1;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#3273dc;color:#fff}}.navbar.is-info{background-color:#209cee;color:#fff}.navbar.is-info .navbar-brand .navbar-link,.navbar.is-info .navbar-brand>.navbar-item{color:#fff}.navbar.is-info .navbar-brand .navbar-link.is-active,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand>a.navbar-item:hover{background-color:#118fe4;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-info .navbar-end .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-start>.navbar-item{color:#fff}.navbar.is-info .navbar-end .navbar-link.is-active,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start>a.navbar-item:hover{background-color:#118fe4;color:#fff}.navbar.is-info .navbar-end .navbar-link::after,.navbar.is-info .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link{background-color:#118fe4;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#209cee;color:#fff}}.navbar.is-success{background-color:#23d160;color:#fff}.navbar.is-success .navbar-brand .navbar-link,.navbar.is-success .navbar-brand>.navbar-item{color:#fff}.navbar.is-success .navbar-brand .navbar-link.is-active,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand>a.navbar-item:hover{background-color:#20bc56;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-success .navbar-end .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-start>.navbar-item{color:#fff}.navbar.is-success .navbar-end .navbar-link.is-active,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start>a.navbar-item:hover{background-color:#20bc56;color:#fff}.navbar.is-success .navbar-end .navbar-link::after,.navbar.is-success .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link{background-color:#20bc56;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#23d160;color:#fff}}.navbar.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link,.navbar.is-warning .navbar-brand>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link.is-active,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,.7)}@media screen and (min-width:1088px){.navbar.is-warning .navbar-end .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-start>.navbar-item{color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link.is-active,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start>a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-end .navbar-link::after,.navbar.is-warning .navbar-start .navbar-link::after{border-color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link{background-color:#ffd83d;color:rgba(0,0,0,.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,.7)}}.navbar.is-danger{background-color:#ff3860;color:#fff}.navbar.is-danger .navbar-brand .navbar-link,.navbar.is-danger .navbar-brand>.navbar-item{color:#fff}.navbar.is-danger .navbar-brand .navbar-link.is-active,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand>a.navbar-item:hover{background-color:#ff1f4b;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}@media screen and (min-width:1088px){.navbar.is-danger .navbar-end .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-start>.navbar-item{color:#fff}.navbar.is-danger .navbar-end .navbar-link.is-active,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start>a.navbar-item:hover{background-color:#ff1f4b;color:#fff}.navbar.is-danger .navbar-end .navbar-link::after,.navbar.is-danger .navbar-start .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link{background-color:#ff1f4b;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#ff3860;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}body.has-navbar-fixed-top,html.has-navbar-fixed-top{padding-top:3.25rem}body.has-navbar-fixed-bottom,html.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;-webkit-transform-origin:center;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,-webkit-transform;transition-property:background-color,opacity,transform;transition-property:background-color,opacity,transform,-webkit-transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,.05)}.navbar-burger.is-active span:nth-child(1){-webkit-transform:translateY(5px) rotate(45deg);transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){-webkit-transform:translateY(-5px) rotate(-45deg);transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}.navbar-link,a.navbar-item{cursor:pointer}.navbar-link.is-active,.navbar-link:hover,a.navbar-item.is-active,a.navbar-item:hover{background-color:#fafafa;color:#3273dc}.navbar-item{display:block;flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#3273dc}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#3273dc;border-bottom-style:solid;border-bottom-width:3px;color:#3273dc;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#3273dc;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width:1087px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,.1);padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}body.has-navbar-fixed-top-touch,html.has-navbar-fixed-top-touch{padding-top:3.25rem}body.has-navbar-fixed-bottom-touch,html.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width:1088px){.navbar,.navbar-end,.navbar-menu,.navbar-start{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-end,.navbar.is-spaced .navbar-start{align-items:center}.navbar.is-spaced .navbar-link,.navbar.is-spaced a.navbar-item{border-radius:4px}.navbar.is-transparent .navbar-link.is-active,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent a.navbar-item:hover{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item{display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{-webkit-transform:rotate(135deg) translate(.25em,-.25em);transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown{opacity:1;pointer-events:auto;-webkit-transform:translateY(0);transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,.1);display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#3273dc}.navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-dropdown{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));-webkit-transform:translateY(-5px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.container>.navbar .navbar-brand,.navbar>.container .navbar-brand{margin-left:-.75rem}.container>.navbar .navbar-menu,.navbar>.container .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,.1)}.navbar.is-fixed-top-desktop{top:0}body.has-navbar-fixed-top-desktop,html.has-navbar-fixed-top-desktop{padding-top:3.25rem}body.has-navbar-fixed-bottom-desktop,html.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}body.has-spaced-navbar-fixed-top,html.has-spaced-navbar-fixed-top{padding-top:5.25rem}body.has-spaced-navbar-fixed-bottom,html.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}.navbar-link.is-active,a.navbar-item.is-active{color:#0a0a0a}.navbar-link.is-active:not(:hover),a.navbar-item.is-active:not(:hover){background-color:transparent}.navbar-item.has-dropdown.is-active .navbar-link,.navbar-item.has-dropdown:hover .navbar-link{background-color:#fafafa}}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-next,.pagination.is-rounded .pagination-previous{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous{font-size:1em;padding-left:.5em;padding-right:.5em;justify-content:center;margin:.25rem;text-align:center}.pagination-link,.pagination-next,.pagination-previous{border-color:#dbdbdb;color:#363636;min-width:2.25em}.pagination-link:hover,.pagination-next:hover,.pagination-previous:hover{border-color:#b5b5b5;color:#363636}.pagination-link:focus,.pagination-next:focus,.pagination-previous:focus{border-color:#3273dc}.pagination-link:active,.pagination-next:active,.pagination-previous:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-link[disabled],.pagination-next[disabled],.pagination-previous[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-next,.pagination-previous{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#3273dc;border-color:#3273dc;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-next,.pagination-previous{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width:769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel-block,.panel-heading,.panel-tabs{border-bottom:1px solid #dbdbdb;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.panel-block:first-child,.panel-heading:first-child,.panel-tabs:first-child{border-top:1px solid #dbdbdb}.panel-heading{background-color:#f5f5f5;border-radius:4px 4px 0 0;color:#363636;font-size:1.25em;font-weight:300;line-height:1.25;padding:.5em .75em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#3273dc}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#3273dc;color:#363636}.panel-block.is-active .panel-icon{color:#3273dc}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#3273dc;color:#3273dc}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-radius:4px 0 0 4px}.tabs.is-toggle li:last-child a{border-radius:0 4px 4px 0}.tabs.is-toggle li.is-active a{background-color:#3273dc;border-color:#3273dc;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333%}.columns.is-mobile>.column.is-2{flex:none;width:16.66667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333%}.columns.is-mobile>.column.is-5{flex:none;width:41.66667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333%}.columns.is-mobile>.column.is-8{flex:none;width:66.66667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333%}.columns.is-mobile>.column.is-11{flex:none;width:91.66667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width:768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-1-mobile{flex:none;width:8.33333%}.column.is-offset-1-mobile{margin-left:8.33333%}.column.is-2-mobile{flex:none;width:16.66667%}.column.is-offset-2-mobile{margin-left:16.66667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333%}.column.is-offset-4-mobile{margin-left:33.33333%}.column.is-5-mobile{flex:none;width:41.66667%}.column.is-offset-5-mobile{margin-left:41.66667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333%}.column.is-offset-7-mobile{margin-left:58.33333%}.column.is-8-mobile{flex:none;width:66.66667%}.column.is-offset-8-mobile{margin-left:66.66667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333%}.column.is-offset-10-mobile{margin-left:83.33333%}.column.is-11-mobile{flex:none;width:91.66667%}.column.is-offset-11-mobile{margin-left:91.66667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width:769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width:1087px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-1-touch{flex:none;width:8.33333%}.column.is-offset-1-touch{margin-left:8.33333%}.column.is-2-touch{flex:none;width:16.66667%}.column.is-offset-2-touch{margin-left:16.66667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333%}.column.is-offset-4-touch{margin-left:33.33333%}.column.is-5-touch{flex:none;width:41.66667%}.column.is-offset-5-touch{margin-left:41.66667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333%}.column.is-offset-7-touch{margin-left:58.33333%}.column.is-8-touch{flex:none;width:66.66667%}.column.is-offset-8-touch{margin-left:66.66667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333%}.column.is-offset-10-touch{margin-left:83.33333%}.column.is-11-touch{flex:none;width:91.66667%}.column.is-offset-11-touch{margin-left:91.66667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width:1088px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-1-desktop{flex:none;width:8.33333%}.column.is-offset-1-desktop{margin-left:8.33333%}.column.is-2-desktop{flex:none;width:16.66667%}.column.is-offset-2-desktop{margin-left:16.66667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333%}.column.is-offset-4-desktop{margin-left:33.33333%}.column.is-5-desktop{flex:none;width:41.66667%}.column.is-offset-5-desktop{margin-left:41.66667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333%}.column.is-offset-7-desktop{margin-left:58.33333%}.column.is-8-desktop{flex:none;width:66.66667%}.column.is-offset-8-desktop{margin-left:66.66667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333%}.column.is-offset-10-desktop{margin-left:83.33333%}.column.is-11-desktop{flex:none;width:91.66667%}.column.is-offset-11-desktop{margin-left:91.66667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width:1280px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-1-widescreen{flex:none;width:8.33333%}.column.is-offset-1-widescreen{margin-left:8.33333%}.column.is-2-widescreen{flex:none;width:16.66667%}.column.is-offset-2-widescreen{margin-left:16.66667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333%}.column.is-offset-4-widescreen{margin-left:33.33333%}.column.is-5-widescreen{flex:none;width:41.66667%}.column.is-offset-5-widescreen{margin-left:41.66667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333%}.column.is-offset-7-widescreen{margin-left:58.33333%}.column.is-8-widescreen{flex:none;width:66.66667%}.column.is-offset-8-widescreen{margin-left:66.66667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333%}.column.is-offset-10-widescreen{margin-left:83.33333%}.column.is-11-widescreen{flex:none;width:91.66667%}.column.is-offset-11-widescreen{margin-left:91.66667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width:1472px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-1-fullhd{flex:none;width:8.33333%}.column.is-offset-1-fullhd{margin-left:8.33333%}.column.is-2-fullhd{flex:none;width:16.66667%}.column.is-offset-2-fullhd{margin-left:16.66667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333%}.column.is-offset-4-fullhd{margin-left:33.33333%}.column.is-5-fullhd{flex:none;width:41.66667%}.column.is-offset-5-fullhd{margin-left:41.66667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333%}.column.is-offset-7-fullhd{margin-left:58.33333%}.column.is-8-fullhd{flex:none;width:66.66667%}.column.is-offset-8-fullhd{margin-left:66.66667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333%}.column.is-offset-10-fullhd{margin-left:83.33333%}.column.is-11-fullhd{flex:none;width:91.66667%}.column.is-offset-11-fullhd{margin-left:91.66667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width:769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width:1088px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap:0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap:0rem}@media screen and (max-width:768px){.columns.is-variable.is-0-mobile{--columnGap:0rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-0-tablet{--columnGap:0rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-0-tablet-only{--columnGap:0rem}}@media screen and (max-width:1087px){.columns.is-variable.is-0-touch{--columnGap:0rem}}@media screen and (min-width:1088px){.columns.is-variable.is-0-desktop{--columnGap:0rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-0-desktop-only{--columnGap:0rem}}@media screen and (min-width:1280px){.columns.is-variable.is-0-widescreen{--columnGap:0rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-0-widescreen-only{--columnGap:0rem}}@media screen and (min-width:1472px){.columns.is-variable.is-0-fullhd{--columnGap:0rem}}.columns.is-variable.is-1{--columnGap:0.25rem}@media screen and (max-width:768px){.columns.is-variable.is-1-mobile{--columnGap:0.25rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-1-tablet{--columnGap:0.25rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-1-tablet-only{--columnGap:0.25rem}}@media screen and (max-width:1087px){.columns.is-variable.is-1-touch{--columnGap:0.25rem}}@media screen and (min-width:1088px){.columns.is-variable.is-1-desktop{--columnGap:0.25rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-1-desktop-only{--columnGap:0.25rem}}@media screen and (min-width:1280px){.columns.is-variable.is-1-widescreen{--columnGap:0.25rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-1-widescreen-only{--columnGap:0.25rem}}@media screen and (min-width:1472px){.columns.is-variable.is-1-fullhd{--columnGap:0.25rem}}.columns.is-variable.is-2{--columnGap:0.5rem}@media screen and (max-width:768px){.columns.is-variable.is-2-mobile{--columnGap:0.5rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-2-tablet{--columnGap:0.5rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-2-tablet-only{--columnGap:0.5rem}}@media screen and (max-width:1087px){.columns.is-variable.is-2-touch{--columnGap:0.5rem}}@media screen and (min-width:1088px){.columns.is-variable.is-2-desktop{--columnGap:0.5rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-2-desktop-only{--columnGap:0.5rem}}@media screen and (min-width:1280px){.columns.is-variable.is-2-widescreen{--columnGap:0.5rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-2-widescreen-only{--columnGap:0.5rem}}@media screen and (min-width:1472px){.columns.is-variable.is-2-fullhd{--columnGap:0.5rem}}.columns.is-variable.is-3{--columnGap:0.75rem}@media screen and (max-width:768px){.columns.is-variable.is-3-mobile{--columnGap:0.75rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-3-tablet{--columnGap:0.75rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-3-tablet-only{--columnGap:0.75rem}}@media screen and (max-width:1087px){.columns.is-variable.is-3-touch{--columnGap:0.75rem}}@media screen and (min-width:1088px){.columns.is-variable.is-3-desktop{--columnGap:0.75rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-3-desktop-only{--columnGap:0.75rem}}@media screen and (min-width:1280px){.columns.is-variable.is-3-widescreen{--columnGap:0.75rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-3-widescreen-only{--columnGap:0.75rem}}@media screen and (min-width:1472px){.columns.is-variable.is-3-fullhd{--columnGap:0.75rem}}.columns.is-variable.is-4{--columnGap:1rem}@media screen and (max-width:768px){.columns.is-variable.is-4-mobile{--columnGap:1rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-4-tablet{--columnGap:1rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-4-tablet-only{--columnGap:1rem}}@media screen and (max-width:1087px){.columns.is-variable.is-4-touch{--columnGap:1rem}}@media screen and (min-width:1088px){.columns.is-variable.is-4-desktop{--columnGap:1rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-4-desktop-only{--columnGap:1rem}}@media screen and (min-width:1280px){.columns.is-variable.is-4-widescreen{--columnGap:1rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-4-widescreen-only{--columnGap:1rem}}@media screen and (min-width:1472px){.columns.is-variable.is-4-fullhd{--columnGap:1rem}}.columns.is-variable.is-5{--columnGap:1.25rem}@media screen and (max-width:768px){.columns.is-variable.is-5-mobile{--columnGap:1.25rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-5-tablet{--columnGap:1.25rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-5-tablet-only{--columnGap:1.25rem}}@media screen and (max-width:1087px){.columns.is-variable.is-5-touch{--columnGap:1.25rem}}@media screen and (min-width:1088px){.columns.is-variable.is-5-desktop{--columnGap:1.25rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-5-desktop-only{--columnGap:1.25rem}}@media screen and (min-width:1280px){.columns.is-variable.is-5-widescreen{--columnGap:1.25rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-5-widescreen-only{--columnGap:1.25rem}}@media screen and (min-width:1472px){.columns.is-variable.is-5-fullhd{--columnGap:1.25rem}}.columns.is-variable.is-6{--columnGap:1.5rem}@media screen and (max-width:768px){.columns.is-variable.is-6-mobile{--columnGap:1.5rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-6-tablet{--columnGap:1.5rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-6-tablet-only{--columnGap:1.5rem}}@media screen and (max-width:1087px){.columns.is-variable.is-6-touch{--columnGap:1.5rem}}@media screen and (min-width:1088px){.columns.is-variable.is-6-desktop{--columnGap:1.5rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-6-desktop-only{--columnGap:1.5rem}}@media screen and (min-width:1280px){.columns.is-variable.is-6-widescreen{--columnGap:1.5rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-6-widescreen-only{--columnGap:1.5rem}}@media screen and (min-width:1472px){.columns.is-variable.is-6-fullhd{--columnGap:1.5rem}}.columns.is-variable.is-7{--columnGap:1.75rem}@media screen and (max-width:768px){.columns.is-variable.is-7-mobile{--columnGap:1.75rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-7-tablet{--columnGap:1.75rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-7-tablet-only{--columnGap:1.75rem}}@media screen and (max-width:1087px){.columns.is-variable.is-7-touch{--columnGap:1.75rem}}@media screen and (min-width:1088px){.columns.is-variable.is-7-desktop{--columnGap:1.75rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-7-desktop-only{--columnGap:1.75rem}}@media screen and (min-width:1280px){.columns.is-variable.is-7-widescreen{--columnGap:1.75rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-7-widescreen-only{--columnGap:1.75rem}}@media screen and (min-width:1472px){.columns.is-variable.is-7-fullhd{--columnGap:1.75rem}}.columns.is-variable.is-8{--columnGap:2rem}@media screen and (max-width:768px){.columns.is-variable.is-8-mobile{--columnGap:2rem}}@media screen and (min-width:769px),print{.columns.is-variable.is-8-tablet{--columnGap:2rem}}@media screen and (min-width:769px) and (max-width:1087px){.columns.is-variable.is-8-tablet-only{--columnGap:2rem}}@media screen and (max-width:1087px){.columns.is-variable.is-8-touch{--columnGap:2rem}}@media screen and (min-width:1088px){.columns.is-variable.is-8-desktop{--columnGap:2rem}}@media screen and (min-width:1088px) and (max-width:1279px){.columns.is-variable.is-8-desktop-only{--columnGap:2rem}}@media screen and (min-width:1280px){.columns.is-variable.is-8-widescreen{--columnGap:2rem}}@media screen and (min-width:1280px) and (max-width:1471px){.columns.is-variable.is-8-widescreen-only{--columnGap:2rem}}@media screen and (min-width:1472px){.columns.is-variable.is-8-fullhd{--columnGap:2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media screen and (min-width:769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333%}.tile.is-2{flex:none;width:16.66667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333%}.tile.is-5{flex:none;width:41.66667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333%}.tile.is-8{flex:none;width:66.66667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333%}.tile.is-11{flex:none;width:91.66667%}.tile.is-12{flex:none;width:100%}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:0 0}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width:1087px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,.7)}.hero.is-white .navbar-link.is-active,.hero.is-white .navbar-link:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white a.navbar-item:hover{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e6e6e6 0,#fff 71%,#fff 100%)}@media screen and (max-width:768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e6e6e6 0,#fff 71%,#fff 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,.7)}.hero.is-black .navbar-link.is-active,.hero.is-black .navbar-link:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black a.navbar-item:hover{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,#000 0,#0a0a0a 71%,#181616 100%)}@media screen and (max-width:768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,#000 0,#0a0a0a 71%,#181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:#363636}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag),.hero.is-light strong{color:inherit}.hero.is-light .title{color:#363636}.hero.is-light .subtitle{color:rgba(54,54,54,.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:#363636}@media screen and (max-width:1087px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(54,54,54,.7)}.hero.is-light .navbar-link.is-active,.hero.is-light .navbar-link:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light a.navbar-item:hover{background-color:#e8e8e8;color:#363636}.hero.is-light .tabs a{color:#363636;opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:#363636}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#363636;border-color:#363636;color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)}@media screen and (max-width:768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)}}.hero.is-dark{background-color:#363636;color:#f5f5f5}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#f5f5f5}.hero.is-dark .subtitle{color:rgba(245,245,245,.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#f5f5f5}@media screen and (max-width:1087px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:rgba(245,245,245,.7)}.hero.is-dark .navbar-link.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark a.navbar-item:hover{background-color:#292929;color:#f5f5f5}.hero.is-dark .tabs a{color:#f5f5f5;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#f5f5f5}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a 0,#363636 71%,#46403f 100%)}@media screen and (max-width:768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a 0,#363636 71%,#46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:rgba(255,255,255,.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:rgba(255,255,255,.7)}.hero.is-primary .navbar-link.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary a.navbar-item:hover{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c 0,#00d1b2 71%,#00e7eb 100%)}@media screen and (max-width:768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c 0,#00d1b2 71%,#00e7eb 100%)}}.hero.is-link{background-color:#3273dc;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-link .navbar-menu{background-color:#3273dc}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,.7)}.hero.is-link .navbar-link.is-active,.hero.is-link .navbar-link:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link a.navbar-item:hover{background-color:#2366d1;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3273dc}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#1577c6 0,#3273dc 71%,#4366e5 100%)}@media screen and (max-width:768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1577c6 0,#3273dc 71%,#4366e5 100%)}}.hero.is-info{background-color:#209cee;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-info .navbar-menu{background-color:#209cee}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,.7)}.hero.is-info .navbar-link.is-active,.hero.is-info .navbar-link:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info a.navbar-item:hover{background-color:#118fe4;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#209cee}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#04a6d7 0,#209cee 71%,#3287f5 100%)}@media screen and (max-width:768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#04a6d7 0,#209cee 71%,#3287f5 100%)}}.hero.is-success{background-color:#23d160;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-success .navbar-menu{background-color:#23d160}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,.7)}.hero.is-success .navbar-link.is-active,.hero.is-success .navbar-link:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success a.navbar-item:hover{background-color:#20bc56;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#23d160}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#12af2f 0,#23d160 71%,#2ce28a 100%)}@media screen and (max-width:768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#12af2f 0,#23d160 71%,#2ce28a 100%)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,.7)}@media screen and (max-width:1087px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,.7)}.hero.is-warning .navbar-link.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning a.navbar-item:hover{background-color:#ffd83d;color:rgba(0,0,0,.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,.7);opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffaf24 0,#ffdd57 71%,#fffa70 100%)}@media screen and (max-width:768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffaf24 0,#ffdd57 71%,#fffa70 100%)}}.hero.is-danger{background-color:#ff3860;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width:1087px){.hero.is-danger .navbar-menu{background-color:#ff3860}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,.7)}.hero.is-danger .navbar-link.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger a.navbar-item:hover{background-color:#ff1f4b;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#ff3860}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#ff0561 0,#ff3860 71%,#ff5257 100%)}@media screen and (max-width:768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ff0561 0,#ff3860 71%,#ff5257 100%)}}.hero.is-small .hero-body{padding-bottom:1.5rem;padding-top:1.5rem}@media screen and (min-width:769px),print{.hero.is-medium .hero-body{padding-bottom:9rem;padding-top:9rem}}@media screen and (min-width:769px),print{.hero.is-large .hero-body{padding-bottom:18rem;padding-top:18rem}}.hero.is-fullheight .hero-body,.hero.is-halfheight .hero-body{align-items:center;display:flex}.hero.is-fullheight .hero-body>.container,.hero.is-halfheight .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width:768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width:768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width:769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-foot,.hero-head{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}.section{padding:3rem 1.5rem}@media screen and (min-width:1088px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}.bd-columns-tool,.bd-footer-donation-action,.bd-footer-star-figure{align-items:center;display:flex;justify-content:center}.bd-book-content,.bd-footer-star,.bd-footer-support{background-color:#fff;border-radius:6px;box-shadow:0 1.5rem 1.5rem -1.25rem rgba(10,10,10,.05);display:block}.bd-main{overflow:hidden;position:relative}.bd-figure{border:2px solid #f5f5f5;border-radius:4px;text-align:center}.bd-figure figcaption{background-color:#f5f5f5;color:#7a7a7a;font-size:.75rem;padding:1em}.bd-lead{position:relative}.bd-breadcrumb{display:flex;justify-content:space-between;margin-bottom:3rem}.bd-breadcrumb .breadcrumb:not(:last-child){margin-bottom:0}.bd-prev-next{align-items:flex-start;color:#b5b5b5;display:none;flex-grow:0;flex-shrink:0;margin-left:.5rem;text-align:center}.bd-prev-next a,.bd-prev-next span{border-radius:4px;width:1.5rem}.bd-prev-next a:hover{background-color:#f5f5f5}.bd-prev-next-bis{border-top:2px solid #f5f5f5;display:flex;justify-content:space-between;margin-top:3rem}.bd-prev-next-bis a{margin-top:1.5rem}.bd-prev-next-bis-previous{margin-right:auto}.bd-prev-next-bis-next{margin-left:auto}.bd-header{margin-bottom:3rem}.bd-header .subtitle{color:#7a7a7a}.bd-header .subtitle strong{color:currentColor}.bd-header #meta{margin-top:-.5rem}.bd-tabs{margin-bottom:3rem}.bd-tabs .tabs{overflow:visible}.bd-tabs .tabs a,.bd-tabs .tabs ul{border-bottom-color:#f5f5f5;border-bottom-width:2px}.bd-tabs .tabs ul{flex-wrap:wrap;max-width:100%}.bd-tabs .tabs a{margin-bottom:-2px}.bd-tabs .tabs li:not(.is-active) a:hover{border-bottom-color:#dbdbdb}.bd-content hr:first-child{display:none}.bd-content hr:first-child+.bd-anchor-title{padding-top:0}.bd-side,.bd-side-background{background-color:#fafafa}.bd-side{position:relative}.bd-side-background{bottom:0;left:50%;position:absolute;right:0;top:0}.bd-anchors-list,.bd-category-list{font-size:.875rem}.bd-anchors-list li:not(:last-child),.bd-category-list li:not(:last-child){margin-bottom:.5em}.bd-anchors-list li.is-past a,.bd-category-list li.is-past a{color:#b5b5b5}.bd-anchors-list li.is-current a,.bd-category-list li.is-current a{color:#3273dc}.bd-anchors-list a,.bd-category-list a{color:#7a7a7a}.bd-anchors-list a:hover,.bd-category-list a:hover{color:#3273dc}.bd-category a:hover{color:#3273dc}.bd-category:not(:last-child){margin-bottom:.5rem}.bd-category.is-active .bd-category-toggle .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.bd-category.is-active .bd-category-list{display:block}.bd-category-header{position:relative}.bd-category-toggle{align-items:center;color:#b5b5b5;display:flex;justify-content:flex-end}.bd-category-toggle .icon{font-size:.75rem;-webkit-transform-origin:center;transform-origin:center;transition-duration:86ms;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.bd-category-name{color:#363636;position:relative}.bd-category-name.is-active{color:#3273dc}.bd-category-name .tag{border-radius:2px;font-family:Verdana;font-size:.5rem;font-weight:700;height:2.25em;margin-left:.5em;vertical-align:text-bottom}.bd-category-list{display:none;padding:.5rem}.bd-anchors-reference{height:1px}.bd-anchors{display:none;max-width:10.5rem;padding-top:calc(1.5rem - 1px)}@media screen and (min-width:769px),print{.bd-anchors.is-active{display:block}.bd-anchors.is-pinned{position:fixed;top:0}}.bd-anchors-title{color:#b5b5b5;font-size:.875rem;font-weight:600;margin-bottom:.5rem}.bd-anchors-list li:last-child{margin-top:1em}.bd-anchors-list a{color:#363636}@media screen and (max-width:1087px){.bd-lead,.bd-side{padding:1.5rem}.bd-header-carbon{margin-top:1.5rem}}@media screen and (max-width:1087px){.bd-side-background{display:none}}@media screen and (min-width:1088px){.bd-duo{display:flex}.bd-lead{background-color:#fff;overflow:hidden;flex-grow:1;flex-shrink:1}.bd-prev-next{display:flex}.bd-side{flex:0 0 calc(10.5rem + 1.5rem)}}@media screen and (min-width:1088px){.bd-main{padding:0 3rem}.bd-lead{margin-left:-3rem;padding:3rem}.bd-lead:last-child{margin-right:-3rem}.bd-header{align-items:center;display:flex;min-height:140px}.bd-header-titles{flex-grow:1;flex-shrink:1}.bd-header-carbon{flex-grow:0;flex-shrink:0;margin:-15px 0 -15px 6rem;width:300px}.bd-side{padding:3rem 0 3rem 1.5rem}}@media screen and (min-width:1280px){.bd-header-carbon{margin-left:9rem}}@media screen and (min-width:1472px){.bd-header-carbon{margin-left:12rem}}.highlight{background-color:#f5f5f5;border-radius:6px;color:#586e75}.highlight pre{background-color:transparent;font-size:.875em;line-height:1.375}.highlight .c{color:#93a1a1}.highlight .err,.highlight .g{color:#586e75}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#586e75}.highlight .o{color:#859900}.highlight .x{color:#cb4b16}.highlight .p{color:#586e75}.highlight .cm{color:#93a1a1}.highlight .cp{color:#859900}.highlight .c1{color:#93a1a1}.highlight .cs{color:#859900}.highlight .gd{color:#2aa198}.highlight .ge{color:#586e75;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#cb4b16}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#586e75}.highlight .gs{color:#586e75;font-weight:700}.highlight .gu{color:#cb4b16}.highlight .gt{color:#586e75}.highlight .kc{color:#cb4b16}.highlight .kd{color:#268bd2}.highlight .kn,.highlight .kp{color:#859900}.highlight .kr{color:#268bd2}.highlight .kt{color:#dc322f}.highlight .ld{color:#586e75}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#b58900}.highlight .nb{color:#586e75}.highlight .nc{color:#268bd2}.highlight .no{color:#cb4b16}.highlight .nd{color:#268bd2}.highlight .ne,.highlight .ni{color:#cb4b16}.highlight .nf{color:#268bd2}.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py{color:#586e75}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#586e75}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2aa198}.highlight .sb{color:#93a1a1}.highlight .sc{color:#2aa198}.highlight .sd{color:#586e75}.highlight .s2{color:#2aa198}.highlight .se{color:#cb4b16}.highlight .sh{color:#586e75}.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#dc322f}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .vc,.highlight .vg,.highlight .vi{color:#268bd2}.highlight .il{color:#2aa198}.content .highlight{margin-left:0;margin-right:0;text-align:left}.content .highlight:not(:first-child){margin-top:1em}.content .highlight:not(:last-child){margin-bottom:1em}.content li .highlight{margin-top:.5em}.content .bd-spaced li+li{margin-top:1em}.content .highlighter-rouge:not(:last-child){margin-bottom:1.5rem}body.page-grid .column>.notification{padding-left:0;padding-right:0;text-align:center}a.navbar-item>.icon:not(:last-child){margin-left:-.25em;margin-right:.25em}@media screen and (min-width:769px),print{.header-item .button+.button{margin-left:.75rem}}svg{max-height:100%;max-width:100%}.bd-patreon-button{display:inline-block;position:relative;vertical-align:top}.bd-patreon-button img{border-radius:4px;display:block;max-height:none!important}.bd-patreon-button:hover::after{background-color:rgba(0,0,0,.05);border-radius:4px;content:"";display:block}#carboncontainer{align-items:center;display:flex;justify-content:center;margin-left:auto;margin-right:auto;max-width:300px;min-height:120px;min-width:280px}#carbon{flex-grow:1;min-height:100px;padding:0;position:relative}#carbon:hover{background-color:#fff;box-shadow:0 0 0 .75rem #fff}@media screen and (min-width:769px),print{#carbon{width:300px}}#carbonads{font-size:14px;text-align:left}#carbonads a,#carbonads span{display:block}#carbonads .carbon-wrap{min-height:100px;position:relative}#carbonads .carbon-wrap:hover .carbon-img::after{background-color:rgba(0,0,0,.05);content:"";display:block;height:100px;left:0;position:absolute;right:1rem;top:0}#carbonads .carbon-img{bottom:0;float:left;left:0;min-height:100px;padding:0;position:absolute;top:0;width:calc(130px + 1rem)}#carbonads .carbon-img img{display:block;height:100px;width:130px}#carbonads .carbon-img:hover+.carbon-text{color:#3273dc}#carbonads .carbon-img:active{opacity:.8}#carbonads .carbon-text{display:block;color:#363636;line-height:20px;min-height:100px;padding:0 0 20px calc(130px + 1rem)}#carbonads .carbon-text:hover{color:#3273dc}#carbonads .carbon-poweredby{bottom:0;color:#b5b5b5;display:inline;font-size:.75rem;line-height:20px;position:absolute;right:0}#carbonads .carbon-poweredby:hover{text-decoration:underline}.bd-index-header{text-align:center}.bd-index-header a,.bd-index-header strong{transition-duration:86ms;transition-property:color}.bd-index-header a{color:currentColor}.bd-index-header a:hover{color:#3273dc}.bd-index-header a:hover strong{color:#3273dc}.bd-index-header strong{font-weight:600}.bd-index-header .title strong{color:#00d1b2}.bd-index-header .subtitle{color:#b5b5b5!important}.bd-index-header .subtitle strong{color:currentColor}.bd-index-header:not(:last-child){margin-bottom:3rem}.bd-index-header.bd-is-left{text-align:left}.bd-index-js-tweet .bd-tw{margin-left:auto;margin-right:auto}.bd-index-custom-title{color:#b5b5b5}.bd-index-custom-example{padding:1rem}.bd-index-custom-example .subtitle{margin-bottom:.5rem}.bd-index-custom.bd-is-after{color:#757763;font-family:Nunito,serif;margin-top:.5rem}.bd-index-custom.bd-is-after a{color:#fa7c91}.bd-index-custom.bd-is-after a:hover{color:#363636}.bd-index-custom.bd-is-after .subtitle{color:#757763}.bd-index-custom.bd-is-after .input,.bd-index-custom.bd-is-after .select select{background-color:#eff0eb;border-color:transparent;border-width:2px;box-shadow:none;font-family:Nunito,serif}.bd-index-custom.bd-is-after .input:hover,.bd-index-custom.bd-is-after .select select:hover{border-color:#d0d1cd}.bd-index-custom.bd-is-after .input:focus,.bd-index-custom.bd-is-after .select select:focus{border-color:#fa7c91;box-shadow:0 0 0 .125em rgba(250,124,145,.25)}.bd-index-custom.bd-is-after .select:not(.is-multiple):not(:hover)::after{border-color:#fa7c91}.bd-index-custom.bd-is-after .button.is-primary{background-color:#8a4d76;color:#fff}.bd-index-custom.bd-is-after .button.is-primary:hover{background-color:#82486f}.bd-index-custom.bd-is-after .button.is-primary:active{background-color:#7a4468}.bd-index-custom.bd-is-after .button.is-link{background-color:#fa7c91;color:#fff}.bd-index-custom.bd-is-after .button.is-link:hover{background-color:#fa7087}.bd-index-custom.bd-is-after .button.is-link:active{background-color:#f9637c}.bd-index-custom.bd-is-after ::-moz-selection{background-color:#fa7c91;color:#fff}.bd-index-custom.bd-is-after ::selection{background-color:#fa7c91;color:#fff}.bd-index-fullscreen .tabs a{color:#b5b5b5!important}#grid .notification{padding-left:0;padding-right:0}.bd-columns-tools{margin-top:3rem}.bd-columns-tool.bd-is-try .buttons{justify-content:center}.bd-columns-tool.bd-is-try .button strong{font-weight:600}#markup{width:100%}#markup .highlight pre{max-height:none}#message{display:none;margin-top:3rem}@media screen and (max-width:768px){.bd-columns-tool.bd-is-markup{margin-top:3rem}}@media screen and (min-width:769px),print{.bd-columns-tools{align-items:flex-start;display:flex}.bd-columns-tool{width:50%}.bd-columns-tool.bd-is-try{padding-top:60px}}.bd-focus{margin:6rem auto 0;max-width:1080px}.bd-focus-item{border-radius:6px;padding-top:1.25rem;position:relative}.bd-focus-item .subtitle,.bd-focus-item .title a{transition-duration:172ms;transition-property:color}.bd-focus-item .title{position:relative;transition-duration:172ms;transition-property:color}.bd-focus-item .subtitle{color:#b5b5b5;position:relative}.bd-focus-item .subtitle strong{color:currentColor}.bd-focus-item::before{background-color:#fafafa;border-radius:6px;content:"";display:block;opacity:0;pointer-events:none;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-transform-origin:center;transform-origin:center;transition-duration:172ms;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.bd-focus-item:hover::before{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.bd-focus-item:hover .subtitle{color:#4a4a4a}.bd-focus-item:nth-child(1):hover .title{color:#ff470f}.bd-focus-item:nth-child(2):hover .title{color:#23d160}.bd-focus-item:nth-child(3):hover .title{color:#3273dc}.bd-focus-item:nth-child(4):hover .title{color:#0a0a0a}.bd-focus-icon{position:relative}.bd-focus-mobile{color:#b86bff;margin-right:-20px}.bd-focus-tablet{color:#ff3860}.bd-focus-desktop{color:#ff470f;position:relative;top:2px}.bd-focus-cubes{position:relative;height:3rem;margin:0 auto;top:-.5rem;width:3rem}.bd-focus-cube{color:#23d160;position:absolute}.bd-focus-cube-1{left:0;top:0}.bd-focus-cube-2{left:-1rem;top:23px}.bd-focus-cube-3{left:1rem;top:23px}.bd-focus-css3{color:#3273dc}.bd-focus-github{color:#333}.intro-content{margin-left:auto;margin-right:auto;max-width:640px}.intro-title{font-weight:400;line-height:1.375}.intro-title strong{font-weight:600}.intro-ghbtns{margin-bottom:26px;min-height:30px}.intro-ghbtns a,.intro-ghbtns iframe,.intro-ghbtns img{height:30px}.intro-ghbtns a{display:inline-block;min-width:100px;vertical-align:top}.intro-ghbtns img{display:block}.intro-npm{background:#242424;border-radius:4px;color:#fff;display:flex;font-size:15px;justify-content:space-between;line-height:20px;padding:15px 25px;position:relative}.intro-npm code{font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.intro-npm .intro-npm-copy{border-radius:4px;color:#ffdd57;cursor:pointer;margin:-2px -7px -3px;padding:2px 7px 3px}.intro-npm .intro-npm-copy:hover{background-color:#ffdd57;color:#242424}.intro-npm .intro-npm-copy.is-error,.intro-npm .intro-npm-copy.is-success{color:#fff;pointer-events:none;text-decoration:none}.intro-npm .intro-npm-copy.is-success{background-color:#23d160}.intro-npm .intro-npm-copy.is-error{background-color:#ff3860}.intro-npm ::-moz-selection{background:#ffdd57;color:#242424}.intro-npm ::selection{background:#ffdd57;color:#242424}.intro-buttons{margin-top:1.5rem}.intro-buttons .button{padding-left:1.375em;padding-right:1.375em}.intro-video{background-color:#fff;margin-left:auto;margin-right:auto;max-width:640px;position:relative}.intro-video.has-loaded .intro-spinner{display:none}.intro-video.has-loaded .intro-iframe{opacity:1}@-webkit-keyframes introSpinner{from{opacity:0;-webkit-transform:scale(1.14);transform:scale(1.14)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes introSpinner{from{opacity:0;-webkit-transform:scale(1.14);transform:scale(1.14)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.intro-shadow,.intro-spinner{-webkit-animation-duration:.5s;animation-duration:.5s;animation-easing-function:ease-out;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-transform-origin:center;transform-origin:center}.intro-spinner{-webkit-animation-name:introSpinner;animation-name:introSpinner}.intro-spinner::before{border-bottom-color:#00d1b2;border-left-color:#00d1b2;height:1.5em;left:calc(50% - .75em);position:absolute;top:calc(50% - .75em);width:1.5em}@-webkit-keyframes introShadow{from{opacity:0;-webkit-transform:scale(.86);transform:scale(.86)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes introShadow{from{opacity:0;-webkit-transform:scale(.86);transform:scale(.86)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.intro-shadow{background-color:#776e70;background-position:center center;background-repeat:no-repeat;background-size:cover;box-shadow:0 1.5rem 3rem rgba(0,0,0,.2);-webkit-animation-name:introShadow;animation-name:introShadow}.intro-iframe{opacity:0;padding-top:56.25%;position:relative;transition-duration:.5s;transition-property:opacity}.intro-iframe iframe{height:100%;left:0;position:absolute;top:0;width:100%}.intro-author{color:#7a7a7a;font-size:.75rem;margin-top:40px;text-align:center}.intro-author a{color:#363636}.intro-author a:hover{text-decoration:underline}.intro-author span{opacity:.5;transition:.1s opacity}.intro-author span:hover{opacity:1}@media screen and (max-width:768px){.intro-buttons .button{display:flex;width:100%}.intro-buttons .button.is-light{margin-top:.5rem}}@media screen and (min-width:769px),print{.intro-title{font-size:2.25rem}.intro-buttons{align-items:center;display:flex;justify-content:space-between}}@media screen and (max-width:1087px){.intro-column.is-video{margin-top:3rem}}@media screen and (min-width:1088px){.intro-columns{display:flex;justify-content:center}.intro-column{width:calc(50% - 1.5rem)}.intro-column.is-content{margin-right:1.5rem}.intro-column.is-video{margin-left:1.5rem}.intro-content{max-width:440px}.intro-title{margin-top:-11px}.intro-title:not(:last-child){margin-bottom:20px}}#github{color:#333;border-color:#333}#github:hover{background:#333;border-color:#333;color:#fff}.bd-tw-button{background-color:#55acee;color:#fff;border-color:transparent!important}.bd-tw-button:hover{background-color:#49a6ed;color:#fff}.bd-tw-button:active,.bd-tw-button:focus{background-color:#3ea1ec;color:#fff}#moreDropdown .navbar-item{padding-left:3em;position:relative}#moreDropdown .icon{left:1rem;position:absolute;text-align:center;top:.375rem;width:1em}#moreDropdownBootstrap .icon{color:#6f5499}#moreDropdownPatreon .icon{color:#f96854}@media screen and (min-width:1088px){#blogDropdown{width:17rem}#blogDropdown .navbar-item{white-space:normal}#moreDropdown{width:14rem}#moreDropdown .navbar-item{padding-right:1rem;white-space:normal}#moreDropdown .navbar-item .level{flex-grow:1}}.bd-footer-title{color:#363636;font-size:1.25rem;line-height:1.25;margin-bottom:.5rem;transition-duration:86ms;transition-property:color}.bd-footer-title strong{font-weight:600}.bd-footer-subtitle{color:#b5b5b5;margin-top:-.5rem;transition-duration:86ms;transition-property:color}.bd-footer-iframe{display:flex;flex-wrap:wrap;margin-bottom:-10px;min-height:30px}.bd-footer-iframe iframe{margin-bottom:10px}.bd-footer-iframe .fb-like{margin-left:10px}.bd-footer-tsp{color:#b5b5b5;margin-top:1.5rem}.bd-footer-star,.bd-footer-support{text-align:center}.bd-footer-star .bd-footer-title,.bd-footer-support .bd-footer-title{font-size:1.5rem}.bd-footer-support{border-top:none;box-shadow:none;padding:3rem}.bd-footer-support .bd-footer-title{margin-bottom:1.5rem}.bd-footer-donations{justify-content:center}.bd-footer-donation{flex:none}@media screen and (min-width:769px),print{.bd-footer-donation{width:240px}}.bd-footer-donation-title{color:#b5b5b5;margin-bottom:.5rem}.bd-footer-donation-title strong{color:currentColor}.bd-footer-donation-action{height:70px}.bd-footer-donation-action .paypal-form{height:30px}.bd-footer-donation-action .paypal-form img{display:block}.bd-footer-stars{margin-top:2.5rem}@media screen and (min-width:769px),print{.bd-footer-stars{align-items:stretch;display:flex;justify-content:space-between}}.bd-footer-star{transition-duration:86ms;transition-property:box-shadow,-webkit-transform;transition-property:box-shadow,transform;transition-property:box-shadow,transform,-webkit-transform;will-change:box-shadow,transform}@media screen and (max-width:768px){.bd-footer-star:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-footer-star{width:calc(33.3333% - 2rem)}}.bd-footer-star:hover{box-shadow:0 3rem 3rem -1.25rem rgba(10,10,10,.1);-webkit-transform:translateY(-.5rem);transform:translateY(-.5rem)}.bd-footer-star:hover .bd-footer-subtitle,.bd-footer-star:hover .bd-footer-title{color:#3273dc}.bd-footer-star.bd-is-expo,.bd-footer-star.bd-is-love{padding-bottom:156px}.bd-footer-star.bd-is-expo .bd-footer-title,.bd-footer-star.bd-is-love .bd-footer-title{align-items:center;display:flex;justify-content:center}.bd-footer-star.bd-is-expo .bd-footer-title .icon,.bd-footer-star.bd-is-love .bd-footer-title .icon{margin-right:.25em}.bd-footer-star.bd-is-expo{background-image:url(/images/footer/expo-examples.png);background-repeat:repeat-x;background-position:bottom center;background-size:352px 156px}.bd-footer-star.bd-is-love{background-image:url(/images/footer/love.png);background-repeat:no-repeat;background-position:bottom center;background-size:440px 180px}.bd-footer-star-header{padding:1.5rem}.bd-footer-star-figure{height:156px;margin-top:-1rem}.bd-footer-links{margin-top:6rem;padding-bottom:6rem}.bd-footer-links a{color:currentColor}.bd-footer-links a:hover{color:#3273dc}.bd-footer-link-title{color:#363636;font-size:1.25rem;font-weight:600}.bd-footer-link-title:not(:first-child){margin-top:1.5em}.bd-footer-link{margin-top:.5rem}.bd-footer-link.bd-is-more{font-size:.875rem}.bd-footer-link.bd-is-more a:not(:hover){color:#b5b5b5}.bd-footer-link.bd-has-subtitle a{align-items:center;display:flex;justify-content:space-between}.bd-footer-link.bd-has-subtitle a strong{flex-grow:1;flex-shrink:1;font-weight:unset}.bd-footer-link.bd-has-subtitle a em{display:block;font-size:.875rem;font-style:normal}.bd-footer-link.bd-has-subtitle a:not(:hover) em{color:#b5b5b5}@media screen and (max-width:768px){.bd-footer-link.bd-has-subtitle a{flex-wrap:wrap;margin-top:1rem}.bd-footer-link.bd-has-subtitle a em{width:100%}}@media screen and (min-width:769px),print{.bd-footer-link.bd-has-subtitle a em{margin-left:1rem;text-align:right}}.bd-footer-link-icon{flex-grow:0;flex-shrink:0;margin-right:.5em;text-align:center;width:1em}::-moz-selection{background-color:#00d1b2;color:#fff}::selection{background-color:#00d1b2;color:#fff}.bd-post .table{font-size:1rem}.bd-post .bd-anchor-title{margin-top:0!important}.bd-has-drawing{position:relative}.bd-drawing{display:none;pointer-events:none;position:absolute}.bd-drawing.bd-is-try-it-out{bottom:100%;right:100%}.bd-drawing.bd-is-love-letters{bottom:110%;right:10%}.bd-drawing.bd-is-crazy{left:-10%;top:110%}.bd-drawing.bd-is-customize{right:-10%;top:105%}.bd-drawing.bd-is-opinion-free{right:100%;top:110%}.bd-drawing.bd-is-join-us{bottom:80%;left:100%}.bd-drawing.bd-is-spam-free{bottom:100%;right:90%}@media screen and (min-width:769px),print{.bd-drawing{display:inline}}.bd-links{counter-reset:bd-links}.bd-link{border-radius:6px;color:#7a7a7a;display:block;font-size:1.25rem;padding:1rem 3rem 1.5rem 5rem;position:relative;transition-duration:86ms;transition-property:background-color,color}.bd-link strong{font-weight:600}.bd-link:hover{background-color:#fafafa}.bd-link-surtitle{float:right;font-size:.75em;margin-bottom:1em;margin-left:2em;opacity:.5;padding-top:.25em}.bd-link-name{line-height:1.25;margin-bottom:.25em;position:relative}.bd-link-figure{position:absolute;right:calc(100% + .5em);text-align:center;top:0;min-width:1.5em}.bd-link-counter{color:#3273dc;display:block;counter-increment:bd-links;font-weight:400}.bd-link-counter::before{content:counter(bd-links)}.bd-link-icon{display:block;font-size:2rem;width:1.5em}.bd-link-more{font-size:.75em;opacity:.5}@media screen and (min-width:1088px){.bd-links{display:flex;flex-wrap:wrap}.bd-link{width:50%}}.bd-link-name{color:#363636;font-size:1.5rem;font-weight:600}.bd-docs{display:flex;flex-wrap:wrap}.bd-doc{margin:0 3rem 1.5rem 0}@media screen and (max-width:768px){.bd-doc{min-width:calc(50% - 3rem)}}@media screen and (min-width:769px),print{.bd-doc{min-width:calc(33.3333% - 3rem)}}.bd-doc-title{color:#363636}.bd-doc-title a{color:currentColor}.bd-doc-title a:hover{color:#3273dc}.bd-doc-title:not(:last-child){margin-bottom:.75rem}.bd-boxes{display:flex;flex-wrap:wrap;justify-content:space-between}.bd-box{border:4px solid #f5f5f5;border-radius:4px}.bd-box-header{text-align:center}.bd-typo{text-align:center}.bd-typo:not(:first-child){margin-top:3rem}.bd-has-text-rss{color:#f26522}.has-text-star{color:#ffd257}.bd-special-shadow{background-image:linear-gradient(rgba(0,0,0,.1),transparent);height:8px;left:0;opacity:0;position:absolute;right:0;top:100%;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:center top;transform-origin:center top}@media screen and (max-width:1087px){.bd-is-clipped-touch{overflow:hidden!important}}#images tr td:nth-child(2){width:320px}.bd-color{border-radius:2px;box-shadow:0 2px 3px 0 rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.1);display:inline-block;float:left;height:24px;margin-right:8px;width:24px}.button.bd-is-rss{background-color:#f26522;border-color:transparent;color:#fff}.button.bd-is-rss:hover{background-color:#ed560e}.button.bd-is-rss:active{background-color:#d54d0d}.bd-view-all-versions{color:#7a7a7a}.bd-view-all-versions:hover{text-decoration:underline}.bd-feature-title{color:#7a7a7a}.bd-feature-title a{border-bottom:1px solid transparent;color:#363636}.bd-feature-title a:hover{border-bottom-color:#00d1b2}.bd-anchor-title{padding-top:1.5rem;position:relative}@media screen and (max-width:1279px){.bd-anchor-title{padding-left:2rem}}.bd-anchor-link{position:absolute;right:calc(100% + 1rem);top:0}@media screen and (max-width:1279px){.bd-anchor-link{left:0;right:auto}}.has-text-orange{color:#ff470f!important}.has-text-purple{color:#b86bff!important}.has-text-bootstrap{color:#6f5499!important}.has-text-patreon{color:#f96854!important}.bd-emoji{margin-right:.5em;margin-top:2px}.bd-emoji-bis{font-size:1.25em;vertical-align:middle}.bd-notification{background-color:#f5f5f5;border-radius:4px;color:#7a7a7a;font-weight:600;padding:1.25rem 0;position:relative;text-align:center}.bd-notification .content,.bd-notification .subtitle,.bd-notification .title,.bd-notification strong{color:currentColor}.bd-notification code,.bd-notification pre{background-color:rgba(10,10,10,.2);border-radius:4px;color:#fff}.bd-notification pre code{background-color:transparent}.bd-notification.is-white{background-color:#fff;color:#0a0a0a}.bd-notification.is-black{background-color:#0a0a0a;color:#fff}.bd-notification.is-light{background-color:#f5f5f5;color:#363636}.bd-notification.is-dark{background-color:#363636;color:#f5f5f5}.bd-notification.is-primary{background-color:#00d1b2;color:#fff}.bd-notification.is-link{background-color:#3273dc;color:#fff}.bd-notification.is-info{background-color:#209cee;color:#fff}.bd-notification.is-success{background-color:#23d160;color:#fff}.bd-notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.bd-notification.is-danger{background-color:#ff3860;color:#fff}.bd-icon-size .icon{background-color:#ffdd57}.bd-mwb-table td{vertical-align:middle}.bd-mwb-table td img{vertical-align:middle}.bd-example,.bd-snippet,.bd-structure{border:2px solid #f5f5f5;position:relative}.bd-example::before,.bd-snippet::before,.bd-structure::before{background:#ffdd57;border-radius:2px 2px 0 0;bottom:100%;color:rgba(0,0,0,.7);content:"Example";display:inline-block;font-size:7px;font-weight:700;left:-1px;letter-spacing:1px;margin-left:-1px;padding:3px 5px;position:absolute;text-transform:uppercase;vertical-align:top}@media screen and (min-width:769px),print{.bd-example.is-fullwidth,.bd-snippet.is-fullwidth,.bd-structure.is-fullwidth{border-left:none;border-right:none;padding:0}}.bd-example,.bd-structure{padding:1.5rem}.bd-example:not(:first-child),.bd-structure:not(:first-child){margin-top:2rem}.bd-example:not(:last-child),.bd-structure:not(:last-child){margin-bottom:1.5rem}.bd-example.bd-is-clipped{border-top-right-radius:6px}.bd-example+.highlight{border:1px solid #ffdd57;border-radius:0 0 4px 4px;border-top:none;margin-top:-1.5rem}.bd-example+.highlight:not(:last-child){margin-bottom:1.5rem}.bd-snippet{margin-top:2rem;position:relative}.bd-snippet::before{content:"Snippet";align-items:stretch;display:flex}.bd-snippet-preview{padding:1.5rem}.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight{height:2em;overflow:hidden}.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight pre{overflow:hidden}.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight .bd-show{display:flex}.bd-snippet.bd-is-horizontal{border-radius:6px;border-top-left-radius:0}.bd-snippet.bd-is-horizontal .bd-snippet-code .highlight{border-top-left-radius:0;border-top-right-radius:0}.bd-snippet.bd-is-horizontal .bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight pre{padding-top:.325rem}.bd-snippet.bd-is-clipped .bd-snippet-code{overflow:auto}.bd-snippet.bd-is-fullwidth{border-radius:0;border-width:1px 0}@media screen and (min-width:1088px){.bd-snippet.bd-is-vertical{align-items:stretch;border-radius:6px;border-top-left-radius:0;display:flex;justify-content:center}.bd-snippet.bd-is-vertical .bd-snippet-code,.bd-snippet.bd-is-vertical .bd-snippet-preview{width:50%}.bd-snippet.bd-is-vertical .bd-snippet-code,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre{align-items:stretch;border-radius:0 6px 6px 0;display:flex;flex-direction:column}.bd-snippet.bd-is-vertical .bd-snippet-code .highlight,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight .language-html,.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre{flex-grow:1}.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre{white-space:pre}.bd-snippet.bd-is-vertical.bd-is-one-fifth .bd-snippet-preview{align-items:center;display:flex;justify-content:center;width:calc(128px + 3rem)}.bd-snippet.bd-is-vertical.bd-is-one-fifth .bd-snippet-code{width:calc(100% - 128px - 3rem)}.bd-snippet.bd-is-vertical.bd-is-two-fifths .bd-snippet-preview{align-items:center;display:flex;justify-content:center;width:calc(256px + 3rem)}.bd-snippet.bd-is-vertical.bd-is-two-fifths .bd-snippet-code{width:calc(100% - 256px - 3rem)}.bd-snippet.bd-is-vertical.bd-is-one-third .bd-snippet-preview{width:33.3333%}.bd-snippet.bd-is-vertical.bd-is-one-third .bd-snippet-code{width:66.6666%}}.highlight.bd-is-hovering{border-radius:2px;box-shadow:0 0 0 2px #ffdd57}.highlight pre{max-height:320px;margin-bottom:0!important}#navbarJsExample:not(:last-child),.highlight-full:not(:last-child){margin-bottom:1.5rem}#navbarJsExample .highlight pre,.highlight-full .highlight pre{max-height:none}.bd-structure{border-color:#ff3860;border-radius:4px;padding:1.5rem}.bd-structure::before{background:#ff3860;color:#fff;content:"Structure"}.bd-structure-item{position:relative}.bd-structure-item::before{background:rgba(10,10,10,.7);background:#f5f5f5;border:1px solid #dbdbdb;content:"";display:block;z-index:1}.bd-structure-item::after{align-items:center;content:attr(title);display:flex;font-family:monospace;font-size:11px;justify-content:center;padding:3px 5px;z-index:2}.bd-structure-item.bd-is-structure-container{padding:1.5rem .75rem .75rem}.bd-structure-item.bd-is-structure-container::after{align-items:flex-start;justify-content:flex-start;padding:.5rem .75rem}.highlight{position:relative}.highlight .bd-copy,.highlight .bd-expand{background:0 0;border:none;color:#4a4a4a;cursor:pointer;font-size:.625rem;outline:0;padding-bottom:0;padding-top:0;position:absolute;right:.25rem;top:.25rem}.highlight .bd-copy:hover,.highlight .bd-expand:hover{background-color:#ffdd57;color:rgba(0,0,0,.7)}.highlight .bd-copy:active,.highlight .bd-copy:focus,.highlight .bd-expand:active,.highlight .bd-expand:focus{box-shadow:none}.highlight .bd-expand{right:45px}.highlight .bd-show{align-items:center;background-color:rgba(245,245,245,.7);border:none;color:rgba(0,0,0,.5);cursor:pointer;display:none;font-size:.75rem;justify-content:center;width:100%}.highlight .bd-show strong{color:currentColor;font-weight:600}.highlight .bd-show:hover{background-color:rgba(255,221,87,.8);color:rgba(0,0,0,.7)}@media screen and (min-width:769px),print{.highlight pre{white-space:pre-wrap}}@media screen and (min-width:769px),print{.section:not(.is-fullwidth)>.bd-example:not(.is-fullwidth){margin-left:1.5rem;margin-right:1.5rem}.section:not(.is-fullwidth)>.bd-example:not(.is-fullwidth)+.highlight{margin-left:1.5rem;margin-right:1.5rem}}.section.is-fullwidth{padding:0!important}.section.is-fullwidth .bd-snippet{border-left:none;border-radius:0;border-right:none}.section.is-fullwidth .bd-example{border-left:none;border-radius:0;border-right:none;padding:0}.section.is-fullwidth .bd-example+.highlight{border-left:none;border-radius:0;border-right:none}.bd-callout{background-color:#f5f5f5;border-radius:4px;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}.bd-callout.is-white{background-color:#fff;color:#0a0a0a}.bd-callout.is-black{background-color:#0a0a0a;color:#fff}.bd-callout.is-light{background-color:#f5f5f5;color:#363636}.bd-callout.is-dark{background-color:#363636;color:#f5f5f5}.bd-callout.is-primary{background-color:#00d1b2;color:#fff}.bd-callout.is-link{background-color:#3273dc;color:#fff}.bd-callout.is-info{background-color:#209cee;color:#fff}.bd-callout.is-success{background-color:#23d160;color:#fff}.bd-callout.is-warning{background-color:#ffdd57;color:rgba(0,0,0,.7)}.bd-callout.is-danger{background-color:#ff3860;color:#fff}.bsa{padding:2rem}.bsa-cpc{min-height:1px}#_default_ .default-ad{background-color:rgba(0,0,0,.3);border-radius:2px;color:#fff;display:inline-block;font-size:10px;font-weight:700;padding:0 4px;text-transform:uppercase;vertical-align:top}#_default_>a{background-color:#fff;border-radius:6px;box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);color:#4a4a4a;display:block;line-height:1.375;margin-top:15px;min-height:70px;padding:15px;padding-left:70px;position:relative}#_default_>a:focus,#_default_>a:hover{box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px #3273dc}#_default_>a:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #3273dc}#_default_>a span{display:block}#_default_>a .default-image{display:block;left:15px;height:40px;position:absolute;top:15px;width:40px}#_default_>a .default-image img{display:block;height:40px;width:40px}#_default_>a .default-title{color:#363636;display:inline;font-weight:700}#_default_>a .default-title::after{content:" — "}#_default_>a .default-description{display:inline}@media screen and (min-width:769px),print{.bsa .columns{min-height:120px}#_default_{display:flex;justify-content:center;position:relative}#_default_ .default-ad{left:100%;margin-left:2rem;position:absolute;top:0}#_default_>a{margin:0;width:calc(50% - 1rem)}#_default_>a:not(:nth-child(2)){margin-left:2rem}}.bd-tws-home{background-color:#fafafa}.bd-tw{background-color:#fafafa;border-radius:6px;color:#697882;flex-shrink:0;font-family:Helvetica,Roboto,"Segoe UI",Calibri,sans-serif;font-size:16px;max-width:420px;padding:20px}.bd-tw.bd-is-white{background-color:#fff}.bd-tw-header{align-items:stretch;display:flex;justify-content:flex-start}.bd-tw-author{align-items:center;color:#1c2022;display:flex;line-height:1.2}.bd-tw-author:hover{color:#2b7bb9}.bd-tw-avatar{flex-shrink:0;height:36px;margin-right:9px;width:36px}.bd-tw-avatar img{border-radius:290486px;display:block;height:36px;width:36px}.bd-tw-fullname{color:currentColor;display:block;font-size:16px;font-weight:700}.bd-tw-username{color:#697882;display:block;font-size:14px}.bd-tw-content{color:#1c2022;font-size:16px;line-height:1.4;margin-top:14px}.bd-tw-content a{color:#2b7bb9}.bd-tw-content .Emoji{height:1.25em;padding:0 .05em 0 .1em;vertical-align:-.2em;width:1.25em}.bd-tw-date{font-size:14px;line-height:1.4;margin-top:3.2px}.bd-tw-date a{color:#697882}.bd-tw-date a:hover{color:#2b7bb9}.Tweet-actions{align-items:center;display:flex;margin-top:8.4px}.Tweet-action{margin-right:1.25rem}.TweetAction{align-items:center;display:flex;height:24px;min-width:24px}.TweetAction:hover .Icon--replyEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%231DA1F2%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)}.TweetAction:hover .Icon--retweetEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%2317BF63%22%20d%3D%22M23.77%2015.67c-.292-.293-.767-.293-1.06%200l-2.22%202.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414%200-.75.336-.75.75s.336.75.75.75h5.85c1.24%200%202.25%201.01%202.25%202.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06%200s-.294.768%200%201.06l3.5%203.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767%200-1.06zm-10.66%203.28H7.26c-1.24%200-2.25-1.01-2.25-2.25V6.46l2.22%202.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768%200-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06%200l-3.5%203.5c-.294.292-.294.767%200%201.06s.767.293%201.06%200l2.22-2.22V16.7c0%202.068%201.683%203.75%203.75%203.75h5.85c.414%200%20.75-.336.75-.75s-.337-.75-.75-.75z%22%2F%3E%3C%2Fsvg%3E)}.TweetAction:hover .Icon--heartEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23E0245E%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)}.Tweet-action--retweet:hover .TweetAction-stat{color:#17bf63}.Tweet-action--heart:hover .TweetAction-stat{color:#e0245e}.TweetAction-icon{background-size:contain;height:20px;width:20px}.TweetAction-stat{color:#697882;font-size:14px;margin-left:5px;margin-top:1px}.Icon--replyEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23657786%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)}.Icon--retweetEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23657786%22%20d%3D%22M23.77%2015.67c-.292-.293-.767-.293-1.06%200l-2.22%202.22V7.65c0-2.068-1.683-3.75-3.75-3.75h-5.85c-.414%200-.75.336-.75.75s.336.75.75.75h5.85c1.24%200%202.25%201.01%202.25%202.25v10.24l-2.22-2.22c-.293-.293-.768-.293-1.06%200s-.294.768%200%201.06l3.5%203.5c.145.147.337.22.53.22s.383-.072.53-.22l3.5-3.5c.294-.292.294-.767%200-1.06zm-10.66%203.28H7.26c-1.24%200-2.25-1.01-2.25-2.25V6.46l2.22%202.22c.148.147.34.22.532.22s.384-.073.53-.22c.293-.293.293-.768%200-1.06l-3.5-3.5c-.293-.294-.768-.294-1.06%200l-3.5%203.5c-.294.292-.294.767%200%201.06s.767.293%201.06%200l2.22-2.22V16.7c0%202.068%201.683%203.75%203.75%203.75h5.85c.414%200%20.75-.336.75-.75s-.337-.75-.75-.75z%22%2F%3E%3C%2Fsvg%3E)}.Icon--heartEdge{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23657786%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)}@media screen and (max-width:768px){.bd-tws-home{padding:1.5rem}.bd-tws-home .bd-tw:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-tws-home{padding:3rem}.bd-tws-home .bd-tw+.bd-tw{margin-top:1.5rem}}@media screen and (max-width:1087px){.bd-tws-love .bd-tw:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:1088px){.bd-tws-home{min-height:595px}.bd-tws-love{display:flex;flex-wrap:wrap;margin:-.75rem}.bd-tws-love .bd-tw{margin:.75rem;width:calc(33.3333% - 1.5rem)}}@media screen and (min-width:1280px){.bd-tws-home{min-height:653px}}@media screen and (min-width:1472px){.bd-tws-home{min-height:632px}}.twitter-tweet:not(.twitter-tweet-rendered){background-color:#fff;border:1px solid #e1e8ed;border-radius:5px;color:#697882;font-size:14px;padding:20px 20px 11.6px}.twitter-tweet:not(.twitter-tweet-rendered) a{color:currentColor}.twitter-tweet:not(.twitter-tweet-rendered) a:hover{text-decoration:underline}.twitter-tweet:not(.twitter-tweet-rendered) p{color:#1c2022;font-size:16px;margin-bottom:3.2px}.twitter-tweet:not(.twitter-tweet-rendered) p a{color:#2b7bb9}.twitter-tweet-rendered{border:none;border-radius:0;margin:0!important;padding:0!important}.bd-expo{background-color:#fff;padding:1.5rem}.bd-website{display:block;position:relative;text-align:center}.bd-website:last-child{margin-bottom:0}.bd-website-image{align-items:center;display:flex;justify-content:center;margin-bottom:1.5rem;position:relative}.bd-website-image:hover .bd-website-shadow{opacity:0}.bd-website-image:hover .bd-website-overlay{opacity:.25}.bd-website-image .b-lazy{opacity:0;transition:opacity .5s ease-out}.bd-website-image .b-loaded{opacity:1}.bd-website-shadow{border:1px solid rgba(0,0,0,.04);transition:opacity .2s ease-out}.bd-website-overlay{background-color:#0a0a0a;opacity:0;transition:opacity .2s ease-out}@media screen and (max-width:768px){.bd-website:not(:last-child){margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-expo{padding-bottom:3rem;padding-top:3rem}.bd-websites{display:flex;flex-wrap:wrap;justify-content:space-between}.bd-website{margin-top:3rem;width:calc(50% - 3rem)}.bd-website:nth-child(1),.bd-website:nth-child(2){margin-top:0}.bd-website.bd-is-highlighted{width:100%}.bd-website-image{margin-bottom:3rem}}.bd-testimonials{background-color:#f5f5f5}.bd-testimonial{align-items:flex-start;display:flex;justify-content:center}.bd-testimonial-tweet{background-color:#fff}.bd-more-loves{align-items:center;display:flex;justify-content:center;margin-top:1.5rem;text-align:center}.bd-more-loves .button{height:auto;padding:.75em 1.5em}.bd-more-loves .button span{-webkit-transform-origin:center center;transform-origin:center center;transition:-webkit-transform 86ms ease-out;transition:transform 86ms ease-out;transition:transform 86ms ease-out,-webkit-transform 86ms ease-out}.bd-more-loves .button:hover span{-webkit-transform:scale(1.04);transform:scale(1.04)}@media screen and (max-width:768px){.bd-testimonials{padding:1.5rem}.bd-testimonial{margin-bottom:1.5rem}}@media screen and (min-width:769px),print{.bd-testimonials{padding:3rem}.bd-testimonial+.bd-testimonial{margin-top:1.5rem}}@media screen and (min-width:1088px){.bd-testimonials{min-height:595px}}@media screen and (min-width:1280px){.bd-testimonials{min-height:653px}}@media screen and (min-width:1472px){.bd-testimonials{min-height:632px}}.bd-rainbow{-webkit-animation:rainbow 8s ease infinite;animation:rainbow 8s ease infinite;background-image:linear-gradient(124deg,#ff470f,#ff3860,#b86bff,#3273dc);background-size:800% 800%}.hero.bd-is-love .subtitle,.hero.bd-is-love .title{color:#fff}@-webkit-keyframes rainbow{0%{background-position:1% 80%}50%{background-position:99% 20%}100%{background-position:1% 80%}}@keyframes rainbow{0%{background-position:1% 80%}50%{background-position:99% 20%}100%{background-position:1% 80%}}.bd-hug{align-items:flex-start;display:flex;justify-content:center}@media screen and (max-width:768px){.bd-hug{margin:1.5rem}.bd-embrace{text-align:center}.bd-embrace:not(:first-child){margin-top:1.5rem}.bd-embrace:not(:last-child){margin-bottom:1.5rem}.bd-embrace-button{margin-top:.75rem}}@media screen and (min-width:769px),print{.bd-embrace{align-items:center;display:flex;justify-content:center}.bd-embrace:not(:first-child){margin-top:3rem}.bd-embrace:not(:last-child){margin-bottom:3rem}.bd-embrace-button{margin-left:1.5rem}.bd-hugs{display:flex;flex-wrap:wrap;padding-bottom:3rem}.bd-hug{margin-top:1.5rem;width:calc(33.3333% - 1rem)}.bd-hug:nth-child(1),.bd-hug:nth-child(2),.bd-hug:nth-child(3){margin-top:0}.bd-hug:nth-child(3n),.bd-hug:nth-child(3n-1){margin-left:1.5rem}}.bd-shoutout{background-color:#f5f5f5;padding:2rem;text-align:center}.bd-shoutout:not(:last-child){margin-bottom:3rem}.bd-shoutout-text.title{opacity:.8}.bd-shoutout-text.subtitle{opacity:.5}.bd-shoutout-button{margin-top:-.75rem}.bd-bootstrap-table{margin:3rem 0}.bd-pros-heading{padding:0 2rem;text-align:center}.bd-pros-icon{margin-bottom:3rem;text-align:center}.bd-pros-icon svg{height:3rem;width:auto}.bd-pros-list{margin:0 auto;max-width:540px}.bd-pro .icon{position:relative;top:-1px}.bd-pro .title{margin-bottom:.5rem}.bd-pro+.pro{margin-top:2rem;padding-top:2rem}.bd-pro-content p:not(:last-child){margin-bottom:.5rem}.bd-pro.bd-is-bulma .icon{color:#00d1b2}.bd-pro.bd-is-bootstrap .icon{color:#6f5499}.bd-bootstrap-comparison{margin:0 auto;max-width:42rem}.bd-bootstrap-comparison .table{color:#ff3860}.bd-bootstrap-comparison .table tfoot th,.bd-bootstrap-comparison .table thead th{font-size:1.5rem;text-align:center}.bd-bootstrap-comparison .table tfoot svg,.bd-bootstrap-comparison .table thead svg{height:1.5rem;margin-right:1rem;position:relative;top:.25rem;width:auto}.bd-bootstrap-comparison .table tbody th{font-size:1.25rem;text-align:center}.bd-bootstrap-comparison .table tbody td{font-family:monospace;width:50%}.bd-bootstrap-comparison .table tbody a{color:currentColor}.bd-bootstrap-comparison .table tbody a:hover{text-decoration:underline}.bd-bootstrap-comparison .table .bd-is-empty{background-color:#f5f5f5;color:#7a7a7a}.bd-bootstrap-comparison .table .bd-is-unique{background-color:rgba(35,209,96,.25);color:#363636;font-weight:700}.bd-bootstrap-comparison-header{margin-bottom:3rem}.bd-klmn{margin-bottom:1.5rem}.bd-klmn-gaps{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:1.25rem}.bd-klmn-label{margin:.25rem auto .25rem 0}.bd-klmn-gap{background-color:#f5f5f5;border-radius:4px;color:#ff3860;font-family:monospace;font-size:.75rem;margin:.25rem 0 .25rem .5rem;padding:.375em .75em;text-align:center;vertical-align:middle!important;white-space:nowrap}.bd-klmn-gap.bd-is-selected{background-color:#23d160;color:#fff}.bd-klmn-columns:last-child .bd-notification{font-size:.75rem;white-space:nowrap}.bd-side-sponsors{margin-top:3rem;text-align:center}.bd-banner-label,.bd-side-sponsor-label{color:#b5b5b5;font-size:.75rem;margin-bottom:.75rem}.bd-side-sponsor{display:inline-block;height:50px;vertical-align:top}.bd-side-sponsor img{display:block;max-height:100%}.bd-banner{border-radius:6px;display:block;margin-top:3rem;padding-bottom:1.5rem;position:relative;text-align:center;transition-duration:86ms;transition-property:border-color,color}.bd-banner strong{color:currentColor}.bd-banner .tag{margin-bottom:.25em}.bd-banner.is-patreon{background-color:#052d49;color:#fff}.bd-banner .button{-webkit-transform-origin:center;transform-origin:center;transition-duration:86ms;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.bd-banner:hover{border-color:#3273dc;color:#3273dc}.bd-banner:hover .bd-banner-title{color:currentColor}.bd-banner:hover .button{-webkit-transform:scale(1.05);transform:scale(1.05)}.bd-banner-background{background-image:url(/images/fortyfour-background.jpg);background-position:center center;background-size:cover;opacity:.5}.bd-banner-title{color:#363636;font-size:1.25em;font-weight:600;line-height:1.25;margin-bottom:.25em}.bd-banner-text{display:none;font-size:.875em;line-height:1.25;margin-bottom:.5rem;position:relative}.bd-banner-image{height:176px;margin-bottom:1rem;margin-top:1rem}.bd-banner-image img{display:inline-block;vertical-align:top}.bd-banner-button{display:inline-block;flex-shrink:0;height:34px;position:relative;width:145px}.bd-banner-button img{max-height:100%}.hero.bd-is-patreon{background-color:#f96854}.bd-sponsors{align-items:center;display:flex}.bd-sponsors a{align-items:center;display:flex;justify-content:center;margin-right:3rem;width:150px}.bd-partner-sponsors{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.bd-partner-sponsors a{align-items:center;display:flex;justify-content:center;margin-right:1rem;min-height:100px}.bd-partners{background-color:#fafafa}.bd-partners #carbonads .carbon-text{padding-bottom:0}.bd-partners #carbonads .carbon-poweredby{display:none}.bd-partner-title{color:#b5b5b5;font-size:.875rem;margin-bottom:1rem}@media screen and (min-width:769px),print{.bd-partners-list{align-items:flex-start;display:flex;margin-left:auto;margin-right:auto;max-width:1130px}.bd-partner.bd-is-sponsor{flex-grow:1;flex-shrink:1}.bd-partner.bd-is-carbon{flex-grow:0;flex-shrink:0;margin-left:6rem;width:300px}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes zoomIn{from{-webkit-transform:scale(.8);transform:scale(.8)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes zoomIn{from{-webkit-transform:scale(.8);transform:scale(.8)}to{-webkit-transform:scale(1);transform:scale(1)}}.bd-book-banner{background-color:#fafafa;position:relative}.bd-book-modal-column.bd-is-cover,.bd-book-pattern{background-image:url(/images/hab/lightpaperfibers_@2X.png);background-repeat:repeat;background-size:250px 150px}.bd-book-modal-column.bd-is-cover::before,.bd-book-pattern::before{background-color:rgba(255,237,215,.1);content:"";display:block}.bd-book-header{position:relative}.bd-book-cover{padding-top:.75rem;position:relative;text-align:center}.bd-book-cover a{display:inline-block;vertical-align:top}.bd-book-cover img{display:block}.bd-book-content{box-shadow:0 3rem 3rem -1rem rgba(10,10,10,.2);max-width:520px;padding:3rem}.bd-book-description{max-width:340px}.bd-book-tags{margin-bottom:1.5rem}.bd-book-tags .tags .tag{margin-right:1px}.bd-book-buttons .button{height:auto;padding-bottom:calc(1em - 1px);padding-top:calc(.5em - 1px)}.bd-book-buttons .button>span{font-size:.875em}.bd-book-buttons .button>span>em{display:block;font-size:.5em;font-style:normal;line-height:1em;margin-bottom:.5em;opacity:.5}.bd-book-buttons .button img{display:block;max-height:24px}.bd-book-buttons .button.bd-is-bleeding{background-color:#abf47c;border-color:transparent}.bd-book-buttons .button.bd-is-bleeding:hover{background-color:#9cf264}.bd-book-buttons .button.bd-is-amazon{background-color:#ffd863;border-color:transparent}.bd-book-buttons .button.bd-is-amazon:hover{background-color:#ffd24a}.bd-book-buttons .button.bd-is-amazon img{margin-bottom:-11px}.bd-book-columns{align-items:center;display:flex;justify-content:center;margin-left:auto;margin-right:auto;max-width:1080px}.bd-book-modal-background{background-color:rgba(10,10,10,.86)}.bd-book-modal .bd-book-modal-background,.bd-book-modal .modal-content{-webkit-animation-duration:250ms;animation-duration:250ms;animation-easing-function:ease-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.bd-book-modal .bd-book-modal-background{-webkit-animation-name:fadeIn;animation-name:fadeIn}.bd-book-modal .modal-content{-webkit-animation-name:zoomIn;animation-name:zoomIn;-webkit-transform-origin:center;transform-origin:center}.bd-book-modal-cover{padding:2rem;position:relative}.bd-book-modal-columns{align-items:stretch;display:flex;justify-content:center}@media screen and (max-width:768px){.bd-book-columns{flex-direction:column}.bd-book-buttons .button{width:100%}.bd-book-buttons .button:not(:last-child){margin-right:0;margin-bottom:1rem}.bd-book-modal .bd-book-content{padding:2rem}.bd-book-modal-column.bd-is-cover{display:none}}@media screen and (min-width:769px),print{.bd-book-columns{justify-content:space-around}.bd-book-header .tag{position:absolute;right:calc(100% + 1.25rem);top:.5rem}.bd-book-buttons .button{width:calc(50% - .5rem)}.bd-book-modal .modal-content{width:960px}.bd-book-inline-cover{display:none}.bd-book-modal-column{background-color:#fff;position:relative}.bd-book-modal-column.bd-is-cover{align-items:center;display:flex;justify-content:center;padding:2rem}.bd-book-modal-column.bd-is-content .bd-book-content{box-shadow:none}}.native-js{display:none;font-size:1rem;opacity:0;position:relative;visibility:hidden}.native-js::before{background-color:#000;bottom:0;content:"";display:block;left:0;opacity:.02;pointer-events:none;right:0;top:0}.native-show{display:block;opacity:1;visibility:visible}.native-flex{align-items:center;display:flex;justify-content:center;padding:2em;position:relative;text-decoration:none}.native-flex:hover .native-cta{box-shadow:0 1rem 2rem 0 rgba(10,10,10,.1);-webkit-transform:translateY(-.25rem);transform:translateY(-.25rem)}.native-img{border-radius:3px;flex-grow:0;flex-shrink:0;height:50px;width:125px}.native-details{flex-grow:1;flex-shrink:1}.native-main{align-items:center;flex-grow:0;flex-shrink:1;max-width:640px}.native-company{display:block;font-size:.625em;letter-spacing:2px;margin-bottom:4px;text-transform:uppercase}.native-desc{display:block}.native-cta{border:none;box-shadow:0 .5rem 1rem 0 rgba(10,10,10,.2);flex-grow:0;flex-shrink:0;font-weight:600;height:auto;padding:.5em 1em;transition-duration:172ms;transition-property:box-shadow,-webkit-transform;transition-property:box-shadow,transform;transition-property:box-shadow,transform,-webkit-transform;will-change:box-shadow,transform}@media screen and (max-width:599px){.native-flex{display:block;text-align:center}.native-main{margin-bottom:2em}.native-details{margin:1em}}@media screen and (min-width:600px){.native-flex{display:flex;padding:4em;text-align:left}.native-main{display:flex;margin-right:2em}.native-details{margin-left:2em}}@media screen and (min-width:1280px){.native-js{font-size:1.25rem}}@-webkit-keyframes bdGrow{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bdGrow{from{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes bdSlideDown{from{opacity:0;-webkit-transform:translateY(-1rem);transform:translateY(-1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bdSlideDown{from{opacity:0;-webkit-transform:translateY(-1rem);transform:translateY(-1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes bdSlideUp{from{opacity:0;-webkit-transform:translateY(1rem);transform:translateY(1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bdSlideUp{from{opacity:0;-webkit-transform:translateY(1rem);transform:translateY(1rem)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.bd-focus-css3,.bd-focus-cube-1,.bd-focus-cube-2,.bd-focus-cube-3,.bd-focus-desktop,.bd-focus-github,.bd-focus-item .subtitle,.bd-focus-item .title,.bd-focus-mobile,.bd-focus-tablet,.intro-author,.intro-buttons .button,.intro-ghbtns,.intro-npm,.intro-title{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:cubic-bezier(.14,.71,.29,.86);animation-timing-function:cubic-bezier(.14,.71,.29,.86);-webkit-transform-origin:center center;transform-origin:center center}.intro-title{-webkit-animation-name:bdSlideDown;animation-name:bdSlideDown}.intro-author,.intro-ghbtns{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-name:bdFadeIn;animation-name:bdFadeIn}.intro-npm{-webkit-animation-delay:250ms;animation-delay:250ms;-webkit-animation-name:bdSlowIn;animation-name:bdSlowIn}.intro-buttons .button{-webkit-animation-name:bdSlowIn;animation-name:bdSlowIn}.intro-buttons .button:first-child{-webkit-animation-delay:.5s;animation-delay:.5s}.intro-buttons .button:last-child{-webkit-animation-delay:750ms;animation-delay:750ms}.bd-focus-item .title{-webkit-animation-name:bdSlideDown;animation-name:bdSlideDown}.bd-focus-item .subtitle{-webkit-animation-name:bdSlideUp;animation-name:bdSlideUp}.bd-focus-item:nth-child(1) .title{-webkit-animation-delay:1s;animation-delay:1s}.bd-focus-item:nth-child(1) .subtitle{-webkit-animation-delay:1.125s;animation-delay:1.125s}.bd-focus-item:nth-child(2) .title{-webkit-animation-delay:1.5s;animation-delay:1.5s}.bd-focus-item:nth-child(2) .subtitle{-webkit-animation-delay:1.625s;animation-delay:1.625s}.bd-focus-item:nth-child(3) .title{-webkit-animation-delay:2s;animation-delay:2s}.bd-focus-item:nth-child(3) .subtitle{-webkit-animation-delay:2.125s;animation-delay:2.125s}.bd-focus-item:nth-child(4) .title{-webkit-animation-delay:2.5s;animation-delay:2.5s}.bd-focus-item:nth-child(4) .subtitle{-webkit-animation-delay:2.625s;animation-delay:2.625s}.bd-focus-desktop,.bd-focus-mobile,.bd-focus-tablet{-webkit-animation-name:bdGrow;animation-name:bdGrow;-webkit-transform-origin:bottom center;transform-origin:bottom center}.bd-focus-mobile{-webkit-animation-delay:1s;animation-delay:1s}.bd-focus-tablet{-webkit-animation-delay:1.25s;animation-delay:1.25s}.bd-focus-desktop{-webkit-animation-delay:1.5s;animation-delay:1.5s}@-webkit-keyframes bdCube1{0%{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes bdCube1{0%{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes bdCube2{0%{-webkit-transform:translate3d(-40px,30px,0);transform:translate3d(-40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes bdCube2{0%{-webkit-transform:translate3d(-40px,30px,0);transform:translate3d(-40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes bdCube3{0%{-webkit-transform:translate3d(40px,30px,0);transform:translate3d(40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes bdCube3{0%{-webkit-transform:translate3d(40px,30px,0);transform:translate3d(40px,30px,0);opacity:0}100%,25%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.bd-focus-cube-1,.bd-focus-cube-2,.bd-focus-cube-3{-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.bd-focus-cube-1{-webkit-animation-delay:1.5s;animation-delay:1.5s;-webkit-animation-name:bdCube1;animation-name:bdCube1}.bd-focus-cube-2{-webkit-animation-name:bdCube2;animation-name:bdCube2;-webkit-animation-delay:1.75s;animation-delay:1.75s}.bd-focus-cube-3{-webkit-animation-name:bdCube3;animation-name:bdCube3;-webkit-animation-delay:2s;animation-delay:2s}@-webkit-keyframes bdFadeIn{from{opacity:0}to{opacity:1}}@keyframes bdFadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes bdSlowIn{from{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bdSlowIn{from{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes bdScaleIn{from{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bdScaleIn{from{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.bd-focus-css3{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-name:bdScaleIn;animation-name:bdScaleIn}.bd-focus-github{-webkit-animation-delay:2.5s;animation-delay:2.5s;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-name:bdJellyPop;animation-name:bdJellyPop}@-webkit-keyframes bdJellyPop{0%{opacity:0;-webkit-transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1)}3.4%{opacity:1;-webkit-transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1)}4.7%{-webkit-transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1)}6.81%{-webkit-transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1)}9.41%{-webkit-transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1)}10.21%{-webkit-transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1)}13.61%{-webkit-transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1)}14.11%{-webkit-transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1)}17.52%{-webkit-transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1)}18.72%{-webkit-transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1)}21.32%{-webkit-transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1)}24.32%{-webkit-transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1)}25.23%{-webkit-transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1)}29.03%{-webkit-transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1)}29.93%{-webkit-transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1)}35.54%{-webkit-transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1)}36.74%{-webkit-transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1)}41.04%{-webkit-transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1)}44.44%{-webkit-transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1)}52.15%{-webkit-transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1)}59.86%{-webkit-transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1)}63.26%{-webkit-transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1)}75.28%{-webkit-transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1)}85.49%{-webkit-transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}90.69%{-webkit-transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1)}100%{opacity:1;-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}}@keyframes bdJellyPop{0%{opacity:0;-webkit-transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.1,0,0,0,0,.1,0,0,0,0,1,0,0,0,0,1)}3.4%{opacity:1;-webkit-transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.384,0,0,0,0,.466,0,0,0,0,1,0,0,0,0,1)}4.7%{-webkit-transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.505,0,0,0,0,.639,0,0,0,0,1,0,0,0,0,1)}6.81%{-webkit-transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.693,0,0,0,0,.904,0,0,0,0,1,0,0,0,0,1)}9.41%{-webkit-transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.895,0,0,0,0,1.151,0,0,0,0,1,0,0,0,0,1)}10.21%{-webkit-transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.947,0,0,0,0,1.204,0,0,0,0,1,0,0,0,0,1)}13.61%{-webkit-transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.111,0,0,0,0,1.299,0,0,0,0,1,0,0,0,0,1)}14.11%{-webkit-transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.127,0,0,0,0,1.298,0,0,0,0,1,0,0,0,0,1)}17.52%{-webkit-transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.187,0,0,0,0,1.216,0,0,0,0,1,0,0,0,0,1)}18.72%{-webkit-transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.191,0,0,0,0,1.169,0,0,0,0,1,0,0,0,0,1)}21.32%{-webkit-transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.177,0,0,0,0,1.062,0,0,0,0,1,0,0,0,0,1)}24.32%{-webkit-transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.135,0,0,0,0,.964,0,0,0,0,1,0,0,0,0,1)}25.23%{-webkit-transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.121,0,0,0,0,.944,0,0,0,0,1,0,0,0,0,1)}29.03%{-webkit-transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.057,0,0,0,0,.907,0,0,0,0,1,0,0,0,0,1)}29.93%{-webkit-transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.043,0,0,0,0,.909,0,0,0,0,1,0,0,0,0,1)}35.54%{-webkit-transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.981,0,0,0,0,.966,0,0,0,0,1,0,0,0,0,1)}36.74%{-webkit-transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.974,0,0,0,0,.981,0,0,0,0,1,0,0,0,0,1)}41.04%{-webkit-transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.965,0,0,0,0,1.02,0,0,0,0,1,0,0,0,0,1)}44.44%{-webkit-transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.969,0,0,0,0,1.029,0,0,0,0,1,0,0,0,0,1)}52.15%{-webkit-transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.992,0,0,0,0,1.006,0,0,0,0,1,0,0,0,0,1)}59.86%{-webkit-transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.005,0,0,0,0,.991,0,0,0,0,1,0,0,0,0,1)}63.26%{-webkit-transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.007,0,0,0,0,.993,0,0,0,0,1,0,0,0,0,1)}75.28%{-webkit-transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1.001,0,0,0,0,1.003,0,0,0,0,1,0,0,0,0,1)}85.49%{-webkit-transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}90.69%{-webkit-transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(.999,0,0,0,0,.999,0,0,0,0,1,0,0,0,0,1)}100%{opacity:1;-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)}} \ No newline at end of file diff --git a/docs/documentation/customize.html b/docs/documentation/customize.html new file mode 100644 index 00000000..cb2d4aae --- /dev/null +++ b/docs/documentation/customize.html @@ -0,0 +1,12 @@ +--- +title: Customize +layout: documentation +doc-tab: customize +hide_tabs: true +breadcrumb: +- home +- documentation +- customize +--- + +{% include components/links.html category_id='customize' %} diff --git a/docs/documentation/customize/concepts.html b/docs/documentation/customize/concepts.html new file mode 100644 index 00000000..185338f3 --- /dev/null +++ b/docs/documentation/customize/concepts.html @@ -0,0 +1,53 @@ +--- +title: Concepts +layout: documentation +doc-tab: customize +doc-subtab: concepts +breadcrumb: +- home +- documentation +- customize +- customize-concepts +--- + +
+

+ Bulma is highly customizable thanks to 415 Sass variables living across 28 files. +

+ +

+ These variables exist at 3 levels: +

+ + +
+ +{% include elements/anchor.html name="Strategy" %} + +
+

+ To customize Bulma, you will need to: +

+ + +
diff --git a/docs/documentation/customize/with-node-sass.html b/docs/documentation/customize/with-node-sass.html new file mode 100644 index 00000000..7df5b6f3 --- /dev/null +++ b/docs/documentation/customize/with-node-sass.html @@ -0,0 +1,289 @@ +--- +title: With node-sass +layout: documentation +doc-tab: customize +doc-subtab: node-sass +breadcrumb: +- home +- documentation +- customize +- customize-node-sass +--- + +{% capture init %} +npm init +{% endcapture %} + +{% capture step_1 %} +
+

+ In your terminal, create a new folder called mybulma, navigate to it, then type the following command: +

+
+ + {% highlight bash %}{{ init }}{% endhighlight %} + +
+

+ This will launch an interactive setup to create package.json. When prompted for an entry point, enter sass/mystyles.scss. +

+
+{% endcapture %} + +{% capture dependencies %} +npm install node-sass --save-dev +npm install bulma --save-dev +{% endcapture %} + +{% capture step_2 %} +
+

+ You only need 2 packages to customize Bulma: node-sass and bulma itself. +

+
+ + {% highlight bash %}{{ dependencies }}{% endhighlight %} +{% endcapture %} + +{% capture scss_bulma %} +@charset "utf-8"; +@import "../node_modules/bulma/bulma.sass"; +{% endcapture %} + +{% capture step_3 %} +
+

+ Create a sass folder in which you add a file called mystyles.scss: +

+
+ + {% highlight scss %}{{ scss_bulma }}{% endhighlight %} + +
+

+ Make sure to write the correct path to the bulma.sass file. +

+
+{% endcapture %} + +{% capture step_4 %} +
+

+ Let's create an HTML template which uses several Bulma components. +

+
+ + {% highlight html %}{% include snippets/mypage.html %}{% endhighlight %} + +
+

+ Notice the css/mystyles.css path for your stylesheet. This will be the location of the CSS file we will generate with Sass. +

+
+ +
+ {% + include elements/responsive-image-2x.html + path="customize/custom-bulma-01-unstyled" + extension="png" + alt="Bulma unstyled" + width="600" + height="300" + %} +
+ The unstyled page +
+
+{% endcapture %} + +{% capture scripts %} +"scripts": { + "css-build": "node-sass --omit-source-map-url sass/mystyles.scss css/mystyles.css", + "css-watch": "npm run css-build -- --watch", + "start": "npm run css-watch" +} +{% endcapture %} + +{% capture npm_build %} +npm run css-build +{% endcapture %} + +{% capture npm_build_success %} +Rendering Complete, saving .css file... +Wrote CSS to /path/to/mybulma/css/mystyles.css +{% endcapture %} + +{% capture npm_watch %} +npm start +{% endcapture %} + +{% capture step_5 %} +
+

+ To build a CSS file from a Sass file, we can use node scripts: +

+
+ + {% highlight html %}{{ scripts }}{% endhighlight %} + +
+ + +

+ To test it out, go in your terminal and run the following command: +

+ + {% highlight bash %}{{ npm_build }}{% endhighlight %} +
+ +
+ {% + include elements/responsive-image-2x.html + path="customize/custom-bulma-02-default" + extension="png" + alt="Bulma default styles" + width="600" + height="300" + %} +
+ Bulma's default styles +
+
+ +
+

+ If set up correctly, you will see the following message: +

+
+ + {% highlight bash %}{{ npm_build_success }}{% endhighlight %} + +
+

+ To watch for changes, just launch the following command: +

+
+ + {% highlight bash %}{{ npm_watch }}{% endhighlight %} +{% endcapture %} + +{% capture mystyles %} +@charset "utf-8"; + +// Import a Google Font +@import url('https://fonts.googleapis.com/css?family=Nunito:400,700'); + +// Set your brand colors +$purple: #8A4D76; +$pink: #FA7C91; +$brown: #757763; +$beige-light: #D0D1CD; +$beige-lighter: #EFF0EB; + +// Update Bulma's global variables +$family-sans-serif: "Nunito", sans-serif; +$grey-dark: $brown; +$grey-light: $beige-light; +$primary: $purple; +$link: $pink; +$widescreen-enabled: false; +$fullhd-enabled: false; + +// Update some of Bulma's component variables +$body-background-color: $beige-lighter; +$control-border-width: 2px; +$input-border-color: transparent; +$input-shadow: none; + +// Import only what you need from Bulma +@import "../node_modules/bulma/sass/utilities/_all.sass"; +@import "../node_modules/bulma/sass/base/_all.sass"; +@import "../node_modules/bulma/sass/elements/button.sass"; +@import "../node_modules/bulma/sass/elements/container.sass"; +@import "../node_modules/bulma/sass/elements/form.sass"; +@import "../node_modules/bulma/sass/elements/title.sass"; +@import "../node_modules/bulma/sass/layout/hero.sass"; +@import "../node_modules/bulma/sass/layout/section.sass"; +{% endcapture %} + +{% capture step_6 %} +
+

+ Replace the content of the mystyles.scss file with the following: +

+
+ +
+ {% highlight scss %}{{ mystyles }}{% endhighlight %} +
+ +
+

+ Since you are watching for changes, simply save the file to see the result: +

+
+ +
+ {% + include elements/responsive-image-2x.html + path="customize/custom-bulma-03-styled" + extension="png" + alt="Bulma customized" + width="600" + height="300" + %} +
+ Bulma's customized theme +
+
+{% endcapture %} + +{% include components/step.html + title='1. Create a package.json file' + content=step_1 +%} + +
+ +{% include components/step.html + title="2. Install the dev dependencies" + content=step_2 +%} + +
+ +{% include components/step.html + title="3. Create a Sass file" + content=step_3 +%} + +
+ +{% include components/step.html + title="4. Create an HTML page" + content=step_4 +%} + +
+ +{% include components/step.html + title="5. Add node scripts to build your CSS" + content=step_5 +%} + +
+ +{% include components/step.html + title="6. Add your own Bulma styles" + content=step_6 +%} diff --git a/docs/images/customize/custom-bulma-01-unstyled.png b/docs/images/customize/custom-bulma-01-unstyled.png new file mode 100644 index 0000000000000000000000000000000000000000..a37278e4fbf3261645236dbf71702f7839514496 GIT binary patch literal 24974 zcmdqJWmH{B(*~L#!6mr61$TFM*Wm8%9)d%F;O_43?iS?W?(Xg!E;I8^Cg1JVfd;@&rP*4#os5w9K^h zM7+=h1O(g;Mkbt!!lM6UfB(coWai{#$4N)$>gr1C%0z4HU`ofp!NEaC&q&9}Nb^2| z#?jrzN#Bje#*z3RA^*w|Hg+_0Ft>9ux3wYoORm0wt+Nvk5z${0{r>q!PbYJe|7Nmr z{GVCx2GafYA36qFdb;1T-&wi;qH@YPm>a*({Fi)Q2JXK{{vX=^=HaIMYw|yo`Nz_~ zsqd!pLUYsob{j9WbPu`4hY$Q8B!mT&-9DbALwKQz%nxKPPhpeZthG8J{>*_a3JFpF zTy4-B)^Sj1a9>ZjAaH}KOkI@a^pglz_^@3F#5^x?`P^s!*P4tC$QM17P}7H18l~}H zFRqUFo4-!9Vnsh91$;w91QFzig#1WI05%fwt$Bqyl<@uXKe`A%Si%bAzeC>X6s90V zRU?>1Nyxt$1HM60H$(i#LnuEECaf3FB+o$phosNy4hVnG^UuJnG^mg+O4BR@*?(sL zn@Uu*gZH080sI`uh<+;L{QYTvs41*B%=3qaehy>=Af;)3VH|(x9nux!`9G`vmb)v> z52nfiit6}>A&7pY_y5QIQc3Zk6x3KqkV^D$TNIO8jOi)V$;kQRCH%5)=F$sOfc$YQX1GDuxi zlQ*uLqSI4hN@>6p01P1!<$h0aM?^%-;w^i?O73Q7{^<5t9uL-&FYU`Og3H_4=OB{q4MI zFBDx_YhNmOV^a*TS4QZmN3^2S@$y@Bb`}A41KkV8b|En5Xk zBa`1F?BT%Y3ADuX0`>NE?XN8L>7Af*)e}EwEwQ!q$q14PTJytF`PQerk&Y>Ku|Sg; z+oO0^QG3+6cim&u(3Rc<0s6I0(BgW0;d1$0z0QK|lg<0i4v$7jX&0= zZy0~5?dO^wmmc1AvxrDzLIM0XE@4X$y*YO$`9}-o*dCu^o32>IrZF}y#nyVOVG~mx z&T=KL0{OJQgM?Q0TrwwTY)O-~OW53fi`L`vAQCV()z3%gs^y^_y#u)~`C#pq(;<0% z9`Vrg{QVAt71lHGdN}#Fy#!#AWb!#(TRCL48U5RrXf->A=O_?M-~g>+QJ$lZhtC@> zN?HeB^7gMj4lNteUg|~+I0&mM5(gDLkAaO`Y zSWf5(Nr8BB|4dmFnRDrGV^W=>4*^tuB!bl&XyFM~&-d~R_u&i{FkD)Th_W4at0!-+ zno}2bp&UT5rP@qbgsO4m`KqilZqW3p(3r;noiwP?T_i(DL*TmsCJ7l>1 zhM+-)xu4g4*!MbJkZsx=*d2bbud(6yd6$xHU0fYD8O+4`eZhD;ljgp@xP{DNLva_s znz`h01Nv<~97MGw0nb2-uur=OXRAm1MOj*bj z&LLG46p5PnT3lXc=y#`!fsag`T?@g3MOKZGk9;o;+w^A`9t`QzX=Dzz&R9+`s$=P8 zQ<|)hf}^8Hy<%%6MN7AreU|4N#id-J)nm#Y%Ho$EQ4k0mb)7GqUNv3`oHl@LWDD!p zk80YFygpj3n3{961Nki9TEC=l!lqIx5C3b(Q{!c+DSET>vYz zNNOouFiJWd==fvn5td@GUAJto-C5ne7oC|tVqz*=1U6XAILlj%@l7N6SSsc!2vUta;Pr;?$E)6gm zvQbzu+mM-q0U_d&QWC0%#;A0xnn@$)&L$fqxUVgSpFZ6je7oa$+HOe=CbD_sRW5vx zCC=#GftuLPNf@&qn-!Xj*oxc>D5**QQaH0_KGD~cT&mFMBl9bR9<9`euV5?Ja#pmo zgT;@M+XyrGLFkfF$G!T7coF)KK=

wM9f1;<7(Ct_9DNwIPVvu%b;o@b}BOT{39R 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 z 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 literal 0 HcmV?d00001 diff --git a/docs/images/customize/custom-bulma-01-unstyled@2x.png b/docs/images/customize/custom-bulma-01-unstyled@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..cfe33fd49103a0748e3d4d542762b9953c9e896e GIT binary patch literal 40876 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 W@7s%>$)j|@-<8YP^~?3_?*BjHjC4i- literal 0 HcmV?d00001 diff --git a/docs/images/customize/custom-bulma-02-default.png b/docs/images/customize/custom-bulma-02-default.png new file mode 100644 index 0000000000000000000000000000000000000000..02f0f52c501e3e74f9022895e5cf14b389d5c8b8 GIT binary patch literal 26294 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 literal 0 HcmV?d00001 diff --git a/docs/images/customize/custom-bulma-03-styled.png b/docs/images/customize/custom-bulma-03-styled.png new file mode 100644 index 0000000000000000000000000000000000000000..73c7175c0282a90d5aa760d90254267f17c24e4d GIT binary patch literal 29290 zcmeFZWmjCy)-H^@1r0$OcMt9oAh^3j2=4Cg0fM^*cXxLuxVzK1J8$26?_@vc{cy(l z0Z)(BqkC1?nzO3b>M2)URble7;>ZY}5Wv8|kR`r;Q3L~nPzM78r-Oq5l>qq06G0!~ z4vON!U=#+qwK8@zAab>`w07Wjd}j zfr*44fryBR*Z$jgZpANR|G6A=#z$i6=xEE$$mrtY!r=0m!N%T%k(rB&i;;u6?UP4tgk14A1pM?Mmge-!1d$&VMs`;?i~M)-zm0&vR6l|I(;^5m zG-FVK0?f$CfA#u8M0ow}t1ncpv@Znhh+qoAe>*F$Uyb^==RXDG;pO#3aj9xa|8$-R zG#GdPJwgB9!T8_7`14Ty@00O=`J4DPQ60DporFh3kW*0X|FrY()<3fAB zw>`L?uQA?@lrrAO{WTwgoPL@Z>S(lx*mSWnY3veJO=FTOn#63D#ImpMw|NS`z7=Q5 z>!otoP?T#n#x4q$?H(K~B(ovrRuFXx@~7}?sFpn_KHVLW281A$R9{K1jG_KDD}!Wy z|CmiNd7dc?+5%{U=2QWnoFDkiC5pKB$4ZQgB8MNLipy}sr7%wzYg)rS}$>nRtE!Y6@% zfRJmUK~tT6I{!rEc<${FU)Jt%ub__m;f?su|FwwD?-P!C5n91px`0xq>}|PTr_cod zvvl+0J|IE%wYVYHFtX8Ql7Fem>{lDd7NmqlEX6Oe47%rgz)y>c4xs|+3^J>g26`E# zr2(<Iq^oxzol{$5k;iA)k&{u0yB(nDFPp@P>GM|*j z*gt~)prU*dM(yd$C`~;uFd(_n;WgXi^ovffLpvHv;@SDsc&TRZ7$X6PWJn)Z#m}uJGX>*E- z^zi+yt8Jb?4npu0t%%PLD~B(C#=&5ah-OoJy+8&Jm(}zqK5sH@wVhpT<(r!O5X82i zexE_7EYN@p)-wtd4QH^;lg}@>E&(3R>uZ2Ju|D1-IT_g^d*DWQ0Bkvf`aU=#{vhHJ z`s`F^QIY!VXg_x(|JU)?rS_BF{a5R2cX}2FoFL8EO zxp{9sEnlfnmN@ESh=-qFw!xHN?hQz-QE#4*?r_FszwUOBOitBi>BF~bLRmHt?W05C z{SbqM&)QYMq@);odo%=nH9Qz+Jg257QH_uZgZydeXB-R=Bg`l-h2gVbgCOR3CZBkL zYzoDO=XGRwzAvklb2`%D#zui;TwI(8uxy(~wcG$)C)04IU|iLN4p42jL$TEE(I`_o z093XBs+NDd*c4*vYt(u|J!HI9R__Xj8l9-fXx&}t?2zl1=m`56jEpzZe*Zd9#+Re65-O8I zg3AB!6Ct+SzV}uj-g-^;XC|LVG8+}E^&$2#IO23qP{i)tiZ@AbFmjxSk4M%Ga6#?v zbcHfW$2~}MnPs^UJPwgY59__#cRHGG2*s+z=Xgcn z&?ox5?Y!@X(=sG&tUu#P$k|w{(pz*QRC($oS@iI{W99X;ngu8N-R)UuIpr$E;<3e& zXVK5?M2|q@=o0xn^q$udmWu>xno2c^{)u|zwV=#(^q~VXCl%-Y=xPT9e+nvZs+1xA z{BB|bpZGO7AE?OZ`c6s_%Ku`U`|@(&lBS29XeQV-0)(xpA)}^N5LF9@XXG3+S{{>` z)ZiV*QL=cxJ5&2GJN5G-?Hhp zBik)FO?K>VP6!}Af}utJHS)Mvo#rYqW`d@t8s8s*aTlnn4JU2@A-i+7+RWEyz{{)q zxRMFLisIQQ7LDMaF&oBodrZK|cQ}|(rIdzzdz8DEDv&ipA>dYiyUyY;9^Egeh_!Az z3YpFk@whETPhs9sa=Y*gaZ;FZ-Z#42f{ojq9%YEZrq@i4#vTb%LL}%(WwTJJ%Aj*u ze^eT_Oe!Y1k!WSxT|Epw3jpjR(~Z__f+nm_~HF;uV+8` zY2v7x;=;Vs)$<#Kj{`Pubmc^6sdPGsb<6qi*e&BR#?A7#C-__t;wRL?p_rUCphr;m zj!U%=u6EqcYdSA_%)oPhY>CDC1ox^N7NGe;8Ztu5#m-Ko)o86`G1dR1#N9rw8JKWn zz}7SS?fvc5lH8S7=K0@v*gm03F?R_dl(q}p&dwY^*A04KJoX?mutZE$8Hh+F zNphl_pe2^DS*VWEH?DpYhUGU#j3Ucf9Z6w3P10?0^EU2!ESJ{N(Z$qE^YD~y4Q2)9p zs}Ds^e$Ya`KPyUW8n2a6fdiN<*-=#?TOjp8s5*#uVJ>F2x9)cNz2;xaC@%scvs)la zv&0dGEH>U=kEu55_UU;m_+w}kbG$MIQ!gf3DJo=ntkM}|pUPiOCV0M`G%20B;2Ny? z-y%urygUpxrpkS6_%LE5pOcFl_9u2BqJfG^?()xvd6QcAC}Qg2r)*)jTr@?#^^8{* zJXB5&D@K=+i)DZaKWbc5e;^{LYkK1~*z^@mVfGK;P|iSVoJxphm`DyQo6)_+r8KLOA0_as-4bYM%0HFG3ABdcoMb_R+msuUID zP6xAHP8Ky<^1#cuT~lqk{e!MXXe&$5Buc&fRG=%+V$dSd6q6>dVuD$N|{& z+H|OVH&qpdPPzF3Ri%od`eET!rIH%0UrakSs&CA`&`}}0m)zVqrm))8R3Hh64n*Qv zB=Ut)Yn9z}hsbztA2^Kp=i_pYW{t+3|7~u)T=pH5>M#;^0kDb}(mUk5(#Nfv1$D)5-v+0)Idpso`k)FN{7W|0z!wISf$1B$kK3}54tFvjKnH5J+xc&UX+S5B6fGr z7&En%k%w>dF_ZjI?mXT3iBl_skCarT#p#^J<$aRz+gls-bcu?TjtLOY?QALOgyYlY z&h#cYEzxpcagTh*D#^d2L_boY>;Y(O7*A=FEsjUDO+ClWF7TBQYW^nUXUIf-)6DfT z?>86$zJMJyJ+Fk-%eWOMgYhT|3jO?UfzWzz$Y(@V$tu#%omTxKh z3Pqi2O=@R8o6!(c_NQzMz@BuYvL;TaR2SnN7v!DU5JcjE#&3bARF46iaMlv=aGxHe z_70LBBet3_IAuATt?)&<*pH*xYSDT|d#i=(e;dS1J)gfvta{z^wP=fSn60%WNGD%p z%BEG!DQ99`By~PDxADIT)VN-n(6r2(dl^PrxTdJ0{U6?O(c`T7xnr3MxpM{9rwBiz z!D7CwnZ9m`v%EU6bNUlU!x0}`{wPDMvd`|L&&?~k*;0*Yag+UR&`)0*#q)Ja$w@-K zZz~O_PXVJ^->wU+Vq;^=605PG7~cHSJOx^1-ivzg4*T2sm#@#kTGOCnn)`W3|lHj0Y zpc{AcS9AKj33CCGz5++_h~+!aePi;X6il}Xd!>CU-lhb-^o(z z=h;AINMoLEeG9$fId~<533tq5&QQp2e31-yABxnS?|b`CbIP)I*}dr4n~*Yi+m7f1EI`Q(uhp^tl!3v|@`I4pWs?c?|M*Z}s3ftU*rDWkxShwQhfl>g9YPO7Bu?zx;ty{fyGVpy!#r z{g-(E7A;c>`l&pRX^{MBK^L>EF9h(TK({5~pCZ9i5bRpwwNDrG$Ej_8q?ET1NC?;% zEgh3gYzh6Q@K_ST3@Fyyi zVSZDS;U#UnnFJZ*x$nM?cFMQIRx3 zJKcQ>(huhgoYJdQfIgQEykD|f=o=RFveo#d4TDbP$1R>c4>h03*ZL2lM9_q47of=7 z)QpX}I||C`$+@`5OCX`ICPqhR)U0Q(qvlikyWp6^TR?f)@Z0M%83%_N$f%I9vB?}$ zl6_S$FbJ~+79}M-sovno zGU^~rm}A=}GytG-4@;d-Av!M)CPb=dCxi%W-{bzQ;X2Ym88;`e?)m;a!Tt7F>h%de zLDD0XX6~4{E=N}PR}=Qt6?t+R&Js)hf|azeSB(4R`sJ$z$zs%kmZeN6-7KsV^)zER zGP*^<4^6&nx*t$cd=P9jRZN`vVC!vealCK$?+K#}?F#O9C*_bH-hJIGVG&0&CPV(v zStC}BuZpnYPYSqH+B*AVDa5rVatSM8O)$~ev0x|j){UDz~$XPLVXZCL+t?VChaWf$7=yRT2mY*{r8bFmc zzV_QNL<-BE$WpaY+@7Agy8Z#^#~k~sVWWJBxSd^F62yQllPvo9qZ!KKyVJBhn~k{L zbO#1S=@6XnY~xp^qksb_2sT=v@5`ypJMBS+OFqa_=nei3K<6AwLa)O*fH=56DtxDa zgh7h?Kq^ap4?>76wcjfp7O4894Pr25l1aKFd3eG1I6f6atE22oNKZzgdknzEoZwTx z+-sqK=o_4<3}N!_5|T2_xI>Ob!nxde(m$ zPrj^nJp3&os+6l)AL00sq4j8UAECO+;lMePLjqdJtNzC>JRMU^L4V1#d%R!Erd9{X zYtaUKzfWPAWW|)k4ongV@Eq!Ve@&kMEH%LmR5V-X)xjmxZ0E3iPz7N)lGqIC^htW& z0UBFG6}q065=(VQcwEmXqj{ncsskV9%jmV(hXdg&i_|m7K~X@hW}&_iCWaAX`%O{0 z+x}eYzM+J)G;3*hhnI)S;`q;v*E9CV%V;0^LBPgZnG$En+vYJSkRfr~4igv(!g>1& z-EB+*HpA)z$0^+zTyR-ur9v(p09Ertz#ZN3fy0|w;7+|BtZ6yL8CsP-l zHm6)+v-8(9b^azX_Lq?YT)xYo_K>KEI@j(-MB#~u^SzK+&fu$zWZTO%_U(rN z0e=1@=*cO3VaR)KeE&@7G%YQWPOEd=*_y|2 znZ}IeG827ym}V~aa5xs??ty@h;Bw=6kt*ftY`v2vKa^slHQ(NhT;XB7MHCS~)ar^& zCy~HI_c)95NecEtJ@kAzNRIj2jLh$)?kWKWh63n9xp(zoQ~|AlA6&g7B1@cS6G8X5 z2OG7i#I%i*lP!w@m@zRC(Y)I3CnD}`;>$K4ynJXrO(x}y0Cd(?ADx8}Pl zN&(E|r%snTyp04$1h2?%TGjjl#A?=Vw}KsTQKbA@+T)||&~VQ>1T?Xf+sb5wS5C&H zK5ZkdVjnno)nDt&z&=%W?`@4lebjRaPSVhQnZD7zL!TiNHRS$Q)J4-Ls_MSTuit{g zYcLfaal0;J6i+btiePt%FiFW9xiU~}FG_+uQJZ10`)h^j-uAKON;@T?JfIZuA76|j zl`UP2&u%_P+9kxpz@W=rC!kv}`7l&aM?`h9U$nGMpcDqe0%AlXz8@29bShJ2E3YD= z!J46=&QnV384wkz$-$D=rf#0?K=%cO_8`tsglZ*XPxLZSSbsI%BSqOJLFOlIFD2dH zqB!Y8FJQ2X6I=al1YR1qZ|+9Sf9%72|twUC>S)YiHC7LW7l8S()adPH!r7RH`IqtJPpHDww>3X$2RAD}C_qvoy#1+_|HRFuh4YJiXoGe!BTp^-J zCNWTcgzdY$x_?<`YKp|?5|ibv&YBbO+!RWiB9zv!UTIKZ`ONbP*0QxJ3O5j9n_FxX zs({l3PE?c-*aTN*hkvr_=5X*~Pvi>`5#RCPyvOT+S3s;<1_mZW(BoQ(^+780j4lzft03thZH zuNd&Q9H)tKER#=$g@wDMi(6sc^V+TTajVM3=m&>EgYA~~?Q@C+c1nEwz;x%kJQk$a zZGmnltH3JLma>4!1d>LFXLZ6_feb9y&X4P{!qStYFXwolty`*2x~8vB8}(L@8)ed* zS?qV!&6ev@;L(r*lXIURc3k#et{K(rsztprznAzdaX)UM`h15tY`-Q1MH%=;~&)*c%ZA(HNVC*9^Dn zsF%;fIq~8v+lPH**QV!zMWPTorV9g9m?U8=kz|w`m{j4N2-YH47>>5p?7%t(eE`%_ zU)cGf@|mh}W;XVqM$Pwe$+Tte)4FSAF!n}jsRwU^;}7#y`BDc%qBuI09Y$X9E2>yA zSwP_D@?L8Tk%bDrdYd0Cl-_ly+fH*Oj8-k^+qQ2nOHZj4x6uj)i#lQ%ys|s&>{5g; zM@;33F;m^1gPQf`O3UAo7B|Ch5V6N*TMmlI>tpUx430NuCr89uH+Pa3-OdIGpFw@|Ld z2(+olJbTfX7uy(c6MBEy3}~!pte9c}O59tw8~@(iS_W)s9XzfOzZS>3aONi%?mhZcI?&8y1|UeDhxT#^|0j5oV-22iZTy$@?G<~_?7roUz6 z>e?WI40=i8#FX;{kv|%ZcVuD%!!BggW=nrk4VOa!ZKtvOD~_bQdoa?xv%4Nq8xZeR z|LJCU?ovx6`(JHRi0(VYYtwU~k9B+XMBc6pZv z_$O^os(!USQd?&=RP={(cTyE7pU`EARN}QM9`eJ7|M98F&4N3WS-Y8LEWA^bvU^fh z@cY>BeZ3&O&oDnhfySs5BOgPO zj`OdzSscd9a*hrqC)*1;(U1DNu3PW~Nc+W*=VsjM_l?DM92=fuud?lV}H9srN050GOV8)Z{z*R7iC;8v60%vKtH?PbKom~8{&sxP<0#sV+=TTLaeiVm+W7i8k?Hb3?sn3s)>vIw zg3@#3B2%2Rw<-u?eFSL0CF^#9Oxh{2e|$UzcXr`NpLEDs$VZaEg{jkCUk`bk!;4?N zn`^$g+srwt226CR>Mh?4InAyl6;9ZaYU27-U0nUKc z;|`M`zB87P&wb@lWUcebJU@IE{+PFOt$;QJ8SmGdX?b0_&FGugvvKWH61@h?#)Qpa zl#cQ6^kdC#?IZcCa8}8*FZgxmyO&CVjE`Rb0xnGnOi|XN9lL1Bnk=`IBJ4M0+XuZm z(*}e};sKN~`H<6<#*xxW{``OkF|3YP<#e{Hjxhe<>!($RXsPetO^z0;Yj0`cQaRRL zC9iRd4}6O53KN$PD9p2TOlRtmKe4h7Xf;^INAo{bK1uEs39M4m$WNbw`~CRQpn8C7 zzIVFh;Cq)ej}4H+>bU6XtkcU8h^~J-42)(IeBboMI?@kkB>Kone5F}uYV?Y>uv%w! zUK-?BJpZeZ?+89(`go3ZFDJx1=RiPW2`M&{?@7{JGS$1;P3&1Ex1m%@LLj2nGs|tC zxO{=gYD2<#ojA5o=DBNnyIAEWYf?b3?BIdFzT~cfQTcS)DK>#N$%2Q{V!7ik2<(!^ zF|tJdsw_b_%h5^{(Er$tL&%Hf>x>HESC!?=NrInB(tAt`Z{ByeUe-eI%i?kfZ*U2^ zE5#b2Q4N|OUcO%jx@D0@;7rzEN3aJv)FZ{06EYbX`sZ1dqB9#7`K@5!g~EatpqzI@ z>wT3@YCxZK|tv3v!0JQE`No{~F= zPF_$RPUxtNr9|-~(?{;wg2Zo!CwUXzyM3Zh-S$+>ArJLNEhjG*VWs;h%j{{NJ3pla z$A3RZxXks|o!a|OC(JBw+st>ss_=BNLn>S#opf5dkbkDW0*>e2l%SyGK{0D2k!G4G zydI^$v@;p~xU$~zAcFJbH5-4NUf#P1c z?7MC4yVi=TOzfYw{t}B<+G^8(NW`lHJ&|-J@P18+H*_lY@vt)M^WIj-`BZmJsTXkI zE#-6Ja6>uXu8F{NJ3^wf^UTSLi!VxE#O~4oVVo-c$`N1n*!j`zLe`v3yV2~3eLnI< z(K$Tj&Ci3Z$)w>dPogAk`$%N{hk+k9?^SOgEM8#2tg(O{%s>-4047Q(OWWtQoEz>K zS?aw0BEX*wa-Kn*uqOy{Im!#fD>N5cv{7>Z*oAs;^~p@05avGX?Z(GR-c#c3<$y=! z%E%xyOW(v_O7+b@mpZ?}~K$D8Y7E6d{CC11^#O6oPUr>!n} z>J0K)4E6E29rI9rdVIUub#Wv*tq545swE+Qn=elrH@}}#%Nk`{SpAO5rY}$sR;x^= zXFrU3`eMKZdlHh6ClN>Cj^dN=f9i-a5{lT}XfmmqhRz2pLo5^MYJ_{v@_AFhG78u& zNIPS#_7iHd+o8DXf^;c`zQV)O@M1eB0UCWa>0rEHz0RJ4v=VkZI-*yGdg-39JDAXs zQTKW}dS=)E#piaM{-XsH-wJ;sFD&VO6vFVW`r=1UXNk4~4c)96jUltkpw;kY-RoYX z`F395Fe${3{FQ_#g9pGE&3olx%%)JDmb4>T)uC9an`^oHP_9{SJ$IcKkN|TNbjs6k zWLE|rVt+i`;$*S6Wb$r(bk+hyrD4%Z4i$avft=pSK~qPnY~FXq;(w(F+{lCuixW04 zl+~GJdF7lAiohT8;NqVCpuG|S4B|xJuY1hV300x*NX$nIWM<1%Wmd|C>6-e(*crqG z)?<4?csYm6zb2@?<=a)n%*gVrR6t8pJ0ID%y}X{^udwl244B#k=l9)Q@pv<4r`T!R`l0wouyHIc`HPp z`PJT+`B@TL$*VkBwL*)M+MH7)d?T%RTN+wJvjpnt9&LE~VMm~WUF0|Pf>r#s8f6LR z35DN>*LLkQoIss;dnw@v-R>4H6V&W! zXEf-Wlu$11Kh0b|00{`_usk z17JcxU4$h}PQ3o&;O8|l$AWO1#J*Qzhy*vsK{;E#>&aM^p~GAj*B)31Vl1`XQQO$j6B+0j2)U zBZ``>&fqscKd#TU0pV@3%jb^2<-O533Ak_KjYs)sI4>3=YI&JoIW-@V2tC8cGCub{ zK_4UMz?2S#QD%PYuu66h+}jVtfJrfRuo`#_(I?=0vealgRKm#r8m(Y$W=>2hf0fTkayAP`%!-Fr}O3x$`s` z6VnfHoF?O`4XRRGg5_#CnHvGlUfa}b`{OH1b@a=CV(ChhCf6HRB`hMZmam(AvQN`T zd~NPW2OUq}41SSK)~IM&(c`_;oor64pwAT6_SKnfJ=zEn9n~8sIULE5HE9%{5T(~y z`@OA^Gl}(AhnH=W)2e(NmuD`Rf2@_e>qDQw82R0hJC@8(d1yk92sGR~R0?`xHPRP! zi9zNeYf?!{kY`qDvnw4!;mhJCFrA4o4+_plmc0Vc6DYFqv|8MrQ@ch+I%j0|YBeRG zkh-{5QM_r;oMV|LznhI~bI(1Qc6JYZNCE}K@q*>YrCa4fJ;$LdS$6p*3ldr* zRT)W8vqOjAv5kBY#1F0KC0Miqo3rY30w1gfD7hfV#>zMnK8c+xCbk<14&GqRf9zEX zFdED>h8)1rqnomMWK1D_Ay3jSJ?(2$J-{UVwQ<3-h=^TWRz?@us9IP-ap-vDWq&>1 zS!EPMr-7!r&Nc0PC^OG#>Jb_AHasa%6rh2)65YU!UBnC{1PA*takA1VKIzhd+=IsN zZ3j<*rgO2=V*=;68(m}Dp0n5N0qy#zyzEY*~z^44Dg!Do;kn%JeQWxGV*z9Gg!- z;E}F8TXJ}?U=_Z;88i1``OrC;S;v}HAM5N-TtVPzCM7pn<>2q0Q<-a%e|SUr1iy?- z7#i&z1jKknKarB{b%_`_@-tQv71OVJQYu+Q{qXT?s27^-8{}f8>}7XZ0EK_}de(jz z@wuag@@tijXemQ;HrDmX9Iv4`%1;s*wU+@(Zm$J(Lq9)5oUx8-21i7HhHT1WZ1CvdQNH(=oF3v2zyFFZu zPVR~ew2WFiHxVbTXJ05l-YrGe@2=D}Hl9@Cefc@NeGJQ?pU{8BPh2rTvvk_uE7RZv zlui@t8ppXOfO;_Px`$Qen8kBzNx~t$sdSOHSr)9)4U=NIyhtvS2S0t(9p=5e!x5ditSwnlITE z_Kyx2Ssj#q3-O@kLbaap5I3y4Y`BPGH#|ne{vub`g2_xn$djTnh-WEU&c8ORN2^!P zq*p2^p@ulhTQ85y%ux0F+xJX;YzB2{W~b!D`PBz~F!7bu>{H3A`=3fUG-d7HhsU4L zr>+93f~b6%LaO|Kmwo+Bk>=XPwtEm=w+MqVi={`T5AA+CXQKS@?Wh@GIM1nGOH`y< z=8Msk1iK6eWGq?KM`ti@lg;n^2N%5T9PrzWLU$^tFTe|9zirvH z2&iXoLnM+Iqcf8vnuKDq?tH}h%8YB??GJaI@L`5R=QU&Yy|}I;)ejakL*38x8&<;B zLI~ClO~i|~!|NU?AH+J^LVsfhxzDOM&H_QNcYLJ#76Icwb8ZM2MJj$lnp^w9#gNii z^xBK6Z+8!syQ>b~rW?V`MPy_TC3$wtAN9kDn-x;|n+qt;W7B+Vzv|<40Ax~GYw$u$ zIZ>itgIWaTw;d3{8%FIY2a6ZN4?00(@fZs#Aypb0#>$&UNJ5kKWc_2}~d* z*pUP8gjbuoVOQY3?p$?q3AsP4ZVrprEnU_Q?Y&VKR(Cw*AkBVIVh4C$q_4Uih%9%! zsS?6C&@u3Mw}rQV)kt8gEraQ38+A@3ci!thhnYuum>2YXf`lSiMr8<%X6t#nBd{hx zh}Z&!=7Km5?Mo8^bUpzvk@B$5@H9Ia)RL4 z-v@3nc*fiQ%5M2UAv(Lf=Y5=mb`PhsNw5FA#U40NE?34yHu=I+!e%;r}@aLPO@tnh4wt#0|RbKg5UrMX%f+@r}G>wc*(=A&;#6{D8x;tJ@B9+_*o?{Sf~ui&rqWsoZWltQ zR0FUFzjjBQYnW{-H)XhP3tF9rEEljP;y^(?VbI~B;i)r#Z^Jz^F^SAtuQsU?v zq*`Os%%a|gWZ{iuaN7AJY(PFi=Y*UNGKYTQWqx`*s2w}P^Fn+6eXyw(OeyPe(}nRv zri?M6fnJf+5%5GCh*_}ZeHG`ymKDrx_3YtPr)PXnmi|o@aB~X6c9vNwMxq&yo=t)2 zTuOC>UMl)*tald#y>WTNAbKU(HtLK^1orrhMc=cGiM*~Tg=J-}hI@uLx-f}o9bV?2#xk-g%8knag__er$ntDfa=8zT0V20o$Aym4kB zXoJJsou`KMzWH*C+0L?34aJyfAl`gvm4K;I5X80$8AFYO-4u+MKjZK6b|{?kX>yd! zgS-V;sDvw3PW0KrJAV&HcNAeMdi{RHB#FyBH*`*$yhm~9i)$X5sPOfS<1n&4n|nap z`FQL$<3h>dR54FkbwZIfSaPg#7NdksnH&sZ;mRYrJgl=>c4zoy|EKb_c~m9PdW5&m zE4*68?qR}Pq1W(R6IcK1j`%LyG@lXras)LUj*bB?@#HK&KKy2ti@H;4s z3w41dW@Y_asPO(ZZD=b(J8P4Yl5#q?aKO-NkQUT!Etv_{8z%*~eoOdE7HAu*Lj~ey zqv~+I&|&EyOMh#-o+x!EJv9p;wcdYdh%5}ON{8HzBJhaPC~mOXC;-yP%m`%%6s#EE z3#=Ah_Dww==ot$<`n&fCAoUo6xW3#(GM_u+wXB<0j(_a9xseNq_y<4u^L(GLImf?F zFKutlWmGs4pHzeu-$tCm1`XqUpQ=<7w@ z$d6hyDS;!%hAe12f#@TCas57)OthfwkffpB1sgRj$9qX>%&fxIy+O6s_pv~b8LZ=e zoz^_(qm^8!TTe}0Y(Bs?mC3Yw0pauxwoZVNarVjhKr09VW|Q42sE9*_ZNq!o^5*XD74lMZXG0X(XIa;f)qUO?JTJ|a*tu@`Z;Zd zUZ?DO%7wqS)81*mT$E7Rwpq(SWLin6yJ$tru?fW&{TyM9D%-82vBnK=&4I{PVJ>!# z4+d5+#^_EtNQjG2E9bmqA%imt%AT8BxUwAtno!2Wm z-`MG0+ITNE`9K8W&Kjp}TWb<{Na_2W=$#hd1mpt_o@d|3c`O{9V=jQvk!^;)MnE*b zw}{u|dL1Q94CVY~54YMyJ_H7w+=I!hh>w)xV%5y46c`j4p?#OT;&_^gIv@xYqoYjQ zwcF|HYBV}cE)FCAL6Ozz_zTAT!!SjBq|*h8OQgH0E%W2EuS@wRB9!+&yp*uuSdSaQ z0%WGS=T4*#@UcVef(erD`x$e^W_r;CxF(+>1A-uWVH@$K?m;% zB}VZj!CS-QRs{ZsBJ34wJqfjqmbbx`Fns!FVZ$e2Dlg3yr3ne;QhasHqsrCcrJK`p=uKCS9_Uka z+L3YOOwLu9oo`{7W}S$RW+phAwx=-g-fe;qCdU{*$5YiaA`XD5hJcBL#nC~@Y^4H? zcBV+&CdYJ4f$IuPa&iREzKAGq!!^WgA3IWlQ? zPpnIfR@9J5n9<`q2M*YbnT0)@G8nj2u*9EhBc8@zmO6$55J!Ud_BcA-X0P;WzGYr5 zswy(xI;c=?I!v}N!_cZjksxnpKEQv9n=j{~LY$oTyZR{rv+?7{gfmKYr1O@FGRb$F zrY)5E>~`|Xj=Q?Ojhx=g2A0?EfR>^BOqV3oCqXeWoN>mfD^bGD@Q&S#fMD|Hc6;Wg z2Fs;+&jS5&Dn%)TXX#(M<9Nrs(O5OEoWDqAqMRQ*H@uHWb-gV~EET%K7p2wFa5AqOYSnIoW2bJL)8KIeViz_?nJ%10FurB!P(H-k50i5&aoHch%oHT|h_>6& zyS+}2A|7A?OAUq*Jfmh0=nDvYV-fOaOm(lSI^7AU4h#q+bzxGBG7DEdsGI9HHR8(G|?sFNcd&)lvDA>RF zuQN&*Y-5lC9|C1XA*|m%!fho5rV&G|^TBGI!=_!ral;VXfDL$cJFqiEMC=iUTbe^~ z7)b{Z33y%y>j#+HyOAPaiSgo#uYVj`+W{_~U-kP2c=kYEg*zf~xUJSP7ZD5iq-?o0 zv9$StmHs?PAqPuDgTsLXQ(x%m3^M|ZbfH2Su~}EyS`tCMTq^KylWwMWvA_T!mjl^% z)^-3(!iMm-sLMg(7v0Ft=8D{4U`(0+>;({zh`9cyy%wFNLcJ2bLxp!4Bao=(i;6tY zD9k(Cn+0PxViasYl_Z~t`1a%r80kUGvO_w6F*d}r>;gN$vg?6#C4Rp!VgSs3=6x6y ze)qFMd-^ycoH8_{rTXO1-UHZV40P$;HqQAYNVuaPl)cw z9i7Hn@`>sx$)F>Tw9tE-@9eZ`VeggYG!2^zo3Thqf2?wpvd)4HdmSz=zBe>kOqXhm#( zL3p^I+Yb`G~2w!J__-It3to#wZi)q@g3hoiOD(liT7 z7-n?{c^@@79Gr7&z{vdH|McVaV8$$SPql64A`an*g^k;D%=+A1LgaOb*Wy5{ zKzx#%@m(u#OeZa5BK3t3e~hr(Bk36^rDUMJ;^I-}kBK6-If-^0+kkPwzZ6-)Zzhb{ z7Bw%V1-P}apsWGf^Lf!4+q|(d3nM~UE0BCvNW2(Ed$k67vqA*;uS5i2E^Ld8i0xv; z18<1!R>ks~7|K~@VceOCe^zZ+iAx?_^|ih?8Rz)?guT=1_$2=9a>VbW=_#hMpQm@V z2fM=19sy+RJ-zM(oHYqB2*h>WC;!8JK4cjH3-gd1mN`aCX~i=a-F9D6<~IvmOGJ}=679)yk4VlK&rEkUTqh;eYD580}w?(GB@hVeI zQ&BjP&V)44ntZBLc)8y{)oKJS2LDwX{Ni{hlQSoG2VaGpU6BmCq+lEU!h_ZIQBobiVy~E1QB$#`9H|n%4s0pb^Qkx$p6ZMBM0q!F%qElmv&7i zZv_%QCpLuim#z(hghAI)p<4fU>kGkpkZ=_|;?I9J68PUn{fk`w|2k53IcaRQSV%DR zJA%IM72n}LtNn9JiU|F-w+%;$C@2afaWDDx$StLnN1;kqCTW${KnvfS4z~?=$cTw0 zwzuWA=NQ&USi|l9O|z#FA)*Qj3W`ljBMlM_Qq+j)fA%z1|9lohD&Ov{yW~CyT0}AP znNfw^7<#)kqQamzUQ(|LYbaCU-}gB8E7<)>S(#S?x<=ci_$3rmsV1>}g12r$_}oJ} z0iD`xbMwOAG47yIRF}GIel$G}aF+&XKC~Owo!o1u7+nLCown1O;`Ky*?)7f7tr? zxDYDMCTis4F=hl(^;|76(mV@5&sPAR+oKd zgR>qIQ0Viuwz*W%CWEX;4C+Q!YCRnyNLJc7H{;A)y}zGf+VML^YeaOqBLU4qB7JX$C7tt!iQWjqAEf#>I%UFed#Gsj`L!n6OodKox6A`gah9 zaN)WDx@~S1w)53JvkJDq+FQ)uzrUYVX6u^ah=Z|IFb1O=?Uqt0TN34Zkyh6e+gcBQ zbr_uP&)00OCrU#+3`?Y@NkP%(x{N;6KO_Kr_RCDoyRmPF$HyC1Hw87ob->@Z%CC*a zPaU6&%PGQGc{C`N|JvM~8p0p@-S^|E4#RpPw3h zJzK6v`+C{&qtE3}xgfpdH%>UKU8@xyaW6@EKLqp<0LdSnoTw)GuG?;JqXEphVzEyi z9^{T=;J};nNxcH=$Fn)Og>vLO% zUOGij{9=D?Io{?5kX~M#pKqNFQKrGjO)LHQ{m+jZt`6qXE+&M&_oqB~zB(MjxUndZ z>TVpxSb~1%5Iv86LFt5p0yoRj4xp+8aDA+CKlv43@78_8D2%OxC5<%#>Jf`wFxQh^X7W&&VpI-dI@XQvR`8P6k>sPFi|XM(Stq|Q0{jufee3V8kr1!{wH`7z}`fko$46Wv-{}`|(T*3s@*s zE8EW%GWhH=m38>6CZ+u#2gXafjyEgrOZ*#zcpruW5m3sbVJ+{~eaxEhS|F*qK=`o4 zN92s#mYrPhtyrPscv#}i52h98dMTuG7+PD&#gZ}W7=ltFlnV^nJ!*XJ_llhdi7n?Z zcVOjJpjY?)ye(z#R03U4y7EynPpFyP=#Jq^sb-*&Ck(&1(a5A zJu@-ipg$0!jNB^Sofb{xZLT`vRMw=4cG+f2%tq6c-XBr~ChUDhbuuB*exXl#dV_F;9?7aFp_L2GB^FPzqE@OZM#m$Tyg{QP^ zG?D2EfCx6_Go9TN%QSV=R@VP z>y$Fz3@T12_cKWgn1XlvK9F+}poxHjl?*H5AN?y~lzvQa+$RKf=5^1y5wM5BX~ya)xSp+FPUS(TJGWqd9OJY0s2oHnT%tV@6ni6O2!rCu*whcR1`glu zcJer3P6w~ddPY)MEl$^Z2F-3y*WZ_muY_We>n{$5U=WV1K0)1ydEQ6Q%ruZ+^@}1# zXTh{04Z@G7eGDGz4&krDYhm1-MqbV+;7>7z{ONZYi)yv28MdF9t=@>K3R7c?diA7@jR!Qg*+wqM`f`z>T|{>dDfL)P_$tE($be~%EGdL_^0?oX*7d!L{= z_~=fLa86D&n?c>&J}!ay7&-Lx^aGSBd4GSozsh&7ZaYl~9?2P_`RsH4;VI&ZQT1Nq}oTv@vKU!?4ro*qp_w4k-rZ_uoYE&k|5Mjk!E_!Njt zRahQxFzvogOz@2o4N9OYAnK-3wffz(t)j8{nuNDMT^5Ti5JffmKb{S_kwF~+Z_|{TxHgQOtp+9Y}#27GB-tP=?k&USk4 zZ}JQU@nh1dooSJ*A_QaFUxu}I^hgS{*1}lU!zs$9M0Ek`Du?+WY1g(sBedD|2hN~9 zIBKj!40J*sZVX7sFt9l)mrl-IPWUJOI=ulz;G3&9D55w=V00)>JMl2bfbQOC1U4#E z0BgElI*j!Ec+>Ti0waS;anXly&H?06o2xdVanEo9=t)fi1LJ$@X{6zc8cggY1Gw5Y zB3TckUhM}E?r-)JAR?dlmm^CSa6dbywafvfjytdMm&>D8!(dySy)#L2>QexaEZHAc zYKx*ed__lGzNiN;;1_w!hvPN+0u-aHgzGWjz%ad12F}4ViO7HqO5M9|;vO)96rwas zFrWy?O&+$>z1b!k%Kmiw47y6}P zF=SKaE18$lvsyweuY^o*wJo3T@C}NqXEtozU`f z99^`TEtxUC;}I}2zHk~V?6cJ2+zPzpXcitVLpYZ*fSdvS0J18M5~qR8Y#&Z5f*gC< zCXfh$CL4sG38(6-o$o$gq_|x53GMGRLY!DHiFc$j1QN8Yzj--)r57U^z-KWkX4eJh zus!*?QjOWsnsf<;`tCBJhHsuc&WA-k&lv-WADaE$zLW^Sr)%9_FF71_lKP$eZtLMk zd%r3|!l|_i|x4f!1#ExuzQGo0ERj)VV+l6v^ka6uQX($~{L+I8Fa_cqvD- z5bq(;aAYN&R&K*ebCP$nUd%9D_Q}W2f=}AE-b_%DSMp3yxbq`V{f$vxG1O=$WnNb$$oLy2CQLd+j z_>QJ=zV7vk$F|@r8PudAV{)@4W)Jru$Iqr4u4g78LGhBnF?KW3RqNC7 zA&>`I-)4zpc|X~!R6lVP^d^(_-Y|ZH`VZ=RNl}%+&VLq|G0%?Yh=R{tR|O%?59gzt zOPZF=ug$tcsd}bdC*;ryyWz+?>(hIKERg+_PgR}$WcaspIplo8S(le;+Tn8%!_tMI zx0~Q(O_d&)ILXof3AT=gb$#CmPiJv9v8^Fi#h{F_Sa=rT4!}02nl^?!aOA8l>YEze zuFV=hJWri-rb|tmjwai%0_@UNs7p?X*aX>PKOxAX4`Y)P5mN7Oe;=ZxbOL;}JHNCX z`Tl!{==cKA4Kt2{bI{9*eA`re%T-PGmh`v{7Q|VDIn|aD@BT-pIuq+R!7|L|r3Vq&nABjLq8qu*Wjm zz#g4Pn0;i(DO?&cIpSVPGt61{*hH^SG&%6muyg$mwxskI;imm~ozGSs`Jx*W1o8n2 z5NY-in@|o;p0=CJz+aRgW%DqWJm!6Q`;17dC{L$w9=34r{dSeN=4c8g36I@{SK$?; zffo!v_yNV*-k=flm%G~8+*lK7m%58PxI`=bA)f43Cq{bm#idO{naU2VIV@7cvUcVYs!%^WK_qAEFNWU`| z!0GKHiY}FdtE;sh=D>7JbKy?miUp&){D!AmWxD+x21Q8W9v&Z7M1@NHmpep+V}&S~ zJC}A;H$~HQDxaDk4mtZ^f%d0ZcN$r8^SqyWm$wwU*8dW)ZkDOIa}HYK$XRk5Iy=6; z+idoQdVuaP)J0?GN|}2FeLw37{65bu1)w_sm{E#{xtQXFbVor|?u^$%QFZ>_;cGTG zo?n=_#lxNZ%aZQcFTaAc0{LE||A`#TqQDa#P$rj?QaYh2;*4LeIm$~WfXSBeuQ>qB zV^t33vFgQ^f%ne<7&7tSFqBopfG;yA$Eaoa<6Odzj`|jyYnZ|-2ZyeGM#P|Y;oAs9 zM+o2sf~<^6?gq*FL;{t6drtSTsI$ZN{qy+Y}u`Wuy$Z;)Mi3B zJoBntij(mp#q(Ps!jh@rR1rsdw;eZ@6zU8GvO zx3Wvt+7#7o_=%b-@vp&zI6Not9gnH-3Z%^XQF@m>QP-&s)>rcPChz%|&ph3I3Ri49dt9`%mgjVu}AD>%N8mdpaS#Rl!y zM*bbQ>hN2fO@+C!u}P=4|u(! z>&kzLG;`E^wV}oJwWpzacOEwulqG2M7Zg#G`E5%;Rk;B&S#Gc>9?Ll`wKZyyh>Ua% zkj|et=TE+A+In4MW@c7sF~|3E_t12*V8BTu|8pr&kqQPw99DK{2;aD%+5h6u*n)KG zdJd4`KbRrFR5%%k$XChf45c(Iym8D2%j!tz{U3rz5`iriXzO3IFf4M_7a!?ibr@MT)zb&d> z`1nUp8Y^a8?=#(qpYAZuiC_-r=E&U2cT1$llexyQlEl|Mfurb zH-JsG4Vpbnz{bRluU8GsXjZT)nJvS$F)dUq|A_X30zc-1@u8KJRnOOt#o=0i-G7*9 z)xN-Ei0Y&h1cT8x(6!k^NAR8raUm*l4b&gF>q?sJU4Bx==ygVN0jdeznG zywzpgUg#3w@f46VHaer$g6RlPS zrT@!JTJAN>&E(6&W6kw{z5*049wQ<{6w|o){a}|SiCUtg;|$TT`u6m~f;*E>*9TL` zH!L8c7dcm2ntxgojebw^LM{c( z`R1>jR|vBJtXGMF`NE^|nzu|DIacX0+Ezy3d6jYvQU5DR$RbO=};u&yBEFiAZv7yv*MR_ya zYz(9lFsKz?5AJEF6MqA?+)=!UWe2yeuF!N0V#Oamf1u|x@_)84Fy$WJ9G}0`$Z6|t zl`TbnQ^-6%*Hp!eeY37M1k7Ia!7jPl7muZjA)6T_td18d_>~KNzw z@{P}X8?^0xZ1*sXqH5lO2bTiBJp0MrG0pl{UOzbJt?PW*qW<|gvCa_BsW&mD!a8P6 z?GKf&)vI8RyL_mii{n>;cyP(0Sj^9unNQ1XnlH7o*IpiZPEvIwydWgV3TK(zE1AD{ zs=ZjUJD+{(U?9~lPbx@#Uf667r=mniP$s69pg+8U>nh_4A^QT4u!m8@`7?{cMbwBt zlsCjPBvbZ6B|Ir0vLSv?zM-;b6~hU`1w*020${MtS~=A3B}V;rbmy*mAcJfAerejc z*-=BRF+JEzZ;S1}Z$e&88pod{UVc$#7uR4LYLUbrA&j ztyop)xF(%kg&~qP+(+G@-Qg8)H8-VSZ2Gml))_1^dPs>4Mx$>(1q0r$6W~QBwELo1 zoFtNKbV&pqaZa!&(%@SZ60omC318fR<(+;}`wX#xj-G0Wby2BYwCgHLr%HX8fe;07_Lrn)V8h z`SR7y$g~dQ$d52tMg2O4mwO>-FK^3nYCoI<^-d=-t>zg95Ql!@3xT6o4e6{h=UAH{ ziXwlKXHtg%d|k>{;?(>V}4)P1BJL@4wLH3QF%=)F&>3%jm2e zjU$xpOU}^gZT8uiZ{Ib1Pb_TdNi0mQ&Q~GjYuy))N#oS3@~7g?M1J_!-fvBpMoo@g zH*!9jNf1;_@EJkTP5!#+VZ1fD!@eu}u`gp%iM&>4!jR$HHs0ll^j8)EkXm>|SNPN4af zB1r*nB3}*<_>$6y3Wj zVqbiv$9#y346xq!MBPoc1A1wqb!!w#^28^yUB#WyML<-OKjyKg`966Xv-{{J`pgoE z6!pq4*|G<}QuHq;_5*$sYn8@rb&YS=vXNPPbCRJI%%QiuIKz@%PcsQg$(3=a`A*dh82v@b0nta zFlr8|CMuq^YPTBx(wUtwq;D~BHb1PIc%4@s_aq=eLcZE;dlwOzTS1GD{Z8i4&~GX9lQ=8H;wOI70crFA}wc5`olvWm>QcNKR=NIgcr%Nh+#Rxn9h+6x1o;p{ zH7%-jT|TZ&S>{!1vBL1psKz)m&W2V%2y4D2=n2nA;tC(VxyFX9t>#bcbe7(! zXeIEzB=&8BqpyjlC2L=w=r|>_I<-z{LbmP`JHCk5Hj&3u`;*X;d%33shemwmc}FK- z+^}C-rB(A{4;S}L&`y`ic-)Y~PUVE)lls%WUba_|#x-3QNgUzr!)X;(9tPz#Cv^aY*|)D6_0&?rgg+=A9uIYldJIA)^ODU3x!J z#?88tz-H#fR_!PF1D0*No7=XZ6v8JD#g&=u` zB0oLI!k%8lZW<0GyT1hXCJwh+sp7F%x&(`rsGJsNr1h`Eyr}-T=aWex?w4Q_l+)(Y zdY9|xPChikoDL=n<(~)=CrcxyZFIYAGY~P48ERb}IbVhEimn91A&t^`^oeW{eqJaWzUSNXkMExl>c1T^Jtk7+-KZjI+em<>_CjHymmelT^%e% ziyv@doX&xAO&*_AC8T^GO~Pc;^>%cr&DaKlXWPnNFh<+Ht}Y=o4PQuudjLe5`95N# zd%?22_%>+e>k<96zDZs}oP7{lf7y23PR&lin>RCpxy*U6W1 z%~}|rnP}DcGE6F5KD*wV)+w)~$h$a#TWImjsy~_43kAAYs*o~_gi}T*cB!xzv8;zEA&qGH ziPRW?6Unqc9TLklODxpTXg0+wKUMJU(NERc%z3A1hhnkpbyFUSp#1UO$__XQ^LyGw zwzrCp_*#Eb9!Heey;TbcioJAURag-73=SRXdJ#*) zd-p<=QiN4ey{VJpU>Cg4L0q))-p|{!fz8NxchGUX-KvspXzd^*ebCg-^I*zbKyO#! zvIMw#wYc6QRZ~@1>v-j*7uVWSCpYS1{A6^ul_si_3tdc8#431#aQbONDKr6FUwRi_ z>S({ioSfVkuWj`y%ZjgGO-k8;{8*x3-s!ryIRB*TThM;l6b0s7?NU?eJo#B6&~gnN zMtlT(a)yjFIB&7XrED7C+HUn@el;*aE*hYGDldQ9)K~}?sI1i~lYX|MtItB}bYys< zo$kK=(hGVlUA3~UFb2ZUD;VR}cPFrS71|f^DPQKl`B;0F5tn**)74Zi`XtHBO;MJW zUGHCwmhXs;hzg(*Uo%4TdTQ|lu{AZeOH>VvUo7*ivc2Y94G-LH$z9tGTa4xwsk@MC zrT9EEkW%4Ujl4<$XT#&w5Zj-BzI=5wV6ZY@D*erjTtw7Z+e~8=)0DWic4trfnAOYt z{5dh%_Pg!tB3j#T< zPO~RmI9@7P+>XeZw5%?tZfHg=&^B5|T`#5Cr(lcS)i__Bca4TPKw5>*bElrjg&K=J z;QfYeA`X_Le|3MFwMrHhi1J1*ERP$i&AMymL9p>3%{=TN(N3b~Xf*PHcPTD<5;aDH zJ^g_07idbh-6L5($VJ%%pAOg;utoN{h!U3d77=LvnI+=ao5b+b>)Qz%~mA zbq~Hc0IVUWwz=~k0?k656Cy7*D>roSnqS7vJW*L zpOik)$-UYI35BAmY|Lf&Lh0^zC;~w{f-lWwX1$cD4p3&>J565+_}RFR(+To3!pavw z<%kXcu&jJy8h3M1VMswtoqXv4MHu>p=k?j{bcc;{uYo^g1=Q9>*&0`J;x$h5#^)i! zp+9M8-1%^9HfUN;?B|kbs?d(`yy)Q^&+X#c_m(=-sw1-g*MGC#1VhQKTX4S7@VgG@ zpwoCiZGASxOYRNYNz%5F1BQ#Aw+7Q1JG z5qL!Y-H{YzOTM@!o_SP9p?}6l>zF*k*|hICocuZ0-{V}m7xgO{#7Z67UI+4yS@^al zT(~c3y*8d%LC115fRcl+7JipwKzA@k^pSmvCh^!n^rj`Hzl$DpPD9|aHN$>CD7&+} zi|=E-Vqd+|RF4%+YgbLSsHuJ9<9|W2soFhiXgLb7((f+

`>5xOUinU`@VE}OEU+MJl!}K4_1NQ zADOvk15yfzYu}$2Q7R5D#}4Ebe^CVc-wjP3P++|OKI4TL<=dzAl>E{hJSlPas&{_c z_D+}UqeZ1}vvGHJW)z6}Pn!Ke8oUm##!d>%r^Kv%Jvz%#jT6@wDoQ}sShhlK?iShZ zQmY+@6b2dW_>&%ZOkCFiDRavwAYws&Z`gl|oh9Fg(&iX+g)w^96j>b@&+!^2*--zE zdg%+IrDD`#jZqn#-`N67Em;7dT2@>`@^792KHvbV_3Ni`|7U%g&TLUvXvF@zQhq0_ zxQsZqHqslOe_rQniFaG$YpVWpizTS2y7*M%{}zHa99)@}lE}Zu(omUb1@Qic~ zNQmXy+*kh|8yOIw1vjbmZ>;cPu^O2E_gEHq`2RgAD&T*^`zKrS|KCJ1LTdQv%8>5H S9{T$aAmwFLq$?#&g8mQp`8v`7 literal 0 HcmV?d00001 diff --git a/docs/images/customize/custom-bulma-03-styled@2x.png b/docs/images/customize/custom-bulma-03-styled@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..23d13ac43b594b8e3d8762e5168a1326602dd045 GIT binary patch literal 49112 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 H@P&T@ca6-1 literal 0 HcmV?d00001